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.
 
 
 

43930 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. }
  1779. //species
  1780. function getSpeciesInfo(speciesList) {
  1781. let result = new Set();
  1782. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1783. result.add(entry)
  1784. });
  1785. return Array.from(result);
  1786. };
  1787. function getSpeciesInfoHelper(species) {
  1788. if (!speciesData[species]) {
  1789. console.warn(species + " doesn't exist");
  1790. return [];
  1791. }
  1792. if (speciesData[species].parents) {
  1793. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1794. } else {
  1795. return [species];
  1796. }
  1797. }
  1798. characterMakers.push(() => makeCharacter(
  1799. {
  1800. name: "Fen",
  1801. species: ["crux"],
  1802. description: {
  1803. title: "Bio",
  1804. text: "Very furry. Sheds on everything."
  1805. },
  1806. tags: [
  1807. "anthro",
  1808. "goo"
  1809. ]
  1810. },
  1811. {
  1812. back: {
  1813. height: math.unit(2.2428, "meter"),
  1814. weight: math.unit(124.738, "kg"),
  1815. name: "Back",
  1816. image: {
  1817. source: "./media/characters/fen/back.svg",
  1818. },
  1819. info: {
  1820. description: {
  1821. mode: "append",
  1822. text: "\n\nHe is not currently looking at you."
  1823. }
  1824. }
  1825. },
  1826. full: {
  1827. height: math.unit(1.34, "meter"),
  1828. weight: math.unit(225, "kg"),
  1829. name: "Full",
  1830. image: {
  1831. source: "./media/characters/fen/full.svg"
  1832. },
  1833. info: {
  1834. description: {
  1835. mode: "append",
  1836. text: "\n\nMunch."
  1837. }
  1838. }
  1839. },
  1840. kneeling: {
  1841. height: math.unit(5.4, "feet"),
  1842. weight: math.unit(124.738, "kg"),
  1843. name: "Kneeling",
  1844. image: {
  1845. source: "./media/characters/fen/kneeling.svg",
  1846. extra: 563 / 507
  1847. }
  1848. },
  1849. goo: {
  1850. height: math.unit(2.8, "feet"),
  1851. weight: math.unit(125, "kg"),
  1852. capacity: math.unit(1, "people"),
  1853. name: "Goo",
  1854. image: {
  1855. source: "./media/characters/fen/goo.svg",
  1856. bottom: 116 / 613
  1857. }
  1858. },
  1859. lounging: {
  1860. height: math.unit(6.5, "feet"),
  1861. weight: math.unit(125, "kg"),
  1862. name: "Lounging",
  1863. image: {
  1864. source: "./media/characters/fen/lounging.svg"
  1865. }
  1866. },
  1867. },
  1868. [
  1869. {
  1870. name: "Normal",
  1871. height: math.unit(2.2428, "meter")
  1872. },
  1873. {
  1874. name: "Big",
  1875. height: math.unit(12, "feet")
  1876. },
  1877. {
  1878. name: "Minimacro",
  1879. height: math.unit(40, "feet"),
  1880. default: true,
  1881. info: {
  1882. description: {
  1883. mode: "append",
  1884. text: "\n\nTOO DAMN BIG"
  1885. }
  1886. }
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(100, "feet"),
  1891. info: {
  1892. description: {
  1893. mode: "append",
  1894. text: "\n\nTOO DAMN BIG"
  1895. }
  1896. }
  1897. },
  1898. {
  1899. name: "Macro+",
  1900. height: math.unit(300, "feet")
  1901. },
  1902. {
  1903. name: "Megamacro",
  1904. height: math.unit(2, "miles")
  1905. }
  1906. ]
  1907. ))
  1908. characterMakers.push(() => makeCharacter(
  1909. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1910. {
  1911. front: {
  1912. height: math.unit(183, "cm"),
  1913. weight: math.unit(80, "kg"),
  1914. name: "Front",
  1915. image: {
  1916. source: "./media/characters/sofia-fluttertail/front.svg",
  1917. bottom: 0.01,
  1918. extra: 2154 / 2081
  1919. }
  1920. },
  1921. frontAlt: {
  1922. height: math.unit(183, "cm"),
  1923. weight: math.unit(80, "kg"),
  1924. name: "Front (alt)",
  1925. image: {
  1926. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1927. }
  1928. },
  1929. back: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Back",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/back.svg"
  1935. }
  1936. },
  1937. kneeling: {
  1938. height: math.unit(125, "cm"),
  1939. weight: math.unit(80, "kg"),
  1940. name: "Kneeling",
  1941. image: {
  1942. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1943. extra: 1033 / 977,
  1944. bottom: 23.7 / 1057
  1945. }
  1946. },
  1947. maw: {
  1948. height: math.unit(183 / 5, "cm"),
  1949. name: "Maw",
  1950. image: {
  1951. source: "./media/characters/sofia-fluttertail/maw.svg"
  1952. }
  1953. },
  1954. mawcloseup: {
  1955. height: math.unit(183 / 5 * 0.41, "cm"),
  1956. name: "Maw (Closeup)",
  1957. image: {
  1958. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1959. }
  1960. },
  1961. paws: {
  1962. height: math.unit(1.17, "feet"),
  1963. name: "Paws",
  1964. image: {
  1965. source: "./media/characters/sofia-fluttertail/paws.svg",
  1966. extra: 851 / 851,
  1967. bottom: 17 / 868
  1968. }
  1969. },
  1970. },
  1971. [
  1972. {
  1973. name: "Normal",
  1974. height: math.unit(1.83, "meter")
  1975. },
  1976. {
  1977. name: "Size Thief",
  1978. height: math.unit(18, "feet")
  1979. },
  1980. {
  1981. name: "50 Foot Collie",
  1982. height: math.unit(50, "feet")
  1983. },
  1984. {
  1985. name: "Macro",
  1986. height: math.unit(96, "feet"),
  1987. default: true
  1988. },
  1989. {
  1990. name: "Megamerger",
  1991. height: math.unit(650, "feet")
  1992. },
  1993. ]
  1994. ))
  1995. characterMakers.push(() => makeCharacter(
  1996. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1997. {
  1998. front: {
  1999. height: math.unit(7, "feet"),
  2000. weight: math.unit(100, "kg"),
  2001. name: "Front",
  2002. image: {
  2003. source: "./media/characters/march/front.svg",
  2004. extra: 1992/1851,
  2005. bottom: 39/2031
  2006. }
  2007. },
  2008. foot: {
  2009. height: math.unit(0.9, "feet"),
  2010. name: "Foot",
  2011. image: {
  2012. source: "./media/characters/march/foot.svg"
  2013. }
  2014. },
  2015. },
  2016. [
  2017. {
  2018. name: "Normal",
  2019. height: math.unit(7.9, "feet")
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(220, "meters")
  2024. },
  2025. {
  2026. name: "Megamacro",
  2027. height: math.unit(2.98, "km"),
  2028. default: true
  2029. },
  2030. {
  2031. name: "Gigamacro",
  2032. height: math.unit(15963, "km")
  2033. },
  2034. {
  2035. name: "Teramacro",
  2036. height: math.unit(2980000000, "km")
  2037. },
  2038. {
  2039. name: "Examacro",
  2040. height: math.unit(250, "parsecs")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(6, "feet"),
  2049. weight: math.unit(60, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/noir/front.svg",
  2053. extra: 1,
  2054. bottom: 0.032
  2055. }
  2056. },
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(6.6, "feet")
  2062. },
  2063. {
  2064. name: "Macro",
  2065. height: math.unit(500, "feet")
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(2.5, "km"),
  2070. default: true
  2071. },
  2072. {
  2073. name: "Gigamacro",
  2074. height: math.unit(22500, "km")
  2075. },
  2076. {
  2077. name: "Teramacro",
  2078. height: math.unit(2500000000, "km")
  2079. },
  2080. {
  2081. name: "Examacro",
  2082. height: math.unit(200, "parsecs")
  2083. },
  2084. ]
  2085. ))
  2086. characterMakers.push(() => makeCharacter(
  2087. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2088. {
  2089. front: {
  2090. height: math.unit(7, "feet"),
  2091. weight: math.unit(100, "kg"),
  2092. name: "Front",
  2093. image: {
  2094. source: "./media/characters/okuri/front.svg",
  2095. extra: 1,
  2096. bottom: 0.037
  2097. }
  2098. },
  2099. back: {
  2100. height: math.unit(7, "feet"),
  2101. weight: math.unit(100, "kg"),
  2102. name: "Back",
  2103. image: {
  2104. source: "./media/characters/okuri/back.svg",
  2105. extra: 1,
  2106. bottom: 0.007
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Megamacro",
  2113. height: math.unit(100, "miles"),
  2114. default: true
  2115. },
  2116. ]
  2117. ))
  2118. characterMakers.push(() => makeCharacter(
  2119. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2120. {
  2121. front: {
  2122. height: math.unit(7, "feet"),
  2123. weight: math.unit(100, "kg"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/manny/front.svg",
  2127. extra: 1,
  2128. bottom: 0.06
  2129. }
  2130. },
  2131. back: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(100, "kg"),
  2134. name: "Back",
  2135. image: {
  2136. source: "./media/characters/manny/back.svg",
  2137. extra: 1,
  2138. bottom: 0.014
  2139. }
  2140. },
  2141. },
  2142. [
  2143. {
  2144. name: "Normal",
  2145. height: math.unit(7, "feet"),
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(78, "feet"),
  2150. default: true
  2151. },
  2152. {
  2153. name: "Macro+",
  2154. height: math.unit(300, "meters")
  2155. },
  2156. {
  2157. name: "Macro++",
  2158. height: math.unit(2400, "meters")
  2159. },
  2160. {
  2161. name: "Megamacro",
  2162. height: math.unit(5167, "meters")
  2163. },
  2164. {
  2165. name: "Gigamacro",
  2166. height: math.unit(41769, "miles")
  2167. },
  2168. ]
  2169. ))
  2170. characterMakers.push(() => makeCharacter(
  2171. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2172. {
  2173. front: {
  2174. height: math.unit(7, "feet"),
  2175. weight: math.unit(100, "kg"),
  2176. name: "Front",
  2177. image: {
  2178. source: "./media/characters/adake/front-1.svg"
  2179. }
  2180. },
  2181. frontAlt: {
  2182. height: math.unit(7, "feet"),
  2183. weight: math.unit(100, "kg"),
  2184. name: "Front (Alt)",
  2185. image: {
  2186. source: "./media/characters/adake/front-2.svg",
  2187. extra: 1,
  2188. bottom: 0.01
  2189. }
  2190. },
  2191. back: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Back",
  2195. image: {
  2196. source: "./media/characters/adake/back.svg",
  2197. }
  2198. },
  2199. kneel: {
  2200. height: math.unit(5.385, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Kneeling",
  2203. image: {
  2204. source: "./media/characters/adake/kneel.svg",
  2205. bottom: 0.052
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Normal",
  2212. height: math.unit(7, "feet"),
  2213. },
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(78, "feet"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Macro+",
  2221. height: math.unit(300, "meters")
  2222. },
  2223. {
  2224. name: "Macro++",
  2225. height: math.unit(2400, "meters")
  2226. },
  2227. {
  2228. name: "Megamacro",
  2229. height: math.unit(5167, "meters")
  2230. },
  2231. {
  2232. name: "Gigamacro",
  2233. height: math.unit(41769, "miles")
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(1.65, "meters"),
  2242. weight: math.unit(50, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/elijah/front.svg",
  2246. extra: 858 / 830,
  2247. bottom: 95.5 / 953.8559
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(1.65, "meters"),
  2252. weight: math.unit(50, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/elijah/back.svg",
  2256. extra: 895 / 850,
  2257. bottom: 5.3 / 897.956
  2258. }
  2259. },
  2260. frontNsfw: {
  2261. height: math.unit(1.65, "meters"),
  2262. weight: math.unit(50, "kg"),
  2263. name: "Front (NSFW)",
  2264. image: {
  2265. source: "./media/characters/elijah/front-nsfw.svg",
  2266. extra: 858 / 830,
  2267. bottom: 95.5 / 953.8559
  2268. }
  2269. },
  2270. backNsfw: {
  2271. height: math.unit(1.65, "meters"),
  2272. weight: math.unit(50, "kg"),
  2273. name: "Back (NSFW)",
  2274. image: {
  2275. source: "./media/characters/elijah/back-nsfw.svg",
  2276. extra: 895 / 850,
  2277. bottom: 5.3 / 897.956
  2278. }
  2279. },
  2280. dick: {
  2281. height: math.unit(1, "feet"),
  2282. name: "Dick",
  2283. image: {
  2284. source: "./media/characters/elijah/dick.svg"
  2285. }
  2286. },
  2287. beakOpen: {
  2288. height: math.unit(1.25, "feet"),
  2289. name: "Beak (Open)",
  2290. image: {
  2291. source: "./media/characters/elijah/beak-open.svg"
  2292. }
  2293. },
  2294. beakShut: {
  2295. height: math.unit(1.25, "feet"),
  2296. name: "Beak (Shut)",
  2297. image: {
  2298. source: "./media/characters/elijah/beak-shut.svg"
  2299. }
  2300. },
  2301. footFlexing: {
  2302. height: math.unit(1.61, "feet"),
  2303. name: "Foot (Flexing)",
  2304. image: {
  2305. source: "./media/characters/elijah/foot-flexing.svg"
  2306. }
  2307. },
  2308. footStepping: {
  2309. height: math.unit(1.44, "feet"),
  2310. name: "Foot (Stepping)",
  2311. image: {
  2312. source: "./media/characters/elijah/foot-stepping.svg"
  2313. }
  2314. },
  2315. plantigradeLeg: {
  2316. height: math.unit(2.34, "feet"),
  2317. name: "Plantigrade Leg",
  2318. image: {
  2319. source: "./media/characters/elijah/plantigrade-leg.svg"
  2320. }
  2321. },
  2322. plantigradeFootLeft: {
  2323. height: math.unit(0.9, "feet"),
  2324. name: "Plantigrade Foot (Left)",
  2325. image: {
  2326. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2327. }
  2328. },
  2329. plantigradeFootRight: {
  2330. height: math.unit(0.9, "feet"),
  2331. name: "Plantigrade Foot (Right)",
  2332. image: {
  2333. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2334. }
  2335. },
  2336. },
  2337. [
  2338. {
  2339. name: "Normal",
  2340. height: math.unit(1.65, "meters")
  2341. },
  2342. {
  2343. name: "Macro",
  2344. height: math.unit(55, "meters"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "Macro+",
  2349. height: math.unit(105, "meters")
  2350. },
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2355. {
  2356. front: {
  2357. height: math.unit(11, "feet"),
  2358. weight: math.unit(320, "kg"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/rai/front.svg",
  2362. extra: 1802/1696,
  2363. bottom: 68/1870
  2364. }
  2365. },
  2366. frontDressed: {
  2367. height: math.unit(11, "feet"),
  2368. weight: math.unit(320, "kg"),
  2369. name: "Front (Dressed)",
  2370. image: {
  2371. source: "./media/characters/rai/front-dressed.svg",
  2372. extra: 1802/1696,
  2373. bottom: 68/1870
  2374. }
  2375. },
  2376. side: {
  2377. height: math.unit(11, "feet"),
  2378. weight: math.unit(320, "kg"),
  2379. name: "Side",
  2380. image: {
  2381. source: "./media/characters/rai/side.svg",
  2382. extra: 1789/1710,
  2383. bottom: 115/1904
  2384. }
  2385. },
  2386. back: {
  2387. height: math.unit(11, "feet"),
  2388. weight: math.unit(320, "kg"),
  2389. name: "Back",
  2390. image: {
  2391. source: "./media/characters/rai/back.svg",
  2392. extra: 1770/1707,
  2393. bottom: 28/1798
  2394. }
  2395. },
  2396. feral: {
  2397. height: math.unit(11, "feet"),
  2398. weight: math.unit(640, "kg"),
  2399. name: "Feral",
  2400. image: {
  2401. source: "./media/characters/rai/feral.svg",
  2402. extra: 1035/642,
  2403. bottom: 86/1121
  2404. }
  2405. },
  2406. dragon: {
  2407. height: math.unit(23, "feet"),
  2408. weight: math.unit(50000, "lb"),
  2409. name: "Dragon",
  2410. image: {
  2411. source: "./media/characters/rai/dragon.svg",
  2412. extra: 2498 / 2030,
  2413. bottom: 85.2 / 2584
  2414. }
  2415. },
  2416. maw: {
  2417. height: math.unit(6 / 3.81416, "feet"),
  2418. name: "Maw",
  2419. image: {
  2420. source: "./media/characters/rai/maw.svg"
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(11, "feet")
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(302, "feet"),
  2432. default: true
  2433. },
  2434. ]
  2435. ))
  2436. characterMakers.push(() => makeCharacter(
  2437. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2438. {
  2439. frontDressed: {
  2440. height: math.unit(216, "feet"),
  2441. weight: math.unit(7000000, "lb"),
  2442. name: "Front (Dressed)",
  2443. image: {
  2444. source: "./media/characters/jazzy/front-dressed.svg",
  2445. extra: 2738 / 2651,
  2446. bottom: 41.8 / 2786
  2447. }
  2448. },
  2449. backDressed: {
  2450. height: math.unit(216, "feet"),
  2451. weight: math.unit(7000000, "lb"),
  2452. name: "Back (Dressed)",
  2453. image: {
  2454. source: "./media/characters/jazzy/back-dressed.svg",
  2455. extra: 2775 / 2673,
  2456. bottom: 36.8 / 2817
  2457. }
  2458. },
  2459. front: {
  2460. height: math.unit(216, "feet"),
  2461. weight: math.unit(7000000, "lb"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/jazzy/front.svg",
  2465. extra: 2738 / 2651,
  2466. bottom: 41.8 / 2786
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(216, "feet"),
  2471. weight: math.unit(7000000, "lb"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/jazzy/back.svg",
  2475. extra: 2775 / 2673,
  2476. bottom: 36.8 / 2817
  2477. }
  2478. },
  2479. maw: {
  2480. height: math.unit(20, "feet"),
  2481. name: "Maw",
  2482. image: {
  2483. source: "./media/characters/jazzy/maw.svg"
  2484. }
  2485. },
  2486. paws: {
  2487. height: math.unit(27.5, "feet"),
  2488. name: "Paws",
  2489. image: {
  2490. source: "./media/characters/jazzy/paws.svg"
  2491. }
  2492. },
  2493. eye: {
  2494. height: math.unit(4.4, "feet"),
  2495. name: "Eye",
  2496. image: {
  2497. source: "./media/characters/jazzy/eye.svg"
  2498. }
  2499. },
  2500. droneOffense: {
  2501. height: math.unit(9.5, "inches"),
  2502. name: "Drone (Offense)",
  2503. image: {
  2504. source: "./media/characters/jazzy/drone-offense.svg"
  2505. }
  2506. },
  2507. droneRecon: {
  2508. height: math.unit(9.5, "inches"),
  2509. name: "Drone (Recon)",
  2510. image: {
  2511. source: "./media/characters/jazzy/drone-recon.svg"
  2512. }
  2513. },
  2514. droneDefense: {
  2515. height: math.unit(9.5, "inches"),
  2516. name: "Drone (Defense)",
  2517. image: {
  2518. source: "./media/characters/jazzy/drone-defense.svg"
  2519. }
  2520. },
  2521. },
  2522. [
  2523. {
  2524. name: "Macro",
  2525. height: math.unit(216, "feet"),
  2526. default: true
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2532. {
  2533. front: {
  2534. height: math.unit(9 + 6/12, "feet"),
  2535. weight: math.unit(700, "lb"),
  2536. name: "Front",
  2537. image: {
  2538. source: "./media/characters/flamm/front.svg",
  2539. extra: 1751/1632,
  2540. bottom: 46/1797
  2541. }
  2542. },
  2543. buff: {
  2544. height: math.unit(9 + 6/12, "feet"),
  2545. weight: math.unit(950, "lb"),
  2546. name: "Buff",
  2547. image: {
  2548. source: "./media/characters/flamm/buff.svg",
  2549. extra: 3018/2874,
  2550. bottom: 221/3239
  2551. }
  2552. },
  2553. },
  2554. [
  2555. {
  2556. name: "Normal",
  2557. height: math.unit(9.5, "feet")
  2558. },
  2559. {
  2560. name: "Macro",
  2561. height: math.unit(200, "feet"),
  2562. default: true
  2563. },
  2564. ]
  2565. ))
  2566. characterMakers.push(() => makeCharacter(
  2567. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2568. {
  2569. front: {
  2570. height: math.unit(5 + 3/12, "feet"),
  2571. weight: math.unit(60, "kg"),
  2572. name: "Front",
  2573. image: {
  2574. source: "./media/characters/zephiro/front.svg",
  2575. extra: 2309 / 2162,
  2576. bottom: 0.069
  2577. }
  2578. },
  2579. side: {
  2580. height: math.unit(5 + 3/12, "feet"),
  2581. weight: math.unit(60, "kg"),
  2582. name: "Side",
  2583. image: {
  2584. source: "./media/characters/zephiro/side.svg",
  2585. extra: 2403 / 2279,
  2586. bottom: 0.015
  2587. }
  2588. },
  2589. back: {
  2590. height: math.unit(5 + 3/12, "feet"),
  2591. weight: math.unit(60, "kg"),
  2592. name: "Back",
  2593. image: {
  2594. source: "./media/characters/zephiro/back.svg",
  2595. extra: 2373 / 2244,
  2596. bottom: 0.013
  2597. }
  2598. },
  2599. hand: {
  2600. height: math.unit(0.68, "feet"),
  2601. name: "Hand",
  2602. image: {
  2603. source: "./media/characters/zephiro/hand.svg"
  2604. }
  2605. },
  2606. paw: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Paw",
  2609. image: {
  2610. source: "./media/characters/zephiro/paw.svg"
  2611. }
  2612. },
  2613. beans: {
  2614. height: math.unit(0.93, "feet"),
  2615. name: "Beans",
  2616. image: {
  2617. source: "./media/characters/zephiro/beans.svg"
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Micro",
  2624. height: math.unit(3, "inches")
  2625. },
  2626. {
  2627. name: "Normal",
  2628. height: math.unit(5 + 3 / 12, "feet"),
  2629. default: true
  2630. },
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(118, "feet")
  2634. },
  2635. ]
  2636. ))
  2637. characterMakers.push(() => makeCharacter(
  2638. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2639. {
  2640. front: {
  2641. height: math.unit(5, "feet"),
  2642. weight: math.unit(90, "kg"),
  2643. name: "Front",
  2644. image: {
  2645. source: "./media/characters/fory/front.svg",
  2646. extra: 2862 / 2674,
  2647. bottom: 180 / 3043.8
  2648. }
  2649. },
  2650. back: {
  2651. height: math.unit(5, "feet"),
  2652. weight: math.unit(90, "kg"),
  2653. name: "Back",
  2654. image: {
  2655. source: "./media/characters/fory/back.svg",
  2656. extra: 2962 / 2791,
  2657. bottom: 106 / 3071.8
  2658. }
  2659. },
  2660. foot: {
  2661. height: math.unit(2.14, "feet"),
  2662. name: "Foot",
  2663. image: {
  2664. source: "./media/characters/fory/foot.svg"
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(5, "feet")
  2672. },
  2673. {
  2674. name: "Macro",
  2675. height: math.unit(50, "feet"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(10, "miles")
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(5, "earths")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(7, "feet"),
  2693. weight: math.unit(90, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/kurrikage/front.svg",
  2697. extra: 1,
  2698. bottom: 0.035
  2699. }
  2700. },
  2701. back: {
  2702. height: math.unit(7, "feet"),
  2703. weight: math.unit(90, "lb"),
  2704. name: "Back",
  2705. image: {
  2706. source: "./media/characters/kurrikage/back.svg"
  2707. }
  2708. },
  2709. paw: {
  2710. height: math.unit(1.5, "feet"),
  2711. name: "Paw",
  2712. image: {
  2713. source: "./media/characters/kurrikage/paw.svg"
  2714. }
  2715. },
  2716. staff: {
  2717. height: math.unit(6.7, "feet"),
  2718. name: "Staff",
  2719. image: {
  2720. source: "./media/characters/kurrikage/staff.svg"
  2721. }
  2722. },
  2723. peek: {
  2724. height: math.unit(1.05, "feet"),
  2725. name: "Peeking",
  2726. image: {
  2727. source: "./media/characters/kurrikage/peek.svg",
  2728. bottom: 0.08
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(12, "feet"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Big",
  2740. height: math.unit(20, "feet")
  2741. },
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(500, "feet")
  2745. },
  2746. {
  2747. name: "Megamacro",
  2748. height: math.unit(20, "miles")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/shingo/front.svg",
  2761. extra: 1900/1825,
  2762. bottom: 82/1982
  2763. }
  2764. },
  2765. side: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Side",
  2769. image: {
  2770. source: "./media/characters/shingo/side.svg",
  2771. extra: 1930/1865,
  2772. bottom: 16/1946
  2773. }
  2774. },
  2775. back: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Back",
  2779. image: {
  2780. source: "./media/characters/shingo/back.svg",
  2781. extra: 1922/1852,
  2782. bottom: 16/1938
  2783. }
  2784. },
  2785. frontDressed: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(150, "lb"),
  2788. name: "Front-dressed",
  2789. image: {
  2790. source: "./media/characters/shingo/front-dressed.svg",
  2791. extra: 1900/1825,
  2792. bottom: 82/1982
  2793. }
  2794. },
  2795. paw: {
  2796. height: math.unit(1.29, "feet"),
  2797. name: "Paw",
  2798. image: {
  2799. source: "./media/characters/shingo/paw.svg"
  2800. }
  2801. },
  2802. hand: {
  2803. height: math.unit(1.07, "feet"),
  2804. name: "Hand",
  2805. image: {
  2806. source: "./media/characters/shingo/hand.svg"
  2807. }
  2808. },
  2809. frontAlt: {
  2810. height: math.unit(6, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Front (Alt)",
  2813. image: {
  2814. source: "./media/characters/shingo/front-alt.svg",
  2815. extra: 3511 / 3338,
  2816. bottom: 0.005
  2817. }
  2818. },
  2819. frontAlt2: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(75, "kg"),
  2822. name: "Front (Alt 2)",
  2823. image: {
  2824. source: "./media/characters/shingo/front-alt-2.svg",
  2825. extra: 706/681,
  2826. bottom: 11/717
  2827. }
  2828. },
  2829. pawAlt: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw (Alt)",
  2832. image: {
  2833. source: "./media/characters/shingo/paw-alt.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Micro",
  2840. height: math.unit(4, "inches")
  2841. },
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(6, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Macro",
  2849. height: math.unit(108, "feet")
  2850. },
  2851. {
  2852. name: "Macro+",
  2853. height: math.unit(1500, "feet")
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2859. {
  2860. side: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/aigey/side.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(200, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(100, "miles")
  2878. },
  2879. ]
  2880. )
  2881. )
  2882. characterMakers.push(() => makeCharacter(
  2883. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2884. {
  2885. front: {
  2886. height: math.unit(5 + 5 / 12, "feet"),
  2887. weight: math.unit(75, "kg"),
  2888. name: "Front",
  2889. image: {
  2890. source: "./media/characters/natasha/front.svg",
  2891. extra: 859 / 824,
  2892. bottom: 23 / 879.6
  2893. }
  2894. },
  2895. frontNsfw: {
  2896. height: math.unit(5 + 5 / 12, "feet"),
  2897. weight: math.unit(75, "kg"),
  2898. name: "Front (NSFW)",
  2899. image: {
  2900. source: "./media/characters/natasha/front-nsfw.svg",
  2901. extra: 859 / 824,
  2902. bottom: 23 / 879.6
  2903. }
  2904. },
  2905. frontErect: {
  2906. height: math.unit(5 + 5 / 12, "feet"),
  2907. weight: math.unit(75, "kg"),
  2908. name: "Front (Erect)",
  2909. image: {
  2910. source: "./media/characters/natasha/front-erect.svg",
  2911. extra: 859 / 824,
  2912. bottom: 23 / 879.6
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(5 + 5 / 12, "feet"),
  2917. weight: math.unit(75, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/natasha/back.svg",
  2921. extra: 887.9 / 852.6,
  2922. bottom: 9.7 / 896.4
  2923. }
  2924. },
  2925. backAlt: {
  2926. height: math.unit(5 + 5 / 12, "feet"),
  2927. weight: math.unit(75, "kg"),
  2928. name: "Back (Alt)",
  2929. image: {
  2930. source: "./media/characters/natasha/back-alt.svg",
  2931. extra: 1236.7 / 1192,
  2932. bottom: 22.3 / 1258.2
  2933. }
  2934. },
  2935. dick: {
  2936. height: math.unit(1.772, "feet"),
  2937. name: "Dick",
  2938. image: {
  2939. source: "./media/characters/natasha/dick.svg"
  2940. }
  2941. },
  2942. paw: {
  2943. height: math.unit(0.250, "meters"),
  2944. name: "Paw",
  2945. image: {
  2946. source: "./media/characters/natasha/paw.svg"
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(5 + 5 / 12, "feet")
  2954. },
  2955. {
  2956. name: "Large",
  2957. height: math.unit(12, "feet")
  2958. },
  2959. {
  2960. name: "Macro",
  2961. height: math.unit(100, "feet"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Macro+",
  2966. height: math.unit(260, "feet")
  2967. },
  2968. {
  2969. name: "Macro++",
  2970. height: math.unit(1, "mile")
  2971. },
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(6, "feet"),
  2979. weight: math.unit(75, "kg"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/malik/front.svg"
  2983. }
  2984. },
  2985. side: {
  2986. height: math.unit(6, "feet"),
  2987. weight: math.unit(75, "kg"),
  2988. name: "Side",
  2989. image: {
  2990. source: "./media/characters/malik/side.svg",
  2991. extra: 1.1539
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/malik/back.svg"
  3000. }
  3001. },
  3002. },
  3003. [
  3004. {
  3005. name: "Macro",
  3006. height: math.unit(156, "feet"),
  3007. default: true
  3008. },
  3009. {
  3010. name: "Macro+",
  3011. height: math.unit(1188, "feet")
  3012. },
  3013. ]
  3014. ))
  3015. characterMakers.push(() => makeCharacter(
  3016. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3017. {
  3018. front: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Front",
  3022. image: {
  3023. source: "./media/characters/sefer/front.svg",
  3024. extra: 848 / 659,
  3025. bottom: 28.3 / 876.442
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/sefer/back.svg",
  3034. extra: 864 / 695,
  3035. bottom: 10 / 871
  3036. }
  3037. },
  3038. frontDressed: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Front (Dressed)",
  3042. image: {
  3043. source: "./media/characters/sefer/front-dressed.svg",
  3044. extra: 839 / 653,
  3045. bottom: 37.6 / 878
  3046. }
  3047. },
  3048. },
  3049. [
  3050. {
  3051. name: "Normal",
  3052. height: math.unit(6, "feet"),
  3053. default: true
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3059. {
  3060. body: {
  3061. height: math.unit(2.2428, "meter"),
  3062. weight: math.unit(124.738, "kg"),
  3063. name: "Body",
  3064. image: {
  3065. extra: 1225 / 1050,
  3066. source: "./media/characters/north/front.svg"
  3067. }
  3068. }
  3069. },
  3070. [
  3071. {
  3072. name: "Micro",
  3073. height: math.unit(4, "inches")
  3074. },
  3075. {
  3076. name: "Macro",
  3077. height: math.unit(63, "meters")
  3078. },
  3079. {
  3080. name: "Megamacro",
  3081. height: math.unit(101, "miles"),
  3082. default: true
  3083. }
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3088. {
  3089. angled: {
  3090. height: math.unit(4, "meter"),
  3091. weight: math.unit(150, "kg"),
  3092. name: "Angled",
  3093. image: {
  3094. source: "./media/characters/talan/angled-sfw.svg",
  3095. bottom: 29 / 3734
  3096. }
  3097. },
  3098. angledNsfw: {
  3099. height: math.unit(4, "meter"),
  3100. weight: math.unit(150, "kg"),
  3101. name: "Angled (NSFW)",
  3102. image: {
  3103. source: "./media/characters/talan/angled-nsfw.svg",
  3104. bottom: 29 / 3734
  3105. }
  3106. },
  3107. frontNsfw: {
  3108. height: math.unit(4, "meter"),
  3109. weight: math.unit(150, "kg"),
  3110. name: "Front (NSFW)",
  3111. image: {
  3112. source: "./media/characters/talan/front-nsfw.svg",
  3113. bottom: 29 / 3734
  3114. }
  3115. },
  3116. sideNsfw: {
  3117. height: math.unit(4, "meter"),
  3118. weight: math.unit(150, "kg"),
  3119. name: "Side (NSFW)",
  3120. image: {
  3121. source: "./media/characters/talan/side-nsfw.svg",
  3122. bottom: 29 / 3734
  3123. }
  3124. },
  3125. back: {
  3126. height: math.unit(4, "meter"),
  3127. weight: math.unit(150, "kg"),
  3128. name: "Back",
  3129. image: {
  3130. source: "./media/characters/talan/back.svg"
  3131. }
  3132. },
  3133. dickBottom: {
  3134. height: math.unit(0.621, "meter"),
  3135. name: "Dick (Bottom)",
  3136. image: {
  3137. source: "./media/characters/talan/dick-bottom.svg"
  3138. }
  3139. },
  3140. dickTop: {
  3141. height: math.unit(0.621, "meter"),
  3142. name: "Dick (Top)",
  3143. image: {
  3144. source: "./media/characters/talan/dick-top.svg"
  3145. }
  3146. },
  3147. dickSide: {
  3148. height: math.unit(0.305, "meter"),
  3149. name: "Dick (Side)",
  3150. image: {
  3151. source: "./media/characters/talan/dick-side.svg"
  3152. }
  3153. },
  3154. dickFront: {
  3155. height: math.unit(0.305, "meter"),
  3156. name: "Dick (Front)",
  3157. image: {
  3158. source: "./media/characters/talan/dick-front.svg"
  3159. }
  3160. },
  3161. },
  3162. [
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(4, "meters")
  3166. },
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(100, "meters")
  3170. },
  3171. {
  3172. name: "Megamacro",
  3173. height: math.unit(2, "miles"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Gigamacro",
  3178. height: math.unit(5000, "miles")
  3179. },
  3180. {
  3181. name: "Teramacro",
  3182. height: math.unit(100, "parsecs")
  3183. }
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(90, "kg"),
  3192. name: "Front",
  3193. image: {
  3194. source: "./media/characters/gael'rathus/front.svg"
  3195. }
  3196. },
  3197. frontAlt: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(90, "kg"),
  3200. name: "Front (alt)",
  3201. image: {
  3202. source: "./media/characters/gael'rathus/front-alt.svg"
  3203. }
  3204. },
  3205. frontAlt2: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(90, "kg"),
  3208. name: "Front (alt 2)",
  3209. image: {
  3210. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3211. }
  3212. }
  3213. },
  3214. [
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(9, "feet"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Large",
  3222. height: math.unit(25, "feet")
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(0.25, "miles")
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(10, "miles")
  3231. }
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3236. {
  3237. side: {
  3238. height: math.unit(2, "meter"),
  3239. weight: math.unit(140, "kg"),
  3240. name: "Side",
  3241. image: {
  3242. source: "./media/characters/sosha/side.svg",
  3243. bottom: 0.042
  3244. }
  3245. },
  3246. },
  3247. [
  3248. {
  3249. name: "Normal",
  3250. height: math.unit(12, "feet"),
  3251. default: true
  3252. }
  3253. ]
  3254. ))
  3255. characterMakers.push(() => makeCharacter(
  3256. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3257. {
  3258. side: {
  3259. height: math.unit(5 + 5 / 12, "feet"),
  3260. weight: math.unit(170, "kg"),
  3261. name: "Side",
  3262. image: {
  3263. source: "./media/characters/runnola/side.svg",
  3264. extra: 741 / 448,
  3265. bottom: 0.05
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Small",
  3272. height: math.unit(3, "feet")
  3273. },
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(5 + 5 / 12, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Big",
  3281. height: math.unit(10, "feet")
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(50, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/kurribird/front.svg",
  3294. bottom: 0.015
  3295. }
  3296. },
  3297. frontAlt: {
  3298. height: math.unit(1.5, "meter"),
  3299. weight: math.unit(50, "kg"),
  3300. name: "Front (Alt)",
  3301. image: {
  3302. source: "./media/characters/kurribird/front-alt.svg",
  3303. extra: 1.45
  3304. }
  3305. },
  3306. },
  3307. [
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(7, "feet")
  3311. },
  3312. {
  3313. name: "Big",
  3314. height: math.unit(12, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(1500, "feet")
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(2, "miles")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/elbial/front.svg",
  3336. extra: 1643 / 1556,
  3337. bottom: 60.2 / 1696
  3338. }
  3339. },
  3340. side: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(80, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/elbial/side.svg",
  3346. extra: 1630 / 1565,
  3347. bottom: 71.5 / 1697
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(80, "kg"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/elbial/back.svg",
  3356. extra: 1668 / 1595,
  3357. bottom: 5.6 / 1672
  3358. }
  3359. },
  3360. frontDressed: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(80, "kg"),
  3363. name: "Front (Dressed)",
  3364. image: {
  3365. source: "./media/characters/elbial/front-dressed.svg",
  3366. extra: 1653 / 1584,
  3367. bottom: 57 / 1708
  3368. }
  3369. },
  3370. genitals: {
  3371. height: math.unit(2 / 3.367, "meter"),
  3372. name: "Genitals",
  3373. image: {
  3374. source: "./media/characters/elbial/genitals.svg"
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Large",
  3381. height: math.unit(100, "feet")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(500, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(10, "miles")
  3391. },
  3392. {
  3393. name: "Gigamacro",
  3394. height: math.unit(25000, "miles")
  3395. },
  3396. {
  3397. name: "Full-Size",
  3398. height: math.unit(8000000, "gigaparsecs")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(60, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/noah/front.svg"
  3411. }
  3412. },
  3413. talons: {
  3414. height: math.unit(0.315, "meter"),
  3415. name: "Talons",
  3416. image: {
  3417. source: "./media/characters/noah/talons.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Large",
  3424. height: math.unit(50, "feet")
  3425. },
  3426. {
  3427. name: "Macro",
  3428. height: math.unit(750, "feet"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Megamacro",
  3433. height: math.unit(50, "miles")
  3434. },
  3435. {
  3436. name: "Gigamacro",
  3437. height: math.unit(100000, "miles")
  3438. },
  3439. {
  3440. name: "Full-Size",
  3441. height: math.unit(3000000000, "miles")
  3442. }
  3443. ]
  3444. ))
  3445. characterMakers.push(() => makeCharacter(
  3446. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3447. {
  3448. front: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(80, "kg"),
  3451. name: "Front",
  3452. image: {
  3453. source: "./media/characters/natalya/front.svg"
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(2, "meter"),
  3458. weight: math.unit(80, "kg"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/natalya/back.svg"
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(150, "feet"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Megamacro",
  3473. height: math.unit(5, "miles")
  3474. },
  3475. {
  3476. name: "Full-Size",
  3477. height: math.unit(600, "kiloparsecs")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(50, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/erestrebah/front.svg",
  3490. extra: 208 / 193,
  3491. bottom: 0.055
  3492. }
  3493. },
  3494. back: {
  3495. height: math.unit(2, "meter"),
  3496. weight: math.unit(50, "kg"),
  3497. name: "Back",
  3498. image: {
  3499. source: "./media/characters/erestrebah/back.svg",
  3500. extra: 1.3
  3501. }
  3502. }
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(10, "feet")
  3508. },
  3509. {
  3510. name: "Large",
  3511. height: math.unit(50, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(300, "feet")
  3517. },
  3518. {
  3519. name: "Macro+",
  3520. height: math.unit(750, "feet")
  3521. },
  3522. {
  3523. name: "Megamacro",
  3524. height: math.unit(3, "miles")
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/jennifer/front.svg",
  3537. bottom: 0.11,
  3538. extra: 1.16
  3539. }
  3540. },
  3541. frontAlt: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(80, "kg"),
  3544. name: "Front (Alt)",
  3545. image: {
  3546. source: "./media/characters/jennifer/front-alt.svg"
  3547. }
  3548. }
  3549. },
  3550. [
  3551. {
  3552. name: "Canon Height",
  3553. height: math.unit(120, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro+",
  3558. height: math.unit(300, "feet")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(20000, "feet")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(50, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/kalista/front.svg",
  3575. extra: 1947 / 1700,
  3576. bottom: 76.6 / 1412.98
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/kalista/back.svg",
  3585. extra: 1366 / 1156,
  3586. bottom: 33.9 / 1362.78
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Uncomfortably Small",
  3593. height: math.unit(10, "feet")
  3594. },
  3595. {
  3596. name: "Small",
  3597. height: math.unit(30, "feet")
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(100, "feet"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Macro+",
  3606. height: math.unit(2000, "feet")
  3607. },
  3608. {
  3609. name: "True Form",
  3610. height: math.unit(8924, "miles")
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(120, "kg"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/ggv/front.svg"
  3623. }
  3624. },
  3625. side: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(120, "kg"),
  3628. name: "Side",
  3629. image: {
  3630. source: "./media/characters/ggv/side.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Extremely Puny",
  3637. height: math.unit(9 + 5 / 12, "feet")
  3638. },
  3639. {
  3640. name: "Horribly Small",
  3641. height: math.unit(47.7, "miles"),
  3642. default: true
  3643. },
  3644. {
  3645. name: "Reasonably Sized",
  3646. height: math.unit(25000, "parsecs")
  3647. },
  3648. {
  3649. name: "Slightly Uncompressed",
  3650. height: math.unit(7.77e31, "parsecs")
  3651. },
  3652. {
  3653. name: "Omniversal",
  3654. height: math.unit(1e300, "meters")
  3655. },
  3656. ]
  3657. ))
  3658. characterMakers.push(() => makeCharacter(
  3659. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3660. {
  3661. front: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(75, "lb"),
  3664. name: "Front",
  3665. image: {
  3666. source: "./media/characters/napalm/front.svg"
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(75, "lb"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/napalm/back.svg"
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Standard",
  3681. height: math.unit(55, "feet"),
  3682. default: true
  3683. }
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(7 + 5 / 6, "feet"),
  3691. weight: math.unit(325, "lb"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/asana/front.svg",
  3695. extra: 1133 / 1060,
  3696. bottom: 15.2 / 1148.6
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(7 + 5 / 6, "feet"),
  3701. weight: math.unit(325, "lb"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/asana/back.svg",
  3705. extra: 1114 / 1043,
  3706. bottom: 5 / 1120
  3707. }
  3708. },
  3709. dressedDark: {
  3710. height: math.unit(7 + 5 / 6, "feet"),
  3711. weight: math.unit(325, "lb"),
  3712. name: "Dressed (Dark)",
  3713. image: {
  3714. source: "./media/characters/asana/dressed-dark.svg",
  3715. extra: 1133 / 1060,
  3716. bottom: 15.2 / 1148.6
  3717. }
  3718. },
  3719. dressedLight: {
  3720. height: math.unit(7 + 5 / 6, "feet"),
  3721. weight: math.unit(325, "lb"),
  3722. name: "Dressed (Light)",
  3723. image: {
  3724. source: "./media/characters/asana/dressed-light.svg",
  3725. extra: 1133 / 1060,
  3726. bottom: 15.2 / 1148.6
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Standard",
  3733. height: math.unit(7 + 5 / 6, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Large",
  3738. height: math.unit(10, "meters")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(2500, "meters")
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(5e6, "meters")
  3747. },
  3748. {
  3749. name: "Examacro",
  3750. height: math.unit(5e12, "lightyears")
  3751. },
  3752. {
  3753. name: "Max Size",
  3754. height: math.unit(1e31, "lightyears")
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(60, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/ebony/front.svg",
  3767. bottom: 0.03,
  3768. extra: 1045 / 810 + 0.03
  3769. }
  3770. },
  3771. side: {
  3772. height: math.unit(2, "meter"),
  3773. weight: math.unit(60, "kg"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/ebony/side.svg",
  3777. bottom: 0.03,
  3778. extra: 1045 / 810 + 0.03
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(2, "meter"),
  3783. weight: math.unit(60, "kg"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/ebony/back.svg",
  3787. bottom: 0.01,
  3788. extra: 1045 / 810 + 0.01
  3789. }
  3790. },
  3791. },
  3792. [
  3793. // TODO check why I did this lol
  3794. {
  3795. name: "Standard",
  3796. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3797. default: true
  3798. },
  3799. {
  3800. name: "Macro",
  3801. height: math.unit(200, "feet")
  3802. },
  3803. {
  3804. name: "Gigamacro",
  3805. height: math.unit(13000, "km")
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(6, "feet"),
  3814. weight: math.unit(175, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/mountain/front.svg",
  3818. extra: 972 / 955,
  3819. bottom: 64 / 1036.6
  3820. }
  3821. },
  3822. back: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(175, "lb"),
  3825. name: "Back",
  3826. image: {
  3827. source: "./media/characters/mountain/back.svg",
  3828. extra: 970 / 950,
  3829. bottom: 28.25 / 999
  3830. }
  3831. },
  3832. },
  3833. [
  3834. {
  3835. name: "Large",
  3836. height: math.unit(20, "meters")
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(300, "meters")
  3841. },
  3842. {
  3843. name: "Gigamacro",
  3844. height: math.unit(10000, "km"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Examacro",
  3849. height: math.unit(10e9, "lightyears")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(8, "feet"),
  3858. weight: math.unit(500, "lb"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/rick/front.svg"
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(8, "feet"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Macro",
  3873. height: math.unit(5, "km")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3879. {
  3880. front: {
  3881. height: math.unit(8, "feet"),
  3882. weight: math.unit(120, "lb"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/ona/front.svg"
  3886. }
  3887. },
  3888. frontAlt: {
  3889. height: math.unit(8, "feet"),
  3890. weight: math.unit(120, "lb"),
  3891. name: "Front (Alt)",
  3892. image: {
  3893. source: "./media/characters/ona/front-alt.svg"
  3894. }
  3895. },
  3896. back: {
  3897. height: math.unit(8, "feet"),
  3898. weight: math.unit(120, "lb"),
  3899. name: "Back",
  3900. image: {
  3901. source: "./media/characters/ona/back.svg"
  3902. }
  3903. },
  3904. foot: {
  3905. height: math.unit(1.1, "feet"),
  3906. name: "Foot",
  3907. image: {
  3908. source: "./media/characters/ona/foot.svg"
  3909. }
  3910. }
  3911. },
  3912. [
  3913. {
  3914. name: "Megamacro",
  3915. height: math.unit(70, "km"),
  3916. default: true
  3917. },
  3918. {
  3919. name: "Gigamacro",
  3920. height: math.unit(681818, "miles")
  3921. },
  3922. {
  3923. name: "Examacro",
  3924. height: math.unit(3800000, "lightyears")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3930. {
  3931. front: {
  3932. height: math.unit(12, "feet"),
  3933. weight: math.unit(3000, "lb"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/mech/front.svg",
  3937. extra: 2900 / 2770,
  3938. bottom: 110 / 3010
  3939. }
  3940. },
  3941. back: {
  3942. height: math.unit(12, "feet"),
  3943. weight: math.unit(3000, "lb"),
  3944. name: "Back",
  3945. image: {
  3946. source: "./media/characters/mech/back.svg",
  3947. extra: 3011 / 2890,
  3948. bottom: 94 / 3105
  3949. }
  3950. },
  3951. maw: {
  3952. height: math.unit(3.07, "feet"),
  3953. name: "Maw",
  3954. image: {
  3955. source: "./media/characters/mech/maw.svg"
  3956. }
  3957. },
  3958. head: {
  3959. height: math.unit(2.82, "feet"),
  3960. name: "Head",
  3961. image: {
  3962. source: "./media/characters/mech/head.svg"
  3963. }
  3964. },
  3965. dick: {
  3966. height: math.unit(1.43, "feet"),
  3967. name: "Dick",
  3968. image: {
  3969. source: "./media/characters/mech/dick.svg"
  3970. }
  3971. },
  3972. },
  3973. [
  3974. {
  3975. name: "Normal",
  3976. height: math.unit(12, "feet")
  3977. },
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(300, "feet"),
  3981. default: true
  3982. },
  3983. {
  3984. name: "Macro+",
  3985. height: math.unit(1500, "feet")
  3986. },
  3987. ]
  3988. ))
  3989. characterMakers.push(() => makeCharacter(
  3990. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3991. {
  3992. front: {
  3993. height: math.unit(1.3, "meter"),
  3994. weight: math.unit(30, "kg"),
  3995. name: "Front",
  3996. image: {
  3997. source: "./media/characters/gregory/front.svg",
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Normal",
  4004. height: math.unit(1.3, "meter"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(20, "meter")
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(2.8, "meter"),
  4018. weight: math.unit(200, "kg"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/elory/front.svg",
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(2.8, "meter"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(38, "meter")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(470, "feet"),
  4042. weight: math.unit(924, "tons"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/angelpatamon/front.svg",
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Normal",
  4052. height: math.unit(470, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Deity Size I",
  4057. height: math.unit(28651.2, "km")
  4058. },
  4059. {
  4060. name: "Deity Size II",
  4061. height: math.unit(171907.2, "km")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4067. {
  4068. side: {
  4069. height: math.unit(7.2, "meter"),
  4070. weight: math.unit(8.2, "tons"),
  4071. name: "Side",
  4072. image: {
  4073. source: "./media/characters/cryae/side.svg",
  4074. extra: 3500 / 1500
  4075. }
  4076. }
  4077. },
  4078. [
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(7.2, "meter"),
  4082. default: true
  4083. }
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(175, "lb"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/xera/front.svg",
  4095. extra: 2377 / 1972,
  4096. bottom: 75.5 / 2452
  4097. }
  4098. },
  4099. side: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(175, "lb"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/xera/side.svg",
  4105. extra: 2345 / 2019,
  4106. bottom: 39.7 / 2384
  4107. }
  4108. },
  4109. back: {
  4110. height: math.unit(6, "feet"),
  4111. weight: math.unit(175, "lb"),
  4112. name: "Back",
  4113. image: {
  4114. source: "./media/characters/xera/back.svg",
  4115. extra: 2095 / 1984,
  4116. bottom: 67 / 2166
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "Small",
  4123. height: math.unit(10, "feet")
  4124. },
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(500, "meters"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Macro+",
  4132. height: math.unit(10, "km")
  4133. },
  4134. {
  4135. name: "Gigamacro",
  4136. height: math.unit(25000, "km")
  4137. },
  4138. {
  4139. name: "Teramacro",
  4140. height: math.unit(3e6, "km")
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(6, "feet"),
  4149. weight: math.unit(175, "lb"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/nebula/front.svg",
  4153. extra: 2566 / 2362,
  4154. bottom: 81 / 2644
  4155. }
  4156. }
  4157. },
  4158. [
  4159. {
  4160. name: "Small",
  4161. height: math.unit(4.5, "meters")
  4162. },
  4163. {
  4164. name: "Macro",
  4165. height: math.unit(1500, "meters"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Megamacro",
  4170. height: math.unit(150, "km")
  4171. },
  4172. {
  4173. name: "Gigamacro",
  4174. height: math.unit(27000, "km")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(225, "lb"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/abysgar/front.svg"
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Small",
  4193. height: math.unit(4.5, "meters")
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(1250, "meters"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Megamacro",
  4202. height: math.unit(125, "km")
  4203. },
  4204. {
  4205. name: "Gigamacro",
  4206. height: math.unit(26000, "km")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(6, "feet"),
  4215. weight: math.unit(180, "lb"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/yakuz/front.svg"
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Small",
  4225. height: math.unit(5, "meters")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(1500, "meters"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Megamacro",
  4234. height: math.unit(200, "km")
  4235. },
  4236. {
  4237. name: "Gigamacro",
  4238. height: math.unit(100000, "km")
  4239. }
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(6, "feet"),
  4247. weight: math.unit(175, "lb"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/mirova/front.svg",
  4251. extra: 3334 / 3071,
  4252. bottom: 42 / 3375.6
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Small",
  4259. height: math.unit(5, "meters")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(900, "meters"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Megamacro",
  4268. height: math.unit(135, "km")
  4269. },
  4270. {
  4271. name: "Gigamacro",
  4272. height: math.unit(20000, "km")
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4278. {
  4279. side: {
  4280. height: math.unit(28.35, "feet"),
  4281. weight: math.unit(99.75, "tons"),
  4282. name: "Side",
  4283. image: {
  4284. source: "./media/characters/asana-mech/side.svg",
  4285. extra: 923 / 699,
  4286. bottom: 50 / 975
  4287. }
  4288. },
  4289. chaingun: {
  4290. height: math.unit(7, "feet"),
  4291. weight: math.unit(2400, "lb"),
  4292. name: "Chaingun",
  4293. image: {
  4294. source: "./media/characters/asana-mech/chaingun.svg"
  4295. }
  4296. },
  4297. laser: {
  4298. height: math.unit(7.12, "feet"),
  4299. weight: math.unit(2000, "lb"),
  4300. name: "Laser",
  4301. image: {
  4302. source: "./media/characters/asana-mech/laser.svg"
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(28.35, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Macro",
  4314. height: math.unit(2500, "feet")
  4315. },
  4316. {
  4317. name: "Megamacro",
  4318. height: math.unit(25, "miles")
  4319. },
  4320. {
  4321. name: "Examacro",
  4322. height: math.unit(6e8, "lightyears")
  4323. },
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4328. {
  4329. front: {
  4330. height: math.unit(5, "meters"),
  4331. weight: math.unit(1000, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/asche/front.svg",
  4335. extra: 1258 / 1190,
  4336. bottom: 47 / 1305
  4337. }
  4338. },
  4339. frontUnderwear: {
  4340. height: math.unit(5, "meters"),
  4341. weight: math.unit(1000, "kg"),
  4342. name: "Front (Underwear)",
  4343. image: {
  4344. source: "./media/characters/asche/front-underwear.svg",
  4345. extra: 1258 / 1190,
  4346. bottom: 47 / 1305
  4347. }
  4348. },
  4349. frontDressed: {
  4350. height: math.unit(5, "meters"),
  4351. weight: math.unit(1000, "kg"),
  4352. name: "Front (Dressed)",
  4353. image: {
  4354. source: "./media/characters/asche/front-dressed.svg",
  4355. extra: 1258 / 1190,
  4356. bottom: 47 / 1305
  4357. }
  4358. },
  4359. frontArmor: {
  4360. height: math.unit(5, "meters"),
  4361. weight: math.unit(1000, "kg"),
  4362. name: "Front (Armored)",
  4363. image: {
  4364. source: "./media/characters/asche/front-armored.svg",
  4365. extra: 1374 / 1308,
  4366. bottom: 23 / 1397
  4367. }
  4368. },
  4369. mp724: {
  4370. height: math.unit(0.96, "meters"),
  4371. weight: math.unit(38, "kg"),
  4372. name: "H&K MP724",
  4373. image: {
  4374. source: "./media/characters/asche/h&k-mp724.svg"
  4375. }
  4376. },
  4377. side: {
  4378. height: math.unit(5, "meters"),
  4379. weight: math.unit(1000, "kg"),
  4380. name: "Side",
  4381. image: {
  4382. source: "./media/characters/asche/side.svg",
  4383. extra: 1717 / 1609,
  4384. bottom: 0.005
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(5, "meters"),
  4389. weight: math.unit(1000, "kg"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/asche/back.svg",
  4393. extra: 1570 / 1501
  4394. }
  4395. },
  4396. },
  4397. [
  4398. {
  4399. name: "DEFCON 5",
  4400. height: math.unit(5, "meters")
  4401. },
  4402. {
  4403. name: "DEFCON 4",
  4404. height: math.unit(500, "meters"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "DEFCON 3",
  4409. height: math.unit(5, "km")
  4410. },
  4411. {
  4412. name: "DEFCON 2",
  4413. height: math.unit(500, "km")
  4414. },
  4415. {
  4416. name: "DEFCON 1",
  4417. height: math.unit(500000, "km")
  4418. },
  4419. {
  4420. name: "DEFCON 0",
  4421. height: math.unit(3, "gigaparsecs")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/gale/front.svg"
  4434. }
  4435. },
  4436. frontAlt1: {
  4437. height: math.unit(2, "meters"),
  4438. weight: math.unit(76, "kg"),
  4439. name: "Front (Alt 1)",
  4440. image: {
  4441. source: "./media/characters/gale/front-alt-1.svg"
  4442. }
  4443. },
  4444. frontAlt2: {
  4445. height: math.unit(2, "meters"),
  4446. weight: math.unit(76, "kg"),
  4447. name: "Front (Alt 2)",
  4448. image: {
  4449. source: "./media/characters/gale/front-alt-2.svg"
  4450. }
  4451. },
  4452. },
  4453. [
  4454. {
  4455. name: "Normal",
  4456. height: math.unit(7, "feet")
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(150, "feet"),
  4461. default: true
  4462. },
  4463. {
  4464. name: "Macro+",
  4465. height: math.unit(300, "feet")
  4466. },
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(2, "meters"),
  4474. weight: math.unit(76, "kg"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/draylen/front.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Macro",
  4484. height: math.unit(150, "feet"),
  4485. default: true
  4486. }
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4491. {
  4492. front: {
  4493. height: math.unit(7 + 9 / 12, "feet"),
  4494. weight: math.unit(379, "lbs"),
  4495. name: "Front",
  4496. image: {
  4497. source: "./media/characters/chez/front.svg"
  4498. }
  4499. },
  4500. side: {
  4501. height: math.unit(7 + 9 / 12, "feet"),
  4502. weight: math.unit(379, "lbs"),
  4503. name: "Side",
  4504. image: {
  4505. source: "./media/characters/chez/side.svg"
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Normal",
  4512. height: math.unit(7 + 9 / 12, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "God King",
  4517. height: math.unit(9750000, "meters")
  4518. }
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4523. {
  4524. front: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(275, "lbs"),
  4527. name: "Front",
  4528. image: {
  4529. source: "./media/characters/kaylum/front.svg",
  4530. bottom: 0.01,
  4531. extra: 1166 / 1031
  4532. }
  4533. },
  4534. frontWingless: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(275, "lbs"),
  4537. name: "Front (Wingless)",
  4538. image: {
  4539. source: "./media/characters/kaylum/front-wingless.svg",
  4540. bottom: 0.01,
  4541. extra: 1117 / 1031
  4542. }
  4543. }
  4544. },
  4545. [
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(3.05, "meters")
  4549. },
  4550. {
  4551. name: "Master",
  4552. height: math.unit(5.5, "meters")
  4553. },
  4554. {
  4555. name: "Rampage",
  4556. height: math.unit(19, "meters")
  4557. },
  4558. {
  4559. name: "Macro Lite",
  4560. height: math.unit(37, "meters")
  4561. },
  4562. {
  4563. name: "Hyper Predator",
  4564. height: math.unit(61, "meters")
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(138, "meters"),
  4569. default: true
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(150, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/geta/front.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Micro",
  4588. height: math.unit(3, "inches"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Normal",
  4593. height: math.unit(5 + 5 / 12, "feet")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(300, "lbs"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/tyrnn/front.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Main Height",
  4612. height: math.unit(355, "feet"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Fave. Height",
  4617. height: math.unit(2400, "feet")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(300, "lbs"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/appledectomy/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(2500, "feet")
  4637. },
  4638. {
  4639. name: "Megamacro",
  4640. height: math.unit(50, "miles"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Gigamacro",
  4645. height: math.unit(5000, "miles")
  4646. },
  4647. {
  4648. name: "Teramacro",
  4649. height: math.unit(250000, "miles")
  4650. },
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4655. {
  4656. front: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(200, "lbs"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/vulpes/front.svg",
  4662. extra: 573 / 543,
  4663. bottom: 0.033
  4664. }
  4665. },
  4666. side: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(200, "lbs"),
  4669. name: "Side",
  4670. image: {
  4671. source: "./media/characters/vulpes/side.svg",
  4672. extra: 577 / 549,
  4673. bottom: 11 / 588
  4674. }
  4675. },
  4676. back: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(200, "lbs"),
  4679. name: "Back",
  4680. image: {
  4681. source: "./media/characters/vulpes/back.svg",
  4682. extra: 573 / 549,
  4683. bottom: 20 / 593
  4684. }
  4685. },
  4686. feet: {
  4687. height: math.unit(1.276, "feet"),
  4688. name: "Feet",
  4689. image: {
  4690. source: "./media/characters/vulpes/feet.svg"
  4691. }
  4692. },
  4693. maw: {
  4694. height: math.unit(1.18, "feet"),
  4695. name: "Maw",
  4696. image: {
  4697. source: "./media/characters/vulpes/maw.svg"
  4698. }
  4699. },
  4700. },
  4701. [
  4702. {
  4703. name: "Micro",
  4704. height: math.unit(2, "inches")
  4705. },
  4706. {
  4707. name: "Normal",
  4708. height: math.unit(6.3, "feet")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(850, "feet")
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(7500, "feet"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Gigamacro",
  4721. height: math.unit(570000, "miles")
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(210, "lbs"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/rain-fallen/front.svg"
  4734. }
  4735. },
  4736. side: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(210, "lbs"),
  4739. name: "Side",
  4740. image: {
  4741. source: "./media/characters/rain-fallen/side.svg"
  4742. }
  4743. },
  4744. back: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(210, "lbs"),
  4747. name: "Back",
  4748. image: {
  4749. source: "./media/characters/rain-fallen/back.svg"
  4750. }
  4751. },
  4752. feral: {
  4753. height: math.unit(9, "feet"),
  4754. weight: math.unit(700, "lbs"),
  4755. name: "Feral",
  4756. image: {
  4757. source: "./media/characters/rain-fallen/feral.svg"
  4758. }
  4759. },
  4760. },
  4761. [
  4762. {
  4763. name: "Meddling with Mortals",
  4764. height: math.unit(8 + 8/12, "feet")
  4765. },
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(5, "meter")
  4769. },
  4770. {
  4771. name: "Macro",
  4772. height: math.unit(150, "meter"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Megamacro",
  4777. height: math.unit(278e6, "meter")
  4778. },
  4779. {
  4780. name: "Gigamacro",
  4781. height: math.unit(2e9, "meter")
  4782. },
  4783. {
  4784. name: "Teramacro",
  4785. height: math.unit(8e12, "meter")
  4786. },
  4787. {
  4788. name: "Devourer",
  4789. height: math.unit(14, "zettameters")
  4790. },
  4791. {
  4792. name: "Scarlet King",
  4793. height: math.unit(18, "yottameters")
  4794. },
  4795. {
  4796. name: "Void",
  4797. height: math.unit(1e88, "yottameters")
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4803. {
  4804. standing: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(180, "lbs"),
  4807. name: "Standing",
  4808. image: {
  4809. source: "./media/characters/zaakira/standing.svg",
  4810. extra: 1599/1504,
  4811. bottom: 39/1638
  4812. }
  4813. },
  4814. laying: {
  4815. height: math.unit(3, "feet"),
  4816. weight: math.unit(180, "lbs"),
  4817. name: "Laying",
  4818. image: {
  4819. source: "./media/characters/zaakira/laying.svg"
  4820. }
  4821. },
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(12, "feet")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(279, "feet"),
  4831. default: true
  4832. }
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4837. {
  4838. femSfw: {
  4839. height: math.unit(8, "feet"),
  4840. weight: math.unit(350, "lb"),
  4841. name: "Fem",
  4842. image: {
  4843. source: "./media/characters/sigvald/fem-sfw.svg",
  4844. extra: 182 / 164,
  4845. bottom: 8.7 / 190.5
  4846. }
  4847. },
  4848. femNsfw: {
  4849. height: math.unit(8, "feet"),
  4850. weight: math.unit(350, "lb"),
  4851. name: "Fem (NSFW)",
  4852. image: {
  4853. source: "./media/characters/sigvald/fem-nsfw.svg",
  4854. extra: 182 / 164,
  4855. bottom: 8.7 / 190.5
  4856. }
  4857. },
  4858. maleNsfw: {
  4859. height: math.unit(8, "feet"),
  4860. weight: math.unit(350, "lb"),
  4861. name: "Male (NSFW)",
  4862. image: {
  4863. source: "./media/characters/sigvald/male-nsfw.svg",
  4864. extra: 182 / 164,
  4865. bottom: 8.7 / 190.5
  4866. }
  4867. },
  4868. hermNsfw: {
  4869. height: math.unit(8, "feet"),
  4870. weight: math.unit(350, "lb"),
  4871. name: "Herm (NSFW)",
  4872. image: {
  4873. source: "./media/characters/sigvald/herm-nsfw.svg",
  4874. extra: 182 / 164,
  4875. bottom: 8.7 / 190.5
  4876. }
  4877. },
  4878. dick: {
  4879. height: math.unit(2.36, "feet"),
  4880. name: "Dick",
  4881. image: {
  4882. source: "./media/characters/sigvald/dick.svg"
  4883. }
  4884. },
  4885. eye: {
  4886. height: math.unit(0.31, "feet"),
  4887. name: "Eye",
  4888. image: {
  4889. source: "./media/characters/sigvald/eye.svg"
  4890. }
  4891. },
  4892. mouth: {
  4893. height: math.unit(0.92, "feet"),
  4894. name: "Mouth",
  4895. image: {
  4896. source: "./media/characters/sigvald/mouth.svg"
  4897. }
  4898. },
  4899. paws: {
  4900. height: math.unit(2.2, "feet"),
  4901. name: "Paws",
  4902. image: {
  4903. source: "./media/characters/sigvald/paws.svg"
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(8, "feet")
  4911. },
  4912. {
  4913. name: "Large",
  4914. height: math.unit(12, "feet")
  4915. },
  4916. {
  4917. name: "Larger",
  4918. height: math.unit(20, "feet")
  4919. },
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(150, "feet")
  4923. },
  4924. {
  4925. name: "Macro+",
  4926. height: math.unit(200, "feet"),
  4927. default: true
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4933. {
  4934. side: {
  4935. height: math.unit(12, "feet"),
  4936. weight: math.unit(2000, "kg"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/scott/side.svg",
  4940. extra: 754 / 724,
  4941. bottom: 0.069
  4942. }
  4943. },
  4944. upright: {
  4945. height: math.unit(12, "feet"),
  4946. weight: math.unit(2000, "kg"),
  4947. name: "Upright",
  4948. image: {
  4949. source: "./media/characters/scott/upright.svg",
  4950. extra: 3881 / 3722,
  4951. bottom: 0.05
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Normal",
  4958. height: math.unit(12, "feet"),
  4959. default: true
  4960. },
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4965. {
  4966. side: {
  4967. height: math.unit(8, "meters"),
  4968. weight: math.unit(84755, "lbs"),
  4969. name: "Side",
  4970. image: {
  4971. source: "./media/characters/tobias/side.svg",
  4972. extra: 1474 / 1096,
  4973. bottom: 38.9 / 1513.1235
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(8, "meters"),
  4981. default: true
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4987. {
  4988. front: {
  4989. height: math.unit(5.5, "feet"),
  4990. weight: math.unit(400, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/kieran/front.svg",
  4994. extra: 2694 / 2364,
  4995. bottom: 217 / 2908
  4996. }
  4997. },
  4998. side: {
  4999. height: math.unit(5.5, "feet"),
  5000. weight: math.unit(400, "lbs"),
  5001. name: "Side",
  5002. image: {
  5003. source: "./media/characters/kieran/side.svg",
  5004. extra: 875 / 777,
  5005. bottom: 84.6 / 959
  5006. }
  5007. },
  5008. },
  5009. [
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(5.5, "feet"),
  5013. default: true
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5019. {
  5020. side: {
  5021. height: math.unit(2, "meters"),
  5022. weight: math.unit(70, "kg"),
  5023. name: "Side",
  5024. image: {
  5025. source: "./media/characters/sanya/side.svg",
  5026. bottom: 0.02,
  5027. extra: 1.02
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Small",
  5034. height: math.unit(2, "meters")
  5035. },
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(3, "meters")
  5039. },
  5040. {
  5041. name: "Macro",
  5042. height: math.unit(16, "meters"),
  5043. default: true
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(120, "kg"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/miranda/front.svg",
  5056. extra: 195 / 185,
  5057. bottom: 10.9 / 206.5
  5058. }
  5059. },
  5060. back: {
  5061. height: math.unit(2, "meters"),
  5062. weight: math.unit(120, "kg"),
  5063. name: "Back",
  5064. image: {
  5065. source: "./media/characters/miranda/back.svg",
  5066. extra: 201 / 193,
  5067. bottom: 2.3 / 203.7
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(10, "feet"),
  5075. default: true
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "James", species: ["deer"], tags: ["anthro"] },
  5081. {
  5082. side: {
  5083. height: math.unit(2, "meters"),
  5084. weight: math.unit(100, "kg"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/james/front.svg",
  5088. extra: 10 / 8.5
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(8.5, "feet"),
  5096. default: true
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5102. {
  5103. side: {
  5104. height: math.unit(9.5, "feet"),
  5105. weight: math.unit(2500, "lbs"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/heather/side.svg"
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(9.5, "feet"),
  5116. default: true
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5122. {
  5123. side: {
  5124. height: math.unit(6.5, "feet"),
  5125. weight: math.unit(400, "lbs"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/lukas/side.svg",
  5129. extra: 7.25 / 6.5
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(6.5, "feet"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5143. {
  5144. side: {
  5145. height: math.unit(5, "feet"),
  5146. weight: math.unit(3000, "lbs"),
  5147. name: "Side",
  5148. image: {
  5149. source: "./media/characters/louise/side.svg"
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(5, "feet"),
  5157. default: true
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5163. {
  5164. side: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(150, "lbs"),
  5167. name: "Side",
  5168. image: {
  5169. source: "./media/characters/ramona/side.svg"
  5170. }
  5171. },
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(5.3, "meters"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(20, "stories")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(50, "stories")
  5186. },
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5191. {
  5192. standing: {
  5193. height: math.unit(5.75, "feet"),
  5194. weight: math.unit(160, "lbs"),
  5195. name: "Standing",
  5196. image: {
  5197. source: "./media/characters/deerpuff/standing.svg",
  5198. extra: 682 / 624
  5199. }
  5200. },
  5201. sitting: {
  5202. height: math.unit(5.75 / 1.79, "feet"),
  5203. weight: math.unit(160, "lbs"),
  5204. name: "Sitting",
  5205. image: {
  5206. source: "./media/characters/deerpuff/sitting.svg",
  5207. bottom: 44 / 400,
  5208. extra: 1
  5209. }
  5210. },
  5211. taurLaying: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(400, "lbs"),
  5214. name: "Taur (Laying)",
  5215. image: {
  5216. source: "./media/characters/deerpuff/taur-laying.svg"
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Puffball",
  5223. height: math.unit(6, "inches")
  5224. },
  5225. {
  5226. name: "Normalpuff",
  5227. height: math.unit(5.75, "feet")
  5228. },
  5229. {
  5230. name: "Macropuff",
  5231. height: math.unit(1500, "feet"),
  5232. default: true
  5233. },
  5234. {
  5235. name: "Megapuff",
  5236. height: math.unit(500, "miles")
  5237. },
  5238. {
  5239. name: "Gigapuff",
  5240. height: math.unit(250000, "miles")
  5241. },
  5242. {
  5243. name: "Omegapuff",
  5244. height: math.unit(1000, "lightyears")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5250. {
  5251. stomping: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(170, "lbs"),
  5254. name: "Stomping",
  5255. image: {
  5256. source: "./media/characters/vivian/stomping.svg"
  5257. }
  5258. },
  5259. sitting: {
  5260. height: math.unit(6 / 1.75, "feet"),
  5261. weight: math.unit(170, "lbs"),
  5262. name: "Sitting",
  5263. image: {
  5264. source: "./media/characters/vivian/sitting.svg",
  5265. bottom: 1 / 6.4,
  5266. extra: 1,
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(7, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(10, "stories")
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(30, "stories")
  5283. },
  5284. {
  5285. name: "Megamacro",
  5286. height: math.unit(10, "miles")
  5287. },
  5288. {
  5289. name: "Megamacro+",
  5290. height: math.unit(2750000, "meters")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/prince/front.svg",
  5303. extra: 3400 / 3000
  5304. }
  5305. },
  5306. jumping: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(160, "lbs"),
  5309. name: "Jumping",
  5310. image: {
  5311. source: "./media/characters/prince/jump.svg",
  5312. extra: 2555 / 2134
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Normal",
  5319. height: math.unit(7.75, "feet"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Not cute",
  5324. height: math.unit(17, "feet")
  5325. },
  5326. {
  5327. name: "I said NOT",
  5328. height: math.unit(91, "feet")
  5329. },
  5330. {
  5331. name: "Please stop",
  5332. height: math.unit(560, "feet")
  5333. },
  5334. {
  5335. name: "What have you done",
  5336. height: math.unit(2200, "feet")
  5337. },
  5338. {
  5339. name: "Deer God",
  5340. height: math.unit(3.6, "miles")
  5341. },
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5346. {
  5347. standing: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(300, "lbs"),
  5350. name: "Standing",
  5351. image: {
  5352. source: "./media/characters/psymon/standing.svg",
  5353. extra: 1888 / 1810,
  5354. bottom: 0.05
  5355. }
  5356. },
  5357. slithering: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(300, "lbs"),
  5360. name: "Slithering",
  5361. image: {
  5362. source: "./media/characters/psymon/slithering.svg",
  5363. extra: 1330 / 1224
  5364. }
  5365. },
  5366. slitheringAlt: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(300, "lbs"),
  5369. name: "Slithering (Alt)",
  5370. image: {
  5371. source: "./media/characters/psymon/slithering-alt.svg",
  5372. extra: 1330 / 1224
  5373. }
  5374. },
  5375. },
  5376. [
  5377. {
  5378. name: "Normal",
  5379. height: math.unit(11.25, "feet"),
  5380. default: true
  5381. },
  5382. {
  5383. name: "Large",
  5384. height: math.unit(27, "feet")
  5385. },
  5386. {
  5387. name: "Giant",
  5388. height: math.unit(87, "feet")
  5389. },
  5390. {
  5391. name: "Macro",
  5392. height: math.unit(365, "feet")
  5393. },
  5394. {
  5395. name: "Megamacro",
  5396. height: math.unit(3, "miles")
  5397. },
  5398. {
  5399. name: "World Serpent",
  5400. height: math.unit(8000, "miles")
  5401. },
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5406. {
  5407. front: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Front",
  5411. image: {
  5412. source: "./media/characters/daimos/front.svg",
  5413. extra: 4160 / 3897,
  5414. bottom: 0.021
  5415. }
  5416. }
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(8, "feet"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Big Dog",
  5426. height: math.unit(22, "feet")
  5427. },
  5428. {
  5429. name: "Macro",
  5430. height: math.unit(127, "feet")
  5431. },
  5432. {
  5433. name: "Megamacro",
  5434. height: math.unit(3600, "feet")
  5435. },
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5440. {
  5441. side: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/blake/side.svg",
  5447. extra: 1212 / 1120,
  5448. bottom: 0.05
  5449. }
  5450. },
  5451. crouched: {
  5452. height: math.unit(6 * 0.57, "feet"),
  5453. weight: math.unit(180, "lbs"),
  5454. name: "Crouched",
  5455. image: {
  5456. source: "./media/characters/blake/crouched.svg",
  5457. extra: 840 / 587,
  5458. bottom: 0.04
  5459. }
  5460. },
  5461. bent: {
  5462. height: math.unit(6 * 0.75, "feet"),
  5463. weight: math.unit(180, "lbs"),
  5464. name: "Bent",
  5465. image: {
  5466. source: "./media/characters/blake/bent.svg",
  5467. extra: 592 / 544,
  5468. bottom: 0.035
  5469. }
  5470. },
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(8 + 1 / 6, "feet"),
  5476. default: true
  5477. },
  5478. {
  5479. name: "Big Backside",
  5480. height: math.unit(37, "feet")
  5481. },
  5482. {
  5483. name: "Subway Shredder",
  5484. height: math.unit(72, "feet")
  5485. },
  5486. {
  5487. name: "City Carver",
  5488. height: math.unit(1675, "feet")
  5489. },
  5490. {
  5491. name: "Tectonic Tweaker",
  5492. height: math.unit(2300, "miles")
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5498. {
  5499. front: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(180, "lbs"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/guisetto/front.svg",
  5505. extra: 856 / 817,
  5506. bottom: 0.06
  5507. }
  5508. },
  5509. airborne: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(180, "lbs"),
  5512. name: "Airborne",
  5513. image: {
  5514. source: "./media/characters/guisetto/airborne.svg",
  5515. extra: 584 / 525
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(10 + 11 / 12, "feet"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Large",
  5527. height: math.unit(35, "feet")
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(475, "feet")
  5532. },
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(180, "lbs"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/luxor/front.svg",
  5544. extra: 2940 / 2152
  5545. }
  5546. },
  5547. back: {
  5548. height: math.unit(6, "feet"),
  5549. weight: math.unit(180, "lbs"),
  5550. name: "Back",
  5551. image: {
  5552. source: "./media/characters/luxor/back.svg",
  5553. extra: 1083 / 960
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(5 + 5 / 6, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Lamp",
  5565. height: math.unit(50, "feet")
  5566. },
  5567. {
  5568. name: "Lämp",
  5569. height: math.unit(300, "feet")
  5570. },
  5571. {
  5572. name: "The sun is a lamp",
  5573. height: math.unit(250000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(50, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/huoyan/front.svg"
  5586. }
  5587. },
  5588. side: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(180, "lbs"),
  5591. name: "Side",
  5592. image: {
  5593. source: "./media/characters/huoyan/side.svg"
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Chef",
  5600. height: math.unit(9, "feet")
  5601. },
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(65, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(780, "feet")
  5610. },
  5611. {
  5612. name: "Flaming Mountain",
  5613. height: math.unit(4.8, "miles")
  5614. },
  5615. {
  5616. name: "Celestial",
  5617. height: math.unit(765000, "miles")
  5618. },
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(5 + 3 / 4, "feet"),
  5626. weight: math.unit(120, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/tails/front.svg"
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(5 + 3 / 4, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(4, "feet"),
  5646. weight: math.unit(50, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/rainy/front.svg"
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(800, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(150, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/rainier/front.svg"
  5670. }
  5671. }
  5672. },
  5673. [
  5674. {
  5675. name: "Micro",
  5676. height: math.unit(2, "mm"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(8 + 4/12, "feet"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/andy-renard/front.svg",
  5689. extra: 1839/1726,
  5690. bottom: 134/1973
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(8 + 4/12, "feet"),
  5695. name: "Back",
  5696. image: {
  5697. source: "./media/characters/andy-renard/back.svg",
  5698. extra: 1838/1710,
  5699. bottom: 105/1943
  5700. }
  5701. },
  5702. },
  5703. [
  5704. {
  5705. name: "Tall",
  5706. height: math.unit(8 + 4/12, "feet")
  5707. },
  5708. {
  5709. name: "Mini Macro",
  5710. height: math.unit(15, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Macro",
  5715. height: math.unit(100, "feet")
  5716. },
  5717. {
  5718. name: "Mega Macro",
  5719. height: math.unit(1000, "feet")
  5720. },
  5721. {
  5722. name: "Giga Macro",
  5723. height: math.unit(10, "miles")
  5724. },
  5725. {
  5726. name: "God Macro",
  5727. height: math.unit(1, "multiverse")
  5728. },
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5733. {
  5734. front: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(210, "lbs"),
  5737. name: "Front",
  5738. image: {
  5739. source: "./media/characters/cimmaron/front-sfw.svg",
  5740. extra: 701 / 676,
  5741. bottom: 0.046
  5742. }
  5743. },
  5744. back: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(210, "lbs"),
  5747. name: "Back",
  5748. image: {
  5749. source: "./media/characters/cimmaron/back-sfw.svg",
  5750. extra: 701 / 676,
  5751. bottom: 0.046
  5752. }
  5753. },
  5754. frontNsfw: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(210, "lbs"),
  5757. name: "Front (NSFW)",
  5758. image: {
  5759. source: "./media/characters/cimmaron/front-nsfw.svg",
  5760. extra: 701 / 676,
  5761. bottom: 0.046
  5762. }
  5763. },
  5764. backNsfw: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(210, "lbs"),
  5767. name: "Back (NSFW)",
  5768. image: {
  5769. source: "./media/characters/cimmaron/back-nsfw.svg",
  5770. extra: 701 / 676,
  5771. bottom: 0.046
  5772. }
  5773. },
  5774. dick: {
  5775. height: math.unit(1.714, "feet"),
  5776. name: "Dick",
  5777. image: {
  5778. source: "./media/characters/cimmaron/dick.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(6, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro Mayor",
  5790. height: math.unit(350, "meters")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(200, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/akari/front.svg",
  5803. extra: 962 / 901,
  5804. bottom: 0.04
  5805. }
  5806. }
  5807. },
  5808. [
  5809. {
  5810. name: "Micro",
  5811. height: math.unit(5, "inches"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(7, "feet")
  5817. },
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5822. {
  5823. front: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(140, "lbs"),
  5826. name: "Front",
  5827. image: {
  5828. source: "./media/characters/cynosura/front.svg",
  5829. extra: 896 / 847
  5830. }
  5831. },
  5832. back: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(140, "lbs"),
  5835. name: "Back",
  5836. image: {
  5837. source: "./media/characters/cynosura/back.svg",
  5838. extra: 1365 / 1250
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Micro",
  5845. height: math.unit(4, "inches")
  5846. },
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(5.75, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Tall",
  5854. height: math.unit(10, "feet")
  5855. },
  5856. {
  5857. name: "Big",
  5858. height: math.unit(20, "feet")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(50, "feet")
  5863. },
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(13 + 2/12, "feet"),
  5871. weight: math.unit(800, "kg"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/gin/front.svg",
  5875. extra: 1312/1191,
  5876. bottom: 45/1357
  5877. }
  5878. },
  5879. mouth: {
  5880. height: math.unit(2.39 * 1.8, "feet"),
  5881. name: "Mouth",
  5882. image: {
  5883. source: "./media/characters/gin/mouth.svg"
  5884. }
  5885. },
  5886. hand: {
  5887. height: math.unit(1.57 * 2.19, "feet"),
  5888. name: "Hand",
  5889. image: {
  5890. source: "./media/characters/gin/hand.svg"
  5891. }
  5892. },
  5893. foot: {
  5894. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5895. name: "Foot",
  5896. image: {
  5897. source: "./media/characters/gin/foot.svg"
  5898. }
  5899. },
  5900. sole: {
  5901. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5902. name: "Sole",
  5903. image: {
  5904. source: "./media/characters/gin/sole.svg"
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Very Small",
  5911. height: math.unit(13 + 2 / 12, "feet")
  5912. },
  5913. {
  5914. name: "Micro",
  5915. height: math.unit(600, "miles")
  5916. },
  5917. {
  5918. name: "Regular",
  5919. height: math.unit(20, "earths"),
  5920. default: true
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(2.2, "solarradii")
  5925. },
  5926. {
  5927. name: "Teramacro",
  5928. height: math.unit(1.2, "galaxies")
  5929. },
  5930. {
  5931. name: "Omegamacro",
  5932. height: math.unit(200, "universes")
  5933. },
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5938. {
  5939. front: {
  5940. height: math.unit(6 + 1 / 6, "feet"),
  5941. weight: math.unit(178, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/guy/front.svg"
  5945. }
  5946. }
  5947. },
  5948. [
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(6 + 1 / 6, "feet"),
  5952. default: true
  5953. },
  5954. {
  5955. name: "Large",
  5956. height: math.unit(25 + 7 / 12, "feet")
  5957. },
  5958. {
  5959. name: "Macro",
  5960. height: math.unit(60 + 9 / 12, "feet")
  5961. },
  5962. {
  5963. name: "Macro+",
  5964. height: math.unit(246, "feet")
  5965. },
  5966. {
  5967. name: "Macro++",
  5968. height: math.unit(878, "feet")
  5969. }
  5970. ]
  5971. ))
  5972. characterMakers.push(() => makeCharacter(
  5973. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5974. {
  5975. front: {
  5976. height: math.unit(9, "feet"),
  5977. weight: math.unit(800, "lbs"),
  5978. name: "Front",
  5979. image: {
  5980. source: "./media/characters/tiberius/front.svg",
  5981. extra: 2295 / 2071
  5982. }
  5983. },
  5984. back: {
  5985. height: math.unit(9, "feet"),
  5986. weight: math.unit(800, "lbs"),
  5987. name: "Back",
  5988. image: {
  5989. source: "./media/characters/tiberius/back.svg",
  5990. extra: 2373 / 2160
  5991. }
  5992. },
  5993. },
  5994. [
  5995. {
  5996. name: "Normal",
  5997. height: math.unit(9, "feet"),
  5998. default: true
  5999. }
  6000. ]
  6001. ))
  6002. characterMakers.push(() => makeCharacter(
  6003. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6004. {
  6005. front: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(600, "lbs"),
  6008. name: "Front",
  6009. image: {
  6010. source: "./media/characters/surgo/front.svg",
  6011. extra: 3591 / 2227
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(600, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/surgo/back.svg",
  6020. extra: 3557 / 2228
  6021. }
  6022. },
  6023. laying: {
  6024. height: math.unit(6 * 0.85, "feet"),
  6025. weight: math.unit(600, "lbs"),
  6026. name: "Laying",
  6027. image: {
  6028. source: "./media/characters/surgo/laying.svg"
  6029. }
  6030. },
  6031. },
  6032. [
  6033. {
  6034. name: "Normal",
  6035. height: math.unit(6, "feet"),
  6036. default: true
  6037. }
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6042. {
  6043. side: {
  6044. height: math.unit(6, "feet"),
  6045. weight: math.unit(150, "lbs"),
  6046. name: "Side",
  6047. image: {
  6048. source: "./media/characters/cibus/side.svg",
  6049. extra: 800 / 400
  6050. }
  6051. },
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6, "feet"),
  6057. default: true
  6058. }
  6059. ]
  6060. ))
  6061. characterMakers.push(() => makeCharacter(
  6062. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6063. {
  6064. front: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(240, "lbs"),
  6067. name: "Front",
  6068. image: {
  6069. source: "./media/characters/nibbles/front.svg"
  6070. }
  6071. },
  6072. side: {
  6073. height: math.unit(6, "feet"),
  6074. weight: math.unit(240, "lbs"),
  6075. name: "Side",
  6076. image: {
  6077. source: "./media/characters/nibbles/side.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(9, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6091. {
  6092. side: {
  6093. height: math.unit(5 + 1 / 6, "feet"),
  6094. weight: math.unit(130, "lbs"),
  6095. name: "Side",
  6096. image: {
  6097. source: "./media/characters/rikky/side.svg",
  6098. extra: 851 / 801
  6099. }
  6100. },
  6101. },
  6102. [
  6103. {
  6104. name: "Normal",
  6105. height: math.unit(5 + 1 / 6, "feet")
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(152, "feet"),
  6110. default: true
  6111. },
  6112. {
  6113. name: "Megamacro",
  6114. height: math.unit(7, "miles")
  6115. }
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6120. {
  6121. side: {
  6122. height: math.unit(370, "cm"),
  6123. weight: math.unit(350, "lbs"),
  6124. name: "Side",
  6125. image: {
  6126. source: "./media/characters/malfressa/side.svg"
  6127. }
  6128. },
  6129. walking: {
  6130. height: math.unit(370, "cm"),
  6131. weight: math.unit(350, "lbs"),
  6132. name: "Walking",
  6133. image: {
  6134. source: "./media/characters/malfressa/walking.svg"
  6135. }
  6136. },
  6137. feral: {
  6138. height: math.unit(2500, "cm"),
  6139. weight: math.unit(100000, "lbs"),
  6140. name: "Feral",
  6141. image: {
  6142. source: "./media/characters/malfressa/feral.svg",
  6143. extra: 2108 / 837,
  6144. bottom: 0.02
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(370, "cm")
  6152. },
  6153. {
  6154. name: "Macro",
  6155. height: math.unit(300, "meters"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(60, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/jaro/front.svg"
  6169. }
  6170. },
  6171. back: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(60, "kg"),
  6174. name: "Back",
  6175. image: {
  6176. source: "./media/characters/jaro/back.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Micro",
  6183. height: math.unit(7, "inches")
  6184. },
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(5.5, "feet"),
  6188. default: true
  6189. },
  6190. {
  6191. name: "Minimacro",
  6192. height: math.unit(20, "feet")
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(200, "meters")
  6197. }
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(195, "lb"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/rogue/front.svg"
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(90, "feet"),
  6216. default: true
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(5 + 8 / 12, "feet"),
  6225. weight: math.unit(140, "lb"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/piper/front.svg",
  6229. extra: 3948/3655,
  6230. bottom: 0/3948
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Micro",
  6237. height: math.unit(2, "inches")
  6238. },
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(5 + 8 / 12, "feet")
  6242. },
  6243. {
  6244. name: "Macro",
  6245. height: math.unit(250, "feet"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Megamacro",
  6250. height: math.unit(7, "miles")
  6251. },
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(220, "lb"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/gemini/front.svg"
  6263. }
  6264. },
  6265. back: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(220, "lb"),
  6268. name: "Back",
  6269. image: {
  6270. source: "./media/characters/gemini/back.svg"
  6271. }
  6272. },
  6273. kneeling: {
  6274. height: math.unit(6 / 1.5, "feet"),
  6275. weight: math.unit(220, "lb"),
  6276. name: "Kneeling",
  6277. image: {
  6278. source: "./media/characters/gemini/kneeling.svg",
  6279. bottom: 0.02
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(300, "meters"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(6900, "meters")
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6297. {
  6298. anthro: {
  6299. height: math.unit(2.35, "meters"),
  6300. weight: math.unit(73, "kg"),
  6301. name: "Anthro",
  6302. image: {
  6303. source: "./media/characters/alicia/anthro.svg",
  6304. extra: 2571 / 2385,
  6305. bottom: 75 / 2648
  6306. }
  6307. },
  6308. paw: {
  6309. height: math.unit(1.32, "feet"),
  6310. name: "Paw",
  6311. image: {
  6312. source: "./media/characters/alicia/paw.svg"
  6313. }
  6314. },
  6315. feral: {
  6316. height: math.unit(1.69, "meters"),
  6317. weight: math.unit(73, "kg"),
  6318. name: "Feral",
  6319. image: {
  6320. source: "./media/characters/alicia/feral.svg",
  6321. extra: 2123 / 1715,
  6322. bottom: 222 / 2349
  6323. }
  6324. },
  6325. },
  6326. [
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(2.35, "meters")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(60, "meters"),
  6334. default: true
  6335. },
  6336. {
  6337. name: "Megamacro",
  6338. height: math.unit(10000, "kilometers")
  6339. },
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(7, "feet"),
  6347. weight: math.unit(250, "lbs"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/archy/front.svg"
  6351. }
  6352. }
  6353. },
  6354. [
  6355. {
  6356. name: "Micro",
  6357. height: math.unit(1, "inch")
  6358. },
  6359. {
  6360. name: "Shorty",
  6361. height: math.unit(5, "feet")
  6362. },
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(7, "feet")
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(600, "meters"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Megamacro",
  6374. height: math.unit(1, "mile")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6380. {
  6381. front: {
  6382. height: math.unit(1.65, "meters"),
  6383. weight: math.unit(74, "kg"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/berri/front.svg",
  6387. extra: 857 / 837,
  6388. bottom: 18 / 877
  6389. }
  6390. },
  6391. bum: {
  6392. height: math.unit(1.46, "feet"),
  6393. name: "Bum",
  6394. image: {
  6395. source: "./media/characters/berri/bum.svg"
  6396. }
  6397. },
  6398. mouth: {
  6399. height: math.unit(0.44, "feet"),
  6400. name: "Mouth",
  6401. image: {
  6402. source: "./media/characters/berri/mouth.svg"
  6403. }
  6404. },
  6405. paw: {
  6406. height: math.unit(0.826, "feet"),
  6407. name: "Paw",
  6408. image: {
  6409. source: "./media/characters/berri/paw.svg"
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(1.65, "meters")
  6417. },
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(60, "m"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Megamacro",
  6425. height: math.unit(9.213, "km")
  6426. },
  6427. {
  6428. name: "Planet Eater",
  6429. height: math.unit(489, "megameters")
  6430. },
  6431. {
  6432. name: "Teramacro",
  6433. height: math.unit(2471635000000, "meters")
  6434. },
  6435. {
  6436. name: "Examacro",
  6437. height: math.unit(8.0624e+26, "meters")
  6438. }
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(1.72, "meters"),
  6446. weight: math.unit(68, "kg"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/lexi/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Very Smol",
  6456. height: math.unit(10, "mm")
  6457. },
  6458. {
  6459. name: "Micro",
  6460. height: math.unit(6.8, "cm"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(1.72, "m")
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(1.69, "meters"),
  6474. weight: math.unit(68, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/martin/front.svg",
  6478. extra: 596 / 581
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(6.85, "cm"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(1.69, "m")
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(1.69, "meters"),
  6499. weight: math.unit(68, "kg"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/juno/front.svg"
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Micro",
  6509. height: math.unit(7, "cm")
  6510. },
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(1.89, "m")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(353, "meters"),
  6518. default: true
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(1.93, "meters"),
  6527. weight: math.unit(83, "kg"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/samantha/front.svg"
  6531. }
  6532. },
  6533. frontClothed: {
  6534. height: math.unit(1.93, "meters"),
  6535. weight: math.unit(83, "kg"),
  6536. name: "Front (Clothed)",
  6537. image: {
  6538. source: "./media/characters/samantha/front-clothed.svg"
  6539. }
  6540. },
  6541. back: {
  6542. height: math.unit(1.93, "meters"),
  6543. weight: math.unit(83, "kg"),
  6544. name: "Back",
  6545. image: {
  6546. source: "./media/characters/samantha/back.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.93, "m")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(74, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro+",
  6562. height: math.unit(223, "meters"),
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(8381, "meters"),
  6567. },
  6568. {
  6569. name: "Megamacro+",
  6570. height: math.unit(12000, "kilometers")
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(1.92, "meters"),
  6579. weight: math.unit(80, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/dr-clay/front.svg"
  6583. }
  6584. },
  6585. frontClothed: {
  6586. height: math.unit(1.92, "meters"),
  6587. weight: math.unit(80, "kg"),
  6588. name: "Front (Clothed)",
  6589. image: {
  6590. source: "./media/characters/dr-clay/front-clothed.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(1.92, "m")
  6598. },
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(214, "meters"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Macro+",
  6606. height: math.unit(12.237, "meters"),
  6607. },
  6608. {
  6609. name: "Megamacro",
  6610. height: math.unit(557, "megameters"),
  6611. },
  6612. {
  6613. name: "Unimaginable",
  6614. height: math.unit(120e9, "lightyears")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(2, "meters"),
  6623. weight: math.unit(80, "kg"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Teramacro",
  6633. height: math.unit(500000, "lightyears"),
  6634. default: true
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6640. {
  6641. crux: {
  6642. height: math.unit(2, "meters"),
  6643. weight: math.unit(150, "kg"),
  6644. name: "Crux",
  6645. image: {
  6646. source: "./media/characters/vemus/crux.svg",
  6647. extra: 1074/936,
  6648. bottom: 23/1097
  6649. }
  6650. },
  6651. skunkTanuki: {
  6652. height: math.unit(2, "meters"),
  6653. weight: math.unit(150, "kg"),
  6654. name: "Skunk-Tanuki",
  6655. image: {
  6656. source: "./media/characters/vemus/skunk-tanuki.svg",
  6657. extra: 926/893,
  6658. bottom: 20/946
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(3.75, "meters"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Big",
  6670. height: math.unit(8, "meters")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(100, "meters")
  6675. },
  6676. {
  6677. name: "Macro+",
  6678. height: math.unit(1500, "meters")
  6679. },
  6680. {
  6681. name: "Stellar",
  6682. height: math.unit(14e8, "meters")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(2, "meters"),
  6691. weight: math.unit(70, "kg"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/beherit/front.svg",
  6695. extra: 1408 / 1242
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(6, "feet")
  6703. },
  6704. {
  6705. name: "Lorg",
  6706. height: math.unit(25, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Lorger",
  6711. height: math.unit(75, "feet")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(200, "meters")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(2, "meters"),
  6724. weight: math.unit(150, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/everett/front.svg",
  6728. extra: 2038 / 1737,
  6729. bottom: 0.03
  6730. }
  6731. },
  6732. paw: {
  6733. height: math.unit(2 / 3.6, "meters"),
  6734. name: "Paw",
  6735. image: {
  6736. source: "./media/characters/everett/paw.svg"
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(15, "feet"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Lorg",
  6748. height: math.unit(70, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Lorger",
  6753. height: math.unit(250, "feet")
  6754. },
  6755. {
  6756. name: "Macro",
  6757. height: math.unit(500, "meters")
  6758. },
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6763. {
  6764. front: {
  6765. height: math.unit(2, "meters"),
  6766. weight: math.unit(86, "kg"),
  6767. name: "Front",
  6768. image: {
  6769. source: "./media/characters/rose/front.svg",
  6770. extra: 1785/1636,
  6771. bottom: 30/1815
  6772. }
  6773. },
  6774. frontSporty: {
  6775. height: math.unit(2, "meters"),
  6776. weight: math.unit(86, "kg"),
  6777. name: "Front (Sporty)",
  6778. image: {
  6779. source: "./media/characters/rose/front-sporty.svg",
  6780. extra: 350/335,
  6781. bottom: 10/360
  6782. }
  6783. },
  6784. frontAlt: {
  6785. height: math.unit(1.6, "meters"),
  6786. weight: math.unit(86, "kg"),
  6787. name: "Front (Alt)",
  6788. image: {
  6789. source: "./media/characters/rose/front-alt.svg",
  6790. extra: 299/283,
  6791. bottom: 3/302
  6792. }
  6793. },
  6794. plush: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(86/3, "kg"),
  6797. name: "Plush",
  6798. image: {
  6799. source: "./media/characters/rose/plush.svg",
  6800. extra: 361/337,
  6801. bottom: 11/372
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "True Micro",
  6808. height: math.unit(9, "cm")
  6809. },
  6810. {
  6811. name: "Micro",
  6812. height: math.unit(16, "cm")
  6813. },
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(1.85, "meters"),
  6817. default: true
  6818. },
  6819. {
  6820. name: "Mini-Macro",
  6821. height: math.unit(5, "meters")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(15, "meters")
  6826. },
  6827. {
  6828. name: "True Macro",
  6829. height: math.unit(40, "meters")
  6830. },
  6831. {
  6832. name: "City Scale",
  6833. height: math.unit(1, "km")
  6834. },
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(2, "meters"),
  6842. weight: math.unit(350, "lbs"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/regal/front.svg"
  6846. }
  6847. },
  6848. back: {
  6849. height: math.unit(2, "meters"),
  6850. weight: math.unit(350, "lbs"),
  6851. name: "Back",
  6852. image: {
  6853. source: "./media/characters/regal/back.svg"
  6854. }
  6855. },
  6856. },
  6857. [
  6858. {
  6859. name: "Macro",
  6860. height: math.unit(350, "feet"),
  6861. default: true
  6862. }
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(4 + 11 / 12, "feet"),
  6870. weight: math.unit(100, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/opal/front.svg"
  6874. }
  6875. },
  6876. frontAlt: {
  6877. height: math.unit(4 + 11 / 12, "feet"),
  6878. weight: math.unit(100, "lbs"),
  6879. name: "Front (Alt)",
  6880. image: {
  6881. source: "./media/characters/opal/front-alt.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Small",
  6888. height: math.unit(4 + 11 / 12, "feet")
  6889. },
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(20, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(120, "feet")
  6898. },
  6899. {
  6900. name: "Megamacro",
  6901. height: math.unit(80, "miles")
  6902. },
  6903. {
  6904. name: "True Size",
  6905. height: math.unit(100000, "lightyears")
  6906. },
  6907. ]
  6908. ))
  6909. characterMakers.push(() => makeCharacter(
  6910. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6911. {
  6912. front: {
  6913. height: math.unit(6, "feet"),
  6914. weight: math.unit(200, "lbs"),
  6915. name: "Front",
  6916. image: {
  6917. source: "./media/characters/vector-wuff/front.svg"
  6918. }
  6919. }
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(2.8, "meters")
  6925. },
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(450, "meters"),
  6929. default: true
  6930. },
  6931. {
  6932. name: "Megamacro",
  6933. height: math.unit(15, "kilometers")
  6934. }
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(256, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/dannik/front.svg"
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Macro",
  6952. height: math.unit(69.57, "meters"),
  6953. default: true
  6954. },
  6955. ]
  6956. ))
  6957. characterMakers.push(() => makeCharacter(
  6958. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6959. {
  6960. front: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(120, "lbs"),
  6963. name: "Front",
  6964. image: {
  6965. source: "./media/characters/azura-saharah/front.svg"
  6966. }
  6967. },
  6968. back: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(120, "lbs"),
  6971. name: "Back",
  6972. image: {
  6973. source: "./media/characters/azura-saharah/back.svg"
  6974. }
  6975. },
  6976. },
  6977. [
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(100, "feet"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6987. {
  6988. side: {
  6989. height: math.unit(5 + 4 / 12, "feet"),
  6990. weight: math.unit(163, "lbs"),
  6991. name: "Side",
  6992. image: {
  6993. source: "./media/characters/kennedy/side.svg"
  6994. }
  6995. }
  6996. },
  6997. [
  6998. {
  6999. name: "Standard Doggo",
  7000. height: math.unit(5 + 4 / 12, "feet")
  7001. },
  7002. {
  7003. name: "Big Doggo",
  7004. height: math.unit(25 + 3 / 12, "feet"),
  7005. default: true
  7006. },
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7011. {
  7012. front: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(90, "lbs"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/odi-lunar/front.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Micro",
  7024. height: math.unit(3, "inches"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(5.5, "feet")
  7030. }
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7035. {
  7036. back: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(220, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/mandake/back.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(7, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(78, "feet")
  7054. },
  7055. {
  7056. name: "Macro+",
  7057. height: math.unit(300, "meters")
  7058. },
  7059. {
  7060. name: "Macro++",
  7061. height: math.unit(2400, "feet")
  7062. },
  7063. {
  7064. name: "Megamacro",
  7065. height: math.unit(5167, "meters")
  7066. },
  7067. {
  7068. name: "Gigamacro",
  7069. height: math.unit(41769, "miles")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(120, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/yozey/front.svg"
  7082. }
  7083. },
  7084. frontAlt: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(120, "lbs"),
  7087. name: "Front (Alt)",
  7088. image: {
  7089. source: "./media/characters/yozey/front-alt.svg"
  7090. }
  7091. },
  7092. side: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(120, "lbs"),
  7095. name: "Side",
  7096. image: {
  7097. source: "./media/characters/yozey/side.svg"
  7098. }
  7099. },
  7100. },
  7101. [
  7102. {
  7103. name: "Micro",
  7104. height: math.unit(3, "inches"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(6, "feet")
  7110. }
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(103, "lbs"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/valeska-voss/front.svg"
  7122. }
  7123. }
  7124. },
  7125. [
  7126. {
  7127. name: "Mini-Sized Sub",
  7128. height: math.unit(3.1, "inches")
  7129. },
  7130. {
  7131. name: "Mid-Sized Sub",
  7132. height: math.unit(6.2, "inches")
  7133. },
  7134. {
  7135. name: "Full-Sized Sub",
  7136. height: math.unit(9.3, "inches")
  7137. },
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(5 + 2 / 12, "foot"),
  7141. default: true
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(160, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/gene-zeta/front.svg",
  7154. extra: 3006 / 2826,
  7155. bottom: 182 / 3188
  7156. }
  7157. }
  7158. },
  7159. [
  7160. {
  7161. name: "Micro",
  7162. height: math.unit(6, "inches")
  7163. },
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(5 + 11 / 12, "foot"),
  7167. default: true
  7168. },
  7169. {
  7170. name: "Macro",
  7171. height: math.unit(140, "feet")
  7172. },
  7173. {
  7174. name: "Supercharged",
  7175. height: math.unit(2500, "feet")
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(6, "feet"),
  7184. weight: math.unit(350, "lbs"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/razinox/front.svg",
  7188. extra: 1686 / 1548,
  7189. bottom: 28.2 / 1868
  7190. }
  7191. },
  7192. back: {
  7193. height: math.unit(6, "feet"),
  7194. weight: math.unit(350, "lbs"),
  7195. name: "Back",
  7196. image: {
  7197. source: "./media/characters/razinox/back.svg",
  7198. extra: 1660 / 1590,
  7199. bottom: 15 / 1665
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(10 + 8 / 12, "foot")
  7207. },
  7208. {
  7209. name: "Minimacro",
  7210. height: math.unit(15, "foot")
  7211. },
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(60, "foot"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Megamacro",
  7219. height: math.unit(5, "miles")
  7220. },
  7221. {
  7222. name: "Gigamacro",
  7223. height: math.unit(6000, "miles")
  7224. },
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7229. {
  7230. front: {
  7231. height: math.unit(6, "feet"),
  7232. weight: math.unit(150, "lbs"),
  7233. name: "Front",
  7234. image: {
  7235. source: "./media/characters/cobalt/front.svg"
  7236. }
  7237. }
  7238. },
  7239. [
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(8 + 1 / 12, "foot")
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(111, "foot"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Supracosmic",
  7251. height: math.unit(1e42, "feet")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(140, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/amanda/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Micro",
  7270. height: math.unit(5, "inches"),
  7271. default: true
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(2.75, "meters"),
  7280. weight: math.unit(1200, "lb"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/teal/front.svg",
  7284. extra: 2463 / 2320,
  7285. bottom: 166 / 2629
  7286. }
  7287. },
  7288. back: {
  7289. height: math.unit(2.75, "meters"),
  7290. weight: math.unit(1200, "lb"),
  7291. name: "Back",
  7292. image: {
  7293. source: "./media/characters/teal/back.svg",
  7294. extra: 2580 / 2489,
  7295. bottom: 151 / 2731
  7296. }
  7297. },
  7298. sitting: {
  7299. height: math.unit(1.9, "meters"),
  7300. weight: math.unit(1200, "lb"),
  7301. name: "Sitting",
  7302. image: {
  7303. source: "./media/characters/teal/sitting.svg",
  7304. extra: 623 / 590,
  7305. bottom: 121 / 744
  7306. }
  7307. },
  7308. standing: {
  7309. height: math.unit(2.75, "meters"),
  7310. weight: math.unit(1200, "lb"),
  7311. name: "Standing",
  7312. image: {
  7313. source: "./media/characters/teal/standing.svg",
  7314. extra: 923 / 893,
  7315. bottom: 60 / 983
  7316. }
  7317. },
  7318. stretching: {
  7319. height: math.unit(3.65, "meters"),
  7320. weight: math.unit(1200, "lb"),
  7321. name: "Stretching",
  7322. image: {
  7323. source: "./media/characters/teal/stretching.svg",
  7324. extra: 1276 / 1244,
  7325. bottom: 0 / 1276
  7326. }
  7327. },
  7328. legged: {
  7329. height: math.unit(1.3, "meters"),
  7330. weight: math.unit(100, "lb"),
  7331. name: "Legged",
  7332. image: {
  7333. source: "./media/characters/teal/legged.svg",
  7334. extra: 462 / 437,
  7335. bottom: 24 / 486
  7336. }
  7337. },
  7338. naga: {
  7339. height: math.unit(5.4, "meters"),
  7340. weight: math.unit(4000, "lb"),
  7341. name: "Naga",
  7342. image: {
  7343. source: "./media/characters/teal/naga.svg",
  7344. extra: 1902 / 1858,
  7345. bottom: 0 / 1902
  7346. }
  7347. },
  7348. hand: {
  7349. height: math.unit(0.52, "meters"),
  7350. name: "Hand",
  7351. image: {
  7352. source: "./media/characters/teal/hand.svg"
  7353. }
  7354. },
  7355. maw: {
  7356. height: math.unit(0.43, "meters"),
  7357. name: "Maw",
  7358. image: {
  7359. source: "./media/characters/teal/maw.svg"
  7360. }
  7361. },
  7362. slit: {
  7363. height: math.unit(0.25, "meters"),
  7364. name: "Slit",
  7365. image: {
  7366. source: "./media/characters/teal/slit.svg"
  7367. }
  7368. },
  7369. },
  7370. [
  7371. {
  7372. name: "Normal",
  7373. height: math.unit(2.75, "meters"),
  7374. default: true
  7375. },
  7376. {
  7377. name: "Macro",
  7378. height: math.unit(300, "feet")
  7379. },
  7380. {
  7381. name: "Macro+",
  7382. height: math.unit(2000, "feet")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7388. {
  7389. frontCat: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(180, "lbs"),
  7392. name: "Front (Cat)",
  7393. image: {
  7394. source: "./media/characters/ravin-amulet/front-cat.svg"
  7395. }
  7396. },
  7397. frontCatAlt: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(180, "lbs"),
  7400. name: "Front (Alt, Cat)",
  7401. image: {
  7402. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7403. }
  7404. },
  7405. frontWerewolf: {
  7406. height: math.unit(6 * 1.2, "feet"),
  7407. weight: math.unit(225, "lbs"),
  7408. name: "Front (Werewolf)",
  7409. image: {
  7410. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7411. }
  7412. },
  7413. backWerewolf: {
  7414. height: math.unit(6 * 1.2, "feet"),
  7415. weight: math.unit(225, "lbs"),
  7416. name: "Back (Werewolf)",
  7417. image: {
  7418. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7419. }
  7420. },
  7421. },
  7422. [
  7423. {
  7424. name: "Nano",
  7425. height: math.unit(1, "micrometer")
  7426. },
  7427. {
  7428. name: "Micro",
  7429. height: math.unit(1, "inch")
  7430. },
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(6, "feet"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(60, "feet")
  7439. }
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(165, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/fluoresce/front.svg"
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(6, "cm")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(5 + 7 / 12, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(56, "feet")
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(1.9, "miles")
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(9 + 6 / 12, "feet"),
  7479. weight: math.unit(523, "lbs"),
  7480. name: "Side",
  7481. image: {
  7482. source: "./media/characters/aurora/side.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(9 + 6 / 12, "feet")
  7490. },
  7491. {
  7492. name: "Macro",
  7493. height: math.unit(96, "feet"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Macro+",
  7498. height: math.unit(243, "feet")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(194, "cm"),
  7507. weight: math.unit(90, "kg"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/ranek/front.svg"
  7511. }
  7512. },
  7513. side: {
  7514. height: math.unit(194, "cm"),
  7515. weight: math.unit(90, "kg"),
  7516. name: "Side",
  7517. image: {
  7518. source: "./media/characters/ranek/side.svg"
  7519. }
  7520. },
  7521. back: {
  7522. height: math.unit(194, "cm"),
  7523. weight: math.unit(90, "kg"),
  7524. name: "Back",
  7525. image: {
  7526. source: "./media/characters/ranek/back.svg"
  7527. }
  7528. },
  7529. feral: {
  7530. height: math.unit(30, "cm"),
  7531. weight: math.unit(1.6, "lbs"),
  7532. name: "Feral",
  7533. image: {
  7534. source: "./media/characters/ranek/feral.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(194, "cm"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Macro",
  7546. height: math.unit(100, "meters")
  7547. },
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(5 + 6 / 12, "feet"),
  7555. weight: math.unit(153, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/andrew-cooper/front.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Nano",
  7565. height: math.unit(1, "mm")
  7566. },
  7567. {
  7568. name: "Micro",
  7569. height: math.unit(2, "inches")
  7570. },
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(5 + 6 / 12, "feet"),
  7574. default: true
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(180, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/akane-sato/front.svg",
  7587. extra: 1219 / 1140
  7588. }
  7589. },
  7590. back: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(180, "lbs"),
  7593. name: "Back",
  7594. image: {
  7595. source: "./media/characters/akane-sato/back.svg",
  7596. extra: 1219 / 1170
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(2.5, "meters")
  7604. },
  7605. {
  7606. name: "Macro",
  7607. height: math.unit(250, "meters"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Megamacro",
  7612. height: math.unit(25, "km")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(65, "kg"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/rook/front.svg",
  7625. extra: 960 / 950
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(8.8, "feet")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(88, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Megamacro",
  7641. height: math.unit(8, "miles")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(12 + 2 / 12, "feet"),
  7650. weight: math.unit(808, "lbs"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/prodigy/front.svg"
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(12 + 2 / 12, "feet"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(143, "feet")
  7666. },
  7667. {
  7668. name: "Macro+",
  7669. height: math.unit(400, "feet")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(225, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/daniel/front.svg"
  7682. }
  7683. },
  7684. leaning: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(225, "lbs"),
  7687. name: "Leaning",
  7688. image: {
  7689. source: "./media/characters/daniel/leaning.svg"
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(1000, "feet"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(88, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/chiros/front.svg",
  7710. extra: 306 / 226
  7711. }
  7712. },
  7713. side: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(88, "lbs"),
  7716. name: "Side",
  7717. image: {
  7718. source: "./media/characters/chiros/side.svg",
  7719. extra: 306 / 226
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(6, "cm"),
  7727. default: true
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7733. {
  7734. front: {
  7735. height: math.unit(6, "feet"),
  7736. weight: math.unit(100, "lbs"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/selka/front.svg",
  7740. extra: 947 / 887
  7741. }
  7742. }
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(5, "cm"),
  7748. default: true
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(8 + 3 / 12, "feet"),
  7757. weight: math.unit(424, "lbs"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/verin/front.svg",
  7761. extra: 1845 / 1550
  7762. }
  7763. },
  7764. frontArmored: {
  7765. height: math.unit(8 + 3 / 12, "feet"),
  7766. weight: math.unit(424, "lbs"),
  7767. name: "Front (Armored)",
  7768. image: {
  7769. source: "./media/characters/verin/front-armor.svg",
  7770. extra: 1845 / 1550,
  7771. bottom: 0.01
  7772. }
  7773. },
  7774. back: {
  7775. height: math.unit(8 + 3 / 12, "feet"),
  7776. weight: math.unit(424, "lbs"),
  7777. name: "Back",
  7778. image: {
  7779. source: "./media/characters/verin/back.svg",
  7780. bottom: 0.1,
  7781. extra: 1
  7782. }
  7783. },
  7784. foot: {
  7785. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7786. name: "Foot",
  7787. image: {
  7788. source: "./media/characters/verin/foot.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(8 + 3 / 12, "feet")
  7796. },
  7797. {
  7798. name: "Minimacro",
  7799. height: math.unit(21, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(626, "feet")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(2.718, "meters"),
  7813. weight: math.unit(150, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/sovrim-terraquian/front.svg"
  7817. }
  7818. },
  7819. back: {
  7820. height: math.unit(2.718, "meters"),
  7821. weight: math.unit(150, "lbs"),
  7822. name: "Back",
  7823. image: {
  7824. source: "./media/characters/sovrim-terraquian/back.svg"
  7825. }
  7826. }
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(2, "inches")
  7832. },
  7833. {
  7834. name: "Small",
  7835. height: math.unit(1, "meter")
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(Math.E, "meters"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(20, "meters")
  7845. },
  7846. {
  7847. name: "Macro+",
  7848. height: math.unit(400, "meters")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(7, "feet"),
  7857. weight: math.unit(489, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/reece-silvermane/front.svg",
  7861. bottom: 0.02,
  7862. extra: 1
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(1.5, "miles"),
  7870. default: true
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(78, "kg"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/kane/front.svg",
  7883. extra: 978 / 899
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(2.1, "m"),
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(1, "km"),
  7895. default: true
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(200, "kg"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/tegon/front.svg",
  7908. bottom: 0.01,
  7909. extra: 1
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(1, "inch")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(6 + 3 / 12, "feet"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(300, "feet")
  7926. },
  7927. {
  7928. name: "Megamacro",
  7929. height: math.unit(69, "miles")
  7930. },
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7935. {
  7936. side: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(2304, "lbs"),
  7939. name: "Side",
  7940. image: {
  7941. source: "./media/characters/arcturax/side.svg",
  7942. extra: 790 / 376,
  7943. bottom: 0.01
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Micro",
  7950. height: math.unit(2, "inch")
  7951. },
  7952. {
  7953. name: "Normal",
  7954. height: math.unit(6, "feet")
  7955. },
  7956. {
  7957. name: "Macro",
  7958. height: math.unit(39, "feet"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Megamacro",
  7963. height: math.unit(7, "miles")
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(50, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/sentri/front.svg",
  7976. extra: 1750 / 1570,
  7977. bottom: 0.025
  7978. }
  7979. },
  7980. frontAlt: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(50, "lbs"),
  7983. name: "Front (Alt)",
  7984. image: {
  7985. source: "./media/characters/sentri/front-alt.svg",
  7986. extra: 1750 / 1570,
  7987. bottom: 0.025
  7988. }
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(15, "feet"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(2500, "feet")
  8000. }
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(5 + 8 / 12, "feet"),
  8008. weight: math.unit(130, "lbs"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/corvin/front.svg",
  8012. extra: 1803 / 1629
  8013. }
  8014. },
  8015. frontShirt: {
  8016. height: math.unit(5 + 8 / 12, "feet"),
  8017. weight: math.unit(130, "lbs"),
  8018. name: "Front (Shirt)",
  8019. image: {
  8020. source: "./media/characters/corvin/front-shirt.svg",
  8021. extra: 1803 / 1629
  8022. }
  8023. },
  8024. frontPoncho: {
  8025. height: math.unit(5 + 8 / 12, "feet"),
  8026. weight: math.unit(130, "lbs"),
  8027. name: "Front (Poncho)",
  8028. image: {
  8029. source: "./media/characters/corvin/front-poncho.svg",
  8030. extra: 1803 / 1629
  8031. }
  8032. },
  8033. side: {
  8034. height: math.unit(5 + 8 / 12, "feet"),
  8035. weight: math.unit(130, "lbs"),
  8036. name: "Side",
  8037. image: {
  8038. source: "./media/characters/corvin/side.svg",
  8039. extra: 1012 / 945
  8040. }
  8041. },
  8042. back: {
  8043. height: math.unit(5 + 8 / 12, "feet"),
  8044. weight: math.unit(130, "lbs"),
  8045. name: "Back",
  8046. image: {
  8047. source: "./media/characters/corvin/back.svg",
  8048. extra: 1803 / 1629
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Micro",
  8055. height: math.unit(3, "inches")
  8056. },
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(5 + 8 / 12, "feet")
  8060. },
  8061. {
  8062. name: "Macro",
  8063. height: math.unit(300, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Megamacro",
  8068. height: math.unit(500, "miles")
  8069. }
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(135, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/q/front.svg",
  8081. extra: 854 / 752,
  8082. bottom: 0.005
  8083. }
  8084. },
  8085. back: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(130, "lbs"),
  8088. name: "Back",
  8089. image: {
  8090. source: "./media/characters/q/back.svg",
  8091. extra: 854 / 752
  8092. }
  8093. },
  8094. },
  8095. [
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(90, "feet"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Extra Macro",
  8103. height: math.unit(300, "feet"),
  8104. },
  8105. {
  8106. name: "BIG WALF",
  8107. height: math.unit(750, "feet"),
  8108. },
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8113. {
  8114. front: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(150, "lbs"),
  8117. name: "Front",
  8118. image: {
  8119. source: "./media/characters/carley/front.svg",
  8120. extra: 3927 / 3540,
  8121. bottom: 29.2 / 735
  8122. }
  8123. }
  8124. },
  8125. [
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(6 + 3 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(185, "feet"),
  8133. default: true
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(8, "miles"),
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(3, "feet"),
  8146. weight: math.unit(28, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/citrine/front.svg"
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(3, "feet"),
  8157. default: true
  8158. }
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8163. {
  8164. front: {
  8165. height: math.unit(14, "feet"),
  8166. weight: math.unit(1450, "kg"),
  8167. capacity: math.unit(15, "people"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/aura-starwind/front.svg",
  8171. extra: 1455 / 1335
  8172. }
  8173. },
  8174. side: {
  8175. height: math.unit(14, "feet"),
  8176. weight: math.unit(1450, "kg"),
  8177. capacity: math.unit(15, "people"),
  8178. name: "Side",
  8179. image: {
  8180. source: "./media/characters/aura-starwind/side.svg",
  8181. extra: 1654 / 1497
  8182. }
  8183. },
  8184. taur: {
  8185. height: math.unit(18, "feet"),
  8186. weight: math.unit(5500, "kg"),
  8187. capacity: math.unit(50, "people"),
  8188. name: "Taur",
  8189. image: {
  8190. source: "./media/characters/aura-starwind/taur.svg",
  8191. extra: 1760 / 1650
  8192. }
  8193. },
  8194. feral: {
  8195. height: math.unit(46, "feet"),
  8196. weight: math.unit(25000, "kg"),
  8197. capacity: math.unit(120, "people"),
  8198. name: "Feral",
  8199. image: {
  8200. source: "./media/characters/aura-starwind/feral.svg"
  8201. }
  8202. },
  8203. },
  8204. [
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(14, "feet"),
  8208. default: true
  8209. },
  8210. {
  8211. name: "Macro",
  8212. height: math.unit(50, "meters")
  8213. },
  8214. {
  8215. name: "Megamacro",
  8216. height: math.unit(5000, "meters")
  8217. },
  8218. {
  8219. name: "Gigamacro",
  8220. height: math.unit(100000, "kilometers")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(2 + 7 / 12, "feet"),
  8229. weight: math.unit(32, "lbs"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/rivet/front.svg",
  8233. extra: 1716 / 1658,
  8234. bottom: 0.03
  8235. }
  8236. },
  8237. foot: {
  8238. height: math.unit(0.551, "feet"),
  8239. name: "Rivet's Foot",
  8240. image: {
  8241. source: "./media/characters/rivet/foot.svg"
  8242. },
  8243. rename: true
  8244. }
  8245. },
  8246. [
  8247. {
  8248. name: "Micro",
  8249. height: math.unit(1.5, "inches"),
  8250. },
  8251. {
  8252. name: "Normal",
  8253. height: math.unit(2 + 7 / 12, "feet"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(85, "feet")
  8259. },
  8260. {
  8261. name: "Megamacro",
  8262. height: math.unit(2.2, "km")
  8263. }
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(5 + 9 / 12, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/coffee/front.svg",
  8275. extra: 3666 / 3032,
  8276. bottom: 0.04
  8277. }
  8278. },
  8279. foot: {
  8280. height: math.unit(1.29, "feet"),
  8281. name: "Foot",
  8282. image: {
  8283. source: "./media/characters/coffee/foot.svg"
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(2, "inches"),
  8291. },
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(5 + 9 / 12, "feet"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(800, "feet")
  8300. },
  8301. {
  8302. name: "Megamacro",
  8303. height: math.unit(25, "miles")
  8304. }
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(200, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/chari-gal/front.svg",
  8316. extra: 1568 / 1385,
  8317. bottom: 0.047
  8318. }
  8319. },
  8320. gigantamax: {
  8321. height: math.unit(6 * 16, "feet"),
  8322. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8323. name: "Gigantamax",
  8324. image: {
  8325. source: "./media/characters/chari-gal/gigantamax.svg",
  8326. extra: 1124 / 888,
  8327. bottom: 0.03
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(5 + 7 / 12, "feet")
  8335. },
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(200, "feet"),
  8339. default: true
  8340. }
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(150, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/nova/front.svg",
  8352. extra: 5000 / 4722,
  8353. bottom: 0.02
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Micro-",
  8360. height: math.unit(0.8, "inches")
  8361. },
  8362. {
  8363. name: "Micro",
  8364. height: math.unit(2, "inches"),
  8365. default: true
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8371. {
  8372. front: {
  8373. height: math.unit(3 + 1 / 12, "feet"),
  8374. weight: math.unit(21.7, "lbs"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/argent/front.svg",
  8378. extra: 1471 / 1331,
  8379. bottom: 100.8 / 1575.5
  8380. }
  8381. }
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(2, "inches")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(3 + 1 / 12, "feet"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(120, "feet")
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8401. {
  8402. lamp: {
  8403. height: math.unit(7 * 1559 / 989, "feet"),
  8404. name: "Magic Lamp",
  8405. image: {
  8406. source: "./media/characters/mira-al-cul/lamp.svg",
  8407. extra: 1617 / 1559
  8408. }
  8409. },
  8410. front: {
  8411. height: math.unit(7, "feet"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/mira-al-cul/front.svg",
  8415. extra: 1044 / 990
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Heavily Restricted",
  8422. height: math.unit(7 * 1559 / 989, "feet")
  8423. },
  8424. {
  8425. name: "Freshly Freed",
  8426. height: math.unit(50 * 1559 / 989, "feet")
  8427. },
  8428. {
  8429. name: "World Encompassing",
  8430. height: math.unit(10000 * 1559 / 989, "miles")
  8431. },
  8432. {
  8433. name: "Galactic",
  8434. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8435. },
  8436. {
  8437. name: "Palmed Universe",
  8438. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Multiversal Matriarch",
  8443. height: math.unit(8.87e10, "yottameters")
  8444. },
  8445. {
  8446. name: "Void Mother",
  8447. height: math.unit(3.14e110, "yottaparsecs")
  8448. },
  8449. {
  8450. name: "Toying with Transcendence",
  8451. height: math.unit(1e307, "meters")
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8457. {
  8458. front: {
  8459. height: math.unit(17 + 1 / 12, "feet"),
  8460. weight: math.unit(476.2 * 5, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/kuro-shi-uchū/front.svg",
  8464. extra: 2329 / 1835,
  8465. bottom: 0.02
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Micro",
  8472. height: math.unit(2, "inches")
  8473. },
  8474. {
  8475. name: "Normal",
  8476. height: math.unit(12, "meters")
  8477. },
  8478. {
  8479. name: "Planetary",
  8480. height: math.unit(0.00929, "AU"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Universal",
  8485. height: math.unit(20, "gigaparsecs")
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(5 + 2 / 12, "feet"),
  8494. weight: math.unit(120, "lbs"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/katherine/front.svg",
  8498. extra: 2075 / 1969
  8499. }
  8500. },
  8501. dress: {
  8502. height: math.unit(5 + 2 / 12, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Dress",
  8505. image: {
  8506. source: "./media/characters/katherine/dress.svg",
  8507. extra: 2258 / 2064
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Micro",
  8514. height: math.unit(1, "inches"),
  8515. default: true
  8516. },
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(5 + 2 / 12, "feet")
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(100, "meters")
  8524. },
  8525. {
  8526. name: "Megamacro",
  8527. height: math.unit(80, "miles")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(7 + 8 / 12, "feet"),
  8536. weight: math.unit(250, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/yevis/front.svg",
  8540. extra: 1938 / 1755
  8541. }
  8542. }
  8543. },
  8544. [
  8545. {
  8546. name: "Mortal",
  8547. height: math.unit(7 + 8 / 12, "feet")
  8548. },
  8549. {
  8550. name: "Battle",
  8551. height: math.unit(25 + 11 / 12, "feet")
  8552. },
  8553. {
  8554. name: "Wrath",
  8555. height: math.unit(1654 + 11 / 12, "feet")
  8556. },
  8557. {
  8558. name: "Planet Destroyer",
  8559. height: math.unit(12000, "miles")
  8560. },
  8561. {
  8562. name: "Galaxy Conqueror",
  8563. height: math.unit(1.45, "zettameters"),
  8564. default: true
  8565. },
  8566. {
  8567. name: "Universal War",
  8568. height: math.unit(184, "gigaparsecs")
  8569. },
  8570. {
  8571. name: "Eternity War",
  8572. height: math.unit(1.98e55, "yottaparsecs")
  8573. },
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(5 + 8 / 12, "feet"),
  8581. weight: math.unit(63, "kg"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/xavier/front.svg",
  8585. extra: 944 / 883
  8586. }
  8587. },
  8588. frontStretch: {
  8589. height: math.unit(5 + 8 / 12, "feet"),
  8590. weight: math.unit(63, "kg"),
  8591. name: "Stretching",
  8592. image: {
  8593. source: "./media/characters/xavier/front-stretch.svg",
  8594. extra: 962 / 820
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(5 + 8 / 12, "feet")
  8602. },
  8603. {
  8604. name: "Macro",
  8605. height: math.unit(100, "meters"),
  8606. default: true
  8607. },
  8608. {
  8609. name: "McLargeHuge",
  8610. height: math.unit(10, "miles")
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(5 + 5 / 12, "feet"),
  8619. weight: math.unit(150, "lb"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/joshii/front.svg",
  8623. extra: 765 / 653,
  8624. bottom: 51 / 816
  8625. }
  8626. },
  8627. foot: {
  8628. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8629. name: "Foot",
  8630. image: {
  8631. source: "./media/characters/joshii/foot.svg"
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Micro",
  8638. height: math.unit(2, "inches"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(5 + 5 / 12, "feet")
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(785, "feet")
  8648. },
  8649. {
  8650. name: "Megamacro",
  8651. height: math.unit(24.5, "miles")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/goddess-elizabeth/front.svg",
  8664. extra: 1800 / 1525,
  8665. bottom: 0.005
  8666. }
  8667. },
  8668. foot: {
  8669. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8670. name: "Foot",
  8671. image: {
  8672. source: "./media/characters/goddess-elizabeth/foot.svg"
  8673. }
  8674. },
  8675. mouth: {
  8676. height: math.unit(6, "feet"),
  8677. name: "Mouth",
  8678. image: {
  8679. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(12, "feet")
  8687. },
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(80, "miles"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(15000, "parsecs")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(5 + 9 / 12, "feet"),
  8704. weight: math.unit(144, "lb"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/kara/front.svg"
  8708. }
  8709. },
  8710. feet: {
  8711. height: math.unit(6 / 6.765, "feet"),
  8712. name: "Kara's Feet",
  8713. rename: true,
  8714. image: {
  8715. source: "./media/characters/kara/feet.svg"
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(5 + 9 / 12, "feet")
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(174, "feet"),
  8727. default: true
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(18, "feet"),
  8736. weight: math.unit(4050, "lb"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/tyrone/front.svg",
  8740. extra: 2405 / 2270,
  8741. bottom: 182 / 2587
  8742. }
  8743. },
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(18, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(300, "feet")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(15, "km")
  8758. },
  8759. {
  8760. name: "Gigamacro",
  8761. height: math.unit(500, "km")
  8762. },
  8763. {
  8764. name: "Teramacro",
  8765. height: math.unit(0.5, "gigameters")
  8766. },
  8767. {
  8768. name: "Omnimacro",
  8769. height: math.unit(1e252, "yottauniverse")
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(7 + 8 / 12, "feet"),
  8778. weight: math.unit(120, "lb"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/danny/front.svg",
  8782. extra: 1490 / 1350
  8783. }
  8784. },
  8785. back: {
  8786. height: math.unit(7 + 8 / 12, "feet"),
  8787. weight: math.unit(120, "lb"),
  8788. name: "Back",
  8789. image: {
  8790. source: "./media/characters/danny/back.svg",
  8791. extra: 1490 / 1350
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(7 + 8 / 12, "feet"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(3.5, "inches"),
  8808. weight: math.unit(19, "grams"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/mallow/front.svg",
  8812. extra: 471 / 431
  8813. }
  8814. },
  8815. back: {
  8816. height: math.unit(3.5, "inches"),
  8817. weight: math.unit(19, "grams"),
  8818. name: "Back",
  8819. image: {
  8820. source: "./media/characters/mallow/back.svg",
  8821. extra: 471 / 431
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(3.5, "inches"),
  8829. default: true
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(9, "feet"),
  8838. weight: math.unit(230, "kg"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/starry-aqua/front.svg"
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(9, "feet"),
  8846. weight: math.unit(230, "kg"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/starry-aqua/back.svg"
  8850. }
  8851. },
  8852. hand: {
  8853. height: math.unit(9 * 0.1168, "feet"),
  8854. name: "Hand",
  8855. image: {
  8856. source: "./media/characters/starry-aqua/hand.svg"
  8857. }
  8858. },
  8859. foot: {
  8860. height: math.unit(9 * 0.18, "feet"),
  8861. name: "Foot",
  8862. image: {
  8863. source: "./media/characters/starry-aqua/foot.svg"
  8864. }
  8865. }
  8866. },
  8867. [
  8868. {
  8869. name: "Micro",
  8870. height: math.unit(3, "inches")
  8871. },
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(9, "feet")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(300, "feet"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Megamacro",
  8883. height: math.unit(3200, "feet")
  8884. }
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(6, "feet"),
  8892. weight: math.unit(230, "lb"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/luka/front.svg",
  8896. extra: 1,
  8897. bottom: 0.025
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(12 + 8 / 12, "feet"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Minimacro",
  8909. height: math.unit(20, "feet")
  8910. },
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(250, "feet")
  8914. },
  8915. {
  8916. name: "Megamacro",
  8917. height: math.unit(5, "miles")
  8918. },
  8919. {
  8920. name: "Gigamacro",
  8921. height: math.unit(8000, "miles")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(150, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/natalie-nightring/front.svg",
  8934. extra: 1,
  8935. bottom: 0.06
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Uh Oh",
  8942. height: math.unit(0.1, "mm")
  8943. },
  8944. {
  8945. name: "Small",
  8946. height: math.unit(3, "inches")
  8947. },
  8948. {
  8949. name: "Human Scale",
  8950. height: math.unit(6, "feet")
  8951. },
  8952. {
  8953. name: "Librarian",
  8954. height: math.unit(50, "feet"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Immense",
  8959. height: math.unit(200, "miles")
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8965. {
  8966. front: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(180, "lbs"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/danni-rosie/front.svg",
  8972. extra: 1260 / 1128,
  8973. bottom: 0.022
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Micro",
  8980. height: math.unit(2, "inches"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 9 / 12, "feet"),
  8990. weight: math.unit(220, "lb"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/samantha-kruse/front.svg",
  8994. extra: (985 / 935),
  8995. bottom: 0.03
  8996. }
  8997. },
  8998. frontUndressed: {
  8999. height: math.unit(5 + 9 / 12, "feet"),
  9000. weight: math.unit(220, "lb"),
  9001. name: "Front (Undressed)",
  9002. image: {
  9003. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9004. extra: (973 / 923),
  9005. bottom: 0.025
  9006. }
  9007. },
  9008. fat: {
  9009. height: math.unit(5 + 9 / 12, "feet"),
  9010. weight: math.unit(900, "lb"),
  9011. name: "Front (Fat)",
  9012. image: {
  9013. source: "./media/characters/samantha-kruse/fat.svg",
  9014. extra: 2688 / 2561
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(5 + 9 / 12, "feet"),
  9022. default: true
  9023. }
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9028. {
  9029. back: {
  9030. height: math.unit(5 + 4 / 12, "feet"),
  9031. weight: math.unit(4963, "lb"),
  9032. name: "Back",
  9033. image: {
  9034. source: "./media/characters/amelia-rosie/back.svg",
  9035. extra: 1113 / 963,
  9036. bottom: 0.01
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Level 0",
  9043. height: math.unit(5 + 4 / 12, "feet")
  9044. },
  9045. {
  9046. name: "Level 1",
  9047. height: math.unit(164597, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Level 2",
  9052. height: math.unit(956243, "miles")
  9053. },
  9054. {
  9055. name: "Level 3",
  9056. height: math.unit(29421709423, "miles")
  9057. },
  9058. {
  9059. name: "Level 4",
  9060. height: math.unit(154, "lightyears")
  9061. },
  9062. {
  9063. name: "Level 5",
  9064. height: math.unit(4738272, "lightyears")
  9065. },
  9066. {
  9067. name: "Level 6",
  9068. height: math.unit(145787152896, "lightyears")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(5 + 11 / 12, "feet"),
  9077. weight: math.unit(65, "kg"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/rook-kitara/front.svg",
  9081. extra: 1347 / 1274,
  9082. bottom: 0.005
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Totally Unfair",
  9089. height: math.unit(1.8, "mm")
  9090. },
  9091. {
  9092. name: "Lap Rookie",
  9093. height: math.unit(1.4, "feet")
  9094. },
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(5 + 11 / 12, "feet"),
  9098. default: true
  9099. },
  9100. {
  9101. name: "How Did This Happen",
  9102. height: math.unit(80, "miles")
  9103. }
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(7, "feet"),
  9111. weight: math.unit(300, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/pisces/front.svg",
  9115. extra: 2255 / 2115,
  9116. bottom: 0.03
  9117. }
  9118. },
  9119. back: {
  9120. height: math.unit(7, "feet"),
  9121. weight: math.unit(300, "lb"),
  9122. name: "Back",
  9123. image: {
  9124. source: "./media/characters/pisces/back.svg",
  9125. extra: 2146 / 2055,
  9126. bottom: 0.04
  9127. }
  9128. },
  9129. },
  9130. [
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(7, "feet"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Swimming Pool",
  9138. height: math.unit(12.2, "meters")
  9139. },
  9140. {
  9141. name: "Olympic Swimming Pool",
  9142. height: math.unit(56.3, "meters")
  9143. },
  9144. {
  9145. name: "Lake Superior",
  9146. height: math.unit(93900, "meters")
  9147. },
  9148. {
  9149. name: "Mediterranean Sea",
  9150. height: math.unit(644457, "meters")
  9151. },
  9152. {
  9153. name: "World's Oceans",
  9154. height: math.unit(4567491, "meters")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(2.3, "meters"),
  9163. weight: math.unit(120, "kg"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/zelas/front.svg"
  9167. }
  9168. },
  9169. side: {
  9170. height: math.unit(2.3, "meters"),
  9171. weight: math.unit(120, "kg"),
  9172. name: "Side",
  9173. image: {
  9174. source: "./media/characters/zelas/side.svg"
  9175. }
  9176. },
  9177. back: {
  9178. height: math.unit(2.3, "meters"),
  9179. weight: math.unit(120, "kg"),
  9180. name: "Back",
  9181. image: {
  9182. source: "./media/characters/zelas/back.svg"
  9183. }
  9184. },
  9185. foot: {
  9186. height: math.unit(1.116, "feet"),
  9187. name: "Foot",
  9188. image: {
  9189. source: "./media/characters/zelas/foot.svg"
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(2.3, "meters")
  9197. },
  9198. {
  9199. name: "Macro",
  9200. height: math.unit(30, "meters"),
  9201. default: true
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9207. {
  9208. front: {
  9209. height: math.unit(1, "inch"),
  9210. weight: math.unit(0.21, "grams"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/talbot/front.svg",
  9214. extra: 594 / 544
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Micro",
  9221. height: math.unit(1, "inch"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9228. {
  9229. front: {
  9230. height: math.unit(3 + 3 / 12, "feet"),
  9231. weight: math.unit(51.8, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/fliss/front.svg",
  9235. extra: 840 / 640
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Teeny Tiny",
  9242. height: math.unit(1, "mm")
  9243. },
  9244. {
  9245. name: "Small",
  9246. height: math.unit(1, "inch"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Standard Sylveon",
  9251. height: math.unit(3 + 3 / 12, "feet")
  9252. },
  9253. {
  9254. name: "Large Nuisance",
  9255. height: math.unit(33, "feet")
  9256. },
  9257. {
  9258. name: "City Filler",
  9259. height: math.unit(3000, "feet")
  9260. },
  9261. {
  9262. name: "New Horizon",
  9263. height: math.unit(6000, "miles")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9269. {
  9270. front: {
  9271. height: math.unit(5, "cm"),
  9272. weight: math.unit(1.94, "g"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/fleta/front.svg",
  9276. extra: 835 / 803
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(5, "cm"),
  9281. weight: math.unit(1.94, "g"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/fleta/back.svg",
  9285. extra: 835 / 803
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Micro",
  9292. height: math.unit(5, "cm"),
  9293. default: true
  9294. },
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(225, "lb"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/dominic/front.svg",
  9306. extra: 1770 / 1620,
  9307. bottom: 0.025
  9308. }
  9309. },
  9310. back: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(225, "lb"),
  9313. name: "Back",
  9314. image: {
  9315. source: "./media/characters/dominic/back.svg",
  9316. extra: 1745 / 1620,
  9317. bottom: 0.065
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Nano",
  9324. height: math.unit(0.1, "mm")
  9325. },
  9326. {
  9327. name: "Micro-",
  9328. height: math.unit(1, "mm")
  9329. },
  9330. {
  9331. name: "Micro",
  9332. height: math.unit(4, "inches")
  9333. },
  9334. {
  9335. name: "Normal",
  9336. height: math.unit(6 + 4 / 12, "feet"),
  9337. default: true
  9338. },
  9339. {
  9340. name: "Macro",
  9341. height: math.unit(115, "feet")
  9342. },
  9343. {
  9344. name: "Macro+",
  9345. height: math.unit(955, "feet")
  9346. },
  9347. {
  9348. name: "Megamacro",
  9349. height: math.unit(8990, "feet")
  9350. },
  9351. {
  9352. name: "Gigmacro",
  9353. height: math.unit(9310, "miles")
  9354. },
  9355. {
  9356. name: "Teramacro",
  9357. height: math.unit(1567005010, "miles")
  9358. },
  9359. {
  9360. name: "Examacro",
  9361. height: math.unit(1425, "parsecs")
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(400, "feet"),
  9370. weight: math.unit(44444444, "lb"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/major-colonel/front.svg"
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(400, "feet"),
  9378. weight: math.unit(44444444, "lb"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/major-colonel/back.svg"
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(400, "feet"),
  9389. default: true
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9395. {
  9396. catFront: {
  9397. height: math.unit(6, "feet"),
  9398. weight: math.unit(120, "lb"),
  9399. name: "Front (Cat Side)",
  9400. image: {
  9401. source: "./media/characters/axel-lycan/cat-front.svg",
  9402. extra: 430 / 402,
  9403. bottom: 43 / 472.35
  9404. }
  9405. },
  9406. catBack: {
  9407. height: math.unit(6, "feet"),
  9408. weight: math.unit(120, "lb"),
  9409. name: "Back (Cat Side)",
  9410. image: {
  9411. source: "./media/characters/axel-lycan/cat-back.svg",
  9412. extra: 447 / 419,
  9413. bottom: 23.3 / 469
  9414. }
  9415. },
  9416. wolfFront: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(120, "lb"),
  9419. name: "Front (Wolf Side)",
  9420. image: {
  9421. source: "./media/characters/axel-lycan/wolf-front.svg",
  9422. extra: 485 / 456,
  9423. bottom: 19 / 504
  9424. }
  9425. },
  9426. wolfBack: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(120, "lb"),
  9429. name: "Back (Wolf Side)",
  9430. image: {
  9431. source: "./media/characters/axel-lycan/wolf-back.svg",
  9432. extra: 475 / 438,
  9433. bottom: 39.2 / 514
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(1, "km"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(5 + 9 / 12, "feet"),
  9450. weight: math.unit(175, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/vanrel-hyena/front.svg",
  9454. extra: 1086 / 1010,
  9455. bottom: 0.04
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(5 + 9 / 12, "feet"),
  9463. default: true
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9469. {
  9470. front: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(103, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/abbott-absol/front.svg",
  9476. extra: 2010 / 1842
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Megamicro",
  9483. height: math.unit(0.1, "mm")
  9484. },
  9485. {
  9486. name: "Micro",
  9487. height: math.unit(1, "inch")
  9488. },
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(6, "feet"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(264, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/hector/front.svg",
  9505. extra: 2280 / 2130,
  9506. bottom: 0.07
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(12.25, "foot"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Macro",
  9518. height: math.unit(160, "feet")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/sal/front.svg",
  9531. extra: 1846 / 1699,
  9532. bottom: 0.04
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Megamacro",
  9539. height: math.unit(10, "miles"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9546. {
  9547. front: {
  9548. height: math.unit(3, "meters"),
  9549. weight: math.unit(450, "kg"),
  9550. name: "front",
  9551. image: {
  9552. source: "./media/characters/ranger/front.svg",
  9553. extra: 2401 / 2243,
  9554. bottom: 0.05
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(3, "meters"),
  9562. default: true
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(14, "feet"),
  9571. weight: math.unit(800, "kg"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/theresa/front.svg",
  9575. extra: 3575 / 3346,
  9576. bottom: 0.03
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(14, "feet"),
  9584. default: true
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9590. {
  9591. front: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(3, "kg"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/ine/front.svg",
  9597. extra: 678 / 539,
  9598. bottom: 0.023
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(2.265, "feet"),
  9606. default: true
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(5, "feet"),
  9615. weight: math.unit(30, "kg"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/vial/front.svg",
  9619. extra: 1365 / 1277,
  9620. bottom: 0.04
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(5, "feet"),
  9628. default: true
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9634. {
  9635. side: {
  9636. height: math.unit(3.4, "meters"),
  9637. weight: math.unit(1000, "lb"),
  9638. name: "Side",
  9639. image: {
  9640. source: "./media/characters/rovoska/side.svg",
  9641. extra: 4403 / 1515
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(3.4, "meters"),
  9649. default: true
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(8, "feet"),
  9658. weight: math.unit(315, "lb"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/gunner-rotthbauer/front.svg"
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(8, "feet"),
  9666. weight: math.unit(315, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/gunner-rotthbauer/back.svg"
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(3.5, "inches")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(8, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Macro",
  9685. height: math.unit(250, "feet")
  9686. },
  9687. {
  9688. name: "Megamacro",
  9689. height: math.unit(1, "AU")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(5 + 5 / 12, "feet"),
  9698. weight: math.unit(140, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/allatia/front.svg",
  9702. extra: 1227 / 1180,
  9703. bottom: 0.027
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(5 + 5 / 12, "feet")
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(250, "feet"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(8, "miles")
  9720. }
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(120, "lb"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/tene/front.svg",
  9732. extra: 1728 / 1578,
  9733. bottom: 0.022
  9734. }
  9735. },
  9736. stomping: {
  9737. height: math.unit(2.025, "meters"),
  9738. weight: math.unit(120, "lb"),
  9739. name: "Stomping",
  9740. image: {
  9741. source: "./media/characters/tene/stomping.svg",
  9742. extra: 938 / 873,
  9743. bottom: 0.01
  9744. }
  9745. },
  9746. sitting: {
  9747. height: math.unit(1, "meter"),
  9748. weight: math.unit(120, "lb"),
  9749. name: "Sitting",
  9750. image: {
  9751. source: "./media/characters/tene/sitting.svg",
  9752. extra: 437 / 415,
  9753. bottom: 0.1
  9754. }
  9755. },
  9756. feral: {
  9757. height: math.unit(3.9, "feet"),
  9758. weight: math.unit(250, "lb"),
  9759. name: "Feral",
  9760. image: {
  9761. source: "./media/characters/tene/feral.svg",
  9762. extra: 717 / 458,
  9763. bottom: 0.179
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(6, "feet")
  9771. },
  9772. {
  9773. name: "Macro",
  9774. height: math.unit(300, "feet"),
  9775. default: true
  9776. },
  9777. {
  9778. name: "Megamacro",
  9779. height: math.unit(5, "miles")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9785. {
  9786. side: {
  9787. height: math.unit(6, "feet"),
  9788. name: "Side",
  9789. image: {
  9790. source: "./media/characters/evander/side.svg",
  9791. extra: 877 / 477
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(0.83, "meters"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(12, "feet"),
  9808. weight: math.unit(1000, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9812. extra: 1762 / 1611
  9813. }
  9814. },
  9815. back: {
  9816. height: math.unit(12, "feet"),
  9817. weight: math.unit(1000, "lb"),
  9818. name: "Back",
  9819. image: {
  9820. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9821. extra: 1762 / 1611
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(12, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Kaiju",
  9833. height: math.unit(150, "feet")
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(150, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/zero-alurus/front.svg"
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(6, "feet"),
  9850. weight: math.unit(150, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/zero-alurus/back.svg"
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(5 + 10 / 12, "feet")
  9861. },
  9862. {
  9863. name: "Macro",
  9864. height: math.unit(60, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Macro+",
  9869. height: math.unit(450, "feet")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(6, "feet"),
  9878. weight: math.unit(200, "lb"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/mega-shi/front.svg",
  9882. extra: 1279 / 1250,
  9883. bottom: 0.02
  9884. }
  9885. },
  9886. back: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(200, "lb"),
  9889. name: "Back",
  9890. image: {
  9891. source: "./media/characters/mega-shi/back.svg",
  9892. extra: 1279 / 1250,
  9893. bottom: 0.02
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Micro",
  9900. height: math.unit(16 + 6 / 12, "feet")
  9901. },
  9902. {
  9903. name: "Third Dimension",
  9904. height: math.unit(40, "meters")
  9905. },
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(660, "feet"),
  9909. default: true
  9910. },
  9911. {
  9912. name: "Megamacro",
  9913. height: math.unit(10, "miles")
  9914. },
  9915. {
  9916. name: "Planetary Launch",
  9917. height: math.unit(500, "miles")
  9918. },
  9919. {
  9920. name: "Interstellar",
  9921. height: math.unit(1e9, "miles")
  9922. },
  9923. {
  9924. name: "Leaving the Universe",
  9925. height: math.unit(1, "gigaparsec")
  9926. },
  9927. {
  9928. name: "Travelling Universes",
  9929. height: math.unit(30e15, "parsecs")
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9935. {
  9936. front: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(150, "lb"),
  9939. name: "Front",
  9940. image: {
  9941. source: "./media/characters/odyssey/front.svg",
  9942. extra: 1782 / 1582,
  9943. bottom: 0.01
  9944. }
  9945. },
  9946. side: {
  9947. height: math.unit(5.7, "feet"),
  9948. weight: math.unit(140, "lb"),
  9949. name: "Side",
  9950. image: {
  9951. source: "./media/characters/odyssey/side.svg",
  9952. extra: 6462 / 5700
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(5 + 4 / 12, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(1, "km")
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(3000, "km")
  9968. },
  9969. {
  9970. name: "Gigamacro",
  9971. height: math.unit(1, "AU"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Omniversal",
  9976. height: math.unit(100e14, "lightyears")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(6, "feet"),
  9985. weight: math.unit(300, "lb"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/mekuto/front.svg",
  9989. extra: 921 / 832,
  9990. bottom: 0.03
  9991. }
  9992. },
  9993. hand: {
  9994. height: math.unit(6 / 10.24, "feet"),
  9995. name: "Hand",
  9996. image: {
  9997. source: "./media/characters/mekuto/hand.svg"
  9998. }
  9999. },
  10000. foot: {
  10001. height: math.unit(6 / 5.05, "feet"),
  10002. name: "Foot",
  10003. image: {
  10004. source: "./media/characters/mekuto/foot.svg"
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Minimicro",
  10011. height: math.unit(0.2, "inches")
  10012. },
  10013. {
  10014. name: "Micro",
  10015. height: math.unit(1.5, "inches")
  10016. },
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(5 + 11 / 12, "feet"),
  10020. default: true
  10021. },
  10022. {
  10023. name: "Minimacro",
  10024. height: math.unit(17 + 9 / 12, "feet")
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(177.5, "feet")
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(152, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(6.5, "inches"),
  10041. weight: math.unit(13, "oz"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/dafydd-tomos/front.svg",
  10045. extra: 2990 / 2603,
  10046. bottom: 0.03
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Micro",
  10053. height: math.unit(6.5, "inches"),
  10054. default: true
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/splinter/front.svg",
  10067. extra: 2990 / 2882,
  10068. bottom: 0.04
  10069. }
  10070. },
  10071. back: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Back",
  10075. image: {
  10076. source: "./media/characters/splinter/back.svg",
  10077. extra: 2990 / 2882,
  10078. bottom: 0.04
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(6, "feet")
  10086. },
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(230, "meters"),
  10090. default: true
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(4 + 10 / 12, "feet"),
  10099. weight: math.unit(480, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/snow-gabumon/front.svg",
  10103. extra: 1140 / 963,
  10104. bottom: 0.058
  10105. }
  10106. },
  10107. back: {
  10108. height: math.unit(4 + 10 / 12, "feet"),
  10109. weight: math.unit(480, "lb"),
  10110. name: "Back",
  10111. image: {
  10112. source: "./media/characters/snow-gabumon/back.svg",
  10113. extra: 1115 / 962,
  10114. bottom: 0.041
  10115. }
  10116. },
  10117. frontUndresed: {
  10118. height: math.unit(4 + 10 / 12, "feet"),
  10119. weight: math.unit(480, "lb"),
  10120. name: "Front (Undressed)",
  10121. image: {
  10122. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10123. extra: 1061 / 960,
  10124. bottom: 0.045
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(1, "inch")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(4 + 10 / 12, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(200, "feet")
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(120, "miles")
  10145. },
  10146. {
  10147. name: "Gigamacro",
  10148. height: math.unit(9800, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(1.7, "meters"),
  10157. weight: math.unit(140, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/moody/front.svg",
  10161. extra: 3226 / 3007,
  10162. bottom: 0.087
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(1, "mm")
  10170. },
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(1.7, "meters"),
  10174. default: true
  10175. },
  10176. {
  10177. name: "Macro",
  10178. height: math.unit(80, "meters")
  10179. },
  10180. {
  10181. name: "Macro+",
  10182. height: math.unit(500, "meters")
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(150, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/zyas/front.svg",
  10195. extra: 1180 / 1120,
  10196. bottom: 0.045
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(10, "feet"),
  10204. default: true
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(500, "feet")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(5, "miles")
  10213. },
  10214. {
  10215. name: "Teramacro",
  10216. height: math.unit(150000, "miles")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10222. {
  10223. front: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(150, "lb"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/cuon/front.svg",
  10229. extra: 1390 / 1320,
  10230. bottom: 0.008
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Micro",
  10237. height: math.unit(3, "inches")
  10238. },
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(18 + 9 / 12, "feet"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(360, "feet")
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(360, "miles")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(2.4, "meters"),
  10259. weight: math.unit(70, "kg"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/nyanuxk/front.svg",
  10263. extra: 1172 / 1084,
  10264. bottom: 0.065
  10265. }
  10266. },
  10267. side: {
  10268. height: math.unit(2.4, "meters"),
  10269. weight: math.unit(70, "kg"),
  10270. name: "Side",
  10271. image: {
  10272. source: "./media/characters/nyanuxk/side.svg",
  10273. extra: 1190 / 1132,
  10274. bottom: 0.007
  10275. }
  10276. },
  10277. back: {
  10278. height: math.unit(2.4, "meters"),
  10279. weight: math.unit(70, "kg"),
  10280. name: "Back",
  10281. image: {
  10282. source: "./media/characters/nyanuxk/back.svg",
  10283. extra: 1200 / 1141,
  10284. bottom: 0.015
  10285. }
  10286. },
  10287. foot: {
  10288. height: math.unit(0.52, "meters"),
  10289. name: "Foot",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/foot.svg"
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Micro",
  10298. height: math.unit(2, "cm")
  10299. },
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(2.4, "meters"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Smaller Macro",
  10307. height: math.unit(120, "meters")
  10308. },
  10309. {
  10310. name: "Bigger Macro",
  10311. height: math.unit(1.2, "km")
  10312. },
  10313. {
  10314. name: "Megamacro",
  10315. height: math.unit(15, "kilometers")
  10316. },
  10317. {
  10318. name: "Gigamacro",
  10319. height: math.unit(2000, "km")
  10320. },
  10321. {
  10322. name: "Teramacro",
  10323. height: math.unit(500000, "km")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10329. {
  10330. side: {
  10331. height: math.unit(6, "feet"),
  10332. name: "Side",
  10333. image: {
  10334. source: "./media/characters/ailbhe/side.svg",
  10335. extra: 757 / 464,
  10336. bottom: 0.041
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Normal",
  10343. height: math.unit(1.07, "meters"),
  10344. default: true
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(120, "kg"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/zevulfius/front.svg",
  10357. extra: 965 / 903
  10358. }
  10359. },
  10360. side: {
  10361. height: math.unit(6, "feet"),
  10362. weight: math.unit(120, "kg"),
  10363. name: "Side",
  10364. image: {
  10365. source: "./media/characters/zevulfius/side.svg",
  10366. extra: 939 / 900
  10367. }
  10368. },
  10369. back: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(120, "kg"),
  10372. name: "Back",
  10373. image: {
  10374. source: "./media/characters/zevulfius/back.svg",
  10375. extra: 918 / 854,
  10376. bottom: 0.005
  10377. }
  10378. },
  10379. foot: {
  10380. height: math.unit(6 / 3.72, "feet"),
  10381. name: "Foot",
  10382. image: {
  10383. source: "./media/characters/zevulfius/foot.svg"
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Macro",
  10390. height: math.unit(750, "meters")
  10391. },
  10392. {
  10393. name: "Megamacro",
  10394. height: math.unit(20, "km"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Gigamacro",
  10399. height: math.unit(2000, "km")
  10400. },
  10401. {
  10402. name: "Teramacro",
  10403. height: math.unit(250000, "km")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10409. {
  10410. front: {
  10411. height: math.unit(100, "feet"),
  10412. weight: math.unit(350, "kg"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/rikes/front.svg",
  10416. extra: 1565 / 1483,
  10417. bottom: 0.017
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Macro",
  10424. height: math.unit(100, "feet"),
  10425. default: true
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10431. {
  10432. anthro: {
  10433. height: math.unit(8, "feet"),
  10434. weight: math.unit(120, "kg"),
  10435. name: "Anthro",
  10436. image: {
  10437. source: "./media/characters/adam-silver-mane/anthro.svg",
  10438. extra: 5743 / 5339,
  10439. bottom: 0.07
  10440. }
  10441. },
  10442. taur: {
  10443. height: math.unit(16, "feet"),
  10444. weight: math.unit(1500, "kg"),
  10445. name: "Taur",
  10446. image: {
  10447. source: "./media/characters/adam-silver-mane/taur.svg",
  10448. extra: 1713 / 1571,
  10449. bottom: 0.01
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(8, "feet")
  10457. },
  10458. {
  10459. name: "Minimacro",
  10460. height: math.unit(80, "feet")
  10461. },
  10462. {
  10463. name: "Macro",
  10464. height: math.unit(800, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Megamacro",
  10469. height: math.unit(8000, "feet")
  10470. },
  10471. {
  10472. name: "Gigamacro",
  10473. height: math.unit(800, "miles")
  10474. },
  10475. {
  10476. name: "Teramacro",
  10477. height: math.unit(80000, "miles")
  10478. },
  10479. {
  10480. name: "Celestial",
  10481. height: math.unit(8e6, "miles")
  10482. },
  10483. {
  10484. name: "Star Dragon",
  10485. height: math.unit(800000, "parsecs")
  10486. },
  10487. {
  10488. name: "Godly",
  10489. height: math.unit(800, "teraparsecs")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/ky'owin/front.svg",
  10502. extra: 3888 / 3068,
  10503. bottom: 0.015
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(6 + 8 / 12, "feet")
  10511. },
  10512. {
  10513. name: "Large",
  10514. height: math.unit(68, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(132, "feet")
  10519. },
  10520. {
  10521. name: "Macro+",
  10522. height: math.unit(340, "feet")
  10523. },
  10524. {
  10525. name: "Macro++",
  10526. height: math.unit(680, "feet"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Megamacro",
  10531. height: math.unit(1, "mile")
  10532. },
  10533. {
  10534. name: "Megamacro+",
  10535. height: math.unit(10, "miles")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(4, "feet"),
  10544. weight: math.unit(50, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/mal/front.svg",
  10548. extra: 785 / 724,
  10549. bottom: 0.07
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Micro",
  10556. height: math.unit(4, "inches")
  10557. },
  10558. {
  10559. name: "Normal",
  10560. height: math.unit(4, "feet"),
  10561. default: true
  10562. },
  10563. {
  10564. name: "Macro",
  10565. height: math.unit(200, "feet")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/jordan-deware/front.svg",
  10578. extra: 1191 / 1012
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Nano",
  10585. height: math.unit(0.01, "mm")
  10586. },
  10587. {
  10588. name: "Minimicro",
  10589. height: math.unit(1, "mm")
  10590. },
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(0.5, "inches")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(4, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Minimacro",
  10602. height: math.unit(40, "meters")
  10603. },
  10604. {
  10605. name: "Small Macro",
  10606. height: math.unit(400, "meters")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(4, "miles")
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(40, "miles")
  10615. },
  10616. {
  10617. name: "Megamacro+",
  10618. height: math.unit(400, "miles")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(400000, "miles")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10628. {
  10629. side: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(150, "lb"),
  10632. name: "Side",
  10633. image: {
  10634. source: "./media/characters/kimiko/side.svg",
  10635. extra: 600 / 358
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(15, "feet"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(220, "feet")
  10648. },
  10649. {
  10650. name: "Macro+",
  10651. height: math.unit(1450, "feet")
  10652. },
  10653. {
  10654. name: "Megamacro",
  10655. height: math.unit(11500, "feet")
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(9500, "miles")
  10660. },
  10661. {
  10662. name: "Teramacro",
  10663. height: math.unit(2208005005, "miles")
  10664. },
  10665. {
  10666. name: "Examacro",
  10667. height: math.unit(2750, "parsecs")
  10668. },
  10669. {
  10670. name: "Zettamacro",
  10671. height: math.unit(101500, "parsecs")
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10677. {
  10678. front: {
  10679. height: math.unit(6, "feet"),
  10680. weight: math.unit(70, "kg"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/andrew-sleepy/front.svg"
  10684. }
  10685. },
  10686. side: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(70, "kg"),
  10689. name: "Side",
  10690. image: {
  10691. source: "./media/characters/andrew-sleepy/side.svg"
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Micro",
  10698. height: math.unit(1, "mm"),
  10699. default: true
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/judio/front.svg",
  10712. extra: 1258 / 1110
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(5 + 6 / 12, "feet")
  10720. },
  10721. {
  10722. name: "Macro",
  10723. height: math.unit(1000, "feet"),
  10724. default: true
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(10, "miles")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(68, "kg"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/nomaxice/front.svg",
  10741. extra: 1498 / 1073,
  10742. bottom: 0.075
  10743. }
  10744. },
  10745. foot: {
  10746. height: math.unit(1.1, "feet"),
  10747. name: "Foot",
  10748. image: {
  10749. source: "./media/characters/nomaxice/foot.svg"
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Micro",
  10756. height: math.unit(8, "cm")
  10757. },
  10758. {
  10759. name: "Norm",
  10760. height: math.unit(1.82, "m")
  10761. },
  10762. {
  10763. name: "Norm+",
  10764. height: math.unit(8.8, "feet")
  10765. },
  10766. {
  10767. name: "Big",
  10768. height: math.unit(8, "meters"),
  10769. default: true
  10770. },
  10771. {
  10772. name: "Macro",
  10773. height: math.unit(18, "meters")
  10774. },
  10775. {
  10776. name: "Macro+",
  10777. height: math.unit(88, "meters")
  10778. },
  10779. ]
  10780. ))
  10781. characterMakers.push(() => makeCharacter(
  10782. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10783. {
  10784. front: {
  10785. height: math.unit(12, "feet"),
  10786. weight: math.unit(1.5, "tons"),
  10787. name: "Front",
  10788. image: {
  10789. source: "./media/characters/dydros/front.svg",
  10790. extra: 863 / 800,
  10791. bottom: 0.015
  10792. }
  10793. },
  10794. back: {
  10795. height: math.unit(12, "feet"),
  10796. weight: math.unit(1.5, "tons"),
  10797. name: "Back",
  10798. image: {
  10799. source: "./media/characters/dydros/back.svg",
  10800. extra: 900 / 843,
  10801. bottom: 0.005
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(12, "feet"),
  10809. default: true
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(6, "feet"),
  10818. weight: math.unit(100, "kg"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/riggi/front.svg",
  10822. extra: 5787 / 5303
  10823. }
  10824. },
  10825. hyper: {
  10826. height: math.unit(6 * 5 / 3, "feet"),
  10827. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10828. name: "Hyper",
  10829. image: {
  10830. source: "./media/characters/riggi/hyper.svg",
  10831. extra: 3595 / 3485
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Small Macro",
  10838. height: math.unit(50, "feet")
  10839. },
  10840. {
  10841. name: "Default",
  10842. height: math.unit(200, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Loom",
  10847. height: math.unit(10000, "feet")
  10848. },
  10849. {
  10850. name: "Cruising Altitude",
  10851. height: math.unit(30000, "feet")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(100, "miles")
  10856. },
  10857. {
  10858. name: "Continent Sized",
  10859. height: math.unit(2800, "miles")
  10860. },
  10861. {
  10862. name: "Earth Sized",
  10863. height: math.unit(8000, "miles")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(250, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/alexi/front.svg",
  10876. extra: 3483 / 3291,
  10877. bottom: 0.04
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(250, "lb"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/alexi/back.svg",
  10886. extra: 3533 / 3356,
  10887. bottom: 0.021
  10888. }
  10889. },
  10890. frontTransforming: {
  10891. height: math.unit(8.58, "feet"),
  10892. weight: math.unit(1300, "lb"),
  10893. name: "Transforming",
  10894. image: {
  10895. source: "./media/characters/alexi/front-transforming.svg",
  10896. extra: 437 / 409,
  10897. bottom: 19 / 458.66
  10898. }
  10899. },
  10900. frontTransformed: {
  10901. height: math.unit(12.5, "feet"),
  10902. weight: math.unit(4000, "lb"),
  10903. name: "Transformed",
  10904. image: {
  10905. source: "./media/characters/alexi/front-transformed.svg",
  10906. extra: 639 / 614,
  10907. bottom: 30.55 / 671
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(14, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Minimacro",
  10919. height: math.unit(30, "meters")
  10920. },
  10921. {
  10922. name: "Macro",
  10923. height: math.unit(500, "meters")
  10924. },
  10925. {
  10926. name: "Megamacro",
  10927. height: math.unit(9000, "km")
  10928. },
  10929. {
  10930. name: "Teramacro",
  10931. height: math.unit(384000, "km")
  10932. },
  10933. ]
  10934. ))
  10935. characterMakers.push(() => makeCharacter(
  10936. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10937. {
  10938. front: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(150, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/kayroo/front.svg",
  10944. extra: 1153 / 1038,
  10945. bottom: 0.06
  10946. }
  10947. },
  10948. foot: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Foot",
  10952. image: {
  10953. source: "./media/characters/kayroo/foot.svg"
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(8, "feet"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Minimacro",
  10965. height: math.unit(250, "feet")
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(2800, "feet")
  10970. },
  10971. {
  10972. name: "Megamacro",
  10973. height: math.unit(5200, "feet")
  10974. },
  10975. {
  10976. name: "Gigamacro",
  10977. height: math.unit(27000, "feet")
  10978. },
  10979. {
  10980. name: "Omega",
  10981. height: math.unit(45000, "feet")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(18, "feet"),
  10990. weight: math.unit(5800, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/rhys/front.svg",
  10994. extra: 3386 / 3090,
  10995. bottom: 0.07
  10996. }
  10997. },
  10998. },
  10999. [
  11000. {
  11001. name: "Normal",
  11002. height: math.unit(18, "feet"),
  11003. default: true
  11004. },
  11005. {
  11006. name: "Working Size",
  11007. height: math.unit(200, "feet")
  11008. },
  11009. {
  11010. name: "Demolition Size",
  11011. height: math.unit(2000, "feet")
  11012. },
  11013. {
  11014. name: "Maximum Licensed Size",
  11015. height: math.unit(5, "miles")
  11016. },
  11017. {
  11018. name: "Maximum Observed Size",
  11019. height: math.unit(10, "yottameters")
  11020. },
  11021. ]
  11022. ))
  11023. characterMakers.push(() => makeCharacter(
  11024. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11025. {
  11026. front: {
  11027. height: math.unit(6, "feet"),
  11028. weight: math.unit(250, "lb"),
  11029. name: "Front",
  11030. image: {
  11031. source: "./media/characters/toto/front.svg",
  11032. extra: 527 / 479,
  11033. bottom: 0.05
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Micro",
  11040. height: math.unit(3, "feet")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(10, "feet")
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(150, "feet"),
  11049. default: true
  11050. },
  11051. {
  11052. name: "Megamacro",
  11053. height: math.unit(1200, "feet")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "King", species: ["lion"], tags: ["anthro"] },
  11059. {
  11060. back: {
  11061. height: math.unit(6, "feet"),
  11062. weight: math.unit(150, "lb"),
  11063. name: "Back",
  11064. image: {
  11065. source: "./media/characters/king/back.svg"
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Micro",
  11072. height: math.unit(2, "inches")
  11073. },
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(8, "feet")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(200, "feet"),
  11081. default: true
  11082. },
  11083. {
  11084. name: "Megamacro",
  11085. height: math.unit(50, "miles")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11091. {
  11092. anthro: {
  11093. height: math.unit(6 + 5 / 12, "feet"),
  11094. weight: math.unit(280, "lb"),
  11095. name: "Anthro",
  11096. image: {
  11097. source: "./media/characters/cordite/anthro.svg",
  11098. extra: 1986 / 1905,
  11099. bottom: 0.025
  11100. }
  11101. },
  11102. feral: {
  11103. height: math.unit(2, "feet"),
  11104. weight: math.unit(90, "lb"),
  11105. name: "Feral",
  11106. image: {
  11107. source: "./media/characters/cordite/feral.svg",
  11108. extra: 1260 / 755,
  11109. bottom: 0.05
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(6 + 5 / 12, "feet"),
  11117. default: true
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11123. {
  11124. front: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(150, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/pianostrong/front.svg",
  11130. extra: 6577 / 6254,
  11131. bottom: 0.02
  11132. }
  11133. },
  11134. side: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(150, "lb"),
  11137. name: "Side",
  11138. image: {
  11139. source: "./media/characters/pianostrong/side.svg",
  11140. extra: 6106 / 5730
  11141. }
  11142. },
  11143. back: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Back",
  11147. image: {
  11148. source: "./media/characters/pianostrong/back.svg",
  11149. extra: 6085 / 5733,
  11150. bottom: 0.01
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(100, "feet")
  11158. },
  11159. {
  11160. name: "Macro+",
  11161. height: math.unit(300, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Macro++",
  11166. height: math.unit(1000, "feet")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/kona/front.svg",
  11179. extra: 2960 / 2629,
  11180. bottom: 0.005
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(11 + 8 / 12, "feet")
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(850, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Macro+",
  11196. height: math.unit(1.5, "km"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Megamacro",
  11201. height: math.unit(80, "miles")
  11202. },
  11203. {
  11204. name: "Gigamacro",
  11205. height: math.unit(3500, "miles")
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11211. {
  11212. side: {
  11213. height: math.unit(1.9, "meters"),
  11214. weight: math.unit(326, "kg"),
  11215. name: "Side",
  11216. image: {
  11217. source: "./media/characters/levi/side.svg",
  11218. extra: 1704 / 1334,
  11219. bottom: 0.02
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(1.9, "meters"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Macro",
  11231. height: math.unit(20, "meters")
  11232. },
  11233. {
  11234. name: "Macro+",
  11235. height: math.unit(200, "meters")
  11236. },
  11237. {
  11238. name: "Megamacro",
  11239. height: math.unit(2, "km")
  11240. },
  11241. {
  11242. name: "Megamacro+",
  11243. height: math.unit(20, "km")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(2500, "km")
  11248. },
  11249. {
  11250. name: "Gigamacro+",
  11251. height: math.unit(120000, "km")
  11252. },
  11253. {
  11254. name: "Teramacro",
  11255. height: math.unit(7.77e6, "km")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6 + 4/12, "feet"),
  11264. weight: math.unit(190, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/bmc/front.svg",
  11268. extra: 1626/1472,
  11269. bottom: 79/1705
  11270. }
  11271. },
  11272. back: {
  11273. height: math.unit(6 + 4/12, "feet"),
  11274. weight: math.unit(190, "lb"),
  11275. name: "Back",
  11276. image: {
  11277. source: "./media/characters/bmc/back.svg",
  11278. extra: 1640/1479,
  11279. bottom: 45/1685
  11280. }
  11281. },
  11282. frontArmor: {
  11283. height: math.unit(6 + 4/12, "feet"),
  11284. weight: math.unit(190, "lb"),
  11285. name: "Front-armor",
  11286. image: {
  11287. source: "./media/characters/bmc/front-armor.svg",
  11288. extra: 1538/1468,
  11289. bottom: 79/1617
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Human-sized",
  11296. height: math.unit(6 + 4 / 12, "feet")
  11297. },
  11298. {
  11299. name: "Interactive Size",
  11300. height: math.unit(25, "feet")
  11301. },
  11302. {
  11303. name: "Small",
  11304. height: math.unit(250, "feet")
  11305. },
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(1250, "feet"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Good Day",
  11313. height: math.unit(88, "miles")
  11314. },
  11315. {
  11316. name: "Largest Measured Size",
  11317. height: math.unit(105.960, "galaxies")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(20, "feet"),
  11326. weight: math.unit(2016, "kg"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/sven-the-kaiju/front.svg",
  11330. extra: 1277/1250,
  11331. bottom: 35/1312
  11332. }
  11333. },
  11334. mouth: {
  11335. height: math.unit(1.85, "feet"),
  11336. name: "Mouth",
  11337. image: {
  11338. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Fairy",
  11345. height: math.unit(6, "inches")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(20, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Rampage",
  11354. height: math.unit(200, "feet")
  11355. },
  11356. {
  11357. name: "Archfey Forest Guardian",
  11358. height: math.unit(1, "mile")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(4, "meters"),
  11367. weight: math.unit(2, "tons"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/marik/front.svg",
  11371. extra: 1057 / 1003,
  11372. bottom: 0.08
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(4, "meters"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(20, "meters")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(50, "km")
  11389. },
  11390. {
  11391. name: "Gigamacro",
  11392. height: math.unit(100, "km")
  11393. },
  11394. {
  11395. name: "Alpha Macro",
  11396. height: math.unit(7.88e7, "yottameters")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(110, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/mel/front.svg",
  11409. extra: 736 / 617,
  11410. bottom: 0.017
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Pico",
  11417. height: math.unit(3, "pm")
  11418. },
  11419. {
  11420. name: "Nano",
  11421. height: math.unit(3, "nm")
  11422. },
  11423. {
  11424. name: "Micro",
  11425. height: math.unit(0.3, "mm"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Micro+",
  11430. height: math.unit(3, "mm")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(5 + 10.5 / 12, "feet")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11440. {
  11441. kaiju: {
  11442. height: math.unit(1.75, "meters"),
  11443. weight: math.unit(55, "kg"),
  11444. name: "Kaiju",
  11445. image: {
  11446. source: "./media/characters/lykonous/kaiju.svg",
  11447. extra: 1055 / 946,
  11448. bottom: 0.135
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(2.5, "meters"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Kaiju Dragon",
  11460. height: math.unit(60, "meters")
  11461. },
  11462. {
  11463. name: "Mega Kaiju",
  11464. height: math.unit(120, "km")
  11465. },
  11466. {
  11467. name: "Giga Kaiju",
  11468. height: math.unit(200, "megameters")
  11469. },
  11470. {
  11471. name: "Terra Kaiju",
  11472. height: math.unit(400, "gigameters")
  11473. },
  11474. {
  11475. name: "Kaiju Dragon God",
  11476. height: math.unit(13000, "exaparsecs")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/blü/front.svg",
  11489. extra: 1883 / 1564,
  11490. bottom: 0.031
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(13, "feet"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Big Boi",
  11502. height: math.unit(150, "meters")
  11503. },
  11504. {
  11505. name: "Mini Stomper",
  11506. height: math.unit(300, "meters")
  11507. },
  11508. {
  11509. name: "Macro",
  11510. height: math.unit(1000, "meters")
  11511. },
  11512. {
  11513. name: "Megamacro",
  11514. height: math.unit(11000, "meters")
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(11000, "km")
  11519. },
  11520. {
  11521. name: "Teramacro",
  11522. height: math.unit(420000, "km")
  11523. },
  11524. {
  11525. name: "Examacro",
  11526. height: math.unit(120, "parsecs")
  11527. },
  11528. {
  11529. name: "God Tho",
  11530. height: math.unit(98000000000, "parsecs")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11536. {
  11537. taurFront: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(200, "lb"),
  11540. name: "Taur (Front)",
  11541. image: {
  11542. source: "./media/characters/scales/taur-front.svg",
  11543. extra: 1,
  11544. bottom: 0.05
  11545. }
  11546. },
  11547. taurBack: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(200, "lb"),
  11550. name: "Taur (Back)",
  11551. image: {
  11552. source: "./media/characters/scales/taur-back.svg",
  11553. extra: 1,
  11554. bottom: 0.08
  11555. }
  11556. },
  11557. anthro: {
  11558. height: math.unit(6 * 7 / 12, "feet"),
  11559. weight: math.unit(100, "lb"),
  11560. name: "Anthro",
  11561. image: {
  11562. source: "./media/characters/scales/anthro.svg",
  11563. extra: 1,
  11564. bottom: 0.06
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(12, "feet"),
  11572. default: true
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6, "feet"),
  11581. weight: math.unit(150, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/koragos/front.svg",
  11585. extra: 841 / 794,
  11586. bottom: 0.035
  11587. }
  11588. },
  11589. back: {
  11590. height: math.unit(6, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Back",
  11593. image: {
  11594. source: "./media/characters/koragos/back.svg",
  11595. extra: 841 / 810,
  11596. bottom: 0.022
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(6 + 11 / 12, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(490, "feet")
  11609. },
  11610. {
  11611. name: "Megamacro",
  11612. height: math.unit(10, "miles")
  11613. },
  11614. {
  11615. name: "Gigamacro",
  11616. height: math.unit(50, "miles")
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(6, "feet"),
  11625. weight: math.unit(250, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/xylrem/front.svg",
  11629. extra: 3323 / 3050,
  11630. bottom: 0.065
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Micro",
  11637. height: math.unit(4, "feet")
  11638. },
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(16, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(2720, "feet")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(25000, "miles")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(8, "feet"),
  11659. weight: math.unit(250, "kg"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/ikideru/front.svg",
  11663. extra: 930 / 870,
  11664. bottom: 0.087
  11665. }
  11666. },
  11667. back: {
  11668. height: math.unit(8, "feet"),
  11669. weight: math.unit(250, "kg"),
  11670. name: "Back",
  11671. image: {
  11672. source: "./media/characters/ikideru/back.svg",
  11673. extra: 919 / 852,
  11674. bottom: 0.055
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Rare",
  11681. height: math.unit(8, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Playful Loom",
  11686. height: math.unit(80, "feet")
  11687. },
  11688. {
  11689. name: "City Leaner",
  11690. height: math.unit(230, "feet")
  11691. },
  11692. {
  11693. name: "Megamacro",
  11694. height: math.unit(2500, "feet")
  11695. },
  11696. {
  11697. name: "Gigamacro",
  11698. height: math.unit(26400, "feet")
  11699. },
  11700. {
  11701. name: "Tectonic Shifter",
  11702. height: math.unit(1.7, "megameters")
  11703. },
  11704. {
  11705. name: "Planet Carer",
  11706. height: math.unit(21, "megameters")
  11707. },
  11708. {
  11709. name: "God",
  11710. height: math.unit(11157.22, "parsecs")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(120, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/neo/front.svg"
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Micro",
  11729. height: math.unit(2, "inches"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Human Size",
  11734. height: math.unit(5 + 8 / 12, "feet")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(13 + 10 / 12, "feet"),
  11743. weight: math.unit(5320, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/chauncey-chantz/front.svg",
  11747. extra: 1587 / 1435,
  11748. bottom: 0.02
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(13 + 10 / 12, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(45, "feet")
  11761. },
  11762. {
  11763. name: "Megamacro",
  11764. height: math.unit(250, "miles")
  11765. },
  11766. {
  11767. name: "Planetary",
  11768. height: math.unit(10000, "miles")
  11769. },
  11770. {
  11771. name: "Galactic",
  11772. height: math.unit(40000, "parsecs")
  11773. },
  11774. {
  11775. name: "Universal",
  11776. height: math.unit(1, "yottameter")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/epifox/front.svg",
  11789. extra: 1,
  11790. bottom: 0.075
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Micro",
  11797. height: math.unit(6, "inches")
  11798. },
  11799. {
  11800. name: "Normal",
  11801. height: math.unit(12, "feet"),
  11802. default: true
  11803. },
  11804. {
  11805. name: "Macro",
  11806. height: math.unit(3810, "feet")
  11807. },
  11808. {
  11809. name: "Megamacro",
  11810. height: math.unit(500, "miles")
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11816. {
  11817. front: {
  11818. height: math.unit(1.8796, "m"),
  11819. weight: math.unit(230, "lb"),
  11820. name: "Front",
  11821. image: {
  11822. source: "./media/characters/colin-t/front.svg",
  11823. extra: 1272 / 1193,
  11824. bottom: 0.07
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Micro",
  11831. height: math.unit(0.571, "meters")
  11832. },
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(1.8796, "meters"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Tall",
  11840. height: math.unit(4, "meters")
  11841. },
  11842. {
  11843. name: "Macro",
  11844. height: math.unit(67.241, "meters")
  11845. },
  11846. {
  11847. name: "Megamacro",
  11848. height: math.unit(371.856, "meters")
  11849. },
  11850. {
  11851. name: "Planetary",
  11852. height: math.unit(12631.5689, "km")
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(1.85, "meters"),
  11861. weight: math.unit(80, "kg"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/matvei/front.svg",
  11865. extra: 614 / 594,
  11866. bottom: 0.01
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(1.85, "meters"),
  11874. default: true
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(5 + 9 / 12, "feet"),
  11883. weight: math.unit(70, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/quincy/front.svg",
  11887. extra: 3041 / 2751
  11888. }
  11889. },
  11890. back: {
  11891. height: math.unit(5 + 9 / 12, "feet"),
  11892. weight: math.unit(70, "lb"),
  11893. name: "Back",
  11894. image: {
  11895. source: "./media/characters/quincy/back.svg",
  11896. extra: 3041 / 2751
  11897. }
  11898. },
  11899. flying: {
  11900. height: math.unit(5 + 4 / 12, "feet"),
  11901. weight: math.unit(70, "lb"),
  11902. name: "Flying",
  11903. image: {
  11904. source: "./media/characters/quincy/flying.svg",
  11905. extra: 1044 / 930
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Micro",
  11912. height: math.unit(3, "cm")
  11913. },
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(5 + 9 / 12, "feet")
  11917. },
  11918. {
  11919. name: "Macro",
  11920. height: math.unit(200, "meters"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(1000, "meters")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(3 + 11/12, "feet"),
  11934. weight: math.unit(50, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/vanrel/front.svg",
  11938. extra: 1104/949,
  11939. bottom: 52/1156
  11940. }
  11941. },
  11942. back: {
  11943. height: math.unit(3 + 11/12, "feet"),
  11944. weight: math.unit(50, "lb"),
  11945. name: "Back",
  11946. image: {
  11947. source: "./media/characters/vanrel/back.svg",
  11948. extra: 1119/976,
  11949. bottom: 37/1156
  11950. }
  11951. },
  11952. tome: {
  11953. height: math.unit(1.35, "feet"),
  11954. weight: math.unit(10, "lb"),
  11955. name: "Vanrel's Tome",
  11956. rename: true,
  11957. image: {
  11958. source: "./media/characters/vanrel/tome.svg"
  11959. }
  11960. },
  11961. beans: {
  11962. height: math.unit(0.89, "feet"),
  11963. name: "Beans",
  11964. image: {
  11965. source: "./media/characters/vanrel/beans.svg"
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(3 + 11/12, "feet"),
  11973. default: true
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(7 + 5 / 12, "feet"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/kuiper-vanrel/front.svg",
  11985. extra: 1219/1169,
  11986. bottom: 69/1288
  11987. }
  11988. },
  11989. back: {
  11990. height: math.unit(7 + 5 / 12, "feet"),
  11991. name: "Back",
  11992. image: {
  11993. source: "./media/characters/kuiper-vanrel/back.svg",
  11994. extra: 1236/1193,
  11995. bottom: 27/1263
  11996. }
  11997. },
  11998. foot: {
  11999. height: math.unit(0.55, "meters"),
  12000. name: "Foot",
  12001. image: {
  12002. source: "./media/characters/kuiper-vanrel/foot.svg",
  12003. }
  12004. },
  12005. battle: {
  12006. height: math.unit(6.824, "feet"),
  12007. name: "Battle",
  12008. image: {
  12009. source: "./media/characters/kuiper-vanrel/battle.svg",
  12010. extra: 1466 / 1327,
  12011. bottom: 29 / 1492.5
  12012. }
  12013. },
  12014. meerkui: {
  12015. height: math.unit(18, "inches"),
  12016. name: "Meerkui",
  12017. image: {
  12018. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12019. extra: 1354/1289,
  12020. bottom: 69/1423
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(7 + 5 / 12, "feet"),
  12028. default: true
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(8 + 5 / 12, "feet"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/keset-vanrel/front.svg",
  12040. extra: 1231/1148,
  12041. bottom: 82/1313
  12042. }
  12043. },
  12044. back: {
  12045. height: math.unit(8 + 5 / 12, "feet"),
  12046. name: "Back",
  12047. image: {
  12048. source: "./media/characters/keset-vanrel/back.svg",
  12049. extra: 1240/1174,
  12050. bottom: 33/1273
  12051. }
  12052. },
  12053. hand: {
  12054. height: math.unit(0.6, "meters"),
  12055. name: "Hand",
  12056. image: {
  12057. source: "./media/characters/keset-vanrel/hand.svg"
  12058. }
  12059. },
  12060. foot: {
  12061. height: math.unit(0.94978, "meters"),
  12062. name: "Foot",
  12063. image: {
  12064. source: "./media/characters/keset-vanrel/foot.svg"
  12065. }
  12066. },
  12067. battle: {
  12068. height: math.unit(7.408, "feet"),
  12069. name: "Battle",
  12070. image: {
  12071. source: "./media/characters/keset-vanrel/battle.svg",
  12072. extra: 1890 / 1386,
  12073. bottom: 73.28 / 1970
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(8 + 5 / 12, "feet"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(150, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/neos/front.svg",
  12094. extra: 1696 / 992,
  12095. bottom: 0.14
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(54, "cm"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(100, "m")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(10, "km")
  12112. },
  12113. {
  12114. name: "Megamacro+",
  12115. height: math.unit(100, "km")
  12116. },
  12117. {
  12118. name: "Gigamacro",
  12119. height: math.unit(100, "Mm")
  12120. },
  12121. {
  12122. name: "Teramacro",
  12123. height: math.unit(100, "Gm")
  12124. },
  12125. {
  12126. name: "Examacro",
  12127. height: math.unit(100, "Em")
  12128. },
  12129. {
  12130. name: "Godly",
  12131. height: math.unit(10000, "Ym")
  12132. },
  12133. {
  12134. name: "Beyond Godly",
  12135. height: math.unit(25, "multiverses")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12141. {
  12142. feminine: {
  12143. height: math.unit(5, "feet"),
  12144. weight: math.unit(100, "lb"),
  12145. name: "Feminine",
  12146. image: {
  12147. source: "./media/characters/sammy-mouse/feminine.svg",
  12148. extra: 2526 / 2425,
  12149. bottom: 0.123
  12150. }
  12151. },
  12152. masculine: {
  12153. height: math.unit(5, "feet"),
  12154. weight: math.unit(100, "lb"),
  12155. name: "Masculine",
  12156. image: {
  12157. source: "./media/characters/sammy-mouse/masculine.svg",
  12158. extra: 2526 / 2425,
  12159. bottom: 0.123
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Micro",
  12166. height: math.unit(5, "inches")
  12167. },
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(5, "feet"),
  12171. default: true
  12172. },
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(60, "feet")
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(4, "feet"),
  12184. weight: math.unit(50, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/kole/front.svg",
  12188. extra: 1423 / 1303,
  12189. bottom: 0.025
  12190. }
  12191. },
  12192. back: {
  12193. height: math.unit(4, "feet"),
  12194. weight: math.unit(50, "lb"),
  12195. name: "Back",
  12196. image: {
  12197. source: "./media/characters/kole/back.svg",
  12198. extra: 1426 / 1280,
  12199. bottom: 0.02
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Normal",
  12206. height: math.unit(4, "feet"),
  12207. default: true
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(2.5, "feet"),
  12216. weight: math.unit(32, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/rufran/front.svg",
  12220. extra: 1313/885,
  12221. bottom: 94/1407
  12222. }
  12223. },
  12224. side: {
  12225. height: math.unit(2.5, "feet"),
  12226. weight: math.unit(32, "lb"),
  12227. name: "Side",
  12228. image: {
  12229. source: "./media/characters/rufran/side.svg",
  12230. extra: 1109/852,
  12231. bottom: 118/1227
  12232. }
  12233. },
  12234. back: {
  12235. height: math.unit(2.5, "feet"),
  12236. weight: math.unit(32, "lb"),
  12237. name: "Back",
  12238. image: {
  12239. source: "./media/characters/rufran/back.svg",
  12240. extra: 1280/878,
  12241. bottom: 131/1411
  12242. }
  12243. },
  12244. mouth: {
  12245. height: math.unit(1.13, "feet"),
  12246. name: "Mouth",
  12247. image: {
  12248. source: "./media/characters/rufran/mouth.svg"
  12249. }
  12250. },
  12251. foot: {
  12252. height: math.unit(1.33, "feet"),
  12253. name: "Foot",
  12254. image: {
  12255. source: "./media/characters/rufran/foot.svg"
  12256. }
  12257. },
  12258. koboldFront: {
  12259. height: math.unit(2 + 6 / 12, "feet"),
  12260. weight: math.unit(20, "lb"),
  12261. name: "Front (Kobold)",
  12262. image: {
  12263. source: "./media/characters/rufran/kobold-front.svg",
  12264. extra: 2041 / 1839,
  12265. bottom: 0.055
  12266. }
  12267. },
  12268. koboldBack: {
  12269. height: math.unit(2 + 6 / 12, "feet"),
  12270. weight: math.unit(20, "lb"),
  12271. name: "Back (Kobold)",
  12272. image: {
  12273. source: "./media/characters/rufran/kobold-back.svg",
  12274. extra: 2054 / 1839,
  12275. bottom: 0.01
  12276. }
  12277. },
  12278. koboldHand: {
  12279. height: math.unit(0.2166, "meters"),
  12280. name: "Hand (Kobold)",
  12281. image: {
  12282. source: "./media/characters/rufran/kobold-hand.svg"
  12283. }
  12284. },
  12285. koboldFoot: {
  12286. height: math.unit(0.185, "meters"),
  12287. name: "Foot (Kobold)",
  12288. image: {
  12289. source: "./media/characters/rufran/kobold-foot.svg"
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Micro",
  12296. height: math.unit(1, "inch")
  12297. },
  12298. {
  12299. name: "Normal",
  12300. height: math.unit(2 + 6 / 12, "feet"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Big",
  12305. height: math.unit(60, "feet")
  12306. },
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(325, "feet")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(0.3, "meters"),
  12318. weight: math.unit(3.5, "kg"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/chip/front.svg",
  12322. extra: 748 / 674
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Micro",
  12329. height: math.unit(1, "inch"),
  12330. default: true
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12336. {
  12337. side: {
  12338. height: math.unit(2.3, "meters"),
  12339. weight: math.unit(3500, "lb"),
  12340. name: "Side",
  12341. image: {
  12342. source: "./media/characters/torvid/side.svg",
  12343. extra: 1972 / 722,
  12344. bottom: 0.035
  12345. }
  12346. },
  12347. },
  12348. [
  12349. {
  12350. name: "Normal",
  12351. height: math.unit(2.3, "meters"),
  12352. default: true
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(2, "meters"),
  12361. weight: math.unit(150.5, "kg"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/susan/front.svg",
  12365. extra: 693 / 635,
  12366. bottom: 0.05
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(505, "miles"),
  12374. default: true
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12380. {
  12381. front: {
  12382. height: math.unit(6, "feet"),
  12383. weight: math.unit(150, "lb"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/raindrops/front.svg",
  12387. extra: 2655 / 2461,
  12388. bottom: 49 / 2705
  12389. }
  12390. },
  12391. back: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(150, "lb"),
  12394. name: "Back",
  12395. image: {
  12396. source: "./media/characters/raindrops/back.svg",
  12397. extra: 2574 / 2400,
  12398. bottom: 65 / 2634
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Micro",
  12405. height: math.unit(6, "inches")
  12406. },
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(6 + 2 / 12, "feet")
  12410. },
  12411. {
  12412. name: "Macro",
  12413. height: math.unit(131, "feet"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Megamacro",
  12418. height: math.unit(15, "miles")
  12419. },
  12420. {
  12421. name: "Gigamacro",
  12422. height: math.unit(4000, "miles")
  12423. },
  12424. {
  12425. name: "Teramacro",
  12426. height: math.unit(315000, "miles")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(2.794, "meters"),
  12435. weight: math.unit(325, "kg"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/tezwa/front.svg",
  12439. extra: 2083 / 1906,
  12440. bottom: 0.031
  12441. }
  12442. },
  12443. foot: {
  12444. height: math.unit(0.687, "meters"),
  12445. name: "Foot",
  12446. image: {
  12447. source: "./media/characters/tezwa/foot.svg"
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(9 + 2 / 12, "feet"),
  12455. default: true
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(58, "feet"),
  12464. weight: math.unit(89000, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/typhus/front.svg",
  12468. extra: 816 / 800,
  12469. bottom: 0.065
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(58, "feet"),
  12477. default: true
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(12, "feet"),
  12486. weight: math.unit(6, "tonnes"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/lyra-von-wulf/front.svg",
  12490. extra: 1,
  12491. bottom: 0.10
  12492. }
  12493. },
  12494. frontMecha: {
  12495. height: math.unit(12, "feet"),
  12496. weight: math.unit(12, "tonnes"),
  12497. name: "Front (Mecha)",
  12498. image: {
  12499. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12500. extra: 1,
  12501. bottom: 0.042
  12502. }
  12503. },
  12504. maw: {
  12505. height: math.unit(2.2, "feet"),
  12506. name: "Maw",
  12507. image: {
  12508. source: "./media/characters/lyra-von-wulf/maw.svg"
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(12, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Classic",
  12520. height: math.unit(50, "feet")
  12521. },
  12522. {
  12523. name: "Macro",
  12524. height: math.unit(500, "feet")
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(1, "mile")
  12529. },
  12530. {
  12531. name: "Gigamacro",
  12532. height: math.unit(400, "miles")
  12533. },
  12534. {
  12535. name: "Teramacro",
  12536. height: math.unit(22000, "miles")
  12537. },
  12538. {
  12539. name: "Solarmacro",
  12540. height: math.unit(8600000, "miles")
  12541. },
  12542. {
  12543. name: "Galactic",
  12544. height: math.unit(1057000, "lightyears")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6 + 10 / 12, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/dixon/front.svg",
  12557. extra: 3361 / 3209,
  12558. bottom: 0.01
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(6 + 10 / 12, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Big",
  12570. height: math.unit(12, "meters")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(500, "meters")
  12575. },
  12576. {
  12577. name: "Megamacro",
  12578. height: math.unit(2, "km")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(185, "cm"),
  12587. weight: math.unit(68, "kg"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/kauko/front.svg",
  12591. extra: 1455 / 1421,
  12592. bottom: 0.03
  12593. }
  12594. },
  12595. back: {
  12596. height: math.unit(185, "cm"),
  12597. weight: math.unit(68, "kg"),
  12598. name: "Back",
  12599. image: {
  12600. source: "./media/characters/kauko/back.svg",
  12601. extra: 1455 / 1421,
  12602. bottom: 0.004
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(185, "cm"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "kg"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/varg/front.svg",
  12623. extra: 1108 / 1018,
  12624. bottom: 0.0375
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(5, "meters")
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(200, "meters")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(20, "kilometers")
  12640. },
  12641. {
  12642. name: "True Size",
  12643. height: math.unit(211, "km"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Gigamacro",
  12648. height: math.unit(1000, "km")
  12649. },
  12650. {
  12651. name: "Gigamacro+",
  12652. height: math.unit(8000, "km")
  12653. },
  12654. {
  12655. name: "Teramacro",
  12656. height: math.unit(1000000, "km")
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(7 + 7 / 12, "feet"),
  12665. weight: math.unit(267, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/dayza/front.svg",
  12669. extra: 1262 / 1200,
  12670. bottom: 0.035
  12671. }
  12672. },
  12673. side: {
  12674. height: math.unit(7 + 7 / 12, "feet"),
  12675. weight: math.unit(267, "lb"),
  12676. name: "Side",
  12677. image: {
  12678. source: "./media/characters/dayza/side.svg",
  12679. extra: 1295 / 1245,
  12680. bottom: 0.05
  12681. }
  12682. },
  12683. back: {
  12684. height: math.unit(7 + 7 / 12, "feet"),
  12685. weight: math.unit(267, "lb"),
  12686. name: "Back",
  12687. image: {
  12688. source: "./media/characters/dayza/back.svg",
  12689. extra: 1241 / 1170
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(7 + 7 / 12, "feet"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(155, "feet")
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12707. {
  12708. front: {
  12709. height: math.unit(6 + 5 / 12, "feet"),
  12710. weight: math.unit(160, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/xanthos/front.svg",
  12714. extra: 1,
  12715. bottom: 0.04
  12716. }
  12717. },
  12718. back: {
  12719. height: math.unit(6 + 5 / 12, "feet"),
  12720. weight: math.unit(160, "lb"),
  12721. name: "Back",
  12722. image: {
  12723. source: "./media/characters/xanthos/back.svg",
  12724. extra: 1,
  12725. bottom: 0.03
  12726. }
  12727. },
  12728. hand: {
  12729. height: math.unit(0.928, "feet"),
  12730. name: "Hand",
  12731. image: {
  12732. source: "./media/characters/xanthos/hand.svg"
  12733. }
  12734. },
  12735. foot: {
  12736. height: math.unit(1.286, "feet"),
  12737. name: "Foot",
  12738. image: {
  12739. source: "./media/characters/xanthos/foot.svg"
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Normal",
  12746. height: math.unit(6 + 5 / 12, "feet"),
  12747. default: true
  12748. },
  12749. {
  12750. name: "Normal+",
  12751. height: math.unit(6, "meters")
  12752. },
  12753. {
  12754. name: "Macro",
  12755. height: math.unit(40, "feet")
  12756. },
  12757. {
  12758. name: "Macro+",
  12759. height: math.unit(200, "meters")
  12760. },
  12761. {
  12762. name: "Megamacro",
  12763. height: math.unit(20, "km")
  12764. },
  12765. {
  12766. name: "Megamacro+",
  12767. height: math.unit(100, "km")
  12768. },
  12769. {
  12770. name: "Gigamacro",
  12771. height: math.unit(200, "megameters")
  12772. },
  12773. {
  12774. name: "Gigamacro+",
  12775. height: math.unit(1.5, "gigameters")
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6 + 3 / 12, "feet"),
  12784. weight: math.unit(215, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/grynn/front.svg",
  12788. extra: 4627 / 4209,
  12789. bottom: 0.047
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Micro",
  12796. height: math.unit(6, "inches")
  12797. },
  12798. {
  12799. name: "Normal",
  12800. height: math.unit(6 + 3 / 12, "feet"),
  12801. default: true
  12802. },
  12803. {
  12804. name: "Big",
  12805. height: math.unit(104, "feet")
  12806. },
  12807. {
  12808. name: "Macro",
  12809. height: math.unit(944, "feet")
  12810. },
  12811. {
  12812. name: "Macro+",
  12813. height: math.unit(9480, "feet")
  12814. },
  12815. {
  12816. name: "Megamacro",
  12817. height: math.unit(78752, "feet")
  12818. },
  12819. {
  12820. name: "Megamacro+",
  12821. height: math.unit(630128, "feet")
  12822. },
  12823. {
  12824. name: "Megamacro++",
  12825. height: math.unit(3150695, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(7 + 5 / 12, "feet"),
  12834. weight: math.unit(450, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/mocha-aura/front.svg",
  12838. extra: 1907 / 1817,
  12839. bottom: 0.04
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(7 + 5 / 12, "feet"),
  12844. weight: math.unit(450, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/mocha-aura/back.svg",
  12848. extra: 1900 / 1825,
  12849. bottom: 0.045
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Nano",
  12856. height: math.unit(1, "nm")
  12857. },
  12858. {
  12859. name: "Megamicro",
  12860. height: math.unit(1, "mm")
  12861. },
  12862. {
  12863. name: "Micro",
  12864. height: math.unit(3, "inches")
  12865. },
  12866. {
  12867. name: "Normal",
  12868. height: math.unit(7 + 5 / 12, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Macro",
  12873. height: math.unit(30, "feet")
  12874. },
  12875. {
  12876. name: "Megamacro",
  12877. height: math.unit(3500, "feet")
  12878. },
  12879. {
  12880. name: "Teramacro",
  12881. height: math.unit(500000, "miles")
  12882. },
  12883. {
  12884. name: "Petamacro",
  12885. height: math.unit(50000000000000000, "parsecs")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/ilisha-devya/front.svg",
  12898. extra: 1,
  12899. bottom: 0.175
  12900. }
  12901. },
  12902. back: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Back",
  12906. image: {
  12907. source: "./media/characters/ilisha-devya/back.svg",
  12908. extra: 1,
  12909. bottom: 0.015
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(500, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(10, "miles")
  12922. },
  12923. {
  12924. name: "Gigamacro",
  12925. height: math.unit(100000, "miles")
  12926. },
  12927. {
  12928. name: "Examacro",
  12929. height: math.unit(1e9, "lightyears")
  12930. },
  12931. {
  12932. name: "Omniversal",
  12933. height: math.unit(1e33, "lightyears")
  12934. },
  12935. {
  12936. name: "Beyond Infinite",
  12937. height: math.unit(1e100, "lightyears")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12943. {
  12944. Side: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Side",
  12948. image: {
  12949. source: "./media/characters/mira/side.svg",
  12950. extra: 900 / 799,
  12951. bottom: 0.02
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Human Size",
  12958. height: math.unit(6, "feet")
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(100, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(10, "miles")
  12968. },
  12969. {
  12970. name: "Gigamacro",
  12971. height: math.unit(25000, "miles")
  12972. },
  12973. {
  12974. name: "Teramacro",
  12975. height: math.unit(300, "AU")
  12976. },
  12977. {
  12978. name: "Full Size",
  12979. height: math.unit(4.5e10, "lightyears")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Holly", species: ["hyena"], 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/holly/front.svg",
  12992. extra: 639 / 606
  12993. }
  12994. },
  12995. back: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Back",
  12999. image: {
  13000. source: "./media/characters/holly/back.svg",
  13001. extra: 623 / 598
  13002. }
  13003. },
  13004. frontWorking: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Front (Working)",
  13008. image: {
  13009. source: "./media/characters/holly/front-working.svg",
  13010. extra: 607 / 577,
  13011. bottom: 0.048
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(12 + 3 / 12, "feet"),
  13019. default: true
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/porter/front.svg",
  13032. extra: 1,
  13033. bottom: 0.01
  13034. }
  13035. },
  13036. frontRobes: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front (Robes)",
  13040. image: {
  13041. source: "./media/characters/porter/front-robes.svg",
  13042. extra: 1.01,
  13043. bottom: 0.01
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Normal",
  13050. height: math.unit(11 + 9 / 12, "feet"),
  13051. default: true
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13057. {
  13058. legendary: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Legendary",
  13062. image: {
  13063. source: "./media/characters/lucy/legendary.svg",
  13064. extra: 1355 / 1100,
  13065. bottom: 0.045
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Legendary",
  13072. height: math.unit(86882 * 2, "miles"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Drusilla", species: ["grizzly-bear", "fox"], 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/drusilla/front.svg",
  13086. extra: 678 / 635,
  13087. bottom: 0.03
  13088. }
  13089. },
  13090. back: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(150, "lb"),
  13093. name: "Back",
  13094. image: {
  13095. source: "./media/characters/drusilla/back.svg",
  13096. extra: 678 / 635,
  13097. bottom: 0.005
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Macro",
  13104. height: math.unit(100, "feet")
  13105. },
  13106. {
  13107. name: "Canon Height",
  13108. height: math.unit(2000, "feet"),
  13109. default: true
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(180, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/renard-thatch/front.svg",
  13122. extra: 2411 / 2275,
  13123. bottom: 0.01
  13124. }
  13125. },
  13126. frontPosing: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(180, "lb"),
  13129. name: "Front (Posing)",
  13130. image: {
  13131. source: "./media/characters/renard-thatch/front-posing.svg",
  13132. extra: 2381 / 2261,
  13133. bottom: 0.01
  13134. }
  13135. },
  13136. back: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(180, "lb"),
  13139. name: "Back",
  13140. image: {
  13141. source: "./media/characters/renard-thatch/back.svg",
  13142. extra: 2428 / 2288
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Micro",
  13149. height: math.unit(3, "inches")
  13150. },
  13151. {
  13152. name: "Default",
  13153. height: math.unit(6, "feet"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(75, "feet")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(1450, "feet"),
  13167. weight: math.unit(1.21e6, "tons"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/sekvra/front.svg",
  13171. extra: 1,
  13172. bottom: 0.03
  13173. }
  13174. },
  13175. frontClothed: {
  13176. height: math.unit(1450, "feet"),
  13177. weight: math.unit(1.21e6, "tons"),
  13178. name: "Front (Clothed)",
  13179. image: {
  13180. source: "./media/characters/sekvra/front-clothed.svg",
  13181. extra: 1,
  13182. bottom: 0.03
  13183. }
  13184. },
  13185. side: {
  13186. height: math.unit(1450, "feet"),
  13187. weight: math.unit(1.21e6, "tons"),
  13188. name: "Side",
  13189. image: {
  13190. source: "./media/characters/sekvra/side.svg",
  13191. extra: 1,
  13192. bottom: 0.025
  13193. }
  13194. },
  13195. back: {
  13196. height: math.unit(1450, "feet"),
  13197. weight: math.unit(1.21e6, "tons"),
  13198. name: "Back",
  13199. image: {
  13200. source: "./media/characters/sekvra/back.svg",
  13201. extra: 1,
  13202. bottom: 0.005
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(1450, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Megamacro",
  13214. height: math.unit(15000, "feet")
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(6, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/carmine/front.svg",
  13227. extra: 1,
  13228. bottom: 0.035
  13229. }
  13230. },
  13231. frontArmor: {
  13232. height: math.unit(6, "feet"),
  13233. weight: math.unit(150, "lb"),
  13234. name: "Front (Armor)",
  13235. image: {
  13236. source: "./media/characters/carmine/front-armor.svg",
  13237. extra: 1,
  13238. bottom: 0.035
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Large",
  13245. height: math.unit(1, "mile")
  13246. },
  13247. {
  13248. name: "Huge",
  13249. height: math.unit(40, "miles"),
  13250. default: true
  13251. },
  13252. {
  13253. name: "Colossal",
  13254. height: math.unit(2500, "miles")
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/elyssia/front.svg",
  13267. extra: 2201 / 2035,
  13268. bottom: 0.05
  13269. }
  13270. },
  13271. frontClothed: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Front (Clothed)",
  13275. image: {
  13276. source: "./media/characters/elyssia/front-clothed.svg",
  13277. extra: 2201 / 2035,
  13278. bottom: 0.05
  13279. }
  13280. },
  13281. back: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(150, "lb"),
  13284. name: "Back",
  13285. image: {
  13286. source: "./media/characters/elyssia/back.svg",
  13287. extra: 2201 / 2035,
  13288. bottom: 0.013
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Smaller",
  13295. height: math.unit(150, "feet")
  13296. },
  13297. {
  13298. name: "Standard",
  13299. height: math.unit(1400, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Distracted",
  13304. height: math.unit(15000, "feet")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(7 + 4 / 12, "feet"),
  13313. weight: math.unit(500, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/geno-maxwell/front.svg",
  13317. extra: 2207 / 2040,
  13318. bottom: 0.015
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Micro",
  13325. height: math.unit(3, "inches")
  13326. },
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(7 + 4 / 12, "feet"),
  13330. default: true
  13331. },
  13332. {
  13333. name: "Macro",
  13334. height: math.unit(220, "feet")
  13335. },
  13336. {
  13337. name: "Megamacro",
  13338. height: math.unit(11, "miles")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(7 + 4 / 12, "feet"),
  13347. weight: math.unit(500, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/regena-maxwell/front.svg",
  13351. extra: 3115 / 2770,
  13352. bottom: 0.02
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(7 + 4 / 12, "feet"),
  13360. default: true
  13361. },
  13362. {
  13363. name: "Macro",
  13364. height: math.unit(220, "feet")
  13365. },
  13366. {
  13367. name: "Megamacro",
  13368. height: math.unit(11, "miles")
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13374. {
  13375. front: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(150, "lb"),
  13378. name: "Front",
  13379. image: {
  13380. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13381. extra: 860 / 690,
  13382. bottom: 0.03
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Normal",
  13389. height: math.unit(1.7, "meters"),
  13390. default: true
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(150, "lb"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/quilly/front.svg",
  13403. extra: 890 / 776
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Gigamacro",
  13410. height: math.unit(404090, "miles"),
  13411. default: true
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(7 + 8 / 12, "feet"),
  13420. weight: math.unit(350, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/tempest/front.svg",
  13424. extra: 1175 / 1086,
  13425. bottom: 0.02
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(7 + 8 / 12, "feet"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13439. {
  13440. side: {
  13441. height: math.unit(4 + 5 / 12, "feet"),
  13442. weight: math.unit(80, "lb"),
  13443. name: "Side",
  13444. image: {
  13445. source: "./media/characters/rodger/side.svg",
  13446. extra: 1235 / 1118
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Micro",
  13453. height: math.unit(1, "inch")
  13454. },
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(4 + 5 / 12, "feet"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Macro",
  13462. height: math.unit(120, "feet")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Danyel", species: ["dragon"], 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/danyel/front.svg",
  13475. extra: 1185 / 1123,
  13476. bottom: 0.05
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Shrunken",
  13483. height: math.unit(0.5, "mm")
  13484. },
  13485. {
  13486. name: "Micro",
  13487. height: math.unit(1, "mm"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Upsized",
  13492. height: math.unit(5 + 5 / 12, "feet")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(5 + 6 / 12, "feet"),
  13501. weight: math.unit(200, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/vivian-bijoux/front.svg",
  13505. extra: 1,
  13506. bottom: 0.072
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(5 + 6 / 12, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Bad Dream",
  13518. height: math.unit(500, "feet")
  13519. },
  13520. {
  13521. name: "Nightmare",
  13522. height: math.unit(500, "miles")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(6 + 1 / 12, "feet"),
  13531. weight: math.unit(260, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/zeta/front.svg",
  13535. extra: 1968 / 1889,
  13536. bottom: 0.06
  13537. }
  13538. },
  13539. back: {
  13540. height: math.unit(6 + 1 / 12, "feet"),
  13541. weight: math.unit(260, "lb"),
  13542. name: "Back",
  13543. image: {
  13544. source: "./media/characters/zeta/back.svg",
  13545. extra: 1944 / 1858,
  13546. bottom: 0.03
  13547. }
  13548. },
  13549. hand: {
  13550. height: math.unit(1.112, "feet"),
  13551. name: "Hand",
  13552. image: {
  13553. source: "./media/characters/zeta/hand.svg"
  13554. }
  13555. },
  13556. foot: {
  13557. height: math.unit(1.48, "feet"),
  13558. name: "Foot",
  13559. image: {
  13560. source: "./media/characters/zeta/foot.svg"
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Micro",
  13567. height: math.unit(6, "inches")
  13568. },
  13569. {
  13570. name: "Normal",
  13571. height: math.unit(6 + 1 / 12, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(20, "feet")
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(6, "feet"),
  13585. weight: math.unit(150, "lb"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/jamie-larsen/front.svg",
  13589. extra: 962 / 933,
  13590. bottom: 0.02
  13591. }
  13592. },
  13593. back: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Back",
  13597. image: {
  13598. source: "./media/characters/jamie-larsen/back.svg",
  13599. extra: 997 / 946
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Macro",
  13606. height: math.unit(28 + 7 / 12, "feet"),
  13607. default: true
  13608. },
  13609. {
  13610. name: "Macro+",
  13611. height: math.unit(180, "feet")
  13612. },
  13613. {
  13614. name: "Megamacro",
  13615. height: math.unit(10, "miles")
  13616. },
  13617. {
  13618. name: "Gigamacro",
  13619. height: math.unit(200000, "miles")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(120, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/vance/front.svg",
  13632. extra: 1980 / 1890,
  13633. bottom: 0.09
  13634. }
  13635. },
  13636. back: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(120, "lb"),
  13639. name: "Back",
  13640. image: {
  13641. source: "./media/characters/vance/back.svg",
  13642. extra: 2081 / 1994,
  13643. bottom: 0.014
  13644. }
  13645. },
  13646. hand: {
  13647. height: math.unit(0.88, "feet"),
  13648. name: "Hand",
  13649. image: {
  13650. source: "./media/characters/vance/hand.svg"
  13651. }
  13652. },
  13653. foot: {
  13654. height: math.unit(0.64, "feet"),
  13655. name: "Foot",
  13656. image: {
  13657. source: "./media/characters/vance/foot.svg"
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Small",
  13664. height: math.unit(90, "feet"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(100, "meters")
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(15, "miles")
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(6, "feet"),
  13682. weight: math.unit(180, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/xochitl/front.svg",
  13686. extra: 2297 / 2261,
  13687. bottom: 0.065
  13688. }
  13689. },
  13690. back: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(180, "lb"),
  13693. name: "Back",
  13694. image: {
  13695. source: "./media/characters/xochitl/back.svg",
  13696. extra: 2386 / 2354,
  13697. bottom: 0.01
  13698. }
  13699. },
  13700. foot: {
  13701. height: math.unit(6 / 5 * 1.15, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Foot",
  13704. image: {
  13705. source: "./media/characters/xochitl/foot.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(80, "feet")
  13713. },
  13714. {
  13715. name: "Macro+",
  13716. height: math.unit(400, "feet"),
  13717. default: true
  13718. },
  13719. {
  13720. name: "Gigamacro",
  13721. height: math.unit(80000, "miles")
  13722. },
  13723. {
  13724. name: "Gigamacro+",
  13725. height: math.unit(400000, "miles")
  13726. },
  13727. {
  13728. name: "Teramacro",
  13729. height: math.unit(300, "AU")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/vincent/front.svg",
  13742. extra: 1130 / 1080,
  13743. bottom: 0.055
  13744. }
  13745. },
  13746. beak: {
  13747. height: math.unit(6 * 0.1, "feet"),
  13748. name: "Beak",
  13749. image: {
  13750. source: "./media/characters/vincent/beak.svg"
  13751. }
  13752. },
  13753. hand: {
  13754. height: math.unit(6 * 0.85, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Hand",
  13757. image: {
  13758. source: "./media/characters/vincent/hand.svg"
  13759. }
  13760. },
  13761. foot: {
  13762. height: math.unit(6 * 0.19, "feet"),
  13763. weight: math.unit(150, "lb"),
  13764. name: "Foot",
  13765. image: {
  13766. source: "./media/characters/vincent/foot.svg"
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Base",
  13773. height: math.unit(6 + 5 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(300, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(2, "miles")
  13783. },
  13784. {
  13785. name: "Gigamacro",
  13786. height: math.unit(1000, "miles")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(2, "meters"),
  13795. weight: math.unit(500, "kg"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/coatl/front.svg",
  13799. extra: 3948 / 3500,
  13800. bottom: 0.082
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(4, "meters")
  13808. },
  13809. {
  13810. name: "Macro",
  13811. height: math.unit(100, "meters"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Macro+",
  13816. height: math.unit(300, "meters")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(3, "gigameters")
  13821. },
  13822. {
  13823. name: "Megamacro+",
  13824. height: math.unit(300, "terameters")
  13825. },
  13826. {
  13827. name: "Megamacro++",
  13828. height: math.unit(3, "lightyears")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(50, "kg"),
  13838. name: "front",
  13839. image: {
  13840. source: "./media/characters/shiroryu/front.svg",
  13841. extra: 1990 / 1935
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Mortal Mingling",
  13848. height: math.unit(3, "meters")
  13849. },
  13850. {
  13851. name: "Kaiju-ish",
  13852. height: math.unit(250, "meters")
  13853. },
  13854. {
  13855. name: "Somewhat Godly",
  13856. height: math.unit(400, "km"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Planetary",
  13861. height: math.unit(300, "megameters")
  13862. },
  13863. {
  13864. name: "Galaxy-dwarfing",
  13865. height: math.unit(450, "kiloparsecs")
  13866. },
  13867. {
  13868. name: "Universe Eater",
  13869. height: math.unit(150, "gigaparsecs")
  13870. },
  13871. {
  13872. name: "Almost Immeasurable",
  13873. height: math.unit(1.3e266, "yottaparsecs")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(150, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/umeko/front.svg",
  13886. extra: 1,
  13887. bottom: 0.019
  13888. }
  13889. },
  13890. frontArmored: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(150, "lb"),
  13893. name: "Front (Armored)",
  13894. image: {
  13895. source: "./media/characters/umeko/front-armored.svg",
  13896. extra: 1,
  13897. bottom: 0.021
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Macro",
  13904. height: math.unit(220, "feet"),
  13905. default: true
  13906. },
  13907. {
  13908. name: "Guardian Dragon",
  13909. height: math.unit(50, "miles")
  13910. },
  13911. {
  13912. name: "Cosmic",
  13913. height: math.unit(800000, "miles")
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13919. {
  13920. front: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(150, "lb"),
  13923. name: "Front",
  13924. image: {
  13925. source: "./media/characters/cassidy/front.svg",
  13926. extra: 1,
  13927. bottom: 0.043
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Canon Height",
  13934. height: math.unit(120, "feet"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Macro+",
  13939. height: math.unit(400, "feet")
  13940. },
  13941. {
  13942. name: "Macro++",
  13943. height: math.unit(4000, "feet")
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(3, "miles")
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13953. {
  13954. front: {
  13955. height: math.unit(6, "feet"),
  13956. weight: math.unit(150, "lb"),
  13957. name: "Front",
  13958. image: {
  13959. source: "./media/characters/isaac/front.svg",
  13960. extra: 896 / 815,
  13961. bottom: 0.11
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Human Size",
  13968. height: math.unit(8, "feet"),
  13969. default: true
  13970. },
  13971. {
  13972. name: "Macro",
  13973. height: math.unit(400, "feet")
  13974. },
  13975. {
  13976. name: "Megamacro",
  13977. height: math.unit(50, "miles")
  13978. },
  13979. {
  13980. name: "Canon Height",
  13981. height: math.unit(200, "AU")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(72, "kg"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/sleekit/front.svg",
  13994. extra: 4693 / 4487,
  13995. bottom: 0.012
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Minimum Height",
  14002. height: math.unit(10, "meters")
  14003. },
  14004. {
  14005. name: "Smaller",
  14006. height: math.unit(25, "meters")
  14007. },
  14008. {
  14009. name: "Larger",
  14010. height: math.unit(38, "meters"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Maximum height",
  14015. height: math.unit(100, "meters")
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/nillia/front.svg",
  14028. extra: 2195 / 2037,
  14029. bottom: 0.005
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/nillia/back.svg",
  14038. extra: 2195 / 2037,
  14039. bottom: 0.005
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Canon Height",
  14046. height: math.unit(489, "feet"),
  14047. default: true
  14048. }
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/mesmyriza/front.svg",
  14060. extra: 2067 / 1784,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. foot: {
  14065. height: math.unit(6 / (250 / 35), "feet"),
  14066. name: "Foot",
  14067. image: {
  14068. source: "./media/characters/mesmyriza/foot.svg"
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(457, "meters"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Megamacro",
  14080. height: math.unit(8, "megameters")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(250, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/saudade/front.svg",
  14093. extra: 1172 / 1139,
  14094. bottom: 0.035
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Micro",
  14101. height: math.unit(3, "inches")
  14102. },
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(6, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(50, "feet")
  14111. },
  14112. {
  14113. name: "Megamacro",
  14114. height: math.unit(2800, "feet")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(5 + 4 / 12, "feet"),
  14123. weight: math.unit(100, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/keireer/front.svg",
  14127. extra: 716 / 666,
  14128. bottom: 0.05
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(5 + 4 / 12, "feet"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(6, "feet"),
  14145. weight: math.unit(90, "kg"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/mirja/front.svg",
  14149. extra: 1789 / 1683,
  14150. bottom: 0.05
  14151. }
  14152. },
  14153. frontDressed: {
  14154. height: math.unit(6, "feet"),
  14155. weight: math.unit(90, "lb"),
  14156. name: "Front (Dressed)",
  14157. image: {
  14158. source: "./media/characters/mirja/front-dressed.svg",
  14159. extra: 1789 / 1683,
  14160. bottom: 0.05
  14161. }
  14162. },
  14163. back: {
  14164. height: math.unit(6, "feet"),
  14165. weight: math.unit(90, "lb"),
  14166. name: "Back",
  14167. image: {
  14168. source: "./media/characters/mirja/back.svg",
  14169. extra: 953 / 917,
  14170. bottom: 0.017
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "\"Incognito\"",
  14177. height: math.unit(3, "meters")
  14178. },
  14179. {
  14180. name: "Strolling Size",
  14181. height: math.unit(15, "km")
  14182. },
  14183. {
  14184. name: "Larger Strolling Size",
  14185. height: math.unit(400, "km")
  14186. },
  14187. {
  14188. name: "Preferred Size",
  14189. height: math.unit(5000, "km")
  14190. },
  14191. {
  14192. name: "True Size",
  14193. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(15, "feet"),
  14203. weight: math.unit(880, "kg"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/nightraver/front.svg",
  14207. extra: 2444 / 2160,
  14208. bottom: 0.027
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(15, "feet"),
  14213. weight: math.unit(880, "kg"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/nightraver/back.svg",
  14217. extra: 2309 / 2180,
  14218. bottom: 0.005
  14219. }
  14220. },
  14221. sole: {
  14222. height: math.unit(2.878, "feet"),
  14223. name: "Sole",
  14224. image: {
  14225. source: "./media/characters/nightraver/sole.svg"
  14226. }
  14227. },
  14228. foot: {
  14229. height: math.unit(2.285, "feet"),
  14230. name: "Foot",
  14231. image: {
  14232. source: "./media/characters/nightraver/foot.svg"
  14233. }
  14234. },
  14235. maw: {
  14236. height: math.unit(2.67, "feet"),
  14237. name: "Maw",
  14238. image: {
  14239. source: "./media/characters/nightraver/maw.svg"
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(1, "cm")
  14247. },
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(15, "feet"),
  14251. default: true
  14252. },
  14253. {
  14254. name: "Macro",
  14255. height: math.unit(300, "feet")
  14256. },
  14257. {
  14258. name: "Megamacro",
  14259. height: math.unit(300, "miles")
  14260. },
  14261. {
  14262. name: "Gigamacro",
  14263. height: math.unit(10000, "miles")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14269. {
  14270. side: {
  14271. height: math.unit(2, "inches"),
  14272. weight: math.unit(5, "grams"),
  14273. name: "Side",
  14274. image: {
  14275. source: "./media/characters/arc/side.svg"
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Micro",
  14282. height: math.unit(2, "inches"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(1.1938, "meters"),
  14292. weight: math.unit(54, "kg"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/nebula-shahar/front.svg",
  14296. extra: 1642 / 1436,
  14297. bottom: 0.06
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Megamicro",
  14304. height: math.unit(0.3, "mm")
  14305. },
  14306. {
  14307. name: "Micro",
  14308. height: math.unit(3, "cm")
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(138, "cm"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(30, "m")
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(5.24, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/shayla/front.svg",
  14330. extra: 1512 / 1414,
  14331. bottom: 0.01
  14332. }
  14333. },
  14334. back: {
  14335. height: math.unit(5.24, "feet"),
  14336. weight: math.unit(150, "lb"),
  14337. name: "Back",
  14338. image: {
  14339. source: "./media/characters/shayla/back.svg",
  14340. extra: 1512 / 1414
  14341. }
  14342. },
  14343. hand: {
  14344. height: math.unit(0.7781496062992126, "feet"),
  14345. name: "Hand",
  14346. image: {
  14347. source: "./media/characters/shayla/hand.svg"
  14348. }
  14349. },
  14350. foot: {
  14351. height: math.unit(1.4206036745406823, "feet"),
  14352. name: "Foot",
  14353. image: {
  14354. source: "./media/characters/shayla/foot.svg"
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Micro",
  14361. height: math.unit(0.32, "feet")
  14362. },
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(5.24, "feet"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(492.12, "feet")
  14371. },
  14372. {
  14373. name: "Megamacro",
  14374. height: math.unit(186.41, "miles")
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(2.2, "m"),
  14383. weight: math.unit(120, "kg"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/pia-jr/front.svg",
  14387. extra: 1000 / 970,
  14388. bottom: 0.035
  14389. }
  14390. },
  14391. hand: {
  14392. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14393. name: "Hand",
  14394. image: {
  14395. source: "./media/characters/pia-jr/hand.svg"
  14396. }
  14397. },
  14398. paw: {
  14399. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14400. name: "Paw",
  14401. image: {
  14402. source: "./media/characters/pia-jr/paw.svg"
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Micro",
  14409. height: math.unit(1.2, "cm")
  14410. },
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(2.2, "m"),
  14414. default: true
  14415. },
  14416. {
  14417. name: "Macro",
  14418. height: math.unit(180, "m")
  14419. },
  14420. {
  14421. name: "Megamacro",
  14422. height: math.unit(420, "km")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(2, "m"),
  14431. weight: math.unit(115, "kg"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/pia-sr/front.svg",
  14435. extra: 760 / 730,
  14436. bottom: 0.015
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(2, "m"),
  14441. weight: math.unit(115, "kg"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/pia-sr/back.svg",
  14445. extra: 760 / 730,
  14446. bottom: 0.01
  14447. }
  14448. },
  14449. hand: {
  14450. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14451. name: "Hand",
  14452. image: {
  14453. source: "./media/characters/pia-sr/hand.svg"
  14454. }
  14455. },
  14456. foot: {
  14457. height: math.unit(1.83, "feet"),
  14458. name: "Foot",
  14459. image: {
  14460. source: "./media/characters/pia-sr/foot.svg"
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Micro",
  14467. height: math.unit(88, "mm")
  14468. },
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(2, "m"),
  14472. default: true
  14473. },
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(200, "m")
  14477. },
  14478. {
  14479. name: "Megamacro",
  14480. height: math.unit(420, "km")
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(8 + 2 / 12, "feet"),
  14489. weight: math.unit(300, "lb"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/kibibyte/front.svg",
  14493. extra: 2221 / 2098,
  14494. bottom: 0.04
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(8 + 2 / 12, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Socialable Macro",
  14506. height: math.unit(50, "feet")
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(300, "feet")
  14511. },
  14512. {
  14513. name: "Megamacro",
  14514. height: math.unit(500, "miles")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(150, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/felix/front.svg",
  14527. extra: 762 / 722,
  14528. bottom: 0.02
  14529. }
  14530. },
  14531. frontClothed: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(150, "lb"),
  14534. name: "Front (Clothed)",
  14535. image: {
  14536. source: "./media/characters/felix/front-clothed.svg",
  14537. extra: 762 / 722,
  14538. bottom: 0.02
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(6 + 8 / 12, "feet"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Macro",
  14550. height: math.unit(2600, "feet")
  14551. },
  14552. {
  14553. name: "Megamacro",
  14554. height: math.unit(450, "miles")
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14560. {
  14561. front: {
  14562. height: math.unit(6 + 1 / 12, "feet"),
  14563. weight: math.unit(250, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/tobo/front.svg",
  14567. extra: 608 / 586,
  14568. bottom: 0.023
  14569. }
  14570. },
  14571. back: {
  14572. height: math.unit(6 + 1 / 12, "feet"),
  14573. weight: math.unit(250, "lb"),
  14574. name: "Back",
  14575. image: {
  14576. source: "./media/characters/tobo/back.svg",
  14577. extra: 608 / 586
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Nano",
  14584. height: math.unit(2, "nm")
  14585. },
  14586. {
  14587. name: "Megamicro",
  14588. height: math.unit(0.1, "mm")
  14589. },
  14590. {
  14591. name: "Micro",
  14592. height: math.unit(1, "inch"),
  14593. default: true
  14594. },
  14595. {
  14596. name: "Human-sized",
  14597. height: math.unit(6 + 1 / 12, "feet")
  14598. },
  14599. {
  14600. name: "Macro",
  14601. height: math.unit(250, "feet")
  14602. },
  14603. {
  14604. name: "Megamacro",
  14605. height: math.unit(75, "miles")
  14606. },
  14607. {
  14608. name: "Texas-sized",
  14609. height: math.unit(750, "miles")
  14610. },
  14611. {
  14612. name: "Teramacro",
  14613. height: math.unit(50000, "miles")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(269, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/danny-kapowsky/front.svg",
  14626. extra: 766 / 736,
  14627. bottom: 0.044
  14628. }
  14629. },
  14630. back: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(269, "lb"),
  14633. name: "Back",
  14634. image: {
  14635. source: "./media/characters/danny-kapowsky/back.svg",
  14636. extra: 797 / 760,
  14637. bottom: 0.025
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(150, "feet"),
  14645. default: true
  14646. },
  14647. {
  14648. name: "Macro+",
  14649. height: math.unit(200, "feet")
  14650. },
  14651. {
  14652. name: "Macro++",
  14653. height: math.unit(300, "feet")
  14654. },
  14655. {
  14656. name: "Macro+++",
  14657. height: math.unit(400, "feet")
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14663. {
  14664. side: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(170, "lb"),
  14667. name: "Side",
  14668. image: {
  14669. source: "./media/characters/finn/side.svg",
  14670. extra: 1953 / 1807,
  14671. bottom: 0.057
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Megamacro",
  14678. height: math.unit(14445, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(5 + 6 / 12, "feet"),
  14688. weight: math.unit(125, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/roy/front.svg",
  14692. extra: 1,
  14693. bottom: 0.11
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Micro",
  14700. height: math.unit(3, "inches"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(5 + 6 / 12, "feet")
  14706. },
  14707. {
  14708. name: "Lesser Macro",
  14709. height: math.unit(60, "feet")
  14710. },
  14711. {
  14712. name: "Greater Macro",
  14713. height: math.unit(120, "feet")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(100, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/aevsivs/front.svg",
  14726. extra: 1,
  14727. bottom: 0.03
  14728. }
  14729. },
  14730. back: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(100, "lb"),
  14733. name: "Back",
  14734. image: {
  14735. source: "./media/characters/aevsivs/back.svg"
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Micro",
  14742. height: math.unit(2, "inches"),
  14743. default: true
  14744. },
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(5, "feet")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(5 + 7 / 12, "feet"),
  14756. weight: math.unit(159, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/hildegard/front.svg",
  14760. extra: 289 / 269,
  14761. bottom: 7.63 / 297.8
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(5 + 7 / 12, "feet"),
  14766. weight: math.unit(159, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/hildegard/back.svg",
  14770. extra: 280 / 260,
  14771. bottom: 2.3 / 282
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(5 + 7 / 12, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14785. {
  14786. bernard: {
  14787. height: math.unit(2 + 7 / 12, "feet"),
  14788. weight: math.unit(66, "lb"),
  14789. name: "Bernard",
  14790. rename: true,
  14791. image: {
  14792. source: "./media/characters/bernard-wilder/bernard.svg",
  14793. extra: 192 / 128,
  14794. bottom: 0.05
  14795. }
  14796. },
  14797. wilder: {
  14798. height: math.unit(5 + 8 / 12, "feet"),
  14799. weight: math.unit(143, "lb"),
  14800. name: "Wilder",
  14801. rename: true,
  14802. image: {
  14803. source: "./media/characters/bernard-wilder/wilder.svg",
  14804. extra: 361 / 312,
  14805. bottom: 0.02
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(2 + 7 / 12, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14819. {
  14820. anthro: {
  14821. height: math.unit(6 + 1 / 12, "feet"),
  14822. weight: math.unit(155, "lb"),
  14823. name: "Anthro",
  14824. image: {
  14825. source: "./media/characters/hearth/anthro.svg",
  14826. extra: 260 / 250,
  14827. bottom: 0.02
  14828. }
  14829. },
  14830. feral: {
  14831. height: math.unit(3.78, "feet"),
  14832. weight: math.unit(35, "kg"),
  14833. name: "Feral",
  14834. image: {
  14835. source: "./media/characters/hearth/feral.svg",
  14836. extra: 153 / 135,
  14837. bottom: 0.03
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(6 + 1 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(6, "feet"),
  14854. weight: math.unit(182, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/ingrid/front.svg",
  14858. extra: 294 / 268,
  14859. bottom: 0.027
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(6, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14873. {
  14874. eevee: {
  14875. height: math.unit(2 + 10 / 12, "feet"),
  14876. weight: math.unit(86, "lb"),
  14877. name: "Malgam",
  14878. image: {
  14879. source: "./media/characters/malgam/eevee.svg",
  14880. extra: 218 / 180,
  14881. bottom: 0.2
  14882. }
  14883. },
  14884. sylveon: {
  14885. height: math.unit(4, "feet"),
  14886. weight: math.unit(101, "lb"),
  14887. name: "Future Malgam",
  14888. rename: true,
  14889. image: {
  14890. source: "./media/characters/malgam/sylveon.svg",
  14891. extra: 371 / 325,
  14892. bottom: 0.015
  14893. }
  14894. },
  14895. gigantamax: {
  14896. height: math.unit(50, "feet"),
  14897. name: "Gigantamax Malgam",
  14898. rename: true,
  14899. image: {
  14900. source: "./media/characters/malgam/gigantamax.svg"
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(2 + 10 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(5 + 11 / 12, "feet"),
  14917. weight: math.unit(188, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/fleur/front.svg",
  14921. extra: 309 / 283,
  14922. bottom: 0.007
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(5 + 11 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(5 + 4 / 12, "feet"),
  14939. weight: math.unit(122, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/jude/front.svg",
  14943. extra: 288 / 273,
  14944. bottom: 0.03
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(5 + 4 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(5 + 11 / 12, "feet"),
  14961. weight: math.unit(190, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/seara/front.svg",
  14965. extra: 1,
  14966. bottom: 0.05
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(5 + 11 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(16 + 5 / 12, "feet"),
  14983. weight: math.unit(524, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/caspian/front.svg",
  14987. extra: 1,
  14988. bottom: 0.04
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(16 + 5 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 7 / 12, "feet"),
  15005. weight: math.unit(170, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/mika/front.svg",
  15009. extra: 1,
  15010. bottom: 0.016
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(5 + 7 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6 + 2 / 12, "feet"),
  15027. weight: math.unit(268, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/sol/front.svg",
  15031. extra: 247 / 231,
  15032. bottom: 0.05
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(6 + 2 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15046. {
  15047. buizel: {
  15048. height: math.unit(2 + 5 / 12, "feet"),
  15049. weight: math.unit(87, "lb"),
  15050. name: "Buizel",
  15051. image: {
  15052. source: "./media/characters/umiko/buizel.svg",
  15053. extra: 172 / 157,
  15054. bottom: 0.01
  15055. }
  15056. },
  15057. floatzel: {
  15058. height: math.unit(5 + 9 / 12, "feet"),
  15059. weight: math.unit(250, "lb"),
  15060. name: "Floatzel",
  15061. image: {
  15062. source: "./media/characters/umiko/floatzel.svg",
  15063. extra: 262 / 248
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(2 + 5 / 12, "feet"),
  15071. default: true
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6 + 2 / 12, "feet"),
  15080. weight: math.unit(146, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/iliac/front.svg",
  15084. extra: 389 / 365,
  15085. bottom: 0.035
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(6 + 2 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(170, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/topaz/front.svg",
  15106. extra: 317 / 303,
  15107. bottom: 0.055
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(6, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(5 + 11 / 12, "feet"),
  15124. weight: math.unit(144, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/gabriel/front.svg",
  15128. extra: 285 / 262,
  15129. bottom: 0.004
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(5 + 11 / 12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15143. {
  15144. side: {
  15145. height: math.unit(6 + 5 / 12, "feet"),
  15146. weight: math.unit(300, "lb"),
  15147. name: "Side",
  15148. image: {
  15149. source: "./media/characters/tempest-suicune/side.svg",
  15150. extra: 195 / 154,
  15151. bottom: 0.04
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(6 + 5 / 12, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(7 + 2 / 12, "feet"),
  15168. weight: math.unit(322, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/vulcan/front.svg",
  15172. extra: 154 / 147,
  15173. bottom: 0.04
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(7 + 2 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 10 / 12, "feet"),
  15190. weight: math.unit(264, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/gault/front.svg",
  15194. extra: 161 / 140,
  15195. bottom: 0.028
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(5 + 10 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/shard/front.svg",
  15216. extra: 273 / 238,
  15217. bottom: 0.02
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(3 + 6 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(5 + 11 / 12, "feet"),
  15234. weight: math.unit(146, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/ashe/front.svg",
  15238. extra: 400 / 373,
  15239. bottom: 0.01
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(5 + 11 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 5 / 12, "feet"),
  15256. weight: math.unit(135, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/beatrix/front.svg",
  15260. extra: 392 / 379,
  15261. bottom: 0.01
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(6, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/ignatius/front.svg",
  15282. extra: 245 / 222,
  15283. bottom: 0.01
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(5 + 5 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15297. {
  15298. front: {
  15299. height: math.unit(6 + 2 / 12, "feet"),
  15300. weight: math.unit(138, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/mei-li/front.svg",
  15304. extra: 237 / 229,
  15305. bottom: 0.03
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(6 + 2 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(2 + 4 / 12, "feet"),
  15322. weight: math.unit(62, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/puru/front.svg",
  15326. extra: 206 / 149,
  15327. bottom: 0.06
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(2 + 4 / 12, "feet"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15341. {
  15342. anthro: {
  15343. height: math.unit(5 + 8/12, "feet"),
  15344. weight: math.unit(200, "lb"),
  15345. energyNeed: math.unit(2000, "kcal"),
  15346. name: "Anthro",
  15347. image: {
  15348. source: "./media/characters/kee/anthro.svg",
  15349. extra: 3251/3184,
  15350. bottom: 250/3501
  15351. }
  15352. },
  15353. taur: {
  15354. height: math.unit(11, "feet"),
  15355. weight: math.unit(500, "lb"),
  15356. energyNeed: math.unit(5000, "kcal"),
  15357. name: "Taur",
  15358. image: {
  15359. source: "./media/characters/kee/taur.svg",
  15360. extra: 1362/1320,
  15361. bottom: 83/1445
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(5 + 8/12, "feet"),
  15369. default: true
  15370. },
  15371. {
  15372. name: "Macro",
  15373. height: math.unit(35, "feet")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15379. {
  15380. anthro: {
  15381. height: math.unit(7, "feet"),
  15382. weight: math.unit(190, "lb"),
  15383. name: "Anthro",
  15384. image: {
  15385. source: "./media/characters/cobalt-dracha/anthro.svg",
  15386. extra: 231 / 225,
  15387. bottom: 0.04
  15388. }
  15389. },
  15390. feral: {
  15391. height: math.unit(9 + 7 / 12, "feet"),
  15392. weight: math.unit(294, "lb"),
  15393. name: "Feral",
  15394. image: {
  15395. source: "./media/characters/cobalt-dracha/feral.svg",
  15396. extra: 692 / 633,
  15397. bottom: 0.05
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(7, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15411. {
  15412. fallen: {
  15413. height: math.unit(11 + 8 / 12, "feet"),
  15414. weight: math.unit(485, "lb"),
  15415. name: "Java (Fallen)",
  15416. rename: true,
  15417. image: {
  15418. source: "./media/characters/java/fallen.svg",
  15419. extra: 226 / 208,
  15420. bottom: 0.005
  15421. }
  15422. },
  15423. godkin: {
  15424. height: math.unit(10 + 6 / 12, "feet"),
  15425. weight: math.unit(328, "lb"),
  15426. name: "Java (Godkin)",
  15427. rename: true,
  15428. image: {
  15429. source: "./media/characters/java/godkin.svg",
  15430. extra: 270 / 262,
  15431. bottom: 0.02
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(11 + 8 / 12, "feet"),
  15439. default: true
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(7 + 8 / 12, "feet"),
  15448. weight: math.unit(320, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/skoll/front.svg",
  15452. extra: 232 / 220,
  15453. bottom: 0.02
  15454. }
  15455. },
  15456. },
  15457. [
  15458. {
  15459. name: "Normal",
  15460. height: math.unit(7 + 8 / 12, "feet"),
  15461. default: true
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15467. {
  15468. front: {
  15469. height: math.unit(5 + 9 / 12, "feet"),
  15470. weight: math.unit(170, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/purna/front.svg",
  15474. extra: 239 / 229,
  15475. bottom: 0.01
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(5 + 9 / 12, "feet"),
  15483. default: true
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(5 + 9 / 12, "feet"),
  15492. weight: math.unit(142, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/kuva/front.svg",
  15496. extra: 281 / 271,
  15497. bottom: 0.006
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(5 + 9 / 12, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15511. {
  15512. anthro: {
  15513. height: math.unit(9 + 2 / 12, "feet"),
  15514. weight: math.unit(270, "lb"),
  15515. name: "Anthro",
  15516. image: {
  15517. source: "./media/characters/embra/anthro.svg",
  15518. extra: 200 / 187,
  15519. bottom: 0.02
  15520. }
  15521. },
  15522. feral: {
  15523. height: math.unit(18 + 8 / 12, "feet"),
  15524. weight: math.unit(576, "lb"),
  15525. name: "Feral",
  15526. image: {
  15527. source: "./media/characters/embra/feral.svg",
  15528. extra: 152 / 137,
  15529. bottom: 0.037
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(9 + 2 / 12, "feet"),
  15537. default: true
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15543. {
  15544. anthro: {
  15545. height: math.unit(10 + 9 / 12, "feet"),
  15546. weight: math.unit(224, "lb"),
  15547. name: "Anthro",
  15548. image: {
  15549. source: "./media/characters/grottos/anthro.svg",
  15550. extra: 350 / 332,
  15551. bottom: 0.045
  15552. }
  15553. },
  15554. feral: {
  15555. height: math.unit(20 + 7 / 12, "feet"),
  15556. weight: math.unit(629, "lb"),
  15557. name: "Feral",
  15558. image: {
  15559. source: "./media/characters/grottos/feral.svg",
  15560. extra: 207 / 190,
  15561. bottom: 0.05
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(10 + 9 / 12, "feet"),
  15569. default: true
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15575. {
  15576. anthro: {
  15577. height: math.unit(9 + 6 / 12, "feet"),
  15578. weight: math.unit(298, "lb"),
  15579. name: "Anthro",
  15580. image: {
  15581. source: "./media/characters/frifna/anthro.svg",
  15582. extra: 282 / 269,
  15583. bottom: 0.015
  15584. }
  15585. },
  15586. feral: {
  15587. height: math.unit(16 + 2 / 12, "feet"),
  15588. weight: math.unit(624, "lb"),
  15589. name: "Feral",
  15590. image: {
  15591. source: "./media/characters/frifna/feral.svg"
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(9 + 6 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6 + 2 / 12, "feet"),
  15608. weight: math.unit(168, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/elise/front.svg",
  15612. extra: 276 / 271
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(6 + 2 / 12, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 10 / 12, "feet"),
  15629. weight: math.unit(210, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/glade/front.svg",
  15633. extra: 258 / 247,
  15634. bottom: 0.008
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(5 + 10 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(5 + 10 / 12, "feet"),
  15651. weight: math.unit(129, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/rina/front.svg",
  15655. extra: 266 / 255,
  15656. bottom: 0.005
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(5 + 10 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6 + 1 / 12, "feet"),
  15673. weight: math.unit(192, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/veronica/front.svg",
  15677. extra: 319 / 309,
  15678. bottom: 0.005
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(6 + 1 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(9 + 3 / 12, "feet"),
  15695. weight: math.unit(1100, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/braxton/front.svg",
  15699. extra: 1057 / 984,
  15700. bottom: 0.05
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(9 + 3 / 12, "feet")
  15708. },
  15709. {
  15710. name: "Giant",
  15711. height: math.unit(300, "feet"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(700, "feet")
  15717. },
  15718. {
  15719. name: "Megamacro",
  15720. height: math.unit(6000, "feet")
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(6 + 7 / 12, "feet"),
  15729. weight: math.unit(150, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/blue-feyonics/front.svg",
  15733. extra: 1403 / 1306,
  15734. bottom: 0.047
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(6 + 7 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(1.8, "meters"),
  15751. weight: math.unit(60, "kg"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/maxwell/front.svg",
  15755. extra: 2060 / 1873
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Micro",
  15762. height: math.unit(1, "mm")
  15763. },
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(1.8, "meter"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "Macro",
  15771. height: math.unit(30, "meters")
  15772. },
  15773. {
  15774. name: "Megamacro",
  15775. height: math.unit(10, "km")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/jack/front.svg",
  15788. extra: 1754 / 1640,
  15789. bottom: 0.01
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(80000, "feet"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Max size",
  15801. height: math.unit(10, "lightyears")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15807. {
  15808. urban: {
  15809. height: math.unit(5, "feet"),
  15810. weight: math.unit(240, "lb"),
  15811. name: "Urban",
  15812. image: {
  15813. source: "./media/characters/cafat/urban.svg",
  15814. extra: 1223/1126,
  15815. bottom: 205/1428
  15816. }
  15817. },
  15818. summer: {
  15819. height: math.unit(5, "feet"),
  15820. weight: math.unit(240, "lb"),
  15821. name: "Summer",
  15822. image: {
  15823. source: "./media/characters/cafat/summer.svg",
  15824. extra: 1223/1126,
  15825. bottom: 205/1428
  15826. }
  15827. },
  15828. winter: {
  15829. height: math.unit(5, "feet"),
  15830. weight: math.unit(240, "lb"),
  15831. name: "Winter",
  15832. image: {
  15833. source: "./media/characters/cafat/winter.svg",
  15834. extra: 1223/1126,
  15835. bottom: 205/1428
  15836. }
  15837. },
  15838. lingerie: {
  15839. height: math.unit(5, "feet"),
  15840. weight: math.unit(240, "lb"),
  15841. name: "Lingerie",
  15842. image: {
  15843. source: "./media/characters/cafat/lingerie.svg",
  15844. extra: 1223/1126,
  15845. bottom: 205/1428
  15846. }
  15847. },
  15848. upright: {
  15849. height: math.unit(6.3, "feet"),
  15850. weight: math.unit(240, "lb"),
  15851. name: "Upright",
  15852. image: {
  15853. source: "./media/characters/cafat/upright.svg",
  15854. bottom: 0.01
  15855. }
  15856. },
  15857. uprightFull: {
  15858. height: math.unit(6.3, "feet"),
  15859. weight: math.unit(240, "lb"),
  15860. name: "Upright (Full)",
  15861. image: {
  15862. source: "./media/characters/cafat/upright-full.svg",
  15863. bottom: 0.01
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Small",
  15870. height: math.unit(5, "feet"),
  15871. default: true
  15872. },
  15873. {
  15874. name: "Large",
  15875. height: math.unit(13, "feet")
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/verin-raharra/front.svg",
  15888. extra: 5019 / 4835,
  15889. bottom: 0.023
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(7 + 5 / 12, "feet"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Upsized",
  15901. height: math.unit(20, "feet")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(7, "feet"),
  15910. weight: math.unit(230, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/nakata/front.svg",
  15914. extra: 1.005,
  15915. bottom: 0.01
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(7, "feet"),
  15923. default: true
  15924. },
  15925. {
  15926. name: "Big",
  15927. height: math.unit(14, "feet")
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(400, "feet")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(4.91, "feet"),
  15940. weight: math.unit(100, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/lily/front.svg",
  15944. extra: 1585 / 1415,
  15945. bottom: 0.02
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(4.91, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15959. {
  15960. laying: {
  15961. height: math.unit(4 + 4 / 12, "feet"),
  15962. weight: math.unit(600, "lb"),
  15963. name: "Laying",
  15964. image: {
  15965. source: "./media/characters/sheila/laying.svg",
  15966. extra: 1333 / 1265,
  15967. bottom: 0.16
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(4 + 4 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(190, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/sax/front.svg",
  15988. extra: 1187 / 973,
  15989. bottom: 0.042
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Micro",
  15996. height: math.unit(4, "inches"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/pandora/front.svg",
  16010. extra: 2720 / 2556,
  16011. bottom: 0.015
  16012. }
  16013. },
  16014. back: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Back",
  16018. image: {
  16019. source: "./media/characters/pandora/back.svg",
  16020. extra: 2720 / 2556,
  16021. bottom: 0.01
  16022. }
  16023. },
  16024. beans: {
  16025. height: math.unit(6 / 8, "feet"),
  16026. name: "Beans",
  16027. image: {
  16028. source: "./media/characters/pandora/beans.svg"
  16029. }
  16030. },
  16031. collar: {
  16032. height: math.unit(0.31, "feet"),
  16033. name: "Collar",
  16034. image: {
  16035. source: "./media/characters/pandora/collar.svg"
  16036. }
  16037. },
  16038. skirt: {
  16039. height: math.unit(6, "feet"),
  16040. weight: math.unit(150, "lb"),
  16041. name: "Skirt",
  16042. image: {
  16043. source: "./media/characters/pandora/skirt.svg",
  16044. extra: 1622 / 1525,
  16045. bottom: 0.015
  16046. }
  16047. },
  16048. hoodie: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(150, "lb"),
  16051. name: "Hoodie",
  16052. image: {
  16053. source: "./media/characters/pandora/hoodie.svg",
  16054. extra: 1622 / 1525,
  16055. bottom: 0.015
  16056. }
  16057. },
  16058. casual: {
  16059. height: math.unit(6, "feet"),
  16060. weight: math.unit(150, "lb"),
  16061. name: "Casual",
  16062. image: {
  16063. source: "./media/characters/pandora/casual.svg",
  16064. extra: 1622 / 1525,
  16065. bottom: 0.015
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(6, "feet")
  16073. },
  16074. {
  16075. name: "Big Steppy",
  16076. height: math.unit(1, "km"),
  16077. default: true
  16078. },
  16079. {
  16080. name: "Galactic Steppy",
  16081. height: math.unit(2, "gigameters")
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16087. {
  16088. side: {
  16089. height: math.unit(10, "feet"),
  16090. weight: math.unit(800, "kg"),
  16091. name: "Side",
  16092. image: {
  16093. source: "./media/characters/venio-darcony/side.svg",
  16094. extra: 1373 / 1003,
  16095. bottom: 0.037
  16096. }
  16097. },
  16098. front: {
  16099. height: math.unit(19, "feet"),
  16100. weight: math.unit(800, "kg"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/venio-darcony/front.svg"
  16104. }
  16105. },
  16106. back: {
  16107. height: math.unit(19, "feet"),
  16108. weight: math.unit(800, "kg"),
  16109. name: "Back",
  16110. image: {
  16111. source: "./media/characters/venio-darcony/back.svg"
  16112. }
  16113. },
  16114. sideNsfw: {
  16115. height: math.unit(10, "feet"),
  16116. weight: math.unit(800, "kg"),
  16117. name: "Side (NSFW)",
  16118. image: {
  16119. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16120. extra: 1373 / 1003,
  16121. bottom: 0.037
  16122. }
  16123. },
  16124. frontNsfw: {
  16125. height: math.unit(19, "feet"),
  16126. weight: math.unit(800, "kg"),
  16127. name: "Front (NSFW)",
  16128. image: {
  16129. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16130. }
  16131. },
  16132. backNsfw: {
  16133. height: math.unit(19, "feet"),
  16134. weight: math.unit(800, "kg"),
  16135. name: "Back (NSFW)",
  16136. image: {
  16137. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16138. }
  16139. },
  16140. sideArmored: {
  16141. height: math.unit(10, "feet"),
  16142. weight: math.unit(800, "kg"),
  16143. name: "Side (Armored)",
  16144. image: {
  16145. source: "./media/characters/venio-darcony/side-armored.svg",
  16146. extra: 1373 / 1003,
  16147. bottom: 0.037
  16148. }
  16149. },
  16150. frontArmored: {
  16151. height: math.unit(19, "feet"),
  16152. weight: math.unit(900, "kg"),
  16153. name: "Front (Armored)",
  16154. image: {
  16155. source: "./media/characters/venio-darcony/front-armored.svg"
  16156. }
  16157. },
  16158. backArmored: {
  16159. height: math.unit(19, "feet"),
  16160. weight: math.unit(900, "kg"),
  16161. name: "Back (Armored)",
  16162. image: {
  16163. source: "./media/characters/venio-darcony/back-armored.svg"
  16164. }
  16165. },
  16166. sword: {
  16167. height: math.unit(10, "feet"),
  16168. weight: math.unit(50, "lb"),
  16169. name: "Sword",
  16170. image: {
  16171. source: "./media/characters/venio-darcony/sword.svg"
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(10, "feet")
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(130, "feet"),
  16183. default: true
  16184. },
  16185. {
  16186. name: "Macro+",
  16187. height: math.unit(240, "feet")
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(6, "feet"),
  16196. weight: math.unit(150, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/veski/front.svg",
  16200. extra: 1299 / 1225,
  16201. bottom: 0.04
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(6, "feet"),
  16206. weight: math.unit(150, "lb"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/veski/back.svg",
  16210. extra: 1299 / 1225,
  16211. bottom: 0.008
  16212. }
  16213. },
  16214. maw: {
  16215. height: math.unit(1.5 * 1.21, "feet"),
  16216. name: "Maw",
  16217. image: {
  16218. source: "./media/characters/veski/maw.svg"
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(2, "km"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(5 + 7 / 12, "feet"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/isabelle/front.svg",
  16238. extra: 2130 / 1976,
  16239. bottom: 0.05
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Supermicro",
  16246. height: math.unit(10, "micrometers")
  16247. },
  16248. {
  16249. name: "Micro",
  16250. height: math.unit(1, "inch")
  16251. },
  16252. {
  16253. name: "Tiny",
  16254. height: math.unit(5, "inches")
  16255. },
  16256. {
  16257. name: "Standard",
  16258. height: math.unit(5 + 7 / 12, "inches")
  16259. },
  16260. {
  16261. name: "Macro",
  16262. height: math.unit(80, "meters"),
  16263. default: true
  16264. },
  16265. {
  16266. name: "Megamacro",
  16267. height: math.unit(250, "meters")
  16268. },
  16269. {
  16270. name: "Gigamacro",
  16271. height: math.unit(5, "km")
  16272. },
  16273. {
  16274. name: "Cosmic",
  16275. height: math.unit(2.5e6, "miles")
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/hanzo/front.svg",
  16288. extra: 374 / 344,
  16289. bottom: 0.02
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(8, "feet"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(7, "feet"),
  16306. weight: math.unit(130, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/anna/front.svg",
  16310. extra: 169 / 145,
  16311. bottom: 0.06
  16312. }
  16313. },
  16314. full: {
  16315. height: math.unit(4.96, "feet"),
  16316. weight: math.unit(220, "lb"),
  16317. name: "Full",
  16318. image: {
  16319. source: "./media/characters/anna/full.svg",
  16320. extra: 138 / 114,
  16321. bottom: 0.15
  16322. }
  16323. },
  16324. tongue: {
  16325. height: math.unit(2.53, "feet"),
  16326. name: "Tongue",
  16327. image: {
  16328. source: "./media/characters/anna/tongue.svg"
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(7, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(7, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/ian-corvid/front.svg",
  16349. extra: 150 / 142,
  16350. bottom: 0.02
  16351. }
  16352. },
  16353. back: {
  16354. height: math.unit(7, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Back",
  16357. image: {
  16358. source: "./media/characters/ian-corvid/back.svg",
  16359. extra: 150 / 143,
  16360. bottom: 0.01
  16361. }
  16362. },
  16363. stomping: {
  16364. height: math.unit(7, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Stomping",
  16367. image: {
  16368. source: "./media/characters/ian-corvid/stomping.svg",
  16369. extra: 76 / 72
  16370. }
  16371. },
  16372. sitting: {
  16373. height: math.unit(7 / 1.8, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Sitting",
  16376. image: {
  16377. source: "./media/characters/ian-corvid/sitting.svg",
  16378. extra: 1400 / 1269,
  16379. bottom: 0.15
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Tiny Microw",
  16386. height: math.unit(1, "inch")
  16387. },
  16388. {
  16389. name: "Microw",
  16390. height: math.unit(6, "inches")
  16391. },
  16392. {
  16393. name: "Crow",
  16394. height: math.unit(7 + 1 / 12, "feet"),
  16395. default: true
  16396. },
  16397. {
  16398. name: "Macrow",
  16399. height: math.unit(176, "feet")
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(5 + 7 / 12, "feet"),
  16408. weight: math.unit(147, "lb"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/natalie-kellon/front.svg",
  16412. extra: 1214 / 1141,
  16413. bottom: 0.02
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Micro",
  16420. height: math.unit(1 / 16, "inch")
  16421. },
  16422. {
  16423. name: "Tiny",
  16424. height: math.unit(4, "inches")
  16425. },
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(5 + 7 / 12, "feet"),
  16429. default: true
  16430. },
  16431. {
  16432. name: "Amazon",
  16433. height: math.unit(12, "feet")
  16434. },
  16435. {
  16436. name: "Giantess",
  16437. height: math.unit(160, "meters")
  16438. },
  16439. {
  16440. name: "Titaness",
  16441. height: math.unit(800, "meters")
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16447. {
  16448. front: {
  16449. height: math.unit(6, "feet"),
  16450. weight: math.unit(150, "lb"),
  16451. name: "Front",
  16452. image: {
  16453. source: "./media/characters/alluria/front.svg",
  16454. extra: 806 / 738,
  16455. bottom: 0.01
  16456. }
  16457. },
  16458. side: {
  16459. height: math.unit(6, "feet"),
  16460. weight: math.unit(150, "lb"),
  16461. name: "Side",
  16462. image: {
  16463. source: "./media/characters/alluria/side.svg",
  16464. extra: 800 / 750,
  16465. }
  16466. },
  16467. back: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Back",
  16471. image: {
  16472. source: "./media/characters/alluria/back.svg",
  16473. extra: 806 / 738,
  16474. }
  16475. },
  16476. frontMaid: {
  16477. height: math.unit(6, "feet"),
  16478. weight: math.unit(150, "lb"),
  16479. name: "Front (Maid)",
  16480. image: {
  16481. source: "./media/characters/alluria/front-maid.svg",
  16482. extra: 806 / 738,
  16483. bottom: 0.01
  16484. }
  16485. },
  16486. sideMaid: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(150, "lb"),
  16489. name: "Side (Maid)",
  16490. image: {
  16491. source: "./media/characters/alluria/side-maid.svg",
  16492. extra: 800 / 750,
  16493. bottom: 0.005
  16494. }
  16495. },
  16496. backMaid: {
  16497. height: math.unit(6, "feet"),
  16498. weight: math.unit(150, "lb"),
  16499. name: "Back (Maid)",
  16500. image: {
  16501. source: "./media/characters/alluria/back-maid.svg",
  16502. extra: 806 / 738,
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Micro",
  16509. height: math.unit(6, "inches"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/kyle/front.svg",
  16523. extra: 1069 / 962,
  16524. bottom: 77.228 / 1727.45
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Macro",
  16531. height: math.unit(150, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(300, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/duncan/front.svg",
  16545. extra: 1650 / 1482,
  16546. bottom: 0.05
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Macro",
  16553. height: math.unit(100, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(5 + 4 / 12, "feet"),
  16563. weight: math.unit(220, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/memory/front.svg",
  16567. extra: 3641 / 3545,
  16568. bottom: 0.03
  16569. }
  16570. },
  16571. back: {
  16572. height: math.unit(5 + 4 / 12, "feet"),
  16573. weight: math.unit(220, "lb"),
  16574. name: "Back",
  16575. image: {
  16576. source: "./media/characters/memory/back.svg",
  16577. extra: 3641 / 3545,
  16578. bottom: 0.025
  16579. }
  16580. },
  16581. frontSkirt: {
  16582. height: math.unit(5 + 4 / 12, "feet"),
  16583. weight: math.unit(220, "lb"),
  16584. name: "Front (Skirt)",
  16585. image: {
  16586. source: "./media/characters/memory/front-skirt.svg",
  16587. extra: 3641 / 3545,
  16588. bottom: 0.03
  16589. }
  16590. },
  16591. frontDress: {
  16592. height: math.unit(5 + 4 / 12, "feet"),
  16593. weight: math.unit(220, "lb"),
  16594. name: "Front (Dress)",
  16595. image: {
  16596. source: "./media/characters/memory/front-dress.svg",
  16597. extra: 3641 / 3545,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Micro",
  16605. height: math.unit(6, "inches"),
  16606. default: true
  16607. },
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(5 + 4 / 12, "feet")
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(4 + 11 / 12, "feet"),
  16619. weight: math.unit(100, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/luno/front.svg",
  16623. extra: 1535 / 1487,
  16624. bottom: 0.03
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Micro",
  16631. height: math.unit(3, "inches")
  16632. },
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(4 + 11 / 12, "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Macro",
  16640. height: math.unit(300, "feet")
  16641. },
  16642. {
  16643. name: "Megamacro",
  16644. height: math.unit(700, "miles")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6 + 2 / 12, "feet"),
  16653. weight: math.unit(170, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/jamesy/front.svg",
  16657. extra: 440 / 382,
  16658. bottom: 0.005
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Micro",
  16665. height: math.unit(3, "inches")
  16666. },
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(6 + 2 / 12, "feet"),
  16670. default: true
  16671. },
  16672. {
  16673. name: "Macro",
  16674. height: math.unit(300, "feet")
  16675. },
  16676. {
  16677. name: "Megamacro",
  16678. height: math.unit(700, "miles")
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(6, "feet"),
  16687. weight: math.unit(160, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/mark/front.svg",
  16691. extra: 3300 / 3100,
  16692. bottom: 136.42 / 3440.47
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Macro",
  16699. height: math.unit(120, "meters")
  16700. },
  16701. {
  16702. name: "Bigger Macro",
  16703. height: math.unit(350, "meters")
  16704. },
  16705. {
  16706. name: "Megamacro",
  16707. height: math.unit(8, "km"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Continental",
  16712. height: math.unit(4550, "km")
  16713. },
  16714. {
  16715. name: "Planetary",
  16716. height: math.unit(65000, "km")
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(400, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/mac/front.svg",
  16729. extra: 1048 / 987.7,
  16730. bottom: 60 / 1107.6,
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(500, "feet"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(5 + 2 / 12, "feet"),
  16747. weight: math.unit(190, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/bari/front.svg",
  16751. extra: 3156 / 2880,
  16752. bottom: 0.03
  16753. }
  16754. },
  16755. back: {
  16756. height: math.unit(5 + 2 / 12, "feet"),
  16757. weight: math.unit(190, "lb"),
  16758. name: "Back",
  16759. image: {
  16760. source: "./media/characters/bari/back.svg",
  16761. extra: 3260 / 2834,
  16762. bottom: 0.025
  16763. }
  16764. },
  16765. frontPlush: {
  16766. height: math.unit(5 + 2 / 12, "feet"),
  16767. weight: math.unit(190, "lb"),
  16768. name: "Front (Plush)",
  16769. image: {
  16770. source: "./media/characters/bari/front-plush.svg",
  16771. extra: 1112 / 1061,
  16772. bottom: 0.002
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Micro",
  16779. height: math.unit(3, "inches")
  16780. },
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(5 + 2 / 12, "feet"),
  16784. default: true
  16785. },
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(20, "feet")
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16794. {
  16795. front: {
  16796. height: math.unit(6 + 1 / 12, "feet"),
  16797. weight: math.unit(275, "lb"),
  16798. name: "Front",
  16799. image: {
  16800. source: "./media/characters/hunter-misha-raven/front.svg"
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Mortal",
  16807. height: math.unit(6 + 1 / 12, "feet")
  16808. },
  16809. {
  16810. name: "Divine",
  16811. height: math.unit(1.12134e34, "parsecs"),
  16812. default: true
  16813. },
  16814. ]
  16815. ))
  16816. characterMakers.push(() => makeCharacter(
  16817. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16818. {
  16819. front: {
  16820. height: math.unit(6 + 3 / 12, "feet"),
  16821. weight: math.unit(220, "lb"),
  16822. name: "Front",
  16823. image: {
  16824. source: "./media/characters/max-calore/front.svg",
  16825. extra: 1700 / 1648,
  16826. bottom: 0.01
  16827. }
  16828. },
  16829. back: {
  16830. height: math.unit(6 + 3 / 12, "feet"),
  16831. weight: math.unit(220, "lb"),
  16832. name: "Back",
  16833. image: {
  16834. source: "./media/characters/max-calore/back.svg",
  16835. extra: 1700 / 1648,
  16836. bottom: 0.01
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(6 + 3 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16850. {
  16851. side: {
  16852. height: math.unit(2 + 8 / 12, "feet"),
  16853. weight: math.unit(99, "lb"),
  16854. name: "Side",
  16855. image: {
  16856. source: "./media/characters/aspen/side.svg",
  16857. extra: 152 / 138,
  16858. bottom: 0.032
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(2 + 8 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16872. {
  16873. side: {
  16874. height: math.unit(3 + 2 / 12, "feet"),
  16875. weight: math.unit(224, "lb"),
  16876. name: "Side",
  16877. image: {
  16878. source: "./media/characters/sheila-feral-wolf/side.svg",
  16879. extra: 179 / 166,
  16880. bottom: 0.03
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(3 + 2 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16894. {
  16895. side: {
  16896. height: math.unit(1 + 9 / 12, "feet"),
  16897. weight: math.unit(38, "lb"),
  16898. name: "Side",
  16899. image: {
  16900. source: "./media/characters/michelle/side.svg",
  16901. extra: 147 / 136.7,
  16902. bottom: 0.03
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(1 + 9 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(1 + 1 / 12, "feet"),
  16919. weight: math.unit(18, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/nino/front.svg"
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(1 + 1 / 12, "feet"),
  16930. default: true
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16936. {
  16937. front: {
  16938. height: math.unit(1, "feet"),
  16939. weight: math.unit(16, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/viola/front.svg"
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(1, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(6 + 5 / 12, "feet"),
  16959. weight: math.unit(580, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/atlas/front.svg",
  16963. extra: 298.5 / 290,
  16964. bottom: 0.015
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(6 + 5 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16978. {
  16979. side: {
  16980. height: math.unit(1 + 10 / 12, "feet"),
  16981. weight: math.unit(25, "lb"),
  16982. name: "Side",
  16983. image: {
  16984. source: "./media/characters/davy/side.svg",
  16985. extra: 200 / 170,
  16986. bottom: 0.01
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(1 + 10 / 12, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17000. {
  17001. side: {
  17002. height: math.unit(4 + 8 / 12, "feet"),
  17003. weight: math.unit(166, "lb"),
  17004. name: "Side",
  17005. image: {
  17006. source: "./media/characters/fiona/side.svg",
  17007. extra: 232 / 220,
  17008. bottom: 0.03
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(4 + 8 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17022. {
  17023. front: {
  17024. height: math.unit(2, "feet"),
  17025. weight: math.unit(62, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/lyla/front.svg",
  17029. bottom: 0.1
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(2, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17043. {
  17044. side: {
  17045. height: math.unit(1.8, "feet"),
  17046. weight: math.unit(44, "lb"),
  17047. name: "Side",
  17048. image: {
  17049. source: "./media/characters/perseus/side.svg",
  17050. bottom: 0.21
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(1.8, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17064. {
  17065. side: {
  17066. height: math.unit(4 + 2 / 12, "feet"),
  17067. weight: math.unit(20, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/remus/side.svg"
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(4 + 2 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(4 + 11 / 12, "feet"),
  17087. weight: math.unit(114, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/raf/front.svg",
  17091. bottom: 20.5 / 1863
  17092. }
  17093. },
  17094. side: {
  17095. height: math.unit(4 + 11 / 12, "feet"),
  17096. weight: math.unit(114, "lb"),
  17097. name: "Side",
  17098. image: {
  17099. source: "./media/characters/raf/side.svg",
  17100. bottom: 22 / 1822
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Micro",
  17107. height: math.unit(2, "inches")
  17108. },
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(4 + 11 / 12, "feet"),
  17112. default: true
  17113. },
  17114. {
  17115. name: "Macro",
  17116. height: math.unit(70, "feet")
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(1.5, "meters"),
  17125. weight: math.unit(68, "kg"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/liam-einarr/front.svg",
  17129. extra: 2822 / 2666
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(1.5, "meters"),
  17134. weight: math.unit(68, "kg"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/liam-einarr/back.svg",
  17138. extra: 2822 / 2666,
  17139. bottom: 0.015
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(1.5, "meters"),
  17147. default: true
  17148. },
  17149. {
  17150. name: "Macro",
  17151. height: math.unit(150, "meters")
  17152. },
  17153. {
  17154. name: "Megamacro",
  17155. height: math.unit(35, "km")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6, "feet"),
  17164. weight: math.unit(75, "kg"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/linda/front.svg",
  17168. extra: 930 / 874,
  17169. bottom: 0.004
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(6, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6 + 8 / 12, "feet"),
  17186. weight: math.unit(220, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/caylex/front.svg",
  17190. extra: 821 / 772,
  17191. bottom: 0.07
  17192. }
  17193. },
  17194. back: {
  17195. height: math.unit(6 + 8 / 12, "feet"),
  17196. weight: math.unit(220, "lb"),
  17197. name: "Back",
  17198. image: {
  17199. source: "./media/characters/caylex/back.svg",
  17200. extra: 821 / 772,
  17201. bottom: 0.022
  17202. }
  17203. },
  17204. hand: {
  17205. height: math.unit(1.25, "feet"),
  17206. name: "Hand",
  17207. image: {
  17208. source: "./media/characters/caylex/hand.svg"
  17209. }
  17210. },
  17211. foot: {
  17212. height: math.unit(1.6, "feet"),
  17213. name: "Foot",
  17214. image: {
  17215. source: "./media/characters/caylex/foot.svg"
  17216. }
  17217. },
  17218. armored: {
  17219. height: math.unit(6 + 8 / 12, "feet"),
  17220. weight: math.unit(250, "lb"),
  17221. name: "Armored",
  17222. image: {
  17223. source: "./media/characters/caylex/armored.svg",
  17224. extra: 1420 / 1310,
  17225. bottom: 0.045
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(6 + 8 / 12, "feet"),
  17233. default: true
  17234. },
  17235. {
  17236. name: "Normal+",
  17237. height: math.unit(12, "feet")
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(7 + 6 / 12, "feet"),
  17246. weight: math.unit(288, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/alana/front.svg",
  17250. extra: 679 / 653,
  17251. bottom: 22.5 / 701
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(7 + 6 / 12, "feet")
  17259. },
  17260. {
  17261. name: "Large",
  17262. height: math.unit(50, "feet")
  17263. },
  17264. {
  17265. name: "Macro",
  17266. height: math.unit(100, "feet"),
  17267. default: true
  17268. },
  17269. {
  17270. name: "Macro+",
  17271. height: math.unit(200, "feet")
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6 + 1 / 12, "feet"),
  17280. weight: math.unit(210, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/hasani/front.svg",
  17284. extra: 244 / 232,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. back: {
  17289. height: math.unit(6 + 1 / 12, "feet"),
  17290. weight: math.unit(210, "lb"),
  17291. name: "Back",
  17292. image: {
  17293. source: "./media/characters/hasani/back.svg",
  17294. extra: 244 / 232,
  17295. bottom: 0.01
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(6 + 1 / 12, "feet")
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(175, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(1.82, "meters"),
  17316. weight: math.unit(140, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/nita/front.svg",
  17320. extra: 2473 / 2363,
  17321. bottom: 0.01
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(1.82, "m")
  17329. },
  17330. {
  17331. name: "Macro",
  17332. height: math.unit(300, "m")
  17333. },
  17334. {
  17335. name: "Mistake Canon",
  17336. height: math.unit(0.5, "miles"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Big Mistake",
  17341. height: math.unit(13, "miles")
  17342. },
  17343. {
  17344. name: "Playing God",
  17345. height: math.unit(2450, "miles")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(4, "feet"),
  17354. weight: math.unit(120, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/shiriko/front.svg",
  17358. extra: 970/934,
  17359. bottom: 5/975
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(4, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6, "feet"),
  17376. name: "front",
  17377. image: {
  17378. source: "./media/characters/deja/front.svg",
  17379. extra: 926 / 840,
  17380. bottom: 0.07
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Planck Length",
  17387. height: math.unit(1.6e-35, "meters")
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(30.48, "meters"),
  17392. default: true
  17393. },
  17394. {
  17395. name: "Universal",
  17396. height: math.unit(8.8e26, "meters")
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17402. {
  17403. side: {
  17404. height: math.unit(8, "feet"),
  17405. weight: math.unit(6300, "lb"),
  17406. name: "Side",
  17407. image: {
  17408. source: "./media/characters/anima/side.svg",
  17409. bottom: 0.035
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(8, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(8, "feet"),
  17426. weight: math.unit(350, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/bianca/front.svg",
  17430. extra: 234 / 225,
  17431. bottom: 0.03
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(8, "feet"),
  17439. default: true
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(6, "feet"),
  17448. weight: math.unit(150, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/adinia/front.svg",
  17452. extra: 1845 / 1672,
  17453. bottom: 0.02
  17454. }
  17455. },
  17456. back: {
  17457. height: math.unit(6, "feet"),
  17458. weight: math.unit(150, "lb"),
  17459. name: "Back",
  17460. image: {
  17461. source: "./media/characters/adinia/back.svg",
  17462. extra: 1845 / 1672,
  17463. bottom: 0.002
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(11 + 5 / 12, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(3, "meters"),
  17480. weight: math.unit(200, "kg"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/lykasa/front.svg",
  17484. extra: 1076 / 976,
  17485. bottom: 0.06
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(3, "meters")
  17493. },
  17494. {
  17495. name: "Kaiju",
  17496. height: math.unit(120, "meters"),
  17497. default: true
  17498. },
  17499. {
  17500. name: "Mega Kaiju",
  17501. height: math.unit(240, "km")
  17502. },
  17503. {
  17504. name: "Giga Kaiju",
  17505. height: math.unit(400, "megameters")
  17506. },
  17507. {
  17508. name: "Tera Kaiju",
  17509. height: math.unit(800, "gigameters")
  17510. },
  17511. {
  17512. name: "Kaiju Dragon Goddess",
  17513. height: math.unit(26, "zettaparsecs")
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17519. {
  17520. side: {
  17521. height: math.unit(283 / 124 * 6, "feet"),
  17522. weight: math.unit(35000, "lb"),
  17523. name: "Side",
  17524. image: {
  17525. source: "./media/characters/malfaren/side.svg",
  17526. extra: 2500 / 1010,
  17527. bottom: 0.01
  17528. }
  17529. },
  17530. front: {
  17531. height: math.unit(22.36, "feet"),
  17532. weight: math.unit(35000, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/malfaren/front.svg",
  17536. extra: 1631 / 1476,
  17537. bottom: 0.01
  17538. }
  17539. },
  17540. maw: {
  17541. height: math.unit(6.9, "feet"),
  17542. name: "Maw",
  17543. image: {
  17544. source: "./media/characters/malfaren/maw.svg"
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Big",
  17551. height: math.unit(283 / 162 * 6, "feet"),
  17552. },
  17553. {
  17554. name: "Bigger",
  17555. height: math.unit(283 / 124 * 6, "feet")
  17556. },
  17557. {
  17558. name: "Massive",
  17559. height: math.unit(283 / 92 * 6, "feet"),
  17560. default: true
  17561. },
  17562. {
  17563. name: "👀💦",
  17564. height: math.unit(283 / 73 * 6, "feet"),
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17570. {
  17571. front: {
  17572. height: math.unit(1.7, "m"),
  17573. weight: math.unit(70, "kg"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/kernel/front.svg",
  17577. extra: 222 / 210,
  17578. bottom: 0.007
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Nano",
  17585. height: math.unit(17, "micrometers")
  17586. },
  17587. {
  17588. name: "Micro",
  17589. height: math.unit(1.7, "mm")
  17590. },
  17591. {
  17592. name: "Small",
  17593. height: math.unit(1.7, "cm")
  17594. },
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(1.7, "m"),
  17598. default: true
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(1.75, "meters"),
  17607. weight: math.unit(65, "kg"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/jayne-folest/front.svg",
  17611. extra: 2115 / 2007,
  17612. bottom: 0.02
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(1.75, "meters"),
  17617. weight: math.unit(65, "kg"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/jayne-folest/back.svg",
  17621. extra: 2115 / 2007,
  17622. bottom: 0.005
  17623. }
  17624. },
  17625. frontClothed: {
  17626. height: math.unit(1.75, "meters"),
  17627. weight: math.unit(65, "kg"),
  17628. name: "Front (Clothed)",
  17629. image: {
  17630. source: "./media/characters/jayne-folest/front-clothed.svg",
  17631. extra: 2115 / 2007,
  17632. bottom: 0.035
  17633. }
  17634. },
  17635. hand: {
  17636. height: math.unit(1 / 1.260, "feet"),
  17637. name: "Hand",
  17638. image: {
  17639. source: "./media/characters/jayne-folest/hand.svg"
  17640. }
  17641. },
  17642. foot: {
  17643. height: math.unit(1 / 0.918, "feet"),
  17644. name: "Foot",
  17645. image: {
  17646. source: "./media/characters/jayne-folest/foot.svg"
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Micro",
  17653. height: math.unit(4, "cm")
  17654. },
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(1.75, "meters")
  17658. },
  17659. {
  17660. name: "Macro",
  17661. height: math.unit(47.5, "meters"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(180, "cm"),
  17671. weight: math.unit(70, "kg"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/algier/front.svg",
  17675. extra: 596 / 572,
  17676. bottom: 0.04
  17677. }
  17678. },
  17679. back: {
  17680. height: math.unit(180, "cm"),
  17681. weight: math.unit(70, "kg"),
  17682. name: "Back",
  17683. image: {
  17684. source: "./media/characters/algier/back.svg",
  17685. extra: 596 / 572,
  17686. bottom: 0.025
  17687. }
  17688. },
  17689. frontdressed: {
  17690. height: math.unit(180, "cm"),
  17691. weight: math.unit(150, "kg"),
  17692. name: "Front-dressed",
  17693. image: {
  17694. source: "./media/characters/algier/front-dressed.svg",
  17695. extra: 596 / 572,
  17696. bottom: 0.038
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Micro",
  17703. height: math.unit(5, "cm")
  17704. },
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(180, "cm"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Macro",
  17712. height: math.unit(64, "m")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17718. {
  17719. upright: {
  17720. height: math.unit(7, "feet"),
  17721. weight: math.unit(300, "lb"),
  17722. name: "Upright",
  17723. image: {
  17724. source: "./media/characters/pretzel/upright.svg",
  17725. extra: 534 / 522,
  17726. bottom: 0.065
  17727. }
  17728. },
  17729. sprawling: {
  17730. height: math.unit(3.75, "feet"),
  17731. weight: math.unit(300, "lb"),
  17732. name: "Sprawling",
  17733. image: {
  17734. source: "./media/characters/pretzel/sprawling.svg",
  17735. extra: 314 / 281,
  17736. bottom: 0.1
  17737. }
  17738. },
  17739. tongue: {
  17740. height: math.unit(2, "feet"),
  17741. name: "Tongue",
  17742. image: {
  17743. source: "./media/characters/pretzel/tongue.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(7, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Oversized",
  17755. height: math.unit(15, "feet")
  17756. },
  17757. {
  17758. name: "Huge",
  17759. height: math.unit(30, "feet")
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(250, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17769. {
  17770. sideFront: {
  17771. height: math.unit(5 + 2 / 12, "feet"),
  17772. weight: math.unit(120, "lb"),
  17773. name: "Front Side",
  17774. image: {
  17775. source: "./media/characters/roxi/side-front.svg",
  17776. extra: 2924 / 2717,
  17777. bottom: 0.08
  17778. }
  17779. },
  17780. sideBack: {
  17781. height: math.unit(5 + 2 / 12, "feet"),
  17782. weight: math.unit(120, "lb"),
  17783. name: "Back Side",
  17784. image: {
  17785. source: "./media/characters/roxi/side-back.svg",
  17786. extra: 2904 / 2693,
  17787. bottom: 0.06
  17788. }
  17789. },
  17790. front: {
  17791. height: math.unit(5 + 2 / 12, "feet"),
  17792. weight: math.unit(120, "lb"),
  17793. name: "Front",
  17794. image: {
  17795. source: "./media/characters/roxi/front.svg",
  17796. extra: 2028 / 1907,
  17797. bottom: 0.01
  17798. }
  17799. },
  17800. frontAlt: {
  17801. height: math.unit(5 + 2 / 12, "feet"),
  17802. weight: math.unit(120, "lb"),
  17803. name: "Front (Alt)",
  17804. image: {
  17805. source: "./media/characters/roxi/front-alt.svg",
  17806. extra: 1828 / 1798,
  17807. bottom: 0.01
  17808. }
  17809. },
  17810. sitting: {
  17811. height: math.unit(2.8, "feet"),
  17812. weight: math.unit(120, "lb"),
  17813. name: "Sitting",
  17814. image: {
  17815. source: "./media/characters/roxi/sitting.svg",
  17816. extra: 2660 / 2462,
  17817. bottom: 0.1
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(5 + 2 / 12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17831. {
  17832. side: {
  17833. height: math.unit(55, "feet"),
  17834. weight: math.unit(153, "tons"),
  17835. name: "Side",
  17836. image: {
  17837. source: "./media/characters/shadow/side.svg",
  17838. extra: 701 / 628,
  17839. bottom: 0.02
  17840. }
  17841. },
  17842. flying: {
  17843. height: math.unit(145, "feet"),
  17844. weight: math.unit(153, "tons"),
  17845. name: "Flying",
  17846. image: {
  17847. source: "./media/characters/shadow/flying.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(55, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6, "feet"),
  17864. weight: math.unit(200, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/marcie/front.svg",
  17868. extra: 960 / 876,
  17869. bottom: 58 / 1017.87
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Macro",
  17876. height: math.unit(1, "mile"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(7, "feet"),
  17886. weight: math.unit(200, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/kachina/front.svg",
  17890. extra: 1290.68 / 1119,
  17891. bottom: 36.5 / 1327.18
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(7, "feet"),
  17899. default: true
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17905. {
  17906. looking: {
  17907. height: math.unit(2, "meters"),
  17908. weight: math.unit(300, "kg"),
  17909. name: "Looking",
  17910. image: {
  17911. source: "./media/characters/kash/looking.svg",
  17912. extra: 474 / 344,
  17913. bottom: 0.03
  17914. }
  17915. },
  17916. side: {
  17917. height: math.unit(2, "meters"),
  17918. weight: math.unit(300, "kg"),
  17919. name: "Side",
  17920. image: {
  17921. source: "./media/characters/kash/side.svg",
  17922. extra: 302 / 251,
  17923. bottom: 0.03
  17924. }
  17925. },
  17926. front: {
  17927. height: math.unit(2, "meters"),
  17928. weight: math.unit(300, "kg"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/kash/front.svg",
  17932. extra: 495 / 360,
  17933. bottom: 0.015
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(2, "meters"),
  17941. default: true
  17942. },
  17943. {
  17944. name: "Big",
  17945. height: math.unit(3, "meters")
  17946. },
  17947. {
  17948. name: "Large",
  17949. height: math.unit(5, "meters")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17955. {
  17956. feeding: {
  17957. height: math.unit(6.7, "feet"),
  17958. weight: math.unit(350, "lb"),
  17959. name: "Feeding",
  17960. image: {
  17961. source: "./media/characters/lalim/feeding.svg",
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(6.7, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(9.5, "feet"),
  17978. weight: math.unit(600, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/de'vout/front.svg",
  17982. extra: 1443 / 1328,
  17983. bottom: 0.025
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(9.5, "feet"),
  17988. weight: math.unit(600, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/de'vout/back.svg",
  17992. extra: 1443 / 1328
  17993. }
  17994. },
  17995. frontDressed: {
  17996. height: math.unit(9.5, "feet"),
  17997. weight: math.unit(600, "lb"),
  17998. name: "Front (Dressed",
  17999. image: {
  18000. source: "./media/characters/de'vout/front-dressed.svg",
  18001. extra: 1443 / 1328,
  18002. bottom: 0.025
  18003. }
  18004. },
  18005. backDressed: {
  18006. height: math.unit(9.5, "feet"),
  18007. weight: math.unit(600, "lb"),
  18008. name: "Back (Dressed",
  18009. image: {
  18010. source: "./media/characters/de'vout/back-dressed.svg",
  18011. extra: 1443 / 1328
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(9.5, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(8, "feet"),
  18028. weight: math.unit(225, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/talana/front.svg",
  18032. extra: 1410 / 1300,
  18033. bottom: 0.015
  18034. }
  18035. },
  18036. frontDressed: {
  18037. height: math.unit(8, "feet"),
  18038. weight: math.unit(225, "lb"),
  18039. name: "Front (Dressed",
  18040. image: {
  18041. source: "./media/characters/talana/front-dressed.svg",
  18042. extra: 1410 / 1300,
  18043. bottom: 0.015
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(8, "feet"),
  18051. default: true
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18057. {
  18058. side: {
  18059. height: math.unit(7.2, "feet"),
  18060. weight: math.unit(150, "lb"),
  18061. name: "Side",
  18062. image: {
  18063. source: "./media/characters/xeauvok/side.svg",
  18064. extra: 1975 / 1523,
  18065. bottom: 0.07
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(7.2, "feet"),
  18073. default: true
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18079. {
  18080. side: {
  18081. height: math.unit(10, "feet"),
  18082. weight: math.unit(900, "kg"),
  18083. name: "Side",
  18084. image: {
  18085. source: "./media/characters/zara/side.svg",
  18086. extra: 504 / 498
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(10, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18100. {
  18101. side: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Side",
  18105. image: {
  18106. source: "./media/characters/richard-dragon/side.svg",
  18107. extra: 845 / 340,
  18108. bottom: 0.017
  18109. }
  18110. },
  18111. maw: {
  18112. height: math.unit(2.97, "feet"),
  18113. name: "Maw",
  18114. image: {
  18115. source: "./media/characters/richard-dragon/maw.svg"
  18116. }
  18117. },
  18118. },
  18119. [
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(4, "feet"),
  18127. weight: math.unit(100, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/richard-smeargle/front.svg",
  18131. extra: 2952 / 2820,
  18132. bottom: 0.028
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(4, "feet"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Dynamax",
  18144. height: math.unit(20, "meters")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6, "feet"),
  18153. weight: math.unit(110, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/klay/front.svg",
  18157. extra: 962 / 883,
  18158. bottom: 0.04
  18159. }
  18160. },
  18161. back: {
  18162. height: math.unit(6, "feet"),
  18163. weight: math.unit(110, "lb"),
  18164. name: "Back",
  18165. image: {
  18166. source: "./media/characters/klay/back.svg",
  18167. extra: 962 / 883
  18168. }
  18169. },
  18170. beans: {
  18171. height: math.unit(1.15, "feet"),
  18172. name: "Beans",
  18173. image: {
  18174. source: "./media/characters/klay/beans.svg"
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Micro",
  18181. height: math.unit(6, "inches")
  18182. },
  18183. {
  18184. name: "Mini",
  18185. height: math.unit(3, "feet")
  18186. },
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(6, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Big",
  18194. height: math.unit(25, "feet")
  18195. },
  18196. {
  18197. name: "Macro",
  18198. height: math.unit(100, "feet")
  18199. },
  18200. {
  18201. name: "Megamacro",
  18202. height: math.unit(400, "feet")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(160, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/marcus/front.svg",
  18215. extra: 734 / 676,
  18216. bottom: 0.03
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Little",
  18223. height: math.unit(6, "feet")
  18224. },
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(110, "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Macro",
  18232. height: math.unit(250, "feet")
  18233. },
  18234. {
  18235. name: "Megamacro",
  18236. height: math.unit(1000, "feet")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(7, "feet"),
  18245. weight: math.unit(275, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/claude-delroute/front.svg",
  18249. extra: 230 / 214,
  18250. bottom: 0.007
  18251. }
  18252. },
  18253. side: {
  18254. height: math.unit(7, "feet"),
  18255. weight: math.unit(275, "lb"),
  18256. name: "Side",
  18257. image: {
  18258. source: "./media/characters/claude-delroute/side.svg",
  18259. extra: 222 / 214,
  18260. bottom: 0.01
  18261. }
  18262. },
  18263. back: {
  18264. height: math.unit(7, "feet"),
  18265. weight: math.unit(275, "lb"),
  18266. name: "Back",
  18267. image: {
  18268. source: "./media/characters/claude-delroute/back.svg",
  18269. extra: 230 / 214,
  18270. bottom: 0.015
  18271. }
  18272. },
  18273. maw: {
  18274. height: math.unit(0.6407, "meters"),
  18275. name: "Maw",
  18276. image: {
  18277. source: "./media/characters/claude-delroute/maw.svg"
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(7, "feet"),
  18285. default: true
  18286. },
  18287. {
  18288. name: "Lorge",
  18289. height: math.unit(20, "feet")
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18295. {
  18296. front: {
  18297. height: math.unit(8 + 4 / 12, "feet"),
  18298. weight: math.unit(600, "lb"),
  18299. name: "Front",
  18300. image: {
  18301. source: "./media/characters/dragonien/front.svg",
  18302. extra: 100 / 94,
  18303. bottom: 3.3 / 103.3445
  18304. }
  18305. },
  18306. back: {
  18307. height: math.unit(8 + 4 / 12, "feet"),
  18308. weight: math.unit(600, "lb"),
  18309. name: "Back",
  18310. image: {
  18311. source: "./media/characters/dragonien/back.svg",
  18312. extra: 776 / 746,
  18313. bottom: 6.4 / 782.0616
  18314. }
  18315. },
  18316. foot: {
  18317. height: math.unit(1.54, "feet"),
  18318. name: "Foot",
  18319. image: {
  18320. source: "./media/characters/dragonien/foot.svg",
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(8 + 4 / 12, "feet"),
  18328. default: true
  18329. },
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(200, "feet")
  18333. },
  18334. {
  18335. name: "Megamacro",
  18336. height: math.unit(1, "mile")
  18337. },
  18338. {
  18339. name: "Gigamacro",
  18340. height: math.unit(1000, "miles")
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(5 + 2 / 12, "feet"),
  18349. weight: math.unit(110, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/desta/front.svg",
  18353. extra: 767 / 726,
  18354. bottom: 11.7 / 779
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(5 + 2 / 12, "feet"),
  18359. weight: math.unit(110, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/desta/back.svg",
  18363. extra: 777 / 728,
  18364. bottom: 6 / 784
  18365. }
  18366. },
  18367. frontAlt: {
  18368. height: math.unit(5 + 2 / 12, "feet"),
  18369. weight: math.unit(110, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/desta/front-alt.svg",
  18373. extra: 1482 / 1417
  18374. }
  18375. },
  18376. side: {
  18377. height: math.unit(5 + 2 / 12, "feet"),
  18378. weight: math.unit(110, "lb"),
  18379. name: "Side",
  18380. image: {
  18381. source: "./media/characters/desta/side.svg",
  18382. extra: 2579 / 2491,
  18383. bottom: 0.053
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Micro",
  18390. height: math.unit(6, "inches")
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(5 + 2 / 12, "feet"),
  18395. default: true
  18396. },
  18397. {
  18398. name: "Macro",
  18399. height: math.unit(62, "feet")
  18400. },
  18401. {
  18402. name: "Megamacro",
  18403. height: math.unit(1800, "feet")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(10, "feet"),
  18412. weight: math.unit(700, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/storm-alystar/front.svg",
  18416. extra: 2112 / 1898,
  18417. bottom: 0.034
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Micro",
  18424. height: math.unit(3.5, "inches")
  18425. },
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(10, "feet"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Macro",
  18433. height: math.unit(400, "feet")
  18434. },
  18435. {
  18436. name: "Deific",
  18437. height: math.unit(60, "miles")
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(2.35, "meters"),
  18446. weight: math.unit(119, "kg"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/ilia/front.svg",
  18450. extra: 1285 / 1255,
  18451. bottom: 0.06
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(2.35, "meters")
  18459. },
  18460. {
  18461. name: "Macro",
  18462. height: math.unit(140, "meters"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Megamacro",
  18467. height: math.unit(100, "miles")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6 + 5 / 12, "feet"),
  18476. weight: math.unit(190, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/kingdead/front.svg",
  18480. extra: 1228 / 1177
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Micro",
  18487. height: math.unit(7, "inches")
  18488. },
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(6 + 5 / 12, "feet")
  18492. },
  18493. {
  18494. name: "Macro",
  18495. height: math.unit(150, "feet"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Megamacro",
  18500. height: math.unit(200, "miles")
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18506. {
  18507. front: {
  18508. height: math.unit(8, "feet"),
  18509. weight: math.unit(600, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/kyrehx/front.svg",
  18513. extra: 1195 / 1095,
  18514. bottom: 0.034
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Micro",
  18521. height: math.unit(2, "inches")
  18522. },
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(8, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro",
  18530. height: math.unit(255, "feet")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18539. weight: math.unit(184, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/xang/front.svg",
  18543. extra: 845 / 755
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Normal",
  18550. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "Macro",
  18555. height: math.unit(0.935 * 146, "feet")
  18556. },
  18557. {
  18558. name: "Megamacro",
  18559. height: math.unit(0.935 * 3, "miles")
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18565. {
  18566. frontDressed: {
  18567. height: math.unit(5 + 7 / 12, "feet"),
  18568. weight: math.unit(140, "lb"),
  18569. name: "Front (Dressed)",
  18570. image: {
  18571. source: "./media/characters/doc-weardno/front-dressed.svg",
  18572. extra: 263 / 234
  18573. }
  18574. },
  18575. backDressed: {
  18576. height: math.unit(5 + 7 / 12, "feet"),
  18577. weight: math.unit(140, "lb"),
  18578. name: "Back (Dressed)",
  18579. image: {
  18580. source: "./media/characters/doc-weardno/back-dressed.svg",
  18581. extra: 266 / 238
  18582. }
  18583. },
  18584. front: {
  18585. height: math.unit(5 + 7 / 12, "feet"),
  18586. weight: math.unit(140, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/doc-weardno/front.svg",
  18590. extra: 254 / 233
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Micro",
  18597. height: math.unit(3, "inches")
  18598. },
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(5 + 7 / 12, "feet"),
  18602. default: true
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(25, "feet")
  18607. },
  18608. {
  18609. name: "Megamacro",
  18610. height: math.unit(2, "miles")
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(6 + 2 / 12, "feet"),
  18619. weight: math.unit(153, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/seth-whilst/front.svg",
  18623. bottom: 0.07
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(5, "inches")
  18631. },
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(6 + 2 / 12, "feet"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(3, "inches"),
  18644. weight: math.unit(8, "grams"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/pocket-jabari/front.svg",
  18648. extra: 1024 / 974,
  18649. bottom: 0.039
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Minimicro",
  18656. height: math.unit(8, "mm")
  18657. },
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(3, "inches"),
  18661. default: true
  18662. },
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(3, "feet")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(15, "feet"),
  18674. weight: math.unit(3280, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/sapphy/front.svg",
  18678. extra: 671 / 577,
  18679. bottom: 0.085
  18680. }
  18681. },
  18682. back: {
  18683. height: math.unit(15, "feet"),
  18684. weight: math.unit(3280, "lb"),
  18685. name: "Back",
  18686. image: {
  18687. source: "./media/characters/sapphy/back.svg",
  18688. extra: 631 / 607,
  18689. bottom: 0.045
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(15, "feet")
  18697. },
  18698. {
  18699. name: "Casual Macro",
  18700. height: math.unit(120, "feet")
  18701. },
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(2150, "feet"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Megamacro",
  18709. height: math.unit(8, "miles")
  18710. },
  18711. {
  18712. name: "Galaxy Mom",
  18713. height: math.unit(6, "megalightyears")
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(6, "feet"),
  18722. weight: math.unit(170, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/kiro/front.svg",
  18726. extra: 1064 / 1012,
  18727. bottom: 0.052
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Micro",
  18734. height: math.unit(6, "inches")
  18735. },
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(6, "feet"),
  18739. default: true
  18740. },
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(72, "feet")
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(5 + 9 / 12, "feet"),
  18752. weight: math.unit(175, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/irishfox/front.svg",
  18756. extra: 1912 / 1680,
  18757. bottom: 0.02
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Nano",
  18764. height: math.unit(1, "mm")
  18765. },
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(2, "inches")
  18769. },
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(5 + 9 / 12, "feet"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Macro",
  18777. height: math.unit(45, "feet")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(6 + 1 / 12, "feet"),
  18786. weight: math.unit(75, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/aronai-sieyes/front.svg",
  18790. extra: 1556 / 1480,
  18791. bottom: 0.015
  18792. }
  18793. },
  18794. side: {
  18795. height: math.unit(6 + 1 / 12, "feet"),
  18796. weight: math.unit(75, "lb"),
  18797. name: "Side",
  18798. image: {
  18799. source: "./media/characters/aronai-sieyes/side.svg",
  18800. extra: 1433 / 1390,
  18801. bottom: 0.0393
  18802. }
  18803. },
  18804. back: {
  18805. height: math.unit(6 + 1 / 12, "feet"),
  18806. weight: math.unit(75, "lb"),
  18807. name: "Back",
  18808. image: {
  18809. source: "./media/characters/aronai-sieyes/back.svg",
  18810. extra: 1544 / 1494,
  18811. bottom: 0.02
  18812. }
  18813. },
  18814. frontClothed: {
  18815. height: math.unit(6 + 1 / 12, "feet"),
  18816. weight: math.unit(75, "lb"),
  18817. name: "Front (Clothed)",
  18818. image: {
  18819. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18820. extra: 1582 / 1527
  18821. }
  18822. },
  18823. feral: {
  18824. height: math.unit(18, "feet"),
  18825. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18826. name: "Feral",
  18827. image: {
  18828. source: "./media/characters/aronai-sieyes/feral.svg",
  18829. extra: 1530 / 1240,
  18830. bottom: 0.035
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Micro",
  18837. height: math.unit(2, "inches")
  18838. },
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(6 + 1 / 12, "feet"),
  18842. default: true
  18843. }
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(12, "feet"),
  18851. weight: math.unit(410, "kg"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/xuna/front.svg",
  18855. extra: 2184 / 1980
  18856. }
  18857. },
  18858. side: {
  18859. height: math.unit(12, "feet"),
  18860. weight: math.unit(410, "kg"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/xuna/side.svg",
  18864. extra: 2184 / 1980
  18865. }
  18866. },
  18867. back: {
  18868. height: math.unit(12, "feet"),
  18869. weight: math.unit(410, "kg"),
  18870. name: "Back",
  18871. image: {
  18872. source: "./media/characters/xuna/back.svg",
  18873. extra: 2184 / 1980
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Nano glow",
  18880. height: math.unit(10, "nm")
  18881. },
  18882. {
  18883. name: "Micro floof",
  18884. height: math.unit(0.3, "m")
  18885. },
  18886. {
  18887. name: "Huggable softy boi",
  18888. height: math.unit(3.6576, "m"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Admirable floof",
  18893. height: math.unit(80, "meters")
  18894. },
  18895. {
  18896. name: "Gentle macro",
  18897. height: math.unit(300, "meters")
  18898. },
  18899. {
  18900. name: "Very careful floof",
  18901. height: math.unit(3200, "meters")
  18902. },
  18903. {
  18904. name: "The mega floof",
  18905. height: math.unit(36000, "meters")
  18906. },
  18907. {
  18908. name: "Giga-fur-Wicker",
  18909. height: math.unit(4800000, "meters")
  18910. },
  18911. {
  18912. name: "Licky world",
  18913. height: math.unit(20000000, "meters")
  18914. },
  18915. {
  18916. name: "Floofy cyan sun",
  18917. height: math.unit(1500000000, "meters")
  18918. },
  18919. {
  18920. name: "Milky Wicker",
  18921. height: math.unit(1000000000000000000000, "meters")
  18922. },
  18923. {
  18924. name: "The observing Wicker",
  18925. height: math.unit(999999999999999999999999999, "meters")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(5 + 9 / 12, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/arokha-sieyes/front.svg",
  18938. extra: 1425 / 1284,
  18939. bottom: 0.05
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(5 + 9 / 12, "feet")
  18947. },
  18948. {
  18949. name: "Macro",
  18950. height: math.unit(30, "meters"),
  18951. default: true
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(6, "feet"),
  18960. weight: math.unit(180, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/arokh-sieyes/front.svg",
  18964. extra: 1830 / 1769,
  18965. bottom: 0.01
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(6, "feet")
  18973. },
  18974. {
  18975. name: "Macro",
  18976. height: math.unit(30, "meters"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18983. {
  18984. side: {
  18985. height: math.unit(13 + 1 / 12, "feet"),
  18986. weight: math.unit(8.5, "tonnes"),
  18987. name: "Side",
  18988. image: {
  18989. source: "./media/characters/goldeneye/side.svg",
  18990. extra: 1182 / 778,
  18991. bottom: 0.067
  18992. }
  18993. },
  18994. paw: {
  18995. height: math.unit(3.4, "feet"),
  18996. name: "Paw",
  18997. image: {
  18998. source: "./media/characters/goldeneye/paw.svg"
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(13 + 1 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19012. {
  19013. front: {
  19014. height: math.unit(6 + 1 / 12, "feet"),
  19015. weight: math.unit(210, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/leonardo-lycheborne/front.svg",
  19019. extra: 390 / 365,
  19020. bottom: 0.032
  19021. }
  19022. },
  19023. side: {
  19024. height: math.unit(6 + 1 / 12, "feet"),
  19025. weight: math.unit(210, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/leonardo-lycheborne/side.svg",
  19029. extra: 390 / 365,
  19030. bottom: 0.005
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(6 + 1 / 12, "feet"),
  19035. weight: math.unit(210, "lb"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/leonardo-lycheborne/back.svg",
  19039. extra: 392 / 366,
  19040. bottom: 0.01
  19041. }
  19042. },
  19043. hand: {
  19044. height: math.unit(1.08, "feet"),
  19045. name: "Hand",
  19046. image: {
  19047. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19048. }
  19049. },
  19050. foot: {
  19051. height: math.unit(1.32, "feet"),
  19052. name: "Foot",
  19053. image: {
  19054. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19055. }
  19056. },
  19057. were: {
  19058. height: math.unit(20, "feet"),
  19059. weight: math.unit(7800, "lb"),
  19060. name: "Were",
  19061. image: {
  19062. source: "./media/characters/leonardo-lycheborne/were.svg",
  19063. extra: 308 / 294,
  19064. bottom: 0.048
  19065. }
  19066. },
  19067. feral: {
  19068. height: math.unit(7.5, "feet"),
  19069. weight: math.unit(600, "lb"),
  19070. name: "Feral",
  19071. image: {
  19072. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19073. extra: 210 / 186,
  19074. bottom: 0.108
  19075. }
  19076. },
  19077. taur: {
  19078. height: math.unit(11, "feet"),
  19079. weight: math.unit(3300, "lb"),
  19080. name: "Taur",
  19081. image: {
  19082. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19083. extra: 320 / 303,
  19084. bottom: 0.025
  19085. }
  19086. },
  19087. barghest: {
  19088. height: math.unit(11, "feet"),
  19089. weight: math.unit(1300, "lb"),
  19090. name: "Barghest",
  19091. image: {
  19092. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19093. extra: 323 / 302,
  19094. bottom: 0.027
  19095. }
  19096. },
  19097. dick: {
  19098. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19099. name: "Dick",
  19100. image: {
  19101. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19102. }
  19103. },
  19104. dickWere: {
  19105. height: math.unit((20) / 3.8, "feet"),
  19106. name: "Dick (Were)",
  19107. image: {
  19108. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(10, "feet"),
  19125. weight: math.unit(350, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/jet/front.svg",
  19129. extra: 2050 / 1980,
  19130. bottom: 0.013
  19131. }
  19132. },
  19133. back: {
  19134. height: math.unit(10, "feet"),
  19135. weight: math.unit(350, "lb"),
  19136. name: "Back",
  19137. image: {
  19138. source: "./media/characters/jet/back.svg",
  19139. extra: 2050 / 1980,
  19140. bottom: 0.013
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(6, "inches")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(10, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(100, "feet")
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(15, "feet"),
  19165. weight: math.unit(2800, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/tanarath/front.svg",
  19169. extra: 2392 / 2220,
  19170. bottom: 0.03
  19171. }
  19172. },
  19173. back: {
  19174. height: math.unit(15, "feet"),
  19175. weight: math.unit(2800, "lb"),
  19176. name: "Back",
  19177. image: {
  19178. source: "./media/characters/tanarath/back.svg",
  19179. extra: 2392 / 2220,
  19180. bottom: 0.03
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(15, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(7 + 1 / 12, "feet"),
  19197. weight: math.unit(175, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/patty-cattybatty/front.svg",
  19201. extra: 908 / 874,
  19202. bottom: 0.025
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(1, "inch")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(7 + 1 / 12, "feet")
  19214. },
  19215. {
  19216. name: "Mini Macro",
  19217. height: math.unit(155, "feet")
  19218. },
  19219. {
  19220. name: "Macro",
  19221. height: math.unit(1077, "feet")
  19222. },
  19223. {
  19224. name: "Mega Macro",
  19225. height: math.unit(47650, "feet"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Giga Macro",
  19230. height: math.unit(440, "miles")
  19231. },
  19232. {
  19233. name: "Tera Macro",
  19234. height: math.unit(8700, "miles")
  19235. },
  19236. {
  19237. name: "Planetary Macro",
  19238. height: math.unit(32700, "miles")
  19239. },
  19240. {
  19241. name: "Solar Macro",
  19242. height: math.unit(550000, "miles")
  19243. },
  19244. {
  19245. name: "Celestial Macro",
  19246. height: math.unit(2.5, "AU")
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(4 + 5 / 12, "feet"),
  19255. weight: math.unit(90, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/cappu/front.svg",
  19259. extra: 1247 / 1152,
  19260. bottom: 0.012
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(4 + 5 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19274. {
  19275. frontDressed: {
  19276. height: math.unit(70, "cm"),
  19277. weight: math.unit(6, "kg"),
  19278. name: "Front (Dressed)",
  19279. image: {
  19280. source: "./media/characters/sebi/front-dressed.svg",
  19281. extra: 713.5 / 686.5,
  19282. bottom: 0.003
  19283. }
  19284. },
  19285. front: {
  19286. height: math.unit(70, "cm"),
  19287. weight: math.unit(5, "kg"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/sebi/front.svg",
  19291. extra: 713.5 / 686.5,
  19292. bottom: 0.003
  19293. }
  19294. }
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(70, "cm"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(8, "meters")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6, "feet"),
  19313. weight: math.unit(150, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/typhek/front.svg",
  19317. extra: 1948 / 1929,
  19318. bottom: 0.025
  19319. }
  19320. },
  19321. side: {
  19322. height: math.unit(6, "feet"),
  19323. weight: math.unit(150, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/typhek/side.svg",
  19327. extra: 2034 / 2010,
  19328. bottom: 0.003
  19329. }
  19330. },
  19331. back: {
  19332. height: math.unit(6, "feet"),
  19333. weight: math.unit(150, "lb"),
  19334. name: "Back",
  19335. image: {
  19336. source: "./media/characters/typhek/back.svg",
  19337. extra: 2005 / 1978,
  19338. bottom: 0.004
  19339. }
  19340. },
  19341. palm: {
  19342. height: math.unit(1.2, "feet"),
  19343. name: "Palm",
  19344. image: {
  19345. source: "./media/characters/typhek/palm.svg"
  19346. }
  19347. },
  19348. fist: {
  19349. height: math.unit(1.1, "feet"),
  19350. name: "Fist",
  19351. image: {
  19352. source: "./media/characters/typhek/fist.svg"
  19353. }
  19354. },
  19355. foot: {
  19356. height: math.unit(1.57, "feet"),
  19357. name: "Foot",
  19358. image: {
  19359. source: "./media/characters/typhek/foot.svg"
  19360. }
  19361. },
  19362. sole: {
  19363. height: math.unit(2.05, "feet"),
  19364. name: "Sole",
  19365. image: {
  19366. source: "./media/characters/typhek/sole.svg"
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Macro",
  19373. height: math.unit(40, "stories"),
  19374. default: true
  19375. },
  19376. {
  19377. name: "Megamacro",
  19378. height: math.unit(1, "mile")
  19379. },
  19380. {
  19381. name: "Gigamacro",
  19382. height: math.unit(4000, "solarradii")
  19383. },
  19384. {
  19385. name: "Universal",
  19386. height: math.unit(1.1, "universes")
  19387. }
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19392. {
  19393. side: {
  19394. height: math.unit(5 + 7 / 12, "feet"),
  19395. weight: math.unit(150, "lb"),
  19396. name: "Side",
  19397. image: {
  19398. source: "./media/characters/kassy/side.svg",
  19399. extra: 1280 / 1225,
  19400. bottom: 0.002
  19401. }
  19402. },
  19403. front: {
  19404. height: math.unit(5 + 7 / 12, "feet"),
  19405. weight: math.unit(150, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/kassy/front.svg",
  19409. extra: 1280 / 1225,
  19410. bottom: 0.025
  19411. }
  19412. },
  19413. back: {
  19414. height: math.unit(5 + 7 / 12, "feet"),
  19415. weight: math.unit(150, "lb"),
  19416. name: "Back",
  19417. image: {
  19418. source: "./media/characters/kassy/back.svg",
  19419. extra: 1280 / 1225,
  19420. bottom: 0.002
  19421. }
  19422. },
  19423. foot: {
  19424. height: math.unit(1.266, "feet"),
  19425. name: "Foot",
  19426. image: {
  19427. source: "./media/characters/kassy/foot.svg"
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(5 + 7 / 12, "feet")
  19435. },
  19436. {
  19437. name: "Macro",
  19438. height: math.unit(137, "feet"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Megamacro",
  19443. height: math.unit(1, "mile")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(6 + 1 / 12, "feet"),
  19452. weight: math.unit(200, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/neil/front.svg",
  19456. extra: 1326 / 1250,
  19457. bottom: 0.023
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(6 + 1 / 12, "feet"),
  19465. default: true
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(200, "feet")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(5 + 9 / 12, "feet"),
  19478. weight: math.unit(190, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/atticus/front.svg",
  19482. extra: 2934 / 2785,
  19483. bottom: 0.025
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(5 + 9 / 12, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(180, "feet")
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19501. {
  19502. side: {
  19503. height: math.unit(9, "feet"),
  19504. weight: math.unit(650, "lb"),
  19505. name: "Side",
  19506. image: {
  19507. source: "./media/characters/milo/side.svg",
  19508. extra: 2644 / 2310,
  19509. bottom: 0.032
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(9, "feet"),
  19517. default: true
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(300, "feet")
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19527. {
  19528. side: {
  19529. height: math.unit(8, "meters"),
  19530. weight: math.unit(90000, "kg"),
  19531. name: "Side",
  19532. image: {
  19533. source: "./media/characters/ijzer/side.svg",
  19534. extra: 2756 / 1600,
  19535. bottom: 0.01
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Small",
  19542. height: math.unit(3, "meters")
  19543. },
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(8, "meters"),
  19547. default: true
  19548. },
  19549. {
  19550. name: "Normal+",
  19551. height: math.unit(10, "meters")
  19552. },
  19553. {
  19554. name: "Bigger",
  19555. height: math.unit(24, "meters")
  19556. },
  19557. {
  19558. name: "Huge",
  19559. height: math.unit(80, "meters")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(6 + 2 / 12, "feet"),
  19568. weight: math.unit(153, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/luca-cervicum/front.svg",
  19572. extra: 370 / 327,
  19573. bottom: 0.015
  19574. }
  19575. },
  19576. back: {
  19577. height: math.unit(6 + 2 / 12, "feet"),
  19578. weight: math.unit(153, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/luca-cervicum/back.svg",
  19582. extra: 367 / 333,
  19583. bottom: 0.005
  19584. }
  19585. },
  19586. frontGear: {
  19587. height: math.unit(6 + 2 / 12, "feet"),
  19588. weight: math.unit(173, "lb"),
  19589. name: "Front (Gear)",
  19590. image: {
  19591. source: "./media/characters/luca-cervicum/front-gear.svg",
  19592. extra: 377 / 333,
  19593. bottom: 0.006
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6 + 2 / 12, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6 + 1 / 12, "feet"),
  19610. weight: math.unit(304, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/oliver/front.svg",
  19614. extra: 157 / 143,
  19615. bottom: 0.08
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6 + 1 / 12, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(5 + 7 / 12, "feet"),
  19632. weight: math.unit(140, "lb"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/shane/front.svg",
  19636. extra: 304 / 289,
  19637. bottom: 0.005
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(5 + 7 / 12, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(5 + 9 / 12, "feet"),
  19654. weight: math.unit(178, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/shin/front.svg",
  19658. extra: 159 / 151,
  19659. bottom: 0.015
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(5 + 9 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(5 + 10 / 12, "feet"),
  19676. weight: math.unit(168, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/xerxes/front.svg",
  19680. extra: 282 / 260,
  19681. bottom: 0.045
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(5 + 10 / 12, "feet"),
  19689. default: true
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19695. {
  19696. front: {
  19697. height: math.unit(6 + 7 / 12, "feet"),
  19698. weight: math.unit(208, "lb"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/chaska/front.svg",
  19702. extra: 332 / 319,
  19703. bottom: 0.015
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(6 + 7 / 12, "feet"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(5 + 8 / 12, "feet"),
  19720. weight: math.unit(208, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/enuk/front.svg",
  19724. extra: 437 / 406,
  19725. bottom: 0.02
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(5 + 8 / 12, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(5 + 10 / 12, "feet"),
  19742. weight: math.unit(252, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/bruun/front.svg",
  19746. extra: 197 / 187,
  19747. bottom: 0.012
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(5 + 10 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(6 + 10 / 12, "feet"),
  19764. weight: math.unit(255, "lb"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/alexeev/front.svg",
  19768. extra: 213 / 200,
  19769. bottom: 0.05
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(6 + 10 / 12, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(2 + 8 / 12, "feet"),
  19786. weight: math.unit(22, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/evelyn/front.svg",
  19790. extra: 208 / 180
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(2 + 8 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(5 + 9 / 12, "feet"),
  19807. weight: math.unit(139, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/inca/front.svg",
  19811. extra: 294 / 291,
  19812. bottom: 0.03
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(5 + 9 / 12, "feet"),
  19820. default: true
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(5 + 1 / 12, "feet"),
  19829. weight: math.unit(84, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/magdalene/front.svg",
  19833. extra: 293 / 273
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(5 + 1 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(6 + 3 / 12, "feet"),
  19850. weight: math.unit(185, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/mera/front.svg",
  19854. extra: 291 / 277,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(6 + 3 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(6 + 7 / 12, "feet"),
  19872. weight: math.unit(160, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/ceres/front.svg",
  19876. extra: 1023 / 950,
  19877. bottom: 0.027
  19878. }
  19879. },
  19880. back: {
  19881. height: math.unit(6 + 7 / 12, "feet"),
  19882. weight: math.unit(160, "lb"),
  19883. name: "Back",
  19884. image: {
  19885. source: "./media/characters/ceres/back.svg",
  19886. extra: 1023 / 950
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(6 + 7 / 12, "feet"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19900. {
  19901. front: {
  19902. height: math.unit(5 + 10 / 12, "feet"),
  19903. weight: math.unit(150, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/kris/front.svg",
  19907. extra: 885 / 803,
  19908. bottom: 0.03
  19909. }
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(5 + 10 / 12, "feet"),
  19916. default: true
  19917. },
  19918. ]
  19919. ))
  19920. characterMakers.push(() => makeCharacter(
  19921. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19922. {
  19923. front: {
  19924. height: math.unit(7, "feet"),
  19925. weight: math.unit(120, "kg"),
  19926. name: "Front",
  19927. image: {
  19928. source: "./media/characters/taluthus/front.svg",
  19929. extra: 903 / 833,
  19930. bottom: 0.015
  19931. }
  19932. },
  19933. },
  19934. [
  19935. {
  19936. name: "Normal",
  19937. height: math.unit(7, "feet"),
  19938. default: true
  19939. },
  19940. {
  19941. name: "Macro",
  19942. height: math.unit(300, "feet")
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(5 + 9 / 12, "feet"),
  19951. weight: math.unit(145, "lb"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/dawn/front.svg",
  19955. extra: 2094 / 2016,
  19956. bottom: 0.025
  19957. }
  19958. },
  19959. back: {
  19960. height: math.unit(5 + 9 / 12, "feet"),
  19961. weight: math.unit(160, "lb"),
  19962. name: "Back",
  19963. image: {
  19964. source: "./media/characters/dawn/back.svg",
  19965. extra: 2112 / 2080,
  19966. bottom: 0.005
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(6 + 7 / 12, "feet"),
  19974. default: true
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19980. {
  19981. anthro: {
  19982. height: math.unit(8 + 3 / 12, "feet"),
  19983. weight: math.unit(450, "lb"),
  19984. name: "Anthro",
  19985. image: {
  19986. source: "./media/characters/arador/anthro.svg",
  19987. extra: 1835 / 1718,
  19988. bottom: 0.025
  19989. }
  19990. },
  19991. feral: {
  19992. height: math.unit(4, "feet"),
  19993. weight: math.unit(200, "lb"),
  19994. name: "Feral",
  19995. image: {
  19996. source: "./media/characters/arador/feral.svg",
  19997. extra: 1683 / 1514,
  19998. bottom: 0.07
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(8 + 3 / 12, "feet")
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(82.5, "feet"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(5 + 10 / 12, "feet"),
  20019. weight: math.unit(125, "lb"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/dharsi/front.svg",
  20023. extra: 716 / 630,
  20024. bottom: 0.035
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Nano",
  20031. height: math.unit(100, "nm")
  20032. },
  20033. {
  20034. name: "Micro",
  20035. height: math.unit(2, "inches")
  20036. },
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(5 + 10 / 12, "feet"),
  20040. default: true
  20041. },
  20042. {
  20043. name: "Macro",
  20044. height: math.unit(1000, "feet")
  20045. },
  20046. {
  20047. name: "Megamacro",
  20048. height: math.unit(10, "miles")
  20049. },
  20050. {
  20051. name: "Gigamacro",
  20052. height: math.unit(3000, "miles")
  20053. },
  20054. {
  20055. name: "Teramacro",
  20056. height: math.unit(500000, "miles")
  20057. },
  20058. {
  20059. name: "Teramacro+",
  20060. height: math.unit(30, "galaxies")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(6, "feet"),
  20069. weight: math.unit(150, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/deathy/front.svg",
  20073. extra: 1552 / 1463,
  20074. bottom: 0.025
  20075. }
  20076. },
  20077. side: {
  20078. height: math.unit(6, "feet"),
  20079. weight: math.unit(150, "lb"),
  20080. name: "Side",
  20081. image: {
  20082. source: "./media/characters/deathy/side.svg",
  20083. extra: 1604 / 1455,
  20084. bottom: 0.025
  20085. }
  20086. },
  20087. back: {
  20088. height: math.unit(6, "feet"),
  20089. weight: math.unit(150, "lb"),
  20090. name: "Back",
  20091. image: {
  20092. source: "./media/characters/deathy/back.svg",
  20093. extra: 1580 / 1463,
  20094. bottom: 0.005
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Micro",
  20101. height: math.unit(5, "millimeters")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(6 + 5 / 12, "feet"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20112. {
  20113. front: {
  20114. height: math.unit(16, "feet"),
  20115. weight: math.unit(4000, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/juniper/front.svg",
  20119. bottom: 0.04
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(16, "feet"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(6, "feet"),
  20136. weight: math.unit(150, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/hipster/front.svg",
  20140. extra: 1312 / 1209,
  20141. bottom: 0.025
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(6, "feet"),
  20146. weight: math.unit(150, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/hipster/back.svg",
  20150. extra: 1281 / 1196,
  20151. bottom: 0.01
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Micro",
  20158. height: math.unit(1, "mm")
  20159. },
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(4, "inches"),
  20163. default: true
  20164. },
  20165. {
  20166. name: "Macro",
  20167. height: math.unit(500, "feet")
  20168. },
  20169. {
  20170. name: "Megamacro",
  20171. height: math.unit(1000, "miles")
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20177. {
  20178. front: {
  20179. height: math.unit(6, "feet"),
  20180. weight: math.unit(150, "lb"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/tendirmuldr/front.svg",
  20184. extra: 1878 / 1772,
  20185. bottom: 0.015
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Megamacro",
  20192. height: math.unit(1500, "miles"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20199. {
  20200. front: {
  20201. height: math.unit(14, "feet"),
  20202. weight: math.unit(12000, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/mort/front.svg",
  20206. extra: 365 / 318,
  20207. bottom: 0.01
  20208. }
  20209. },
  20210. side: {
  20211. height: math.unit(14, "feet"),
  20212. weight: math.unit(12000, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/mort/side.svg",
  20216. extra: 365 / 318,
  20217. bottom: 0.052
  20218. },
  20219. default: true
  20220. },
  20221. back: {
  20222. height: math.unit(14, "feet"),
  20223. weight: math.unit(12000, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/mort/back.svg",
  20227. extra: 371 / 332,
  20228. bottom: 0.18
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(14, "feet"),
  20236. default: true
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20242. {
  20243. front: {
  20244. height: math.unit(8, "feet"),
  20245. weight: math.unit(1, "ton"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/lycoa/front.svg",
  20249. extra: 1875 / 1789,
  20250. bottom: 0.022
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(8, "feet"),
  20255. weight: math.unit(1, "ton"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/lycoa/back.svg",
  20259. extra: 1835 / 1781,
  20260. bottom: 0.03
  20261. }
  20262. },
  20263. head: {
  20264. height: math.unit(2.1, "feet"),
  20265. name: "Head",
  20266. image: {
  20267. source: "./media/characters/lycoa/head.svg"
  20268. }
  20269. },
  20270. tailmaw: {
  20271. height: math.unit(1.9, "feet"),
  20272. name: "Tailmaw",
  20273. image: {
  20274. source: "./media/characters/lycoa/tailmaw.svg"
  20275. }
  20276. },
  20277. tentacles: {
  20278. height: math.unit(2.1, "feet"),
  20279. name: "Tentacles",
  20280. image: {
  20281. source: "./media/characters/lycoa/tentacles.svg"
  20282. }
  20283. },
  20284. dick: {
  20285. height: math.unit(1.73, "feet"),
  20286. name: "Dick",
  20287. image: {
  20288. source: "./media/characters/lycoa/dick.svg"
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(8, "feet"),
  20296. default: true
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(30, "feet")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20306. {
  20307. front: {
  20308. height: math.unit(4 + 2 / 12, "feet"),
  20309. weight: math.unit(70, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/naldara/front.svg",
  20313. extra: 841 / 720,
  20314. bottom: 0.04
  20315. }
  20316. },
  20317. naga: {
  20318. height: math.unit(23, "feet"),
  20319. weight: math.unit(15000, "kg"),
  20320. name: "Naga",
  20321. image: {
  20322. source: "./media/characters/naldara/naga.svg",
  20323. extra: 3290 / 2959,
  20324. bottom: 124 / 3432
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(4 + 2 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(13 + 7 / 12, "feet"),
  20341. weight: math.unit(1500, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/briar/front.svg",
  20345. extra: 626 / 596,
  20346. bottom: 0.08
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(13 + 7 / 12, "feet"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20360. {
  20361. side: {
  20362. height: math.unit(10, "feet"),
  20363. weight: math.unit(500, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/vanguard/side.svg",
  20367. extra: 502 / 425,
  20368. bottom: 0.087
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(10, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(7.5, "feet"),
  20385. weight: math.unit(2, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/artemis/front.svg",
  20389. extra: 1192 / 1075,
  20390. bottom: 0.07
  20391. }
  20392. },
  20393. frontNsfw: {
  20394. height: math.unit(7.5, "feet"),
  20395. weight: math.unit(2, "lb"),
  20396. name: "Front (NSFW)",
  20397. image: {
  20398. source: "./media/characters/artemis/front-nsfw.svg",
  20399. extra: 1192 / 1075,
  20400. bottom: 0.07
  20401. }
  20402. },
  20403. frontNsfwer: {
  20404. height: math.unit(7.5, "feet"),
  20405. weight: math.unit(2, "lb"),
  20406. name: "Front (NSFW-er)",
  20407. image: {
  20408. source: "./media/characters/artemis/front-nsfwer.svg",
  20409. extra: 1192 / 1075,
  20410. bottom: 0.07
  20411. }
  20412. },
  20413. side: {
  20414. height: math.unit(7.5, "feet"),
  20415. weight: math.unit(2, "lb"),
  20416. name: "Side",
  20417. image: {
  20418. source: "./media/characters/artemis/side.svg",
  20419. extra: 1192 / 1075,
  20420. bottom: 0.07
  20421. }
  20422. },
  20423. sideNsfw: {
  20424. height: math.unit(7.5, "feet"),
  20425. weight: math.unit(2, "lb"),
  20426. name: "Side (NSFW)",
  20427. image: {
  20428. source: "./media/characters/artemis/side-nsfw.svg",
  20429. extra: 1192 / 1075,
  20430. bottom: 0.07
  20431. }
  20432. },
  20433. sideNsfwer: {
  20434. height: math.unit(7.5, "feet"),
  20435. weight: math.unit(2, "lb"),
  20436. name: "Side (NSFW-er)",
  20437. image: {
  20438. source: "./media/characters/artemis/side-nsfwer.svg",
  20439. extra: 1192 / 1075,
  20440. bottom: 0.07
  20441. }
  20442. },
  20443. maw: {
  20444. height: math.unit(1.1, "feet"),
  20445. name: "Maw",
  20446. image: {
  20447. source: "./media/characters/artemis/maw.svg"
  20448. }
  20449. },
  20450. stomach: {
  20451. height: math.unit(0.95, "feet"),
  20452. name: "Stomach",
  20453. image: {
  20454. source: "./media/characters/artemis/stomach.svg"
  20455. }
  20456. },
  20457. dickCanine: {
  20458. height: math.unit(1, "feet"),
  20459. name: "Dick (Canine)",
  20460. image: {
  20461. source: "./media/characters/artemis/dick-canine.svg"
  20462. }
  20463. },
  20464. dickEquine: {
  20465. height: math.unit(0.85, "feet"),
  20466. name: "Dick (Equine)",
  20467. image: {
  20468. source: "./media/characters/artemis/dick-equine.svg"
  20469. }
  20470. },
  20471. dickExotic: {
  20472. height: math.unit(0.85, "feet"),
  20473. name: "Dick (Exotic)",
  20474. image: {
  20475. source: "./media/characters/artemis/dick-exotic.svg"
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(7.5, "feet"),
  20483. default: true
  20484. },
  20485. {
  20486. name: "Enlarged",
  20487. height: math.unit(12, "feet")
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20493. {
  20494. front: {
  20495. height: math.unit(5 + 3 / 12, "feet"),
  20496. weight: math.unit(160, "lb"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/kira/front.svg",
  20500. extra: 906 / 786,
  20501. bottom: 0.01
  20502. }
  20503. },
  20504. back: {
  20505. height: math.unit(5 + 3 / 12, "feet"),
  20506. weight: math.unit(160, "lb"),
  20507. name: "Back",
  20508. image: {
  20509. source: "./media/characters/kira/back.svg",
  20510. extra: 882 / 757,
  20511. bottom: 0.005
  20512. }
  20513. },
  20514. frontDressed: {
  20515. height: math.unit(5 + 3 / 12, "feet"),
  20516. weight: math.unit(160, "lb"),
  20517. name: "Front (Dressed)",
  20518. image: {
  20519. source: "./media/characters/kira/front-dressed.svg",
  20520. extra: 906 / 786,
  20521. bottom: 0.01
  20522. }
  20523. },
  20524. beans: {
  20525. height: math.unit(0.92, "feet"),
  20526. name: "Beans",
  20527. image: {
  20528. source: "./media/characters/kira/beans.svg"
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 3 / 12, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 4 / 12, "feet"),
  20545. weight: math.unit(145, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/scramble/front.svg",
  20549. extra: 763 / 727,
  20550. bottom: 0.05
  20551. }
  20552. },
  20553. back: {
  20554. height: math.unit(5 + 4 / 12, "feet"),
  20555. weight: math.unit(145, "lb"),
  20556. name: "Back",
  20557. image: {
  20558. source: "./media/characters/scramble/back.svg",
  20559. extra: 826 / 737,
  20560. bottom: 0.002
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(5 + 4 / 12, "feet"),
  20568. default: true
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20574. {
  20575. side: {
  20576. height: math.unit(6 + 2 / 12, "feet"),
  20577. weight: math.unit(190, "lb"),
  20578. name: "Side",
  20579. image: {
  20580. source: "./media/characters/biscuit/side.svg",
  20581. extra: 858 / 791,
  20582. bottom: 0.044
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Normal",
  20589. height: math.unit(6 + 2 / 12, "feet"),
  20590. default: true
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20596. {
  20597. front: {
  20598. height: math.unit(5 + 2 / 12, "feet"),
  20599. weight: math.unit(120, "lb"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/poffin/front.svg",
  20603. extra: 786 / 680,
  20604. bottom: 0.005
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(5 + 2 / 12, "feet"),
  20612. default: true
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(6 + 3 / 12, "feet"),
  20621. weight: math.unit(519, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/dhari/front.svg",
  20625. extra: 1048 / 946,
  20626. bottom: 0.015
  20627. }
  20628. },
  20629. back: {
  20630. height: math.unit(6 + 3 / 12, "feet"),
  20631. weight: math.unit(519, "lb"),
  20632. name: "Back",
  20633. image: {
  20634. source: "./media/characters/dhari/back.svg",
  20635. extra: 1048 / 931,
  20636. bottom: 0.005
  20637. }
  20638. },
  20639. frontDressed: {
  20640. height: math.unit(6 + 3 / 12, "feet"),
  20641. weight: math.unit(519, "lb"),
  20642. name: "Front (Dressed)",
  20643. image: {
  20644. source: "./media/characters/dhari/front-dressed.svg",
  20645. extra: 1713 / 1546,
  20646. bottom: 0.02
  20647. }
  20648. },
  20649. backDressed: {
  20650. height: math.unit(6 + 3 / 12, "feet"),
  20651. weight: math.unit(519, "lb"),
  20652. name: "Back (Dressed)",
  20653. image: {
  20654. source: "./media/characters/dhari/back-dressed.svg",
  20655. extra: 1699 / 1537,
  20656. bottom: 0.01
  20657. }
  20658. },
  20659. maw: {
  20660. height: math.unit(0.95, "feet"),
  20661. name: "Maw",
  20662. image: {
  20663. source: "./media/characters/dhari/maw.svg"
  20664. }
  20665. },
  20666. wereFront: {
  20667. height: math.unit(12 + 8 / 12, "feet"),
  20668. weight: math.unit(4000, "lb"),
  20669. name: "Front (Were)",
  20670. image: {
  20671. source: "./media/characters/dhari/were-front.svg",
  20672. extra: 1065 / 969,
  20673. bottom: 0.015
  20674. }
  20675. },
  20676. wereBack: {
  20677. height: math.unit(12 + 8 / 12, "feet"),
  20678. weight: math.unit(4000, "lb"),
  20679. name: "Back (Were)",
  20680. image: {
  20681. source: "./media/characters/dhari/were-back.svg",
  20682. extra: 1065 / 969,
  20683. bottom: 0.012
  20684. }
  20685. },
  20686. wereMaw: {
  20687. height: math.unit(0.625, "meters"),
  20688. name: "Maw (Were)",
  20689. image: {
  20690. source: "./media/characters/dhari/were-maw.svg"
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(6 + 3 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20704. {
  20705. anthro: {
  20706. height: math.unit(5 + 7 / 12, "feet"),
  20707. weight: math.unit(175, "lb"),
  20708. name: "Anthro",
  20709. image: {
  20710. source: "./media/characters/rena-dyne/anthro.svg",
  20711. extra: 1849 / 1785,
  20712. bottom: 0.005
  20713. }
  20714. },
  20715. taur: {
  20716. height: math.unit(15 + 6 / 12, "feet"),
  20717. weight: math.unit(8000, "lb"),
  20718. name: "Taur",
  20719. image: {
  20720. source: "./media/characters/rena-dyne/taur.svg",
  20721. extra: 2315 / 2234,
  20722. bottom: 0.033
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(5 + 7 / 12, "feet"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(8, "feet"),
  20739. weight: math.unit(600, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/weremeep/front.svg",
  20743. extra: 967 / 862,
  20744. bottom: 0.01
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(8, "feet"),
  20752. default: true
  20753. },
  20754. {
  20755. name: "Lorg",
  20756. height: math.unit(12, "feet")
  20757. },
  20758. {
  20759. name: "Oh Lawd She Comin'",
  20760. height: math.unit(20, "feet")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20766. {
  20767. front: {
  20768. height: math.unit(4, "feet"),
  20769. weight: math.unit(90, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/reza/front.svg",
  20773. extra: 1183 / 1111,
  20774. bottom: 0.017
  20775. }
  20776. },
  20777. back: {
  20778. height: math.unit(4, "feet"),
  20779. weight: math.unit(90, "lb"),
  20780. name: "Back",
  20781. image: {
  20782. source: "./media/characters/reza/back.svg",
  20783. extra: 1183 / 1111,
  20784. bottom: 0.01
  20785. }
  20786. },
  20787. drake: {
  20788. height: math.unit(30, "feet"),
  20789. weight: math.unit(246960, "lb"),
  20790. name: "Drake",
  20791. image: {
  20792. source: "./media/characters/reza/drake.svg",
  20793. extra: 2350 / 2024,
  20794. bottom: 60.7 / 2403
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(4, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20808. {
  20809. side: {
  20810. height: math.unit(15, "feet"),
  20811. weight: math.unit(14, "tons"),
  20812. name: "Side",
  20813. image: {
  20814. source: "./media/characters/athea/side.svg",
  20815. extra: 960 / 540,
  20816. bottom: 0.003
  20817. }
  20818. },
  20819. sitting: {
  20820. height: math.unit(6 * 2.85, "feet"),
  20821. weight: math.unit(14, "tons"),
  20822. name: "Sitting",
  20823. image: {
  20824. source: "./media/characters/athea/sitting.svg",
  20825. extra: 621 / 581,
  20826. bottom: 0.075
  20827. }
  20828. },
  20829. maw: {
  20830. height: math.unit(7.59498031496063, "feet"),
  20831. name: "Maw",
  20832. image: {
  20833. source: "./media/characters/athea/maw.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Lap Cat",
  20840. height: math.unit(2.5, "feet")
  20841. },
  20842. {
  20843. name: "Minimacro",
  20844. height: math.unit(15, "feet"),
  20845. default: true
  20846. },
  20847. {
  20848. name: "Macro",
  20849. height: math.unit(120, "feet")
  20850. },
  20851. {
  20852. name: "Macro+",
  20853. height: math.unit(640, "feet")
  20854. },
  20855. {
  20856. name: "Colossus",
  20857. height: math.unit(2.2, "miles")
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(8 + 8 / 12, "feet"),
  20866. weight: math.unit(130, "kg"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/seroko/front.svg",
  20870. extra: 1385 / 1280,
  20871. bottom: 0.025
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(8 + 8 / 12, "feet"),
  20876. weight: math.unit(130, "kg"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/seroko/back.svg",
  20880. extra: 1369 / 1238,
  20881. bottom: 0.018
  20882. }
  20883. },
  20884. frontDressed: {
  20885. height: math.unit(8 + 8 / 12, "feet"),
  20886. weight: math.unit(130, "kg"),
  20887. name: "Front (Dressed)",
  20888. image: {
  20889. source: "./media/characters/seroko/front-dressed.svg",
  20890. extra: 1366 / 1275,
  20891. bottom: 0.03
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(8 + 8 / 12, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(5.5, "feet"),
  20908. weight: math.unit(160, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/quatzi/front.svg",
  20912. extra: 2346 / 2242,
  20913. bottom: 0.015
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(5.5, "feet"),
  20921. default: true
  20922. },
  20923. {
  20924. name: "Big",
  20925. height: math.unit(7.7, "feet")
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(5 + 11 / 12, "feet"),
  20934. weight: math.unit(180, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/sen/front.svg",
  20938. extra: 1321 / 1254,
  20939. bottom: 0.015
  20940. }
  20941. },
  20942. side: {
  20943. height: math.unit(5 + 11 / 12, "feet"),
  20944. weight: math.unit(180, "lb"),
  20945. name: "Side",
  20946. image: {
  20947. source: "./media/characters/sen/side.svg",
  20948. extra: 1321 / 1254,
  20949. bottom: 0.007
  20950. }
  20951. },
  20952. back: {
  20953. height: math.unit(5 + 11 / 12, "feet"),
  20954. weight: math.unit(180, "lb"),
  20955. name: "Back",
  20956. image: {
  20957. source: "./media/characters/sen/back.svg",
  20958. extra: 1321 / 1254
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(5 + 11 / 12, "feet"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(166.6, "cm"),
  20975. weight: math.unit(66.6, "kg"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/fruity/front.svg",
  20979. extra: 1510 / 1386,
  20980. bottom: 0.04
  20981. }
  20982. },
  20983. back: {
  20984. height: math.unit(166.6, "cm"),
  20985. weight: math.unit(66.6, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/fruity/back.svg",
  20989. extra: 1563 / 1435,
  20990. bottom: 0.005
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(166.6, "cm"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Demonic",
  21002. height: math.unit(166.6, "feet")
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21008. {
  21009. side: {
  21010. height: math.unit(10, "feet"),
  21011. weight: math.unit(500, "lb"),
  21012. name: "Side",
  21013. image: {
  21014. source: "./media/characters/zost/side.svg",
  21015. extra: 966 / 880,
  21016. bottom: 0.075
  21017. }
  21018. },
  21019. mawFront: {
  21020. height: math.unit(1.08, "meters"),
  21021. name: "Maw (Front)",
  21022. image: {
  21023. source: "./media/characters/zost/maw-front.svg"
  21024. }
  21025. },
  21026. mawSide: {
  21027. height: math.unit(2.66, "feet"),
  21028. name: "Maw (Side)",
  21029. image: {
  21030. source: "./media/characters/zost/maw-side.svg"
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(10, "feet"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21044. {
  21045. front: {
  21046. height: math.unit(5 + 4 / 12, "feet"),
  21047. weight: math.unit(120, "lb"),
  21048. name: "Front",
  21049. image: {
  21050. source: "./media/characters/luci/front.svg",
  21051. extra: 1985 / 1884,
  21052. bottom: 0.04
  21053. }
  21054. },
  21055. back: {
  21056. height: math.unit(5 + 4 / 12, "feet"),
  21057. weight: math.unit(120, "lb"),
  21058. name: "Back",
  21059. image: {
  21060. source: "./media/characters/luci/back.svg",
  21061. extra: 1892 / 1791,
  21062. bottom: 0.002
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(5 + 4 / 12, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(1500, "feet"),
  21079. weight: math.unit(3.8e6, "tons"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/2th/front.svg",
  21083. extra: 3489 / 3350,
  21084. bottom: 0.1
  21085. }
  21086. },
  21087. foot: {
  21088. height: math.unit(461, "feet"),
  21089. name: "Foot",
  21090. image: {
  21091. source: "./media/characters/2th/foot.svg"
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "\"Micro\"",
  21098. height: math.unit(15 + 7 / 12, "feet")
  21099. },
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(1500, "feet"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(5000, "feet")
  21108. },
  21109. {
  21110. name: "Megamacro",
  21111. height: math.unit(15, "miles")
  21112. },
  21113. {
  21114. name: "Gigamacro",
  21115. height: math.unit(4000, "miles")
  21116. },
  21117. {
  21118. name: "Galactic",
  21119. height: math.unit(50, "AU")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(5 + 6 / 12, "feet"),
  21128. weight: math.unit(220, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/amethyst/front.svg",
  21132. extra: 2078 / 2040,
  21133. bottom: 0.045
  21134. }
  21135. },
  21136. back: {
  21137. height: math.unit(5 + 6 / 12, "feet"),
  21138. weight: math.unit(220, "lb"),
  21139. name: "Back",
  21140. image: {
  21141. source: "./media/characters/amethyst/back.svg",
  21142. extra: 2021 / 1989,
  21143. bottom: 0.02
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(5 + 6 / 12, "feet"),
  21151. default: true
  21152. },
  21153. ]
  21154. ))
  21155. characterMakers.push(() => makeCharacter(
  21156. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21157. {
  21158. front: {
  21159. height: math.unit(4 + 11 / 12, "feet"),
  21160. weight: math.unit(120, "lb"),
  21161. name: "Front",
  21162. image: {
  21163. source: "./media/characters/yumi-akiyama/front.svg",
  21164. extra: 1327 / 1235,
  21165. bottom: 0.02
  21166. }
  21167. },
  21168. back: {
  21169. height: math.unit(4 + 11 / 12, "feet"),
  21170. weight: math.unit(120, "lb"),
  21171. name: "Back",
  21172. image: {
  21173. source: "./media/characters/yumi-akiyama/back.svg",
  21174. extra: 1287 / 1245,
  21175. bottom: 0.002
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Galactic",
  21182. height: math.unit(50, "galaxies"),
  21183. default: true
  21184. },
  21185. {
  21186. name: "Universal",
  21187. height: math.unit(100, "universes")
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21193. {
  21194. front: {
  21195. height: math.unit(8, "feet"),
  21196. weight: math.unit(500, "lb"),
  21197. name: "Front",
  21198. image: {
  21199. source: "./media/characters/rifter-yrmori/front.svg",
  21200. extra: 1180 / 1125,
  21201. bottom: 0.02
  21202. }
  21203. },
  21204. back: {
  21205. height: math.unit(8, "feet"),
  21206. weight: math.unit(500, "lb"),
  21207. name: "Back",
  21208. image: {
  21209. source: "./media/characters/rifter-yrmori/back.svg",
  21210. extra: 1190 / 1145,
  21211. bottom: 0.001
  21212. }
  21213. },
  21214. wings: {
  21215. height: math.unit(7.75, "feet"),
  21216. weight: math.unit(500, "lb"),
  21217. name: "Wings",
  21218. image: {
  21219. source: "./media/characters/rifter-yrmori/wings.svg",
  21220. extra: 1357 / 1285
  21221. }
  21222. },
  21223. maw: {
  21224. height: math.unit(0.8, "feet"),
  21225. name: "Maw",
  21226. image: {
  21227. source: "./media/characters/rifter-yrmori/maw.svg"
  21228. }
  21229. },
  21230. mawfront: {
  21231. height: math.unit(1.45, "feet"),
  21232. name: "Maw (Front)",
  21233. image: {
  21234. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(8, "feet"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Macro",
  21246. height: math.unit(42, "meters")
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21252. {
  21253. were: {
  21254. height: math.unit(25 + 6 / 12, "feet"),
  21255. weight: math.unit(10000, "lb"),
  21256. name: "Were",
  21257. image: {
  21258. source: "./media/characters/tahajin/were.svg",
  21259. extra: 801 / 770,
  21260. bottom: 0.042
  21261. }
  21262. },
  21263. aquatic: {
  21264. height: math.unit(6 + 4 / 12, "feet"),
  21265. weight: math.unit(160, "lb"),
  21266. name: "Aquatic",
  21267. image: {
  21268. source: "./media/characters/tahajin/aquatic.svg",
  21269. extra: 572 / 542,
  21270. bottom: 0.04
  21271. }
  21272. },
  21273. chow: {
  21274. height: math.unit(8 + 11 / 12, "feet"),
  21275. weight: math.unit(450, "lb"),
  21276. name: "Chow",
  21277. image: {
  21278. source: "./media/characters/tahajin/chow.svg",
  21279. extra: 660 / 640,
  21280. bottom: 0.015
  21281. }
  21282. },
  21283. demiNaga: {
  21284. height: math.unit(6 + 8 / 12, "feet"),
  21285. weight: math.unit(300, "lb"),
  21286. name: "Demi Naga",
  21287. image: {
  21288. source: "./media/characters/tahajin/demi-naga.svg",
  21289. extra: 643 / 615,
  21290. bottom: 0.1
  21291. }
  21292. },
  21293. data: {
  21294. height: math.unit(5, "inches"),
  21295. weight: math.unit(0.1, "lb"),
  21296. name: "Data",
  21297. image: {
  21298. source: "./media/characters/tahajin/data.svg"
  21299. }
  21300. },
  21301. fluu: {
  21302. height: math.unit(5 + 7 / 12, "feet"),
  21303. weight: math.unit(140, "lb"),
  21304. name: "Fluu",
  21305. image: {
  21306. source: "./media/characters/tahajin/fluu.svg",
  21307. extra: 628 / 592,
  21308. bottom: 0.02
  21309. }
  21310. },
  21311. starWarrior: {
  21312. height: math.unit(4 + 5 / 12, "feet"),
  21313. weight: math.unit(50, "lb"),
  21314. name: "Star Warrior",
  21315. image: {
  21316. source: "./media/characters/tahajin/star-warrior.svg"
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(25 + 6 / 12, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(8, "feet"),
  21333. weight: math.unit(350, "lb"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/gabira/front.svg",
  21337. extra: 608 / 580,
  21338. bottom: 0.03
  21339. }
  21340. },
  21341. back: {
  21342. height: math.unit(8, "feet"),
  21343. weight: math.unit(350, "lb"),
  21344. name: "Back",
  21345. image: {
  21346. source: "./media/characters/gabira/back.svg",
  21347. extra: 608 / 580,
  21348. bottom: 0.03
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(8, "feet"),
  21356. default: true
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(5 + 3 / 12, "feet"),
  21365. weight: math.unit(137, "lb"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/sasha-katraine/front.svg",
  21369. bottom: 0.045
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Micro",
  21376. height: math.unit(5, "inches")
  21377. },
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(5 + 3 / 12, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21387. {
  21388. side: {
  21389. height: math.unit(4, "inches"),
  21390. weight: math.unit(200, "grams"),
  21391. name: "Side",
  21392. image: {
  21393. source: "./media/characters/der/side.svg",
  21394. extra: 719 / 400,
  21395. bottom: 30.6 / 749.9187
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Micro",
  21402. height: math.unit(4, "inches"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21409. {
  21410. side: {
  21411. height: math.unit(30, "meters"),
  21412. weight: math.unit(700, "tonnes"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/fixerdragon/side.svg",
  21416. extra: (1293.0514 - 116.03) / 1106.86,
  21417. bottom: 116.03 / 1293.0514
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Planck",
  21424. height: math.unit(1.6e-35, "meters")
  21425. },
  21426. {
  21427. name: "Micro",
  21428. height: math.unit(0.4, "meters")
  21429. },
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(30, "meters"),
  21433. default: true
  21434. },
  21435. {
  21436. name: "Megamacro",
  21437. height: math.unit(1.2, "megameters")
  21438. },
  21439. {
  21440. name: "Teramacro",
  21441. height: math.unit(130, "terameters")
  21442. },
  21443. {
  21444. name: "Yottamacro",
  21445. height: math.unit(6200, "yottameters")
  21446. },
  21447. ]
  21448. ));
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21451. {
  21452. front: {
  21453. height: math.unit(8, "feet"),
  21454. weight: math.unit(250, "lb"),
  21455. name: "Front",
  21456. image: {
  21457. source: "./media/characters/kite/front.svg",
  21458. extra: 2796 / 2659,
  21459. bottom: 0.002
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(8, "feet"),
  21467. default: true
  21468. },
  21469. {
  21470. name: "Macro",
  21471. height: math.unit(360, "feet")
  21472. },
  21473. {
  21474. name: "Megamacro",
  21475. height: math.unit(1500, "feet")
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(5 + 10 / 12, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/poojawa-vynar/front.svg",
  21488. extra: (1506.1547 - 55) / 1356.6,
  21489. bottom: 55 / 1506.1547
  21490. }
  21491. },
  21492. frontTailless: {
  21493. height: math.unit(5 + 10 / 12, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Front (Tailless)",
  21496. image: {
  21497. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21498. extra: (1506.1547 - 55) / 1356.6,
  21499. bottom: 55 / 1506.1547
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(5 + 10 / 12, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(293, "meters"),
  21516. weight: math.unit(70400, "tons"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/violette/front.svg",
  21520. extra: 1227 / 1180,
  21521. bottom: 0.005
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(293, "meters"),
  21526. weight: math.unit(70400, "tons"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/violette/back.svg",
  21530. extra: 1227 / 1180,
  21531. bottom: 0.005
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(293, "meters"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(1050, "feet"),
  21548. weight: math.unit(200000, "tons"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/alessandra/front.svg",
  21552. extra: 960 / 912,
  21553. bottom: 0.06
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(1050, "feet")
  21561. },
  21562. {
  21563. name: "Macro+",
  21564. height: math.unit(900, "meters"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5, "feet"),
  21574. weight: math.unit(187, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/person/front.svg",
  21578. extra: 3087 / 2945,
  21579. bottom: 91 / 3181
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Micro",
  21586. height: math.unit(3, "inches")
  21587. },
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5, "feet"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Macro",
  21595. height: math.unit(90, "feet")
  21596. },
  21597. {
  21598. name: "Max Size",
  21599. height: math.unit(280, "feet")
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(4.5, "meters"),
  21608. weight: math.unit(3200, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/ty/front.svg",
  21612. extra: 1038 / 960,
  21613. bottom: 31.156 / 1068
  21614. }
  21615. },
  21616. back: {
  21617. height: math.unit(4.5, "meters"),
  21618. weight: math.unit(3200, "lb"),
  21619. name: "Back",
  21620. image: {
  21621. source: "./media/characters/ty/back.svg",
  21622. extra: 1044 / 966,
  21623. bottom: 7.48 / 1049
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Normal",
  21630. height: math.unit(4.5, "meters"),
  21631. default: true
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(5 + 4 / 12, "feet"),
  21640. weight: math.unit(115, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/rocky/front.svg",
  21644. extra: 1012 / 975,
  21645. bottom: 54 / 1066
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(5 + 4 / 12, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21659. {
  21660. upright: {
  21661. height: math.unit(6, "meters"),
  21662. weight: math.unit(4000, "kg"),
  21663. name: "Upright",
  21664. image: {
  21665. source: "./media/characters/ruin/upright.svg",
  21666. extra: 668 / 661,
  21667. bottom: 42 / 799.8396
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(6, "meters"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(5, "feet"),
  21684. weight: math.unit(106, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/robin/front.svg",
  21688. extra: 862 / 799,
  21689. bottom: 42.4 / 914.8856
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(5, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21703. {
  21704. side: {
  21705. height: math.unit(3, "feet"),
  21706. weight: math.unit(225, "lb"),
  21707. name: "Side",
  21708. image: {
  21709. source: "./media/characters/saian/side.svg",
  21710. extra: 566 / 356,
  21711. bottom: 79.7 / 643
  21712. }
  21713. },
  21714. maw: {
  21715. height: math.unit(2.85, "feet"),
  21716. name: "Maw",
  21717. image: {
  21718. source: "./media/characters/saian/maw.svg"
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(3, "feet"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21732. {
  21733. side: {
  21734. height: math.unit(8, "feet"),
  21735. weight: math.unit(300, "lb"),
  21736. name: "Side",
  21737. image: {
  21738. source: "./media/characters/equus-silvermane/side.svg",
  21739. extra: 2176 / 2050,
  21740. bottom: 65.7 / 2245
  21741. }
  21742. },
  21743. front: {
  21744. height: math.unit(8, "feet"),
  21745. weight: math.unit(300, "lb"),
  21746. name: "Front",
  21747. image: {
  21748. source: "./media/characters/equus-silvermane/front.svg",
  21749. extra: 4633 / 4400,
  21750. bottom: 71.3 / 4706.915
  21751. }
  21752. },
  21753. sideStepping: {
  21754. height: math.unit(8, "feet"),
  21755. weight: math.unit(300, "lb"),
  21756. name: "Side (Stepping)",
  21757. image: {
  21758. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21759. extra: 1968 / 1860,
  21760. bottom: 16.4 / 1989
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(8, "feet")
  21768. },
  21769. {
  21770. name: "Minimacro",
  21771. height: math.unit(75, "feet"),
  21772. default: true
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(150, "feet")
  21777. },
  21778. {
  21779. name: "Macro+",
  21780. height: math.unit(1000, "feet")
  21781. },
  21782. {
  21783. name: "Megamacro",
  21784. height: math.unit(1, "mile")
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21790. {
  21791. side: {
  21792. height: math.unit(20, "feet"),
  21793. weight: math.unit(30000, "kg"),
  21794. name: "Side",
  21795. image: {
  21796. source: "./media/characters/windar/side.svg",
  21797. extra: 1491 / 1248,
  21798. bottom: 82.56 / 1568
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(20, "feet"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21812. {
  21813. side: {
  21814. height: math.unit(15.66, "feet"),
  21815. weight: math.unit(150, "lb"),
  21816. name: "Side",
  21817. image: {
  21818. source: "./media/characters/melody/side.svg",
  21819. extra: 1097 / 944,
  21820. bottom: 11.8 / 1109
  21821. }
  21822. },
  21823. sideOutfit: {
  21824. height: math.unit(15.66, "feet"),
  21825. weight: math.unit(150, "lb"),
  21826. name: "Side (Outfit)",
  21827. image: {
  21828. source: "./media/characters/melody/side-outfit.svg",
  21829. extra: 1097 / 944,
  21830. bottom: 11.8 / 1109
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(15.66, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(8, "feet"),
  21847. weight: math.unit(325, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/windera/front.svg",
  21851. extra: 3180 / 2845,
  21852. bottom: 178 / 3365
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(8, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21866. {
  21867. front: {
  21868. height: math.unit(28.75, "feet"),
  21869. weight: math.unit(2000, "kg"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/sonear/front.svg",
  21873. extra: 1041.1 / 964.9,
  21874. bottom: 53.7 / 1096.6
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(28.75, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21888. {
  21889. side: {
  21890. height: math.unit(25.5, "feet"),
  21891. weight: math.unit(23000, "kg"),
  21892. name: "Side",
  21893. image: {
  21894. source: "./media/characters/kanara/side.svg"
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(25.5, "feet"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21908. {
  21909. side: {
  21910. height: math.unit(10, "feet"),
  21911. weight: math.unit(1000, "kg"),
  21912. name: "Side",
  21913. image: {
  21914. source: "./media/characters/ereus/side.svg",
  21915. extra: 1157 / 959,
  21916. bottom: 153 / 1312.5
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(10, "feet"),
  21924. default: true
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21930. {
  21931. side: {
  21932. height: math.unit(4.5, "feet"),
  21933. weight: math.unit(500, "lb"),
  21934. name: "Side",
  21935. image: {
  21936. source: "./media/characters/e-ter/side.svg",
  21937. extra: 1550 / 1248,
  21938. bottom: 146 / 1694
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Normal",
  21945. height: math.unit(4.5, "feet"),
  21946. default: true
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21952. {
  21953. side: {
  21954. height: math.unit(9.7, "feet"),
  21955. weight: math.unit(4000, "kg"),
  21956. name: "Side",
  21957. image: {
  21958. source: "./media/characters/yamie/side.svg"
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(9.7, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(50, "feet"),
  21975. weight: math.unit(50000, "kg"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/anders/front.svg",
  21979. extra: 570 / 539,
  21980. bottom: 14.7 / 586.7
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Large",
  21987. height: math.unit(50, "feet")
  21988. },
  21989. {
  21990. name: "Macro",
  21991. height: math.unit(2000, "feet"),
  21992. default: true
  21993. },
  21994. {
  21995. name: "Megamacro",
  21996. height: math.unit(12, "miles")
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22002. {
  22003. front: {
  22004. height: math.unit(7 + 2 / 12, "feet"),
  22005. weight: math.unit(300, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/reban/front.svg",
  22009. extra: 516 / 487,
  22010. bottom: 42.82 / 558.356
  22011. }
  22012. },
  22013. dick: {
  22014. height: math.unit(7 / 5, "feet"),
  22015. name: "Dick",
  22016. image: {
  22017. source: "./media/characters/reban/dick.svg"
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Natural Height",
  22024. height: math.unit(7 + 2 / 12, "feet")
  22025. },
  22026. {
  22027. name: "Macro",
  22028. height: math.unit(500, "feet"),
  22029. default: true
  22030. },
  22031. {
  22032. name: "Canon Height",
  22033. height: math.unit(50, "AU")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(6, "feet"),
  22042. weight: math.unit(150, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/terrance-keayes/front.svg",
  22046. extra: 1.005,
  22047. bottom: 151 / 1615
  22048. }
  22049. },
  22050. side: {
  22051. height: math.unit(6, "feet"),
  22052. weight: math.unit(150, "lb"),
  22053. name: "Side",
  22054. image: {
  22055. source: "./media/characters/terrance-keayes/side.svg",
  22056. extra: 1.005,
  22057. bottom: 129.4 / 1544
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(6, "feet"),
  22062. weight: math.unit(150, "lb"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/terrance-keayes/back.svg",
  22066. extra: 1.005,
  22067. bottom: 58.4 / 1557.3
  22068. }
  22069. },
  22070. dick: {
  22071. height: math.unit(6 * 0.208, "feet"),
  22072. name: "Dick",
  22073. image: {
  22074. source: "./media/characters/terrance-keayes/dick.svg"
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Canon Height",
  22081. height: math.unit(35, "miles"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(6, "feet"),
  22091. weight: math.unit(150, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/ofelia/front.svg",
  22095. extra: 546 / 541,
  22096. bottom: 39 / 583
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(6, "feet"),
  22101. weight: math.unit(150, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/ofelia/back.svg",
  22105. extra: 564 / 559.5,
  22106. bottom: 8.69 / 573.02
  22107. }
  22108. },
  22109. maw: {
  22110. height: math.unit(1, "feet"),
  22111. name: "Maw",
  22112. image: {
  22113. source: "./media/characters/ofelia/maw.svg"
  22114. }
  22115. },
  22116. foot: {
  22117. height: math.unit(1.949, "feet"),
  22118. name: "Foot",
  22119. image: {
  22120. source: "./media/characters/ofelia/foot.svg"
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Canon Height",
  22127. height: math.unit(2000, "miles"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(6, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/samuel/front.svg",
  22141. extra: 265 / 258,
  22142. bottom: 2 / 266.1566
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(100, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Full Size",
  22154. height: math.unit(1000, "miles")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(300, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/beishir-kiel/front.svg",
  22167. extra: 569 / 547,
  22168. bottom: 41.9 / 609
  22169. }
  22170. },
  22171. maw: {
  22172. height: math.unit(6 * 0.202, "feet"),
  22173. name: "Maw",
  22174. image: {
  22175. source: "./media/characters/beishir-kiel/maw.svg"
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Macro",
  22182. height: math.unit(300, "feet"),
  22183. default: true
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(5 + 7/12, "feet"),
  22192. weight: math.unit(120, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/logan-grey/front.svg",
  22196. extra: 1836/1738,
  22197. bottom: 108/1944
  22198. }
  22199. },
  22200. back: {
  22201. height: math.unit(5 + 7/12, "feet"),
  22202. weight: math.unit(120, "lb"),
  22203. name: "Back",
  22204. image: {
  22205. source: "./media/characters/logan-grey/back.svg",
  22206. extra: 1880/1794,
  22207. bottom: 24/1904
  22208. }
  22209. },
  22210. frontSfw: {
  22211. height: math.unit(5 + 7/12, "feet"),
  22212. weight: math.unit(120, "lb"),
  22213. name: "Front (SFW)",
  22214. image: {
  22215. source: "./media/characters/logan-grey/front-sfw.svg",
  22216. extra: 1836/1738,
  22217. bottom: 108/1944
  22218. }
  22219. },
  22220. backSfw: {
  22221. height: math.unit(5 + 7/12, "feet"),
  22222. weight: math.unit(120, "lb"),
  22223. name: "Back (SFW)",
  22224. image: {
  22225. source: "./media/characters/logan-grey/back-sfw.svg",
  22226. extra: 1880/1794,
  22227. bottom: 24/1904
  22228. }
  22229. },
  22230. hands: {
  22231. height: math.unit(0.84, "feet"),
  22232. name: "Hands",
  22233. image: {
  22234. source: "./media/characters/logan-grey/hands.svg"
  22235. }
  22236. },
  22237. paws: {
  22238. height: math.unit(0.72, "feet"),
  22239. name: "Paws",
  22240. image: {
  22241. source: "./media/characters/logan-grey/paws.svg"
  22242. }
  22243. },
  22244. cock: {
  22245. height: math.unit(1.45, "feet"),
  22246. name: "Cock",
  22247. image: {
  22248. source: "./media/characters/logan-grey/cock.svg"
  22249. }
  22250. },
  22251. cockAlt: {
  22252. height: math.unit(1.437, "feet"),
  22253. name: "Cock (alt)",
  22254. image: {
  22255. source: "./media/characters/logan-grey/cock-alt.svg"
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 8 / 12, "feet")
  22263. },
  22264. {
  22265. name: "The 500 Foot Femboy",
  22266. height: math.unit(500, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Megmacro",
  22271. height: math.unit(20, "miles")
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(8 + 2 / 12, "feet"),
  22280. weight: math.unit(275, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/draganta/front.svg",
  22284. extra: 1177 / 1135,
  22285. bottom: 33.46 / 1212.1
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(8 + 6 / 12, "feet"),
  22293. default: true
  22294. },
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(150, "feet")
  22298. },
  22299. {
  22300. name: "Megamacro",
  22301. height: math.unit(1000, "miles")
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(1.72, "m"),
  22310. weight: math.unit(80, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/voski/front.svg",
  22314. extra: 2076.22 / 2022.4,
  22315. bottom: 102.7 / 2177.3866
  22316. }
  22317. },
  22318. frontNsfw: {
  22319. height: math.unit(1.72, "m"),
  22320. weight: math.unit(80, "lb"),
  22321. name: "Front (NSFW)",
  22322. image: {
  22323. source: "./media/characters/voski/front-nsfw.svg",
  22324. extra: 2076.22 / 2022.4,
  22325. bottom: 102.7 / 2177.3866
  22326. }
  22327. },
  22328. back: {
  22329. height: math.unit(1.72, "m"),
  22330. weight: math.unit(80, "lb"),
  22331. name: "Back",
  22332. image: {
  22333. source: "./media/characters/voski/back.svg",
  22334. extra: 2104 / 2051,
  22335. bottom: 10.45 / 2113.63
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(1.72, "m")
  22343. },
  22344. {
  22345. name: "Macro",
  22346. height: math.unit(55, "m"),
  22347. default: true
  22348. },
  22349. {
  22350. name: "Macro+",
  22351. height: math.unit(300, "m")
  22352. },
  22353. {
  22354. name: "Macro++",
  22355. height: math.unit(700, "m")
  22356. },
  22357. {
  22358. name: "Macro+++",
  22359. height: math.unit(4500, "m")
  22360. },
  22361. {
  22362. name: "Macro++++",
  22363. height: math.unit(45, "km")
  22364. },
  22365. {
  22366. name: "Macro+++++",
  22367. height: math.unit(1220, "km")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(2.3, "m"),
  22376. weight: math.unit(304, "kg"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/icowom-lee/front.svg",
  22380. extra: 985 / 955,
  22381. bottom: 25.4 / 1012
  22382. }
  22383. },
  22384. fronttentacles: {
  22385. height: math.unit(2.3, "m"),
  22386. weight: math.unit(304, "kg"),
  22387. name: "Front-tentacles",
  22388. image: {
  22389. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22390. extra: 985 / 955,
  22391. bottom: 25.4 / 1012
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(2.3, "m"),
  22396. weight: math.unit(304, "kg"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/icowom-lee/back.svg",
  22400. extra: 975 / 954,
  22401. bottom: 9.5 / 985
  22402. }
  22403. },
  22404. backtentacles: {
  22405. height: math.unit(2.3, "m"),
  22406. weight: math.unit(304, "kg"),
  22407. name: "Back-tentacles",
  22408. image: {
  22409. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22410. extra: 975 / 954,
  22411. bottom: 9.5 / 985
  22412. }
  22413. },
  22414. frontDressed: {
  22415. height: math.unit(2.3, "m"),
  22416. weight: math.unit(304, "kg"),
  22417. name: "Front (Dressed)",
  22418. image: {
  22419. source: "./media/characters/icowom-lee/front-dressed.svg",
  22420. extra: 3076 / 2933,
  22421. bottom: 51.4 / 3125.1889
  22422. }
  22423. },
  22424. rump: {
  22425. height: math.unit(0.776, "meters"),
  22426. name: "Rump",
  22427. image: {
  22428. source: "./media/characters/icowom-lee/rump.svg"
  22429. }
  22430. },
  22431. genitals: {
  22432. height: math.unit(0.78, "meters"),
  22433. name: "Genitals",
  22434. image: {
  22435. source: "./media/characters/icowom-lee/genitals.svg"
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(2.3, "meters"),
  22443. default: true
  22444. },
  22445. {
  22446. name: "Macro",
  22447. height: math.unit(94, "meters"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(22, "meters"),
  22457. weight: math.unit(21000, "kg"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/shock-diamond/front.svg",
  22461. extra: 2204 / 2053,
  22462. bottom: 65 / 2239.47
  22463. }
  22464. },
  22465. frontNude: {
  22466. height: math.unit(22, "meters"),
  22467. weight: math.unit(21000, "kg"),
  22468. name: "Front (Nude)",
  22469. image: {
  22470. source: "./media/characters/shock-diamond/front-nude.svg",
  22471. extra: 2514 / 2285,
  22472. bottom: 13 / 2527.56
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(3, "meters")
  22480. },
  22481. {
  22482. name: "Macro",
  22483. height: math.unit(22, "meters"),
  22484. default: true
  22485. },
  22486. ]
  22487. ))
  22488. characterMakers.push(() => makeCharacter(
  22489. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22490. {
  22491. front: {
  22492. height: math.unit(5 + 4 / 12, "feet"),
  22493. weight: math.unit(120, "lb"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/rory/front.svg",
  22497. extra: 1318/1241,
  22498. bottom: 42/1360
  22499. }
  22500. },
  22501. back: {
  22502. height: math.unit(5 + 4 / 12, "feet"),
  22503. weight: math.unit(120, "lb"),
  22504. name: "Back",
  22505. image: {
  22506. source: "./media/characters/rory/back.svg",
  22507. extra: 1318/1241,
  22508. bottom: 42/1360
  22509. }
  22510. },
  22511. butt: {
  22512. height: math.unit(1.74, "feet"),
  22513. name: "Butt",
  22514. image: {
  22515. source: "./media/characters/rory/butt.svg"
  22516. }
  22517. },
  22518. dick: {
  22519. height: math.unit(1.02, "feet"),
  22520. name: "Dick",
  22521. image: {
  22522. source: "./media/characters/rory/dick.svg"
  22523. }
  22524. },
  22525. paws: {
  22526. height: math.unit(1, "feet"),
  22527. name: "Paws",
  22528. image: {
  22529. source: "./media/characters/rory/paws.svg"
  22530. }
  22531. },
  22532. frontAlt: {
  22533. height: math.unit(5 + 4 / 12, "feet"),
  22534. weight: math.unit(120, "lb"),
  22535. name: "Front (Alt)",
  22536. image: {
  22537. source: "./media/characters/rory/front-alt.svg",
  22538. extra: 589 / 556,
  22539. bottom: 45.7 / 635.76
  22540. }
  22541. },
  22542. frontAltNude: {
  22543. height: math.unit(5 + 4 / 12, "feet"),
  22544. weight: math.unit(120, "lb"),
  22545. name: "Front (Alt, Nude)",
  22546. image: {
  22547. source: "./media/characters/rory/front-alt-nude.svg",
  22548. extra: 589 / 556,
  22549. bottom: 45.7 / 635.76
  22550. }
  22551. },
  22552. side: {
  22553. height: math.unit(5 + 4 / 12, "feet"),
  22554. weight: math.unit(120, "lb"),
  22555. name: "Side",
  22556. image: {
  22557. source: "./media/characters/rory/side.svg",
  22558. extra: 597 / 564,
  22559. bottom: 55 / 653
  22560. }
  22561. },
  22562. backAlt: {
  22563. height: math.unit(5 + 4 / 12, "feet"),
  22564. weight: math.unit(120, "lb"),
  22565. name: "Back (Alt)",
  22566. image: {
  22567. source: "./media/characters/rory/back-alt.svg",
  22568. extra: 620 / 585,
  22569. bottom: 8.86 / 630.43
  22570. }
  22571. },
  22572. dickAlt: {
  22573. height: math.unit(0.86, "feet"),
  22574. name: "Dick (Alt)",
  22575. image: {
  22576. source: "./media/characters/rory/dick-alt.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(5 + 4 / 12, "feet"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(100, "feet")
  22589. },
  22590. {
  22591. name: "Macro+",
  22592. height: math.unit(140, "feet")
  22593. },
  22594. {
  22595. name: "Macro++",
  22596. height: math.unit(300, "feet")
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22602. {
  22603. front: {
  22604. height: math.unit(5 + 9 / 12, "feet"),
  22605. weight: math.unit(190, "lb"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/sprisk/front.svg",
  22609. extra: 1225 / 1180,
  22610. bottom: 42.7 / 1266.4
  22611. }
  22612. },
  22613. frontNsfw: {
  22614. height: math.unit(5 + 9 / 12, "feet"),
  22615. weight: math.unit(190, "lb"),
  22616. name: "Front (NSFW)",
  22617. image: {
  22618. source: "./media/characters/sprisk/front-nsfw.svg",
  22619. extra: 1225 / 1180,
  22620. bottom: 42.7 / 1266.4
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(5 + 9 / 12, "feet"),
  22625. weight: math.unit(190, "lb"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/sprisk/back.svg",
  22629. extra: 1247 / 1200,
  22630. bottom: 5.6 / 1253.04
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Tiny",
  22637. height: math.unit(2, "inches")
  22638. },
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(5 + 9 / 12, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Mini Macro",
  22646. height: math.unit(18, "feet")
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(100, "feet")
  22651. },
  22652. {
  22653. name: "MACRO",
  22654. height: math.unit(50, "miles")
  22655. },
  22656. {
  22657. name: "M A C R O",
  22658. height: math.unit(300, "miles")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22664. {
  22665. side: {
  22666. height: math.unit(15.6, "meters"),
  22667. weight: math.unit(700000, "kg"),
  22668. name: "Side",
  22669. image: {
  22670. source: "./media/characters/bunsen/side.svg",
  22671. extra: 1644 / 358
  22672. }
  22673. },
  22674. foot: {
  22675. height: math.unit(1.611 * 1644 / 358, "meter"),
  22676. name: "Foot",
  22677. image: {
  22678. source: "./media/characters/bunsen/foot.svg"
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Small",
  22685. height: math.unit(10, "feet")
  22686. },
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(15.6, "meters"),
  22690. default: true
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(4 + 11 / 12, "feet"),
  22699. weight: math.unit(140, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/sesh/front.svg",
  22703. extra: 3420 / 3231,
  22704. bottom: 72 / 3949.5
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(4 + 11 / 12, "feet")
  22712. },
  22713. {
  22714. name: "Grown",
  22715. height: math.unit(15, "feet"),
  22716. default: true
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(1500, "feet")
  22721. },
  22722. {
  22723. name: "Megamacro",
  22724. height: math.unit(30, "miles")
  22725. },
  22726. {
  22727. name: "Continental",
  22728. height: math.unit(3000, "miles")
  22729. },
  22730. {
  22731. name: "Gravity Mass",
  22732. height: math.unit(300000, "miles")
  22733. },
  22734. {
  22735. name: "Planet Buster",
  22736. height: math.unit(30000000, "miles")
  22737. },
  22738. {
  22739. name: "Big",
  22740. height: math.unit(3000000000, "miles")
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(9, "feet"),
  22749. weight: math.unit(350, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/pepper/front.svg",
  22753. extra: 1448 / 1312,
  22754. bottom: 9.4 / 1457.88
  22755. }
  22756. },
  22757. back: {
  22758. height: math.unit(9, "feet"),
  22759. weight: math.unit(350, "lb"),
  22760. name: "Back",
  22761. image: {
  22762. source: "./media/characters/pepper/back.svg",
  22763. extra: 1423 / 1300,
  22764. bottom: 4.6 / 1429
  22765. }
  22766. },
  22767. maw: {
  22768. height: math.unit(0.932, "feet"),
  22769. name: "Maw",
  22770. image: {
  22771. source: "./media/characters/pepper/maw.svg"
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(9, "feet"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(6, "feet"),
  22788. weight: math.unit(150, "lb"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/maelstrom/front.svg",
  22792. extra: 2100 / 1883,
  22793. bottom: 94 / 2196.7
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Less Kaiju",
  22800. height: math.unit(200, "feet")
  22801. },
  22802. {
  22803. name: "Kaiju",
  22804. height: math.unit(400, "feet"),
  22805. default: true
  22806. },
  22807. {
  22808. name: "Kaiju-er",
  22809. height: math.unit(600, "feet")
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(6 + 5 / 12, "feet"),
  22818. weight: math.unit(180, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/lexir/front.svg",
  22822. extra: 180 / 172,
  22823. bottom: 12 / 192
  22824. }
  22825. },
  22826. back: {
  22827. height: math.unit(6 + 5 / 12, "feet"),
  22828. weight: math.unit(180, "lb"),
  22829. name: "Back",
  22830. image: {
  22831. source: "./media/characters/lexir/back.svg",
  22832. extra: 183.84 / 175.5,
  22833. bottom: 3.1 / 187
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Very Smal",
  22840. height: math.unit(1, "nm")
  22841. },
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(6 + 5 / 12, "feet"),
  22845. default: true
  22846. },
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(1, "mile")
  22850. },
  22851. {
  22852. name: "Megamacro",
  22853. height: math.unit(50, "miles")
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(1.5, "meters"),
  22862. weight: math.unit(100, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/maksio/front.svg",
  22866. extra: 1549 / 1531,
  22867. bottom: 123.7 / 1674.5429
  22868. }
  22869. },
  22870. back: {
  22871. height: math.unit(1.5, "meters"),
  22872. weight: math.unit(100, "lb"),
  22873. name: "Back",
  22874. image: {
  22875. source: "./media/characters/maksio/back.svg",
  22876. extra: 1541 / 1509,
  22877. bottom: 97 / 1639
  22878. }
  22879. },
  22880. hand: {
  22881. height: math.unit(0.621, "feet"),
  22882. name: "Hand",
  22883. image: {
  22884. source: "./media/characters/maksio/hand.svg"
  22885. }
  22886. },
  22887. foot: {
  22888. height: math.unit(1.611, "feet"),
  22889. name: "Foot",
  22890. image: {
  22891. source: "./media/characters/maksio/foot.svg"
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Shrunken",
  22898. height: math.unit(10, "cm")
  22899. },
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(150, "cm"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(100, "feet"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/erza-bear/front.svg",
  22915. extra: 2449 / 2390,
  22916. bottom: 46 / 2494
  22917. }
  22918. },
  22919. back: {
  22920. height: math.unit(100, "feet"),
  22921. name: "Back",
  22922. image: {
  22923. source: "./media/characters/erza-bear/back.svg",
  22924. extra: 2489 / 2430,
  22925. bottom: 85.4 / 2480
  22926. }
  22927. },
  22928. tail: {
  22929. height: math.unit(42, "feet"),
  22930. name: "Tail",
  22931. image: {
  22932. source: "./media/characters/erza-bear/tail.svg"
  22933. }
  22934. },
  22935. tongue: {
  22936. height: math.unit(8, "feet"),
  22937. name: "Tongue",
  22938. image: {
  22939. source: "./media/characters/erza-bear/tongue.svg"
  22940. }
  22941. },
  22942. dick: {
  22943. height: math.unit(10.5, "feet"),
  22944. name: "Dick",
  22945. image: {
  22946. source: "./media/characters/erza-bear/dick.svg"
  22947. }
  22948. },
  22949. dickVertical: {
  22950. height: math.unit(16.9, "feet"),
  22951. name: "Dick (Vertical)",
  22952. image: {
  22953. source: "./media/characters/erza-bear/dick-vertical.svg"
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Macro",
  22960. height: math.unit(100, "feet"),
  22961. default: true
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22967. {
  22968. front: {
  22969. height: math.unit(172, "cm"),
  22970. weight: math.unit(73, "kg"),
  22971. name: "Front",
  22972. image: {
  22973. source: "./media/characters/violet-flor/front.svg",
  22974. extra: 1530 / 1442,
  22975. bottom: 61.9 / 1588.8
  22976. }
  22977. },
  22978. back: {
  22979. height: math.unit(180, "cm"),
  22980. weight: math.unit(73, "kg"),
  22981. name: "Back",
  22982. image: {
  22983. source: "./media/characters/violet-flor/back.svg",
  22984. extra: 1692 / 1630,
  22985. bottom: 20 / 1712
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(172, "cm"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(6, "feet"),
  23002. weight: math.unit(220, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/lynn-rhea/front.svg",
  23006. extra: 310 / 273
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(6, "feet"),
  23011. weight: math.unit(220, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/lynn-rhea/back.svg",
  23015. extra: 310 / 273
  23016. }
  23017. },
  23018. dicks: {
  23019. height: math.unit(0.9, "feet"),
  23020. name: "Dicks",
  23021. image: {
  23022. source: "./media/characters/lynn-rhea/dicks.svg"
  23023. }
  23024. },
  23025. slit: {
  23026. height: math.unit(0.4, "feet"),
  23027. name: "Slit",
  23028. image: {
  23029. source: "./media/characters/lynn-rhea/slit.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Micro",
  23036. height: math.unit(1, "inch")
  23037. },
  23038. {
  23039. name: "Macro",
  23040. height: math.unit(60, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Megamacro",
  23045. height: math.unit(2, "miles")
  23046. },
  23047. {
  23048. name: "Gigamacro",
  23049. height: math.unit(3, "earths")
  23050. },
  23051. {
  23052. name: "Galactic",
  23053. height: math.unit(0.8, "galaxies")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23059. {
  23060. front: {
  23061. height: math.unit(1600, "feet"),
  23062. weight: math.unit(85758785169, "kg"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/valathos/front.svg",
  23066. extra: 1451 / 1339
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Macro",
  23073. height: math.unit(1600, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(7 + 5 / 12, "feet"),
  23083. weight: math.unit(300, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/azula/front.svg",
  23087. extra: 3208 / 2880,
  23088. bottom: 80.2 / 3277
  23089. }
  23090. },
  23091. back: {
  23092. height: math.unit(7 + 5 / 12, "feet"),
  23093. weight: math.unit(300, "lb"),
  23094. name: "Back",
  23095. image: {
  23096. source: "./media/characters/azula/back.svg",
  23097. extra: 3169 / 2822,
  23098. bottom: 150.6 / 3321
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(7 + 5 / 12, "feet"),
  23106. default: true
  23107. },
  23108. {
  23109. name: "Big",
  23110. height: math.unit(20, "feet")
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(5 + 1 / 12, "feet"),
  23119. weight: math.unit(110, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/rupert/front.svg",
  23123. extra: 1549 / 1495,
  23124. bottom: 54.2 / 1604.4
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(5 + 1 / 12, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23138. {
  23139. front: {
  23140. height: math.unit(8 + 4 / 12, "feet"),
  23141. weight: math.unit(350, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/sheera-castellar/front.svg",
  23145. extra: 1957 / 1894,
  23146. bottom: 26.97 / 1975.017
  23147. }
  23148. },
  23149. side: {
  23150. height: math.unit(8 + 4 / 12, "feet"),
  23151. weight: math.unit(350, "lb"),
  23152. name: "Side",
  23153. image: {
  23154. source: "./media/characters/sheera-castellar/side.svg",
  23155. extra: 1957 / 1894
  23156. }
  23157. },
  23158. back: {
  23159. height: math.unit(8 + 4 / 12, "feet"),
  23160. weight: math.unit(350, "lb"),
  23161. name: "Back",
  23162. image: {
  23163. source: "./media/characters/sheera-castellar/back.svg",
  23164. extra: 1957 / 1894
  23165. }
  23166. },
  23167. angled: {
  23168. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23169. weight: math.unit(350, "lb"),
  23170. name: "Angled",
  23171. image: {
  23172. source: "./media/characters/sheera-castellar/angled.svg",
  23173. extra: 1807 / 1707,
  23174. bottom: 68 / 1875
  23175. }
  23176. },
  23177. genitals: {
  23178. height: math.unit(2.2, "feet"),
  23179. name: "Genitals",
  23180. image: {
  23181. source: "./media/characters/sheera-castellar/genitals.svg"
  23182. }
  23183. },
  23184. taur: {
  23185. height: math.unit(10 + 6/12, "feet"),
  23186. name: "Taur",
  23187. image: {
  23188. source: "./media/characters/sheera-castellar/taur.svg",
  23189. extra: 2017/1909,
  23190. bottom: 185/2202
  23191. }
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(8 + 4 / 12, "feet")
  23198. },
  23199. {
  23200. name: "Macro",
  23201. height: math.unit(150, "feet"),
  23202. default: true
  23203. },
  23204. {
  23205. name: "Macro+",
  23206. height: math.unit(800, "feet")
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23212. {
  23213. front: {
  23214. height: math.unit(6, "feet"),
  23215. weight: math.unit(150, "lb"),
  23216. name: "Front",
  23217. image: {
  23218. source: "./media/characters/jaipur/front.svg",
  23219. extra: 3860 / 3731,
  23220. bottom: 287 / 4140
  23221. }
  23222. },
  23223. back: {
  23224. height: math.unit(6, "feet"),
  23225. weight: math.unit(150, "lb"),
  23226. name: "Back",
  23227. image: {
  23228. source: "./media/characters/jaipur/back.svg",
  23229. extra: 4060 / 3930,
  23230. bottom: 151 / 4200
  23231. }
  23232. },
  23233. },
  23234. [
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(1.85, "meters"),
  23238. default: true
  23239. },
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(150, "meters")
  23243. },
  23244. {
  23245. name: "Macro+",
  23246. height: math.unit(0.5, "miles")
  23247. },
  23248. {
  23249. name: "Macro++",
  23250. height: math.unit(2.5, "miles")
  23251. },
  23252. {
  23253. name: "Macro+++",
  23254. height: math.unit(12, "miles")
  23255. },
  23256. {
  23257. name: "Macro++++",
  23258. height: math.unit(120, "miles")
  23259. },
  23260. {
  23261. name: "Macro+++++",
  23262. height: math.unit(1200, "miles")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(6, "feet"),
  23271. weight: math.unit(150, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/sheila-wolf/front.svg",
  23275. extra: 1931 / 1808,
  23276. bottom: 29.5 / 1960
  23277. }
  23278. },
  23279. dick: {
  23280. height: math.unit(1.464, "feet"),
  23281. name: "Dick",
  23282. image: {
  23283. source: "./media/characters/sheila-wolf/dick.svg"
  23284. }
  23285. },
  23286. muzzle: {
  23287. height: math.unit(0.513, "feet"),
  23288. name: "Muzzle",
  23289. image: {
  23290. source: "./media/characters/sheila-wolf/muzzle.svg"
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Macro",
  23297. height: math.unit(70, "feet"),
  23298. default: true
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23304. {
  23305. front: {
  23306. height: math.unit(32, "meters"),
  23307. weight: math.unit(300000, "kg"),
  23308. name: "Front",
  23309. image: {
  23310. source: "./media/characters/almor/front.svg",
  23311. extra: 1408 / 1322,
  23312. bottom: 94.6 / 1506.5
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(32, "meters"),
  23320. default: true
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(7, "feet"),
  23329. weight: math.unit(200, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/silver/front.svg",
  23333. extra: 472.1 / 450.5,
  23334. bottom: 26.5 / 499.424
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(7, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(800, "feet")
  23347. },
  23348. {
  23349. name: "Megamacro",
  23350. height: math.unit(250, "miles")
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(6, "feet"),
  23359. weight: math.unit(150, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/pliskin/front.svg",
  23363. extra: 1469 / 1359,
  23364. bottom: 70 / 1540
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Micro",
  23371. height: math.unit(3, "inches")
  23372. },
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(5 + 11 / 12, "feet"),
  23376. default: true
  23377. },
  23378. {
  23379. name: "Macro",
  23380. height: math.unit(120, "feet")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(6, "feet"),
  23389. weight: math.unit(150, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/sammy/front.svg",
  23393. extra: 1193 / 1089,
  23394. bottom: 30.5 / 1226
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Macro",
  23401. height: math.unit(1700, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Examacro",
  23406. height: math.unit(2.5e9, "lightyears")
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23412. {
  23413. front: {
  23414. height: math.unit(21, "meters"),
  23415. weight: math.unit(12, "tonnes"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/kuru/front.svg",
  23419. extra: 4301 / 3785,
  23420. bottom: 371.3 / 4691
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Macro",
  23427. height: math.unit(21, "meters"),
  23428. default: true
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23434. {
  23435. front: {
  23436. height: math.unit(23, "meters"),
  23437. weight: math.unit(12.2, "tonnes"),
  23438. name: "Front",
  23439. image: {
  23440. source: "./media/characters/rakka/front.svg",
  23441. extra: 4670 / 4169,
  23442. bottom: 301 / 4968.7
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(23, "meters"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(6, "feet"),
  23459. weight: math.unit(150, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/rhys-feline/front.svg",
  23463. extra: 2488 / 2308,
  23464. bottom: 35.67 / 2519.19
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Really Small",
  23471. height: math.unit(1, "nm")
  23472. },
  23473. {
  23474. name: "Micro",
  23475. height: math.unit(4, "inches")
  23476. },
  23477. {
  23478. name: "Normal",
  23479. height: math.unit(4 + 10 / 12, "feet"),
  23480. default: true
  23481. },
  23482. {
  23483. name: "Macro",
  23484. height: math.unit(100, "feet")
  23485. },
  23486. {
  23487. name: "Megamacto",
  23488. height: math.unit(50, "miles")
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23494. {
  23495. side: {
  23496. height: math.unit(30, "feet"),
  23497. weight: math.unit(35000, "kg"),
  23498. name: "Side",
  23499. image: {
  23500. source: "./media/characters/alydar/side.svg",
  23501. extra: 234 / 222,
  23502. bottom: 6.5 / 241
  23503. }
  23504. },
  23505. front: {
  23506. height: math.unit(30, "feet"),
  23507. weight: math.unit(35000, "kg"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/alydar/front.svg",
  23511. extra: 223.37 / 210.2,
  23512. bottom: 22.3 / 246.76
  23513. }
  23514. },
  23515. top: {
  23516. height: math.unit(64.54, "feet"),
  23517. weight: math.unit(35000, "kg"),
  23518. name: "Top",
  23519. image: {
  23520. source: "./media/characters/alydar/top.svg"
  23521. }
  23522. },
  23523. anthro: {
  23524. height: math.unit(30, "feet"),
  23525. weight: math.unit(9000, "kg"),
  23526. name: "Anthro",
  23527. image: {
  23528. source: "./media/characters/alydar/anthro.svg",
  23529. extra: 432 / 421,
  23530. bottom: 7.18 / 440
  23531. }
  23532. },
  23533. maw: {
  23534. height: math.unit(11.693, "feet"),
  23535. name: "Maw",
  23536. image: {
  23537. source: "./media/characters/alydar/maw.svg"
  23538. }
  23539. },
  23540. head: {
  23541. height: math.unit(11.693, "feet"),
  23542. name: "Head",
  23543. image: {
  23544. source: "./media/characters/alydar/head.svg"
  23545. }
  23546. },
  23547. headAlt: {
  23548. height: math.unit(12.861, "feet"),
  23549. name: "Head (Alt)",
  23550. image: {
  23551. source: "./media/characters/alydar/head-alt.svg"
  23552. }
  23553. },
  23554. wing: {
  23555. height: math.unit(20.712, "feet"),
  23556. name: "Wing",
  23557. image: {
  23558. source: "./media/characters/alydar/wing.svg"
  23559. }
  23560. },
  23561. wingFeather: {
  23562. height: math.unit(9.662, "feet"),
  23563. name: "Wing Feather",
  23564. image: {
  23565. source: "./media/characters/alydar/wing-feather.svg"
  23566. }
  23567. },
  23568. countourFeather: {
  23569. height: math.unit(4.154, "feet"),
  23570. name: "Contour Feather",
  23571. image: {
  23572. source: "./media/characters/alydar/contour-feather.svg"
  23573. }
  23574. },
  23575. },
  23576. [
  23577. {
  23578. name: "Diplomatic",
  23579. height: math.unit(13, "feet"),
  23580. default: true
  23581. },
  23582. {
  23583. name: "Small",
  23584. height: math.unit(30, "feet")
  23585. },
  23586. {
  23587. name: "Normal",
  23588. height: math.unit(95, "feet"),
  23589. default: true
  23590. },
  23591. {
  23592. name: "Large",
  23593. height: math.unit(285, "feet")
  23594. },
  23595. {
  23596. name: "Incomprehensible",
  23597. height: math.unit(450, "megameters")
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23603. {
  23604. side: {
  23605. height: math.unit(11, "feet"),
  23606. weight: math.unit(1750, "kg"),
  23607. name: "Side",
  23608. image: {
  23609. source: "./media/characters/selicia/side.svg",
  23610. extra: 440 / 396,
  23611. bottom: 24.8 / 465.979
  23612. }
  23613. },
  23614. maw: {
  23615. height: math.unit(4.665, "feet"),
  23616. name: "Maw",
  23617. image: {
  23618. source: "./media/characters/selicia/maw.svg"
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(11, "feet"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23632. {
  23633. side: {
  23634. height: math.unit(2 + 6 / 12, "feet"),
  23635. weight: math.unit(30, "lb"),
  23636. name: "Side",
  23637. image: {
  23638. source: "./media/characters/layla/side.svg",
  23639. extra: 244 / 188,
  23640. bottom: 18.2 / 262.1
  23641. }
  23642. },
  23643. back: {
  23644. height: math.unit(2 + 6 / 12, "feet"),
  23645. weight: math.unit(30, "lb"),
  23646. name: "Back",
  23647. image: {
  23648. source: "./media/characters/layla/back.svg",
  23649. extra: 308 / 241.5,
  23650. bottom: 8.9 / 316.8
  23651. }
  23652. },
  23653. cumming: {
  23654. height: math.unit(2 + 6 / 12, "feet"),
  23655. weight: math.unit(30, "lb"),
  23656. name: "Cumming",
  23657. image: {
  23658. source: "./media/characters/layla/cumming.svg",
  23659. extra: 342 / 279,
  23660. bottom: 595 / 938
  23661. }
  23662. },
  23663. dickFlaccid: {
  23664. height: math.unit(2.595, "feet"),
  23665. name: "Flaccid Genitals",
  23666. image: {
  23667. source: "./media/characters/layla/dick-flaccid.svg"
  23668. }
  23669. },
  23670. dickErect: {
  23671. height: math.unit(2.359, "feet"),
  23672. name: "Erect Genitals",
  23673. image: {
  23674. source: "./media/characters/layla/dick-erect.svg"
  23675. }
  23676. },
  23677. dragon: {
  23678. height: math.unit(40, "feet"),
  23679. name: "Dragon",
  23680. image: {
  23681. source: "./media/characters/layla/dragon.svg",
  23682. extra: 610/535,
  23683. bottom: 367/977
  23684. }
  23685. },
  23686. taur: {
  23687. height: math.unit(30, "feet"),
  23688. name: "Taur",
  23689. image: {
  23690. source: "./media/characters/layla/taur.svg",
  23691. extra: 1268/1199,
  23692. bottom: 112/1380
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Micro",
  23699. height: math.unit(1, "inch")
  23700. },
  23701. {
  23702. name: "Small",
  23703. height: math.unit(1, "foot")
  23704. },
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(2 + 6 / 12, "feet"),
  23708. default: true
  23709. },
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(200, "feet")
  23713. },
  23714. {
  23715. name: "Megamacro",
  23716. height: math.unit(1000, "miles")
  23717. },
  23718. {
  23719. name: "Planetary",
  23720. height: math.unit(8000, "miles")
  23721. },
  23722. {
  23723. name: "True Layla",
  23724. height: math.unit(200000 * 7, "multiverses")
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23730. {
  23731. back: {
  23732. height: math.unit(10.5, "feet"),
  23733. weight: math.unit(800, "lb"),
  23734. name: "Back",
  23735. image: {
  23736. source: "./media/characters/knox/back.svg",
  23737. extra: 1486 / 1089,
  23738. bottom: 107 / 1601.4
  23739. }
  23740. },
  23741. side: {
  23742. height: math.unit(10.5, "feet"),
  23743. weight: math.unit(800, "lb"),
  23744. name: "Side",
  23745. image: {
  23746. source: "./media/characters/knox/side.svg",
  23747. extra: 244 / 218,
  23748. bottom: 14 / 260
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Compact",
  23755. height: math.unit(10.5, "feet"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Dynamax",
  23760. height: math.unit(210, "feet")
  23761. },
  23762. {
  23763. name: "Full Macro",
  23764. height: math.unit(850, "feet")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(28, "feet"),
  23773. weight: math.unit(10500, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/kayda/front.svg",
  23777. extra: 1536 / 1428,
  23778. bottom: 68.7 / 1603
  23779. }
  23780. },
  23781. back: {
  23782. height: math.unit(28, "feet"),
  23783. weight: math.unit(10500, "lb"),
  23784. name: "Back",
  23785. image: {
  23786. source: "./media/characters/kayda/back.svg",
  23787. extra: 1557 / 1464,
  23788. bottom: 39.5 / 1597.49
  23789. }
  23790. },
  23791. dick: {
  23792. height: math.unit(3.858, "feet"),
  23793. name: "Dick",
  23794. image: {
  23795. source: "./media/characters/kayda/dick.svg"
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(28, "feet"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(10 + 11 / 12, "feet"),
  23812. weight: math.unit(1400, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/brian/front.svg",
  23816. extra: 737 / 692,
  23817. bottom: 55.4 / 785
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(10 + 11 / 12, "feet"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(5 + 8 / 12, "feet"),
  23834. weight: math.unit(140, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/khemri/front.svg",
  23838. extra: 4780 / 4059,
  23839. bottom: 80.1 / 4859.25
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Micro",
  23846. height: math.unit(6, "inches")
  23847. },
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(5 + 8 / 12, "feet"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23857. {
  23858. front: {
  23859. height: math.unit(13, "feet"),
  23860. weight: math.unit(1700, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/felix-braveheart/front.svg",
  23864. extra: 1222 / 1157,
  23865. bottom: 53.2 / 1280
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(13, "feet"),
  23870. weight: math.unit(1700, "lb"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/felix-braveheart/back.svg",
  23874. extra: 1277 / 1203,
  23875. bottom: 50.2 / 1327
  23876. }
  23877. },
  23878. feral: {
  23879. height: math.unit(6, "feet"),
  23880. weight: math.unit(400, "lb"),
  23881. name: "Feral",
  23882. image: {
  23883. source: "./media/characters/felix-braveheart/feral.svg",
  23884. extra: 682 / 625,
  23885. bottom: 6.9 / 688
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Normal",
  23892. height: math.unit(13, "feet"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23899. {
  23900. side: {
  23901. height: math.unit(5 + 11 / 12, "feet"),
  23902. weight: math.unit(1400, "lb"),
  23903. name: "Side",
  23904. image: {
  23905. source: "./media/characters/shadow-blade/side.svg",
  23906. extra: 1726 / 1267,
  23907. bottom: 58.4 / 1785
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(5 + 11 / 12, "feet"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(1 + 6 / 12, "feet"),
  23924. weight: math.unit(25, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/karla-halldor/front.svg",
  23928. extra: 1459 / 1383,
  23929. bottom: 12 / 1472
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Normal",
  23936. height: math.unit(1 + 6 / 12, "feet"),
  23937. default: true
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23943. {
  23944. front: {
  23945. height: math.unit(6 + 2 / 12, "feet"),
  23946. weight: math.unit(160, "lb"),
  23947. name: "Front",
  23948. image: {
  23949. source: "./media/characters/ariam/front.svg",
  23950. extra: 714 / 617,
  23951. bottom: 23.4 / 737,
  23952. }
  23953. },
  23954. squatting: {
  23955. height: math.unit(4.1, "feet"),
  23956. weight: math.unit(160, "lb"),
  23957. name: "Squatting",
  23958. image: {
  23959. source: "./media/characters/ariam/squatting.svg",
  23960. extra: 2617 / 2112,
  23961. bottom: 61.2 / 2681,
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(6 + 2 / 12, "feet"),
  23969. default: true
  23970. },
  23971. {
  23972. name: "Normal+",
  23973. height: math.unit(4, "meters")
  23974. },
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(50, "meters")
  23978. },
  23979. {
  23980. name: "Macro+",
  23981. height: math.unit(100, "meters")
  23982. },
  23983. {
  23984. name: "Megamacro",
  23985. height: math.unit(20, "km")
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(1.67, "meters"),
  23994. weight: math.unit(140, "lb"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23998. extra: 438 / 410,
  23999. bottom: 0.75 / 439
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Shrunken",
  24006. height: math.unit(7.6, "cm")
  24007. },
  24008. {
  24009. name: "Human Scale",
  24010. height: math.unit(1.67, "meters")
  24011. },
  24012. {
  24013. name: "Wolxi Scale",
  24014. height: math.unit(36.7, "meters"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(1.73, "meters"),
  24024. weight: math.unit(240, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/izue-two-mothers/front.svg",
  24028. extra: 469 / 437,
  24029. bottom: 1.24 / 470.6
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Shrunken",
  24036. height: math.unit(7.86, "cm")
  24037. },
  24038. {
  24039. name: "Human Scale",
  24040. height: math.unit(1.73, "meters")
  24041. },
  24042. {
  24043. name: "Wolxi Scale",
  24044. height: math.unit(38, "meters"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(1.55, "meters"),
  24054. weight: math.unit(120, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/teeku-love-shack/front.svg",
  24058. extra: 387 / 362,
  24059. bottom: 1.51 / 388
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Shrunken",
  24066. height: math.unit(7, "cm")
  24067. },
  24068. {
  24069. name: "Human Scale",
  24070. height: math.unit(1.55, "meters")
  24071. },
  24072. {
  24073. name: "Wolxi Scale",
  24074. height: math.unit(34.1, "meters"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(1.83, "meters"),
  24084. weight: math.unit(135, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/dejma-the-red/front.svg",
  24088. extra: 480 / 458,
  24089. bottom: 1.8 / 482
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Shrunken",
  24096. height: math.unit(8.3, "cm")
  24097. },
  24098. {
  24099. name: "Human Scale",
  24100. height: math.unit(1.83, "meters")
  24101. },
  24102. {
  24103. name: "Wolxi Scale",
  24104. height: math.unit(40, "meters"),
  24105. default: true
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(1.78, "meters"),
  24114. weight: math.unit(65, "kg"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/aki/front.svg",
  24118. extra: 452 / 415
  24119. }
  24120. },
  24121. frontNsfw: {
  24122. height: math.unit(1.78, "meters"),
  24123. weight: math.unit(65, "kg"),
  24124. name: "Front (NSFW)",
  24125. image: {
  24126. source: "./media/characters/aki/front-nsfw.svg",
  24127. extra: 452 / 415
  24128. }
  24129. },
  24130. back: {
  24131. height: math.unit(1.78, "meters"),
  24132. weight: math.unit(65, "kg"),
  24133. name: "Back",
  24134. image: {
  24135. source: "./media/characters/aki/back.svg",
  24136. extra: 452 / 415
  24137. }
  24138. },
  24139. rump: {
  24140. height: math.unit(2.05, "feet"),
  24141. name: "Rump",
  24142. image: {
  24143. source: "./media/characters/aki/rump.svg"
  24144. }
  24145. },
  24146. dick: {
  24147. height: math.unit(0.95, "feet"),
  24148. name: "Dick",
  24149. image: {
  24150. source: "./media/characters/aki/dick.svg"
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Micro",
  24157. height: math.unit(15, "cm")
  24158. },
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(178, "cm"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(214, "m")
  24167. },
  24168. {
  24169. name: "Macro+",
  24170. height: math.unit(534, "m")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(5 + 5 / 12, "feet"),
  24179. weight: math.unit(120, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/ari/front.svg",
  24183. extra: 714.5 / 682,
  24184. bottom: 8 / 722.5
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(5 + 5 / 12, "feet")
  24192. },
  24193. {
  24194. name: "Macro",
  24195. height: math.unit(100, "feet"),
  24196. default: true
  24197. },
  24198. {
  24199. name: "Megamacro",
  24200. height: math.unit(100, "miles")
  24201. },
  24202. {
  24203. name: "Gigamacro",
  24204. height: math.unit(80000, "miles")
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24210. {
  24211. side: {
  24212. height: math.unit(9, "feet"),
  24213. weight: math.unit(400, "kg"),
  24214. name: "Side",
  24215. image: {
  24216. source: "./media/characters/bolt/side.svg",
  24217. extra: 1126 / 896,
  24218. bottom: 60 / 1187.3,
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Micro",
  24225. height: math.unit(5, "inches")
  24226. },
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(9, "feet"),
  24230. default: true
  24231. },
  24232. {
  24233. name: "Macro",
  24234. height: math.unit(700, "feet")
  24235. },
  24236. {
  24237. name: "Max Size",
  24238. height: math.unit(1.52e22, "yottameters")
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(4.53, "meters"),
  24247. weight: math.unit(3, "tons"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/draekon-sylviar/front.svg",
  24251. extra: 1228 / 1068,
  24252. bottom: 41 / 1270
  24253. }
  24254. },
  24255. tail: {
  24256. height: math.unit(1.772, "meter"),
  24257. name: "Tail",
  24258. image: {
  24259. source: "./media/characters/draekon-sylviar/tail.svg"
  24260. }
  24261. },
  24262. head: {
  24263. height: math.unit(1.331, "meter"),
  24264. name: "Head",
  24265. image: {
  24266. source: "./media/characters/draekon-sylviar/head.svg"
  24267. }
  24268. },
  24269. hand: {
  24270. height: math.unit(0.564, "meter"),
  24271. name: "Hand",
  24272. image: {
  24273. source: "./media/characters/draekon-sylviar/hand.svg"
  24274. }
  24275. },
  24276. foot: {
  24277. height: math.unit(0.621, "meter"),
  24278. name: "Foot",
  24279. image: {
  24280. source: "./media/characters/draekon-sylviar/foot.svg",
  24281. bottom: 32 / 324
  24282. }
  24283. },
  24284. dick: {
  24285. height: math.unit(61, "cm"),
  24286. name: "Dick",
  24287. image: {
  24288. source: "./media/characters/draekon-sylviar/dick.svg"
  24289. }
  24290. },
  24291. dickseparated: {
  24292. height: math.unit(61, "cm"),
  24293. name: "Dick-separated",
  24294. image: {
  24295. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Small",
  24302. height: math.unit(4.53 / 2, "meters"),
  24303. default: true
  24304. },
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(4.53, "meters"),
  24308. default: true
  24309. },
  24310. {
  24311. name: "Large",
  24312. height: math.unit(4.53 * 2, "meters"),
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(6 + 2 / 12, "feet"),
  24321. weight: math.unit(180, "lb"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/brawler/front.svg",
  24325. extra: 3301 / 3027,
  24326. bottom: 138 / 3439
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(6 + 2 / 12, "feet"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24340. {
  24341. front: {
  24342. height: math.unit(11, "feet"),
  24343. weight: math.unit(1000, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/alex/front.svg",
  24347. bottom: 44.5 / 620
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Micro",
  24354. height: math.unit(5, "inches")
  24355. },
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(11, "feet"),
  24359. default: true
  24360. },
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(9.5e9, "feet")
  24364. },
  24365. {
  24366. name: "Max Size",
  24367. height: math.unit(1.4e283, "yottameters")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24373. {
  24374. female: {
  24375. height: math.unit(29.9, "m"),
  24376. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24377. name: "Female",
  24378. image: {
  24379. source: "./media/characters/zenari/female.svg",
  24380. extra: 3281.6 / 3217,
  24381. bottom: 72.2 / 3353
  24382. }
  24383. },
  24384. male: {
  24385. height: math.unit(27.7, "m"),
  24386. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24387. name: "Male",
  24388. image: {
  24389. source: "./media/characters/zenari/male.svg",
  24390. extra: 3008 / 2991,
  24391. bottom: 54.6 / 3069
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(29.7, "meters"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24405. {
  24406. female: {
  24407. height: math.unit(23.8, "m"),
  24408. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24409. name: "Female",
  24410. image: {
  24411. source: "./media/characters/mactarian/female.svg",
  24412. extra: 2662 / 2569,
  24413. bottom: 73 / 2736
  24414. }
  24415. },
  24416. male: {
  24417. height: math.unit(23.8, "m"),
  24418. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24419. name: "Male",
  24420. image: {
  24421. source: "./media/characters/mactarian/male.svg",
  24422. extra: 2673 / 2600,
  24423. bottom: 76 / 2750
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Macro",
  24430. height: math.unit(23.8, "meters"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24437. {
  24438. female: {
  24439. height: math.unit(19.3, "m"),
  24440. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24441. name: "Female",
  24442. image: {
  24443. source: "./media/characters/umok/female.svg",
  24444. extra: 2186 / 2078,
  24445. bottom: 87 / 2277
  24446. }
  24447. },
  24448. male: {
  24449. height: math.unit(19.5, "m"),
  24450. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24451. name: "Male",
  24452. image: {
  24453. source: "./media/characters/umok/male.svg",
  24454. extra: 2233 / 2140,
  24455. bottom: 24.4 / 2258
  24456. }
  24457. },
  24458. },
  24459. [
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(19.3, "meters"),
  24463. default: true
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24469. {
  24470. female: {
  24471. height: math.unit(26.15, "m"),
  24472. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24473. name: "Female",
  24474. image: {
  24475. source: "./media/characters/joraxian/female.svg",
  24476. extra: 2912 / 2824,
  24477. bottom: 36 / 2956
  24478. }
  24479. },
  24480. male: {
  24481. height: math.unit(25.4, "m"),
  24482. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24483. name: "Male",
  24484. image: {
  24485. source: "./media/characters/joraxian/male.svg",
  24486. extra: 2877 / 2721,
  24487. bottom: 82 / 2967
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(26.15, "meters"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24501. {
  24502. female: {
  24503. height: math.unit(21.6, "m"),
  24504. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24505. name: "Female",
  24506. image: {
  24507. source: "./media/characters/sthara/female.svg",
  24508. extra: 2516 / 2347,
  24509. bottom: 21.5 / 2537
  24510. }
  24511. },
  24512. male: {
  24513. height: math.unit(24, "m"),
  24514. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24515. name: "Male",
  24516. image: {
  24517. source: "./media/characters/sthara/male.svg",
  24518. extra: 2732 / 2607,
  24519. bottom: 23 / 2732
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(21.6, "meters"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(6 + 4 / 12, "feet"),
  24536. weight: math.unit(175, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/luka-bryzant/front.svg",
  24540. extra: 311 / 289,
  24541. bottom: 4 / 315
  24542. }
  24543. },
  24544. back: {
  24545. height: math.unit(6 + 4 / 12, "feet"),
  24546. weight: math.unit(175, "lb"),
  24547. name: "Back",
  24548. image: {
  24549. source: "./media/characters/luka-bryzant/back.svg",
  24550. extra: 311 / 289,
  24551. bottom: 3.8 / 313.7
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Micro",
  24558. height: math.unit(10, "inches")
  24559. },
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(6 + 4 / 12, "feet"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Large",
  24567. height: math.unit(12, "feet")
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(5 + 7 / 12, "feet"),
  24576. weight: math.unit(185, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/aman-aquila/front.svg",
  24580. extra: 1013 / 976,
  24581. bottom: 45.6 / 1057
  24582. }
  24583. },
  24584. side: {
  24585. height: math.unit(5 + 7 / 12, "feet"),
  24586. weight: math.unit(185, "lb"),
  24587. name: "Side",
  24588. image: {
  24589. source: "./media/characters/aman-aquila/side.svg",
  24590. extra: 1054 / 1011,
  24591. bottom: 15 / 1070
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(5 + 7 / 12, "feet"),
  24596. weight: math.unit(185, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/aman-aquila/back.svg",
  24600. extra: 1026 / 970,
  24601. bottom: 12 / 1039
  24602. }
  24603. },
  24604. head: {
  24605. height: math.unit(1.211, "feet"),
  24606. name: "Head",
  24607. image: {
  24608. source: "./media/characters/aman-aquila/head.svg",
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Minimicro",
  24615. height: math.unit(0.057, "inches")
  24616. },
  24617. {
  24618. name: "Micro",
  24619. height: math.unit(7, "inches")
  24620. },
  24621. {
  24622. name: "Mini",
  24623. height: math.unit(3 + 7 / 12, "feet")
  24624. },
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(5 + 7 / 12, "feet"),
  24628. default: true
  24629. },
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(157 + 7 / 12, "feet")
  24633. },
  24634. {
  24635. name: "Megamacro",
  24636. height: math.unit(1557 + 7 / 12, "feet")
  24637. },
  24638. {
  24639. name: "Gigamacro",
  24640. height: math.unit(15557 + 7 / 12, "feet")
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24646. {
  24647. front: {
  24648. height: math.unit(3 + 2 / 12, "inches"),
  24649. weight: math.unit(0.3, "ounces"),
  24650. name: "Front",
  24651. image: {
  24652. source: "./media/characters/hiphae/front.svg",
  24653. extra: 1931 / 1683,
  24654. bottom: 24 / 1955
  24655. }
  24656. },
  24657. },
  24658. [
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(3 + 1 / 2, "inches"),
  24662. default: true
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24668. {
  24669. front: {
  24670. height: math.unit(5 + 10 / 12, "feet"),
  24671. weight: math.unit(165, "lb"),
  24672. name: "Front",
  24673. image: {
  24674. source: "./media/characters/nicky/front.svg",
  24675. extra: 3144 / 2886,
  24676. bottom: 45.6 / 3192
  24677. }
  24678. },
  24679. back: {
  24680. height: math.unit(5 + 10 / 12, "feet"),
  24681. weight: math.unit(165, "lb"),
  24682. name: "Back",
  24683. image: {
  24684. source: "./media/characters/nicky/back.svg",
  24685. extra: 3055 / 2804,
  24686. bottom: 28.4 / 3087
  24687. }
  24688. },
  24689. frontclothed: {
  24690. height: math.unit(5 + 10 / 12, "feet"),
  24691. weight: math.unit(165, "lb"),
  24692. name: "Front-clothed",
  24693. image: {
  24694. source: "./media/characters/nicky/front-clothed.svg",
  24695. extra: 3184.9 / 2926.9,
  24696. bottom: 86.5 / 3239.9
  24697. }
  24698. },
  24699. foot: {
  24700. height: math.unit(1.16, "feet"),
  24701. name: "Foot",
  24702. image: {
  24703. source: "./media/characters/nicky/foot.svg"
  24704. }
  24705. },
  24706. feet: {
  24707. height: math.unit(1.34, "feet"),
  24708. name: "Feet",
  24709. image: {
  24710. source: "./media/characters/nicky/feet.svg"
  24711. }
  24712. },
  24713. maw: {
  24714. height: math.unit(0.9, "feet"),
  24715. name: "Maw",
  24716. image: {
  24717. source: "./media/characters/nicky/maw.svg"
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(5 + 10 / 12, "feet"),
  24725. default: true
  24726. },
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(60, "feet")
  24730. },
  24731. {
  24732. name: "Megamacro",
  24733. height: math.unit(1, "mile")
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24739. {
  24740. side: {
  24741. height: math.unit(10, "feet"),
  24742. weight: math.unit(600, "lb"),
  24743. name: "Side",
  24744. image: {
  24745. source: "./media/characters/blair/side.svg",
  24746. bottom: 16.6 / 475,
  24747. extra: 458 / 431
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Micro",
  24754. height: math.unit(8, "inches")
  24755. },
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(10, "feet"),
  24759. default: true
  24760. },
  24761. {
  24762. name: "Macro",
  24763. height: math.unit(180, "feet")
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(5 + 4 / 12, "feet"),
  24772. weight: math.unit(125, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/fisher/front.svg",
  24776. extra: 444 / 390,
  24777. bottom: 2 / 444.8
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Micro",
  24784. height: math.unit(4, "inches")
  24785. },
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(5 + 4 / 12, "feet"),
  24789. default: true
  24790. },
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(100, "feet")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(6.71, "feet"),
  24802. weight: math.unit(200, "lb"),
  24803. capacity: math.unit(1000000, "people"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/gliss/front.svg",
  24807. extra: 2347 / 2231,
  24808. bottom: 113 / 2462
  24809. }
  24810. },
  24811. hammerspaceSize: {
  24812. height: math.unit(6.71 * 717, "feet"),
  24813. weight: math.unit(200, "lb"),
  24814. capacity: math.unit(1000000, "people"),
  24815. name: "Hammerspace Size",
  24816. image: {
  24817. source: "./media/characters/gliss/front.svg",
  24818. extra: 2347 / 2231,
  24819. bottom: 113 / 2462
  24820. }
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Normal",
  24826. height: math.unit(6.71, "feet"),
  24827. default: true
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24833. {
  24834. side: {
  24835. height: math.unit(1.44, "m"),
  24836. weight: math.unit(80, "kg"),
  24837. name: "Side",
  24838. image: {
  24839. source: "./media/characters/dune-anderson/side.svg",
  24840. bottom: 49 / 1426
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Wolf-sized",
  24847. height: math.unit(1.44, "meters")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(5.05, "meters"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Big",
  24856. height: math.unit(14.4, "meters")
  24857. },
  24858. {
  24859. name: "Huge",
  24860. height: math.unit(144, "meters")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(7, "feet"),
  24869. weight: math.unit(425, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/hind/front.svg",
  24873. extra: 2091 / 1860,
  24874. bottom: 129 / 2220
  24875. }
  24876. },
  24877. back: {
  24878. height: math.unit(7, "feet"),
  24879. weight: math.unit(425, "lb"),
  24880. name: "Back",
  24881. image: {
  24882. source: "./media/characters/hind/back.svg",
  24883. extra: 2091 / 1860,
  24884. bottom: 24.6 / 2309
  24885. }
  24886. },
  24887. tail: {
  24888. height: math.unit(2.8, "feet"),
  24889. name: "Tail",
  24890. image: {
  24891. source: "./media/characters/hind/tail.svg"
  24892. }
  24893. },
  24894. head: {
  24895. height: math.unit(2.55, "feet"),
  24896. name: "Head",
  24897. image: {
  24898. source: "./media/characters/hind/head.svg"
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "XS",
  24905. height: math.unit(0.7, "feet")
  24906. },
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(7, "feet"),
  24910. default: true
  24911. },
  24912. {
  24913. name: "XL",
  24914. height: math.unit(70, "feet")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(2.1, "meters"),
  24923. weight: math.unit(150, "lb"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/tharquench-sizestealer/front.svg",
  24927. extra: 1605/1470,
  24928. bottom: 36/1641
  24929. }
  24930. },
  24931. frontAlt: {
  24932. height: math.unit(2.1, "meters"),
  24933. weight: math.unit(150, "lb"),
  24934. name: "Front (Alt)",
  24935. image: {
  24936. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24937. extra: 2318 / 2063,
  24938. bottom: 93.4 / 2410
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Nano",
  24945. height: math.unit(1, "mm")
  24946. },
  24947. {
  24948. name: "Micro",
  24949. height: math.unit(1, "cm")
  24950. },
  24951. {
  24952. name: "Normal",
  24953. height: math.unit(2.1, "meters"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(7 + 5 / 12, "feet"),
  24963. weight: math.unit(357, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/solex-draconov/front.svg",
  24967. extra: 1993 / 1865,
  24968. bottom: 117 / 2111
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Natural Height",
  24975. height: math.unit(7 + 5 / 12, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(350, "feet")
  24981. },
  24982. {
  24983. name: "Macro+",
  24984. height: math.unit(1000, "feet")
  24985. },
  24986. {
  24987. name: "Megamacro",
  24988. height: math.unit(20, "km")
  24989. },
  24990. {
  24991. name: "Megamacro+",
  24992. height: math.unit(1000, "km")
  24993. },
  24994. {
  24995. name: "Gigamacro",
  24996. height: math.unit(2.5, "Gm")
  24997. },
  24998. {
  24999. name: "Teramacro",
  25000. height: math.unit(15, "Tm")
  25001. },
  25002. {
  25003. name: "Galactic",
  25004. height: math.unit(30, "Zm")
  25005. },
  25006. {
  25007. name: "Universal",
  25008. height: math.unit(21000, "Ym")
  25009. },
  25010. {
  25011. name: "Omniversal",
  25012. height: math.unit(9.861e50, "Ym")
  25013. },
  25014. {
  25015. name: "Existential",
  25016. height: math.unit(1e300, "meters")
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25022. {
  25023. side: {
  25024. height: math.unit(25, "feet"),
  25025. weight: math.unit(90000, "lb"),
  25026. name: "Side",
  25027. image: {
  25028. source: "./media/characters/mandarax/side.svg",
  25029. extra: 614 / 332,
  25030. bottom: 55 / 630
  25031. }
  25032. },
  25033. head: {
  25034. height: math.unit(11.4, "feet"),
  25035. name: "Head",
  25036. image: {
  25037. source: "./media/characters/mandarax/head.svg"
  25038. }
  25039. },
  25040. belly: {
  25041. height: math.unit(33, "feet"),
  25042. name: "Belly",
  25043. capacity: math.unit(500, "people"),
  25044. image: {
  25045. source: "./media/characters/mandarax/belly.svg"
  25046. }
  25047. },
  25048. dick: {
  25049. height: math.unit(8.46, "feet"),
  25050. name: "Dick",
  25051. image: {
  25052. source: "./media/characters/mandarax/dick.svg"
  25053. }
  25054. },
  25055. top: {
  25056. height: math.unit(28, "meters"),
  25057. name: "Top",
  25058. image: {
  25059. source: "./media/characters/mandarax/top.svg"
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(25, "feet"),
  25067. default: true
  25068. },
  25069. ]
  25070. ))
  25071. characterMakers.push(() => makeCharacter(
  25072. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25073. {
  25074. front: {
  25075. height: math.unit(5, "feet"),
  25076. weight: math.unit(90, "lb"),
  25077. name: "Front",
  25078. image: {
  25079. source: "./media/characters/pixil/front.svg",
  25080. extra: 2000 / 1618,
  25081. bottom: 12.3 / 2011
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Normal",
  25088. height: math.unit(5, "feet"),
  25089. default: true
  25090. },
  25091. {
  25092. name: "Megamacro",
  25093. height: math.unit(10, "miles"),
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(7 + 2 / 12, "feet"),
  25102. weight: math.unit(200, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/angel/front.svg",
  25106. extra: 1830 / 1737,
  25107. bottom: 22.6 / 1854,
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(7 + 2 / 12, "feet"),
  25115. default: true
  25116. },
  25117. {
  25118. name: "Macro",
  25119. height: math.unit(1000, "feet")
  25120. },
  25121. {
  25122. name: "Megamacro",
  25123. height: math.unit(2, "miles")
  25124. },
  25125. {
  25126. name: "Gigamacro",
  25127. height: math.unit(20, "earths")
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5, "feet"),
  25136. weight: math.unit(180, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/mekana/front.svg",
  25140. extra: 1671 / 1605,
  25141. bottom: 3.5 / 1691
  25142. }
  25143. },
  25144. side: {
  25145. height: math.unit(5, "feet"),
  25146. weight: math.unit(180, "lb"),
  25147. name: "Side",
  25148. image: {
  25149. source: "./media/characters/mekana/side.svg",
  25150. extra: 1671 / 1605,
  25151. bottom: 3.5 / 1691
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(5, "feet"),
  25156. weight: math.unit(180, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/mekana/back.svg",
  25160. extra: 1671 / 1605,
  25161. bottom: 3.5 / 1691
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(5, "feet"),
  25169. default: true
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(4 + 6 / 12, "feet"),
  25178. weight: math.unit(80, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/pixie/front.svg",
  25182. extra: 1924 / 1825,
  25183. bottom: 22.4 / 1946
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Normal",
  25190. height: math.unit(4 + 6 / 12, "feet"),
  25191. default: true
  25192. },
  25193. {
  25194. name: "Macro",
  25195. height: math.unit(40, "feet")
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(2.1, "meters"),
  25204. weight: math.unit(200, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/the-lascivious/front.svg",
  25208. extra: 1 / 0.893,
  25209. bottom: 3.5 / 573.7
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Human Scale",
  25216. height: math.unit(2.1, "meters")
  25217. },
  25218. {
  25219. name: "Wolxi Scale",
  25220. height: math.unit(46.2, "m"),
  25221. default: true
  25222. },
  25223. {
  25224. name: "Boinker of Buildings",
  25225. height: math.unit(10, "km")
  25226. },
  25227. {
  25228. name: "Shagger of Skyscrapers",
  25229. height: math.unit(40, "km")
  25230. },
  25231. {
  25232. name: "Banger of Boroughs",
  25233. height: math.unit(4000, "km")
  25234. },
  25235. {
  25236. name: "Screwer of States",
  25237. height: math.unit(100000, "km")
  25238. },
  25239. {
  25240. name: "Pounder of Planets",
  25241. height: math.unit(2000000, "km")
  25242. },
  25243. ]
  25244. ))
  25245. characterMakers.push(() => makeCharacter(
  25246. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25247. {
  25248. front: {
  25249. height: math.unit(6, "feet"),
  25250. weight: math.unit(150, "lb"),
  25251. name: "Front",
  25252. image: {
  25253. source: "./media/characters/aj/front.svg",
  25254. extra: 2039 / 1562,
  25255. bottom: 40 / 2079
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(11 + 6 / 12, "feet"),
  25263. default: true
  25264. },
  25265. {
  25266. name: "Megamacro",
  25267. height: math.unit(60, "megameters")
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25273. {
  25274. side: {
  25275. height: math.unit(31 + 8 / 12, "feet"),
  25276. weight: math.unit(75000, "kg"),
  25277. name: "Side",
  25278. image: {
  25279. source: "./media/characters/koros/side.svg",
  25280. extra: 1442 / 1297,
  25281. bottom: 122.7 / 1562
  25282. }
  25283. },
  25284. dicksKingsCrown: {
  25285. height: math.unit(6, "feet"),
  25286. name: "Dicks (King's Crown)",
  25287. image: {
  25288. source: "./media/characters/koros/dicks-kings-crown.svg"
  25289. }
  25290. },
  25291. dicksTailSet: {
  25292. height: math.unit(3, "feet"),
  25293. name: "Dicks (Tail Set)",
  25294. image: {
  25295. source: "./media/characters/koros/dicks-tail-set.svg"
  25296. }
  25297. },
  25298. dickCumming: {
  25299. height: math.unit(7.98, "feet"),
  25300. name: "Dick (Cumming)",
  25301. image: {
  25302. source: "./media/characters/koros/dick-cumming.svg"
  25303. }
  25304. },
  25305. dicksBack: {
  25306. height: math.unit(5.9, "feet"),
  25307. name: "Dicks (Back)",
  25308. image: {
  25309. source: "./media/characters/koros/dicks-back.svg"
  25310. }
  25311. },
  25312. dicksFront: {
  25313. height: math.unit(3.72, "feet"),
  25314. name: "Dicks (Front)",
  25315. image: {
  25316. source: "./media/characters/koros/dicks-front.svg"
  25317. }
  25318. },
  25319. dicksPeeking: {
  25320. height: math.unit(3.0, "feet"),
  25321. name: "Dicks (Peeking)",
  25322. image: {
  25323. source: "./media/characters/koros/dicks-peeking.svg"
  25324. }
  25325. },
  25326. eye: {
  25327. height: math.unit(1.7, "feet"),
  25328. name: "Eye",
  25329. image: {
  25330. source: "./media/characters/koros/eye.svg"
  25331. }
  25332. },
  25333. headFront: {
  25334. height: math.unit(11.69, "feet"),
  25335. name: "Head (Front)",
  25336. image: {
  25337. source: "./media/characters/koros/head-front.svg"
  25338. }
  25339. },
  25340. headSide: {
  25341. height: math.unit(14, "feet"),
  25342. name: "Head (Side)",
  25343. image: {
  25344. source: "./media/characters/koros/head-side.svg"
  25345. }
  25346. },
  25347. leg: {
  25348. height: math.unit(17, "feet"),
  25349. name: "Leg",
  25350. image: {
  25351. source: "./media/characters/koros/leg.svg"
  25352. }
  25353. },
  25354. mawSide: {
  25355. height: math.unit(12.8, "feet"),
  25356. name: "Maw (Side)",
  25357. image: {
  25358. source: "./media/characters/koros/maw-side.svg"
  25359. }
  25360. },
  25361. mawSpitting: {
  25362. height: math.unit(17, "feet"),
  25363. name: "Maw (Spitting)",
  25364. image: {
  25365. source: "./media/characters/koros/maw-spitting.svg"
  25366. }
  25367. },
  25368. slit: {
  25369. height: math.unit(2.8, "feet"),
  25370. name: "Slit",
  25371. image: {
  25372. source: "./media/characters/koros/slit.svg"
  25373. }
  25374. },
  25375. stomach: {
  25376. height: math.unit(6.8, "feet"),
  25377. capacity: math.unit(20, "people"),
  25378. name: "Stomach",
  25379. image: {
  25380. source: "./media/characters/koros/stomach.svg"
  25381. }
  25382. },
  25383. wingspanBottom: {
  25384. height: math.unit(114, "feet"),
  25385. name: "Wingspan (Bottom)",
  25386. image: {
  25387. source: "./media/characters/koros/wingspan-bottom.svg"
  25388. }
  25389. },
  25390. wingspanTop: {
  25391. height: math.unit(104, "feet"),
  25392. name: "Wingspan (Top)",
  25393. image: {
  25394. source: "./media/characters/koros/wingspan-top.svg"
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(31 + 8 / 12, "feet"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(18 + 5 / 12, "feet"),
  25411. weight: math.unit(3750, "kg"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/vexx/front.svg",
  25415. extra: 426 / 396,
  25416. bottom: 31.5 / 458
  25417. }
  25418. },
  25419. maw: {
  25420. height: math.unit(6, "feet"),
  25421. name: "Maw",
  25422. image: {
  25423. source: "./media/characters/vexx/maw.svg"
  25424. }
  25425. },
  25426. },
  25427. [
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(18 + 5 / 12, "feet"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(17 + 6 / 12, "feet"),
  25440. weight: math.unit(150, "lb"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/baadra/front.svg",
  25444. extra: 3137 / 2890,
  25445. bottom: 168.4 / 3305
  25446. }
  25447. },
  25448. back: {
  25449. height: math.unit(17 + 6 / 12, "feet"),
  25450. weight: math.unit(150, "lb"),
  25451. name: "Back",
  25452. image: {
  25453. source: "./media/characters/baadra/back.svg",
  25454. extra: 3142 / 2890,
  25455. bottom: 220 / 3371
  25456. }
  25457. },
  25458. head: {
  25459. height: math.unit(5.45, "feet"),
  25460. name: "Head",
  25461. image: {
  25462. source: "./media/characters/baadra/head.svg"
  25463. }
  25464. },
  25465. headAngry: {
  25466. height: math.unit(4.95, "feet"),
  25467. name: "Head (Angry)",
  25468. image: {
  25469. source: "./media/characters/baadra/head-angry.svg"
  25470. }
  25471. },
  25472. headOpen: {
  25473. height: math.unit(6, "feet"),
  25474. name: "Head (Open)",
  25475. image: {
  25476. source: "./media/characters/baadra/head-open.svg"
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(17 + 6 / 12, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(7 + 3 / 12, "feet"),
  25493. weight: math.unit(180, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/juri/front.svg",
  25497. extra: 1401 / 1237,
  25498. bottom: 18.5 / 1418
  25499. }
  25500. },
  25501. side: {
  25502. height: math.unit(7 + 3 / 12, "feet"),
  25503. weight: math.unit(180, "lb"),
  25504. name: "Side",
  25505. image: {
  25506. source: "./media/characters/juri/side.svg",
  25507. extra: 1424 / 1242,
  25508. bottom: 18.5 / 1447
  25509. }
  25510. },
  25511. sitting: {
  25512. height: math.unit(6, "feet"),
  25513. weight: math.unit(180, "lb"),
  25514. name: "Sitting",
  25515. image: {
  25516. source: "./media/characters/juri/sitting.svg",
  25517. extra: 1270 / 1143,
  25518. bottom: 100 / 1343
  25519. }
  25520. },
  25521. back: {
  25522. height: math.unit(7 + 3 / 12, "feet"),
  25523. weight: math.unit(180, "lb"),
  25524. name: "Back",
  25525. image: {
  25526. source: "./media/characters/juri/back.svg",
  25527. extra: 1377 / 1240,
  25528. bottom: 23.7 / 1405
  25529. }
  25530. },
  25531. maw: {
  25532. height: math.unit(2.8, "feet"),
  25533. name: "Maw",
  25534. image: {
  25535. source: "./media/characters/juri/maw.svg"
  25536. }
  25537. },
  25538. stomach: {
  25539. height: math.unit(0.89, "feet"),
  25540. capacity: math.unit(4, "liters"),
  25541. name: "Stomach",
  25542. image: {
  25543. source: "./media/characters/juri/stomach.svg"
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(7 + 3 / 12, "feet"),
  25551. default: true
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25557. {
  25558. fox: {
  25559. height: math.unit(5 + 6 / 12, "feet"),
  25560. weight: math.unit(140, "lb"),
  25561. name: "Fox",
  25562. image: {
  25563. source: "./media/characters/maxene-sita/fox.svg",
  25564. extra: 146 / 138,
  25565. bottom: 2.1 / 148.19
  25566. }
  25567. },
  25568. foxLaying: {
  25569. height: math.unit(1.70, "feet"),
  25570. weight: math.unit(140, "lb"),
  25571. name: "Fox (Laying)",
  25572. image: {
  25573. source: "./media/characters/maxene-sita/fox-laying.svg",
  25574. extra: 910 / 572,
  25575. bottom: 71 / 981
  25576. }
  25577. },
  25578. kitsune: {
  25579. height: math.unit(10, "feet"),
  25580. weight: math.unit(800, "lb"),
  25581. name: "Kitsune",
  25582. image: {
  25583. source: "./media/characters/maxene-sita/kitsune.svg",
  25584. extra: 185 / 176,
  25585. bottom: 4.7 / 189.9
  25586. }
  25587. },
  25588. hellhound: {
  25589. height: math.unit(10, "feet"),
  25590. weight: math.unit(700, "lb"),
  25591. name: "Hellhound",
  25592. image: {
  25593. source: "./media/characters/maxene-sita/hellhound.svg",
  25594. extra: 1600 / 1545,
  25595. bottom: 81 / 1681
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(5 + 6 / 12, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25609. {
  25610. front: {
  25611. height: math.unit(3 + 4 / 12, "feet"),
  25612. weight: math.unit(70, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/maia/front.svg",
  25616. extra: 227 / 219.5,
  25617. bottom: 40 / 267
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(3 + 4 / 12, "feet"),
  25622. weight: math.unit(70, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/maia/back.svg",
  25626. extra: 237 / 225
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(3 + 4 / 12, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(5 + 10 / 12, "feet"),
  25643. weight: math.unit(197, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/jabaro/front.svg",
  25647. extra: 225 / 216,
  25648. bottom: 5.06 / 230
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(5 + 10 / 12, "feet"),
  25653. weight: math.unit(197, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/jabaro/back.svg",
  25657. extra: 225 / 219,
  25658. bottom: 1.9 / 227
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(5 + 10 / 12, "feet"),
  25666. default: true
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(5 + 8 / 12, "feet"),
  25675. weight: math.unit(139, "lb"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/risa/front.svg",
  25679. extra: 270 / 260,
  25680. bottom: 11.2 / 282
  25681. }
  25682. },
  25683. back: {
  25684. height: math.unit(5 + 8 / 12, "feet"),
  25685. weight: math.unit(139, "lb"),
  25686. name: "Back",
  25687. image: {
  25688. source: "./media/characters/risa/back.svg",
  25689. extra: 264 / 255,
  25690. bottom: 4 / 268
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(5 + 8 / 12, "feet"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(2 + 11 / 12, "feet"),
  25707. weight: math.unit(30, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/weatley/front.svg",
  25711. bottom: 10.7 / 414,
  25712. extra: 403.5 / 362
  25713. }
  25714. },
  25715. back: {
  25716. height: math.unit(2 + 11 / 12, "feet"),
  25717. weight: math.unit(30, "lb"),
  25718. name: "Back",
  25719. image: {
  25720. source: "./media/characters/weatley/back.svg",
  25721. bottom: 10.7 / 414,
  25722. extra: 403.5 / 362
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(2 + 11 / 12, "feet"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(5 + 2 / 12, "feet"),
  25739. weight: math.unit(50, "kg"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/mercury-crescent/front.svg",
  25743. extra: 1088 / 1033,
  25744. bottom: 18.9 / 1109
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(5 + 2 / 12, "feet"),
  25752. default: true
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(2, "feet"),
  25761. weight: math.unit(15, "kg"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/diamond-jones/front.svg",
  25765. extra: 727/723,
  25766. bottom: 46/773
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(2, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(3, "feet"),
  25783. weight: math.unit(30, "kg"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/sweet-bit/front.svg",
  25787. extra: 675 / 567,
  25788. bottom: 27.7 / 703
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(3, "feet"),
  25796. default: true
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25802. {
  25803. side: {
  25804. height: math.unit(9.178, "feet"),
  25805. weight: math.unit(500, "lb"),
  25806. name: "Side",
  25807. image: {
  25808. source: "./media/characters/umbrazen/side.svg",
  25809. extra: 1730 / 1473,
  25810. bottom: 34.6 / 1765
  25811. }
  25812. },
  25813. },
  25814. [
  25815. {
  25816. name: "Normal",
  25817. height: math.unit(9.178, "feet"),
  25818. default: true
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(10, "feet"),
  25827. weight: math.unit(750, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/arlist/front.svg",
  25831. extra: 961 / 778,
  25832. bottom: 6.2 / 986
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(10, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(5 + 1 / 12, "feet"),
  25849. weight: math.unit(110, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/aradel/front.svg",
  25853. extra: 324 / 303,
  25854. bottom: 3.6 / 329.4
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(5 + 1 / 12, "feet"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25868. {
  25869. front: {
  25870. height: math.unit(3 + 8 / 12, "feet"),
  25871. weight: math.unit(50, "lb"),
  25872. name: "Front",
  25873. image: {
  25874. source: "./media/characters/serryn/front.svg",
  25875. extra: 1792 / 1656,
  25876. bottom: 43.5 / 1840
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(3 + 8 / 12, "feet"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(7 + 10 / 12, "feet"),
  25893. weight: math.unit(255, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/xavier-thyme/front.svg",
  25897. extra: 3733 / 3642,
  25898. bottom: 131 / 3869
  25899. }
  25900. },
  25901. frontRaven: {
  25902. height: math.unit(7 + 10 / 12, "feet"),
  25903. weight: math.unit(255, "lb"),
  25904. name: "Front (Raven)",
  25905. image: {
  25906. source: "./media/characters/xavier-thyme/front-raven.svg",
  25907. extra: 4385 / 3642,
  25908. bottom: 131 / 4517
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(7 + 10 / 12, "feet"),
  25916. default: true
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(1.6, "m"),
  25925. weight: math.unit(50, "kg"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/kiki/front.svg",
  25929. extra: 4682 / 3610,
  25930. bottom: 115 / 4777
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(1.6, "meters"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(50, "m"),
  25947. weight: math.unit(500, "tonnes"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/ryoko/front.svg",
  25951. extra: 4632 / 3926,
  25952. bottom: 193 / 4823
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(50, "meters"),
  25960. default: true
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25966. {
  25967. front: {
  25968. height: math.unit(30, "m"),
  25969. weight: math.unit(22, "tonnes"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/elio/front.svg",
  25973. extra: 4582 / 3720,
  25974. bottom: 236 / 4828
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(30, "meters"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(6 + 3 / 12, "feet"),
  25991. weight: math.unit(120, "lb"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/azura/front.svg",
  25995. extra: 1149 / 1135,
  25996. bottom: 45 / 1194
  25997. }
  25998. },
  25999. frontClothed: {
  26000. height: math.unit(6 + 3 / 12, "feet"),
  26001. weight: math.unit(120, "lb"),
  26002. name: "Front (Clothed)",
  26003. image: {
  26004. source: "./media/characters/azura/front-clothed.svg",
  26005. extra: 1149 / 1135,
  26006. bottom: 45 / 1194
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(6 + 3 / 12, "feet"),
  26014. default: true
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(20 + 6 / 12, "feet")
  26019. },
  26020. {
  26021. name: "Megamacro",
  26022. height: math.unit(12, "miles")
  26023. },
  26024. {
  26025. name: "Gigamacro",
  26026. height: math.unit(10000, "miles")
  26027. },
  26028. {
  26029. name: "Teramacro",
  26030. height: math.unit(900000, "miles")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(12, "feet"),
  26039. weight: math.unit(1, "ton"),
  26040. capacity: math.unit(660000, "gallons"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/zeus/front.svg",
  26044. extra: 5005 / 4717,
  26045. bottom: 363 / 5388
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(12, "feet")
  26053. },
  26054. {
  26055. name: "Preferred Size",
  26056. height: math.unit(0.5, "miles"),
  26057. default: true
  26058. },
  26059. {
  26060. name: "Giga Horse",
  26061. height: math.unit(300, "miles")
  26062. },
  26063. {
  26064. name: "Riding Planets",
  26065. height: math.unit(30, "megameters")
  26066. },
  26067. {
  26068. name: "Cosmic Giant",
  26069. height: math.unit(3, "zettameters")
  26070. },
  26071. {
  26072. name: "Breeding God",
  26073. height: math.unit(9.92e22, "yottameters")
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26079. {
  26080. side: {
  26081. height: math.unit(9, "feet"),
  26082. weight: math.unit(1500, "kg"),
  26083. name: "Side",
  26084. image: {
  26085. source: "./media/characters/fang/side.svg",
  26086. extra: 924 / 866,
  26087. bottom: 47.5 / 972.3
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Normal",
  26094. height: math.unit(9, "feet"),
  26095. default: true
  26096. },
  26097. {
  26098. name: "Macro",
  26099. height: math.unit(75 + 6 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Teramacro",
  26103. height: math.unit(50000, "miles")
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(10, "feet"),
  26112. weight: math.unit(2, "tons"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/rekhit/front.svg",
  26116. extra: 2796 / 2590,
  26117. bottom: 225 / 3022
  26118. }
  26119. },
  26120. },
  26121. [
  26122. {
  26123. name: "Normal",
  26124. height: math.unit(10, "feet"),
  26125. default: true
  26126. },
  26127. {
  26128. name: "Macro",
  26129. height: math.unit(500, "feet")
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(7 + 6.451 / 12, "feet"),
  26138. weight: math.unit(310, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/dahlia-verrick/front.svg",
  26142. extra: 1488 / 1365,
  26143. bottom: 6.2 / 1495
  26144. }
  26145. },
  26146. back: {
  26147. height: math.unit(7 + 6.451 / 12, "feet"),
  26148. weight: math.unit(310, "lb"),
  26149. name: "Back",
  26150. image: {
  26151. source: "./media/characters/dahlia-verrick/back.svg",
  26152. extra: 1472 / 1351,
  26153. bottom: 5.28 / 1477
  26154. }
  26155. },
  26156. frontBusiness: {
  26157. height: math.unit(7 + 6.451 / 12, "feet"),
  26158. weight: math.unit(200, "lb"),
  26159. name: "Front (Business)",
  26160. image: {
  26161. source: "./media/characters/dahlia-verrick/front-business.svg",
  26162. extra: 1478 / 1381,
  26163. bottom: 5.5 / 1484
  26164. }
  26165. },
  26166. frontCasual: {
  26167. height: math.unit(7 + 6.451 / 12, "feet"),
  26168. weight: math.unit(200, "lb"),
  26169. name: "Front (Casual)",
  26170. image: {
  26171. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26172. extra: 1478 / 1381,
  26173. bottom: 5.5 / 1484
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Travel-Sized",
  26180. height: math.unit(7.45, "inches")
  26181. },
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(7 + 6.451 / 12, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Hitting the Town",
  26189. height: math.unit(37 + 8 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Stomp in the Suburbs",
  26193. height: math.unit(964 + 9.728 / 12, "feet")
  26194. },
  26195. {
  26196. name: "Sit on the City",
  26197. height: math.unit(61747 + 10.592 / 12, "feet")
  26198. },
  26199. {
  26200. name: "Glomp the Globe",
  26201. height: math.unit(252919327 + 4.832 / 12, "feet")
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(6 + 4 / 12, "feet"),
  26210. weight: math.unit(320, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/balina-mahigan/front.svg",
  26214. extra: 447 / 428,
  26215. bottom: 18 / 466
  26216. }
  26217. },
  26218. back: {
  26219. height: math.unit(6 + 4 / 12, "feet"),
  26220. weight: math.unit(320, "lb"),
  26221. name: "Back",
  26222. image: {
  26223. source: "./media/characters/balina-mahigan/back.svg",
  26224. extra: 445 / 428,
  26225. bottom: 4.07 / 448
  26226. }
  26227. },
  26228. arm: {
  26229. height: math.unit(1.88, "feet"),
  26230. name: "Arm",
  26231. image: {
  26232. source: "./media/characters/balina-mahigan/arm.svg"
  26233. }
  26234. },
  26235. backPort: {
  26236. height: math.unit(0.685, "feet"),
  26237. name: "Back Port",
  26238. image: {
  26239. source: "./media/characters/balina-mahigan/back-port.svg"
  26240. }
  26241. },
  26242. hoofpaw: {
  26243. height: math.unit(1.41, "feet"),
  26244. name: "Hoofpaw",
  26245. image: {
  26246. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26247. }
  26248. },
  26249. leftHandBack: {
  26250. height: math.unit(0.938, "feet"),
  26251. name: "Left Hand (Back)",
  26252. image: {
  26253. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26254. }
  26255. },
  26256. leftHandFront: {
  26257. height: math.unit(0.938, "feet"),
  26258. name: "Left Hand (Front)",
  26259. image: {
  26260. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26261. }
  26262. },
  26263. rightHandBack: {
  26264. height: math.unit(0.95, "feet"),
  26265. name: "Right Hand (Back)",
  26266. image: {
  26267. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26268. }
  26269. },
  26270. rightHandFront: {
  26271. height: math.unit(0.95, "feet"),
  26272. name: "Right Hand (Front)",
  26273. image: {
  26274. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(6 + 4 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(6, "feet"),
  26291. weight: math.unit(320, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/balina-mejeri/front.svg",
  26295. extra: 517 / 488,
  26296. bottom: 44.2 / 561
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(6 + 4 / 12, "feet")
  26304. },
  26305. {
  26306. name: "Business",
  26307. height: math.unit(155, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26314. {
  26315. kneeling: {
  26316. height: math.unit(6 + 4 / 12, "feet"),
  26317. weight: math.unit(300 * 20, "lb"),
  26318. name: "Kneeling",
  26319. image: {
  26320. source: "./media/characters/balbarian/kneeling.svg",
  26321. extra: 922 / 862,
  26322. bottom: 42.4 / 965
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(6 + 4 / 12, "feet")
  26330. },
  26331. {
  26332. name: "Treasured",
  26333. height: math.unit(18 + 9 / 12, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Macro",
  26338. height: math.unit(900, "feet")
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(6 + 4 / 12, "feet"),
  26347. weight: math.unit(325, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/balina-amarini/front.svg",
  26351. extra: 415 / 403,
  26352. bottom: 19 / 433.4
  26353. }
  26354. },
  26355. back: {
  26356. height: math.unit(6 + 4 / 12, "feet"),
  26357. weight: math.unit(325, "lb"),
  26358. name: "Back",
  26359. image: {
  26360. source: "./media/characters/balina-amarini/back.svg",
  26361. extra: 415 / 403,
  26362. bottom: 13.5 / 432
  26363. }
  26364. },
  26365. overdrive: {
  26366. height: math.unit(6 + 4 / 12, "feet"),
  26367. weight: math.unit(400, "lb"),
  26368. name: "Overdrive",
  26369. image: {
  26370. source: "./media/characters/balina-amarini/overdrive.svg",
  26371. extra: 269 / 259,
  26372. bottom: 12 / 282
  26373. }
  26374. },
  26375. },
  26376. [
  26377. {
  26378. name: "Boom",
  26379. height: math.unit(9 + 10 / 12, "feet"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "Macro",
  26384. height: math.unit(280, "feet")
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26390. {
  26391. goddess: {
  26392. height: math.unit(600, "feet"),
  26393. weight: math.unit(2000000, "tons"),
  26394. name: "Goddess",
  26395. image: {
  26396. source: "./media/characters/lady-kubwa/goddess.svg",
  26397. extra: 1240.5 / 1223,
  26398. bottom: 22 / 1263
  26399. }
  26400. },
  26401. goddesser: {
  26402. height: math.unit(900, "feet"),
  26403. weight: math.unit(20000000, "lb"),
  26404. name: "Goddess-er",
  26405. image: {
  26406. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26407. extra: 899 / 888,
  26408. bottom: 12.6 / 912
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Macro",
  26415. height: math.unit(600, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Megamacro",
  26420. height: math.unit(250, "miles")
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(7 + 7 / 12, "feet"),
  26429. weight: math.unit(250, "lb"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/tala-grovehorn/front.svg",
  26433. extra: 2636 / 2525,
  26434. bottom: 147 / 2781
  26435. }
  26436. },
  26437. back: {
  26438. height: math.unit(7 + 7 / 12, "feet"),
  26439. weight: math.unit(250, "lb"),
  26440. name: "Back",
  26441. image: {
  26442. source: "./media/characters/tala-grovehorn/back.svg",
  26443. extra: 2635 / 2539,
  26444. bottom: 100 / 2732.8
  26445. }
  26446. },
  26447. mouth: {
  26448. height: math.unit(1.15, "feet"),
  26449. name: "Mouth",
  26450. image: {
  26451. source: "./media/characters/tala-grovehorn/mouth.svg"
  26452. }
  26453. },
  26454. dick: {
  26455. height: math.unit(2.36, "feet"),
  26456. name: "Dick",
  26457. image: {
  26458. source: "./media/characters/tala-grovehorn/dick.svg"
  26459. }
  26460. },
  26461. slit: {
  26462. height: math.unit(0.61, "feet"),
  26463. name: "Slit",
  26464. image: {
  26465. source: "./media/characters/tala-grovehorn/slit.svg"
  26466. }
  26467. },
  26468. },
  26469. [
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(7 + 7 / 12, "feet"),
  26477. weight: math.unit(225, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/epona/front.svg",
  26481. extra: 2445 / 2290,
  26482. bottom: 251 / 2696
  26483. }
  26484. },
  26485. back: {
  26486. height: math.unit(7 + 7 / 12, "feet"),
  26487. weight: math.unit(225, "lb"),
  26488. name: "Back",
  26489. image: {
  26490. source: "./media/characters/epona/back.svg",
  26491. extra: 2546 / 2408,
  26492. bottom: 44 / 2589
  26493. }
  26494. },
  26495. genitals: {
  26496. height: math.unit(1.5, "feet"),
  26497. name: "Genitals",
  26498. image: {
  26499. source: "./media/characters/epona/genitals.svg"
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(7 + 7 / 12, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(7, "feet"),
  26516. weight: math.unit(518, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/avia-bloodbourn/front.svg",
  26520. extra: 1466 / 1350,
  26521. bottom: 65 / 1527
  26522. }
  26523. },
  26524. },
  26525. [
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(9.35, "feet"),
  26533. weight: math.unit(600, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/amera/front.svg",
  26537. extra: 891 / 818,
  26538. bottom: 30 / 922.7
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(9.35, "feet"),
  26543. weight: math.unit(600, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/amera/back.svg",
  26547. extra: 876 / 824,
  26548. bottom: 6.8 / 884
  26549. }
  26550. },
  26551. dick: {
  26552. height: math.unit(2.14, "feet"),
  26553. name: "Dick",
  26554. image: {
  26555. source: "./media/characters/amera/dick.svg"
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(9.35, "feet"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26569. {
  26570. kneeling: {
  26571. height: math.unit(3 + 4 / 12, "feet"),
  26572. weight: math.unit(90, "lb"),
  26573. name: "Kneeling",
  26574. image: {
  26575. source: "./media/characters/rosewen/kneeling.svg",
  26576. extra: 1835 / 1571,
  26577. bottom: 27.7 / 1862
  26578. }
  26579. },
  26580. },
  26581. [
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(3 + 4 / 12, "feet"),
  26585. default: true
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26591. {
  26592. front: {
  26593. height: math.unit(5 + 10 / 12, "feet"),
  26594. weight: math.unit(200, "lb"),
  26595. name: "Front",
  26596. image: {
  26597. source: "./media/characters/sabah/front.svg",
  26598. extra: 849 / 763,
  26599. bottom: 33.9 / 881
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(5 + 10 / 12, "feet"),
  26607. default: true
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26613. {
  26614. front: {
  26615. height: math.unit(3 + 5 / 12, "feet"),
  26616. weight: math.unit(40, "kg"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/purple-flame/front.svg",
  26620. extra: 1577 / 1412,
  26621. bottom: 97 / 1694
  26622. }
  26623. },
  26624. frontDressed: {
  26625. height: math.unit(3 + 5 / 12, "feet"),
  26626. weight: math.unit(40, "kg"),
  26627. name: "Front (Dressed)",
  26628. image: {
  26629. source: "./media/characters/purple-flame/front-dressed.svg",
  26630. extra: 1577 / 1412,
  26631. bottom: 97 / 1694
  26632. }
  26633. },
  26634. headphones: {
  26635. height: math.unit(0.85, "feet"),
  26636. name: "Headphones",
  26637. image: {
  26638. source: "./media/characters/purple-flame/headphones.svg"
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Really Small",
  26645. height: math.unit(5, "cm")
  26646. },
  26647. {
  26648. name: "Micro",
  26649. height: math.unit(1 + 5 / 12, "feet")
  26650. },
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(3 + 5 / 12, "feet"),
  26654. default: true
  26655. },
  26656. {
  26657. name: "Minimacro",
  26658. height: math.unit(125, "feet")
  26659. },
  26660. {
  26661. name: "Macro",
  26662. height: math.unit(0.5, "miles")
  26663. },
  26664. {
  26665. name: "Megamacro",
  26666. height: math.unit(50, "miles")
  26667. },
  26668. {
  26669. name: "Gigantic",
  26670. height: math.unit(750, "miles")
  26671. },
  26672. {
  26673. name: "Planetary",
  26674. height: math.unit(15000, "miles")
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(14, "feet"),
  26683. weight: math.unit(959, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/arsenal/front.svg",
  26687. extra: 2357 / 2157,
  26688. bottom: 93 / 2458
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(14, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(6, "feet"),
  26705. weight: math.unit(150, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/adira/front.svg",
  26709. extra: 1078 / 1029,
  26710. bottom: 87 / 1166
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Micro",
  26717. height: math.unit(4, "inches"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(50, "feet")
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(16, "feet"),
  26731. weight: math.unit(1000, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/grim/front.svg",
  26735. extra: 622 / 614,
  26736. bottom: 18.1 / 642
  26737. }
  26738. },
  26739. back: {
  26740. height: math.unit(16, "feet"),
  26741. weight: math.unit(1000, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/grim/back.svg",
  26745. extra: 610.6 / 602,
  26746. bottom: 40.8 / 652
  26747. }
  26748. },
  26749. hunched: {
  26750. height: math.unit(9.75, "feet"),
  26751. weight: math.unit(1000, "lb"),
  26752. name: "Hunched",
  26753. image: {
  26754. source: "./media/characters/grim/hunched.svg",
  26755. extra: 304 / 297,
  26756. bottom: 35.4 / 394
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(16, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(2.3, "meters"),
  26773. weight: math.unit(300, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/sinja/front-sfw.svg",
  26777. extra: 1393 / 1294,
  26778. bottom: 70 / 1463
  26779. }
  26780. },
  26781. frontNsfw: {
  26782. height: math.unit(2.3, "meters"),
  26783. weight: math.unit(300, "lb"),
  26784. name: "Front (NSFW)",
  26785. image: {
  26786. source: "./media/characters/sinja/front-nsfw.svg",
  26787. extra: 1393 / 1294,
  26788. bottom: 70 / 1463
  26789. }
  26790. },
  26791. back: {
  26792. height: math.unit(2.3, "meters"),
  26793. weight: math.unit(300, "lb"),
  26794. name: "Back",
  26795. image: {
  26796. source: "./media/characters/sinja/back.svg",
  26797. extra: 1393 / 1294,
  26798. bottom: 70 / 1463
  26799. }
  26800. },
  26801. head: {
  26802. height: math.unit(1.771, "feet"),
  26803. name: "Head",
  26804. image: {
  26805. source: "./media/characters/sinja/head.svg"
  26806. }
  26807. },
  26808. slit: {
  26809. height: math.unit(0.8, "feet"),
  26810. name: "Slit",
  26811. image: {
  26812. source: "./media/characters/sinja/slit.svg"
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(2.3, "meters")
  26820. },
  26821. {
  26822. name: "Macro",
  26823. height: math.unit(91, "meters"),
  26824. default: true
  26825. },
  26826. {
  26827. name: "Megamacro",
  26828. height: math.unit(91440, "meters")
  26829. },
  26830. {
  26831. name: "Gigamacro",
  26832. height: math.unit(60960000, "meters")
  26833. },
  26834. {
  26835. name: "Teramacro",
  26836. height: math.unit(9144000000, "meters")
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(1.7, "meters"),
  26845. weight: math.unit(130, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/kyu/front.svg",
  26849. extra: 415 / 395,
  26850. bottom: 5 / 420
  26851. }
  26852. },
  26853. head: {
  26854. height: math.unit(1.75, "feet"),
  26855. name: "Head",
  26856. image: {
  26857. source: "./media/characters/kyu/head.svg"
  26858. }
  26859. },
  26860. foot: {
  26861. height: math.unit(0.81, "feet"),
  26862. name: "Foot",
  26863. image: {
  26864. source: "./media/characters/kyu/foot.svg"
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Normal",
  26871. height: math.unit(1.7, "meters")
  26872. },
  26873. {
  26874. name: "Macro",
  26875. height: math.unit(131, "feet"),
  26876. default: true
  26877. },
  26878. {
  26879. name: "Megamacro",
  26880. height: math.unit(91440, "meters")
  26881. },
  26882. {
  26883. name: "Gigamacro",
  26884. height: math.unit(60960000, "meters")
  26885. },
  26886. {
  26887. name: "Teramacro",
  26888. height: math.unit(9144000000, "meters")
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(7 + 1 / 12, "feet"),
  26897. weight: math.unit(250, "lb"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/joey/front.svg",
  26901. extra: 1791 / 1537,
  26902. bottom: 28 / 1816
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Micro",
  26909. height: math.unit(3, "inches")
  26910. },
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(7 + 1 / 12, "feet"),
  26914. default: true
  26915. },
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26920. {
  26921. front: {
  26922. height: math.unit(165, "cm"),
  26923. weight: math.unit(140, "lb"),
  26924. name: "Front",
  26925. image: {
  26926. source: "./media/characters/sam-evans/front.svg",
  26927. extra: 3417 / 3230,
  26928. bottom: 41.3 / 3417
  26929. }
  26930. },
  26931. frontSixTails: {
  26932. height: math.unit(165, "cm"),
  26933. weight: math.unit(140, "lb"),
  26934. name: "Front-six-tails",
  26935. image: {
  26936. source: "./media/characters/sam-evans/front-six-tails.svg",
  26937. extra: 3417 / 3230,
  26938. bottom: 41.3 / 3417
  26939. }
  26940. },
  26941. back: {
  26942. height: math.unit(165, "cm"),
  26943. weight: math.unit(140, "lb"),
  26944. name: "Back",
  26945. image: {
  26946. source: "./media/characters/sam-evans/back.svg",
  26947. extra: 3227 / 3032,
  26948. bottom: 6.8 / 3234
  26949. }
  26950. },
  26951. face: {
  26952. height: math.unit(0.68, "feet"),
  26953. name: "Face",
  26954. image: {
  26955. source: "./media/characters/sam-evans/face.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(165, "cm"),
  26963. default: true
  26964. },
  26965. {
  26966. name: "Macro",
  26967. height: math.unit(100, "meters")
  26968. },
  26969. {
  26970. name: "Macro+",
  26971. height: math.unit(800, "meters")
  26972. },
  26973. {
  26974. name: "Macro++",
  26975. height: math.unit(3, "km")
  26976. },
  26977. {
  26978. name: "Macro+++",
  26979. height: math.unit(30, "km")
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(10, "feet"),
  26988. weight: math.unit(750, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/juliet-a/front.svg",
  26992. extra: 1766 / 1720,
  26993. bottom: 43 / 1809
  26994. }
  26995. },
  26996. back: {
  26997. height: math.unit(10, "feet"),
  26998. weight: math.unit(750, "lb"),
  26999. name: "Back",
  27000. image: {
  27001. source: "./media/characters/juliet-a/back.svg",
  27002. extra: 1781 / 1734,
  27003. bottom: 35 / 1810,
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(10, "feet"),
  27011. default: true
  27012. },
  27013. {
  27014. name: "Dragon Form",
  27015. height: math.unit(250, "feet")
  27016. },
  27017. {
  27018. name: "Macro",
  27019. height: math.unit(1000, "feet")
  27020. },
  27021. {
  27022. name: "Megamacro",
  27023. height: math.unit(10000, "feet")
  27024. }
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27029. {
  27030. regular: {
  27031. height: math.unit(7 + 3 / 12, "feet"),
  27032. weight: math.unit(260, "lb"),
  27033. name: "Regular",
  27034. image: {
  27035. source: "./media/characters/wild/regular.svg",
  27036. extra: 97.45 / 92,
  27037. bottom: 6.8 / 104.3
  27038. }
  27039. },
  27040. biggums: {
  27041. height: math.unit(8 + 6 / 12, "feet"),
  27042. weight: math.unit(425, "lb"),
  27043. name: "Biggums",
  27044. image: {
  27045. source: "./media/characters/wild/biggums.svg",
  27046. extra: 97.45 / 92,
  27047. bottom: 7.5 / 132.34
  27048. }
  27049. },
  27050. mawRegular: {
  27051. height: math.unit(1.24, "feet"),
  27052. name: "Maw (Regular)",
  27053. image: {
  27054. source: "./media/characters/wild/maw.svg"
  27055. }
  27056. },
  27057. mawBiggums: {
  27058. height: math.unit(1.47, "feet"),
  27059. name: "Maw (Biggums)",
  27060. image: {
  27061. source: "./media/characters/wild/maw.svg"
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7 + 3 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27075. {
  27076. front: {
  27077. height: math.unit(2.5, "meters"),
  27078. weight: math.unit(200, "kg"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/vidar/front.svg",
  27082. extra: 2994 / 2795,
  27083. bottom: 56 / 3061
  27084. }
  27085. },
  27086. back: {
  27087. height: math.unit(2.5, "meters"),
  27088. weight: math.unit(200, "kg"),
  27089. name: "Back",
  27090. image: {
  27091. source: "./media/characters/vidar/back.svg",
  27092. extra: 3131 / 2928,
  27093. bottom: 13.5 / 3141.5
  27094. }
  27095. },
  27096. feral: {
  27097. height: math.unit(2.5, "meters"),
  27098. weight: math.unit(2000, "kg"),
  27099. name: "Feral",
  27100. image: {
  27101. source: "./media/characters/vidar/feral.svg",
  27102. extra: 2790 / 1765,
  27103. bottom: 6 / 2796
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(2.5, "meters"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Macro",
  27115. height: math.unit(100, "meters")
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27121. {
  27122. front: {
  27123. height: math.unit(5 + 9 / 12, "feet"),
  27124. weight: math.unit(120, "lb"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/ash/front.svg",
  27128. extra: 2189 / 1961,
  27129. bottom: 5.2 / 2194
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(5 + 9 / 12, "feet"),
  27137. default: true
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(9, "feet"),
  27146. weight: math.unit(10000, "lb"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/gygabite/front.svg",
  27150. bottom: 31.7 / 537.8,
  27151. extra: 505 / 370
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(9, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(12, "feet"),
  27168. weight: math.unit(35000, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/p0tat0/front.svg",
  27172. extra: 1065 / 921,
  27173. bottom: 55.7 / 1121.25
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(12, "feet"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27187. {
  27188. side: {
  27189. height: math.unit(6.5, "feet"),
  27190. weight: math.unit(800, "lb"),
  27191. name: "Side",
  27192. image: {
  27193. source: "./media/characters/dusk/side.svg",
  27194. extra: 615 / 373,
  27195. bottom: 53 / 664
  27196. }
  27197. },
  27198. sitting: {
  27199. height: math.unit(7, "feet"),
  27200. weight: math.unit(800, "lb"),
  27201. name: "Sitting",
  27202. image: {
  27203. source: "./media/characters/dusk/sitting.svg",
  27204. extra: 753 / 425,
  27205. bottom: 33 / 774
  27206. }
  27207. },
  27208. head: {
  27209. height: math.unit(6.1, "feet"),
  27210. name: "Head",
  27211. image: {
  27212. source: "./media/characters/dusk/head.svg"
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(7, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(15, "feet"),
  27229. weight: math.unit(7000, "lb"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/jay-direwolf/front.svg",
  27233. extra: 1810 / 1732,
  27234. bottom: 66 / 1892
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Normal",
  27241. height: math.unit(15, "feet"),
  27242. default: true
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(4 + 9 / 12, "feet"),
  27251. weight: math.unit(130, "lb"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/anchovie/front.svg",
  27255. extra: 382 / 350,
  27256. bottom: 25 / 409
  27257. }
  27258. },
  27259. back: {
  27260. height: math.unit(4 + 9 / 12, "feet"),
  27261. weight: math.unit(130, "lb"),
  27262. name: "Back",
  27263. image: {
  27264. source: "./media/characters/anchovie/back.svg",
  27265. extra: 385 / 352,
  27266. bottom: 16.6 / 402
  27267. }
  27268. },
  27269. frontDressed: {
  27270. height: math.unit(4 + 9 / 12, "feet"),
  27271. weight: math.unit(130, "lb"),
  27272. name: "Front (Dressed)",
  27273. image: {
  27274. source: "./media/characters/anchovie/front-dressed.svg",
  27275. extra: 382 / 350,
  27276. bottom: 25 / 409
  27277. }
  27278. },
  27279. backDressed: {
  27280. height: math.unit(4 + 9 / 12, "feet"),
  27281. weight: math.unit(130, "lb"),
  27282. name: "Back (Dressed)",
  27283. image: {
  27284. source: "./media/characters/anchovie/back-dressed.svg",
  27285. extra: 385 / 352,
  27286. bottom: 16.6 / 402
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Micro",
  27293. height: math.unit(6.4, "inches")
  27294. },
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(4 + 9 / 12, "feet"),
  27298. default: true
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(2, "meters"),
  27307. weight: math.unit(180, "lb"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/acidrenamon/front.svg",
  27311. extra: 987 / 890,
  27312. bottom: 22.8 / 1009
  27313. }
  27314. },
  27315. back: {
  27316. height: math.unit(2, "meters"),
  27317. weight: math.unit(180, "lb"),
  27318. name: "Back",
  27319. image: {
  27320. source: "./media/characters/acidrenamon/back.svg",
  27321. extra: 983 / 891,
  27322. bottom: 8.4 / 992
  27323. }
  27324. },
  27325. head: {
  27326. height: math.unit(1.92, "feet"),
  27327. name: "Head",
  27328. image: {
  27329. source: "./media/characters/acidrenamon/head.svg"
  27330. }
  27331. },
  27332. rump: {
  27333. height: math.unit(1.72, "feet"),
  27334. name: "Rump",
  27335. image: {
  27336. source: "./media/characters/acidrenamon/rump.svg"
  27337. }
  27338. },
  27339. tail: {
  27340. height: math.unit(4.2, "feet"),
  27341. name: "Tail",
  27342. image: {
  27343. source: "./media/characters/acidrenamon/tail.svg"
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Normal",
  27350. height: math.unit(2, "meters"),
  27351. default: true
  27352. },
  27353. {
  27354. name: "Minimacro",
  27355. height: math.unit(7, "meters")
  27356. },
  27357. {
  27358. name: "Macro",
  27359. height: math.unit(200, "meters")
  27360. },
  27361. {
  27362. name: "Gigamacro",
  27363. height: math.unit(0.2, "earths")
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(6, "feet"),
  27372. weight: math.unit(150, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/kenzie-lee/front.svg",
  27376. extra: 1525 / 1465,
  27377. bottom: 45 / 1570
  27378. }
  27379. },
  27380. side: {
  27381. height: math.unit(6, "feet"),
  27382. weight: math.unit(150, "lb"),
  27383. name: "Side",
  27384. image: {
  27385. source: "./media/characters/kenzie-lee/side.svg",
  27386. extra: 5505 / 5383,
  27387. bottom: 60 / 5573
  27388. }
  27389. },
  27390. paw: {
  27391. height: math.unit(0.57, "feet"),
  27392. name: "Paw",
  27393. image: {
  27394. source: "./media/characters/kenzie-lee/paw.svg"
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(152, "feet"),
  27402. default: true
  27403. },
  27404. {
  27405. name: "Megamacro",
  27406. height: math.unit(7, "miles")
  27407. },
  27408. {
  27409. name: "Gigamacro",
  27410. height: math.unit(8000, "miles")
  27411. },
  27412. ]
  27413. ))
  27414. characterMakers.push(() => makeCharacter(
  27415. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27416. {
  27417. side: {
  27418. height: math.unit(6, "feet"),
  27419. weight: math.unit(150, "lb"),
  27420. name: "Side",
  27421. image: {
  27422. source: "./media/characters/withers/side.svg",
  27423. extra: 1830 / 1728,
  27424. bottom: 96 / 1927
  27425. }
  27426. },
  27427. front: {
  27428. height: math.unit(6, "feet"),
  27429. weight: math.unit(150, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/withers/front.svg",
  27433. extra: 1514 / 1438,
  27434. bottom: 118 / 1632
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Macro",
  27441. height: math.unit(168, "feet"),
  27442. default: true
  27443. },
  27444. {
  27445. name: "Megamacro",
  27446. height: math.unit(15, "miles")
  27447. }
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(6 + 7 / 12, "feet"),
  27455. weight: math.unit(250, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/nemoskii/front.svg",
  27459. extra: 2270 / 1734,
  27460. bottom: 86 / 2354
  27461. }
  27462. },
  27463. back: {
  27464. height: math.unit(6 + 7 / 12, "feet"),
  27465. weight: math.unit(250, "lb"),
  27466. name: "Back",
  27467. image: {
  27468. source: "./media/characters/nemoskii/back.svg",
  27469. extra: 1845 / 1788,
  27470. bottom: 10.5 / 1852
  27471. }
  27472. },
  27473. head: {
  27474. height: math.unit(1.31, "feet"),
  27475. name: "Head",
  27476. image: {
  27477. source: "./media/characters/nemoskii/head.svg"
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Micro",
  27484. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27485. },
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(6 + 7 / 12, "feet"),
  27489. default: true
  27490. },
  27491. {
  27492. name: "Macro",
  27493. height: math.unit((6 + 7 / 12) * 150, "feet")
  27494. },
  27495. {
  27496. name: "Macro+",
  27497. height: math.unit((6 + 7 / 12) * 500, "feet")
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(1, "mile"),
  27510. weight: math.unit(265261.9, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/shui/front.svg",
  27514. extra: 1633 / 1564,
  27515. bottom: 91.5 / 1726
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(1, "mile"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27529. {
  27530. front: {
  27531. height: math.unit(12 + 6 / 12, "feet"),
  27532. weight: math.unit(1342, "lb"),
  27533. name: "Front",
  27534. image: {
  27535. source: "./media/characters/arokh-takakura/front.svg",
  27536. extra: 1089 / 1043,
  27537. bottom: 77.4 / 1176.7
  27538. }
  27539. },
  27540. back: {
  27541. height: math.unit(12 + 6 / 12, "feet"),
  27542. weight: math.unit(1342, "lb"),
  27543. name: "Back",
  27544. image: {
  27545. source: "./media/characters/arokh-takakura/back.svg",
  27546. extra: 1046 / 1019,
  27547. bottom: 102 / 1150
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Big",
  27554. height: math.unit(12 + 6 / 12, "feet"),
  27555. default: true
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27561. {
  27562. front: {
  27563. height: math.unit(5 + 6 / 12, "feet"),
  27564. weight: math.unit(150, "lb"),
  27565. name: "Front",
  27566. image: {
  27567. source: "./media/characters/theo/front.svg",
  27568. extra: 1184 / 1131,
  27569. bottom: 7.4 / 1191
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Micro",
  27576. height: math.unit(5, "inches")
  27577. },
  27578. {
  27579. name: "Normal",
  27580. height: math.unit(5 + 6 / 12, "feet"),
  27581. default: true
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(5 + 9 / 12, "feet"),
  27590. weight: math.unit(130, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/cecelia-swift/front.svg",
  27594. extra: 502 / 484,
  27595. bottom: 23 / 523
  27596. }
  27597. },
  27598. back: {
  27599. height: math.unit(5 + 9 / 12, "feet"),
  27600. weight: math.unit(130, "lb"),
  27601. name: "Back",
  27602. image: {
  27603. source: "./media/characters/cecelia-swift/back.svg",
  27604. extra: 499 / 485,
  27605. bottom: 12 / 511
  27606. }
  27607. },
  27608. head: {
  27609. height: math.unit(0.90, "feet"),
  27610. name: "Head",
  27611. image: {
  27612. source: "./media/characters/cecelia-swift/head.svg"
  27613. }
  27614. },
  27615. rump: {
  27616. height: math.unit(1.75, "feet"),
  27617. name: "Rump",
  27618. image: {
  27619. source: "./media/characters/cecelia-swift/rump.svg"
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(5 + 9 / 12, "feet"),
  27627. default: true
  27628. },
  27629. {
  27630. name: "Big",
  27631. height: math.unit(50, "feet")
  27632. },
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(100, "feet")
  27636. },
  27637. {
  27638. name: "Macro+",
  27639. height: math.unit(500, "feet")
  27640. },
  27641. {
  27642. name: "Macro++",
  27643. height: math.unit(1000, "feet")
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(6, "feet"),
  27652. weight: math.unit(150, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/kaunan/front.svg",
  27656. extra: 2890 / 2523,
  27657. bottom: 49 / 2939
  27658. }
  27659. },
  27660. },
  27661. [
  27662. {
  27663. name: "Macro",
  27664. height: math.unit(150, "feet"),
  27665. default: true
  27666. },
  27667. ]
  27668. ))
  27669. characterMakers.push(() => makeCharacter(
  27670. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27671. {
  27672. front: {
  27673. height: math.unit(175, "cm"),
  27674. weight: math.unit(60, "kg"),
  27675. name: "Front",
  27676. image: {
  27677. source: "./media/characters/fei/front.svg",
  27678. extra: 1873/1723,
  27679. bottom: 53/1926
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Mortal",
  27686. height: math.unit(175, "cm")
  27687. },
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(3500, "m"),
  27691. default: true
  27692. },
  27693. {
  27694. name: "Stroll",
  27695. height: math.unit(17.5, "km")
  27696. },
  27697. {
  27698. name: "Showoff",
  27699. height: math.unit(175, "km")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(7, "feet"),
  27708. weight: math.unit(1000, "kg"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/edrax/front.svg",
  27712. extra: 2838 / 2550,
  27713. bottom: 130 / 2968
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Small",
  27720. height: math.unit(7, "feet")
  27721. },
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(1500, "meters")
  27725. },
  27726. {
  27727. name: "Mega",
  27728. height: math.unit(12000000, "km"),
  27729. default: true
  27730. },
  27731. {
  27732. name: "Megamacro",
  27733. height: math.unit(10600000, "lightyears")
  27734. },
  27735. {
  27736. name: "Hypermacro",
  27737. height: math.unit(256, "yottameters")
  27738. },
  27739. ]
  27740. ))
  27741. characterMakers.push(() => makeCharacter(
  27742. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27743. {
  27744. front: {
  27745. height: math.unit(10, "feet"),
  27746. weight: math.unit(750, "lb"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/clove/front.svg",
  27750. extra: 2031 / 1860,
  27751. bottom: 47.8 / 2080
  27752. }
  27753. },
  27754. back: {
  27755. height: math.unit(10, "feet"),
  27756. weight: math.unit(750, "lb"),
  27757. name: "Back",
  27758. image: {
  27759. source: "./media/characters/clove/back.svg",
  27760. extra: 2025 / 1859,
  27761. bottom: 46 / 2071
  27762. }
  27763. },
  27764. },
  27765. [
  27766. {
  27767. name: "Normal",
  27768. height: math.unit(10, "feet"),
  27769. default: true
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(4, "feet"),
  27778. weight: math.unit(50, "lb"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/alex-rabbit/front.svg",
  27782. extra: 507 / 458,
  27783. bottom: 18.5 / 527
  27784. }
  27785. },
  27786. back: {
  27787. height: math.unit(4, "feet"),
  27788. weight: math.unit(50, "lb"),
  27789. name: "Back",
  27790. image: {
  27791. source: "./media/characters/alex-rabbit/back.svg",
  27792. extra: 502 / 460,
  27793. bottom: 18.9 / 521
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(4, "feet"),
  27801. default: true
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(1 + 3 / 12, "feet"),
  27810. weight: math.unit(80, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/zander-rose/front.svg",
  27814. extra: 916 / 797,
  27815. bottom: 17 / 933
  27816. }
  27817. },
  27818. back: {
  27819. height: math.unit(1 + 3 / 12, "feet"),
  27820. weight: math.unit(80, "lb"),
  27821. name: "Back",
  27822. image: {
  27823. source: "./media/characters/zander-rose/back.svg",
  27824. extra: 903 / 779,
  27825. bottom: 31 / 934
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(1 + 3 / 12, "feet"),
  27833. default: true
  27834. },
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27839. {
  27840. anthro: {
  27841. height: math.unit(6, "feet"),
  27842. weight: math.unit(150, "lb"),
  27843. name: "Anthro",
  27844. image: {
  27845. source: "./media/characters/razz/anthro.svg",
  27846. extra: 1437 / 1343,
  27847. bottom: 48 / 1485
  27848. }
  27849. },
  27850. feral: {
  27851. height: math.unit(6, "feet"),
  27852. weight: math.unit(150, "lb"),
  27853. name: "Feral",
  27854. image: {
  27855. source: "./media/characters/razz/feral.svg",
  27856. extra: 2569 / 1385,
  27857. bottom: 95 / 2664
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(6, "feet"),
  27865. default: true
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(9 + 4 / 12, "feet"),
  27874. weight: math.unit(500, "lb"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/morrigan/front.svg",
  27878. extra: 2707 / 2579,
  27879. bottom: 156 / 2863
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(9 + 4 / 12, "feet"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(5, "stories"),
  27896. weight: math.unit(4000, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/jenene/front.svg",
  27900. extra: 1780 / 1710,
  27901. bottom: 57 / 1837
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(5, "stories"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27915. {
  27916. taurSfw: {
  27917. height: math.unit(10, "meters"),
  27918. weight: math.unit(17500, "kg"),
  27919. name: "Taur",
  27920. image: {
  27921. source: "./media/characters/faey/taur-sfw.svg",
  27922. extra: 1200 / 968,
  27923. bottom: 41 / 1241
  27924. }
  27925. },
  27926. chestmaw: {
  27927. height: math.unit(2.01, "meters"),
  27928. name: "Chestmaw",
  27929. image: {
  27930. source: "./media/characters/faey/chestmaw.svg"
  27931. }
  27932. },
  27933. foot: {
  27934. height: math.unit(2.43, "meters"),
  27935. name: "Foot",
  27936. image: {
  27937. source: "./media/characters/faey/foot.svg"
  27938. }
  27939. },
  27940. jaws: {
  27941. height: math.unit(1.66, "meters"),
  27942. name: "Jaws",
  27943. image: {
  27944. source: "./media/characters/faey/jaws.svg"
  27945. }
  27946. },
  27947. tongues: {
  27948. height: math.unit(2.01, "meters"),
  27949. name: "Tongues",
  27950. image: {
  27951. source: "./media/characters/faey/tongues.svg"
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Small",
  27958. height: math.unit(10, "meters"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Big",
  27963. height: math.unit(500000, "km")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(7, "feet"),
  27972. weight: math.unit(275, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/roku/front.svg",
  27976. extra: 903 / 878,
  27977. bottom: 37 / 940
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(7, "feet"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Macro",
  27989. height: math.unit(500, "feet")
  27990. },
  27991. {
  27992. name: "Megamacro",
  27993. height: math.unit(200, "miles")
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(6 + 2 / 12, "feet"),
  28002. weight: math.unit(150, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/lira/front.svg",
  28006. extra: 1727 / 1605,
  28007. bottom: 26 / 1753
  28008. }
  28009. },
  28010. back: {
  28011. height: math.unit(6 + 2 / 12, "feet"),
  28012. weight: math.unit(150, "lb"),
  28013. name: "Back",
  28014. image: {
  28015. source: "./media/characters/lira/back.svg",
  28016. extra: 1713/1621,
  28017. bottom: 20/1733
  28018. }
  28019. },
  28020. hand: {
  28021. height: math.unit(0.75, "feet"),
  28022. name: "Hand",
  28023. image: {
  28024. source: "./media/characters/lira/hand.svg"
  28025. }
  28026. },
  28027. maw: {
  28028. height: math.unit(0.65, "feet"),
  28029. name: "Maw",
  28030. image: {
  28031. source: "./media/characters/lira/maw.svg"
  28032. }
  28033. },
  28034. pawDigi: {
  28035. height: math.unit(1.6, "feet"),
  28036. name: "Paw Digi",
  28037. image: {
  28038. source: "./media/characters/lira/paw-digi.svg"
  28039. }
  28040. },
  28041. pawPlanti: {
  28042. height: math.unit(1.4, "feet"),
  28043. name: "Paw Planti",
  28044. image: {
  28045. source: "./media/characters/lira/paw-planti.svg"
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(6 + 2 / 12, "feet"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Macro",
  28057. height: math.unit(100, "feet")
  28058. },
  28059. {
  28060. name: "Macro²",
  28061. height: math.unit(1600, "feet")
  28062. },
  28063. {
  28064. name: "Planetary",
  28065. height: math.unit(20, "earths")
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(6, "feet"),
  28074. weight: math.unit(150, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/hadjet/front.svg",
  28078. extra: 1480 / 1346,
  28079. bottom: 26 / 1506
  28080. }
  28081. },
  28082. frontNsfw: {
  28083. height: math.unit(6, "feet"),
  28084. weight: math.unit(150, "lb"),
  28085. name: "Front (NSFW)",
  28086. image: {
  28087. source: "./media/characters/hadjet/front-nsfw.svg",
  28088. extra: 1440 / 1358,
  28089. bottom: 52 / 1492
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Macro",
  28096. height: math.unit(10, "stories"),
  28097. default: true
  28098. },
  28099. {
  28100. name: "Megamacro",
  28101. height: math.unit(1.5, "miles")
  28102. },
  28103. {
  28104. name: "Megamacro+",
  28105. height: math.unit(5, "miles")
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28111. {
  28112. side: {
  28113. height: math.unit(106, "feet"),
  28114. weight: math.unit(500, "tonnes"),
  28115. name: "Side",
  28116. image: {
  28117. source: "./media/characters/kodran/side.svg",
  28118. extra: 553 / 480,
  28119. bottom: 33 / 586
  28120. }
  28121. },
  28122. front: {
  28123. height: math.unit(132, "feet"),
  28124. weight: math.unit(500, "tonnes"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/kodran/front.svg",
  28128. extra: 667 / 643,
  28129. bottom: 42 / 709
  28130. }
  28131. },
  28132. flying: {
  28133. height: math.unit(350, "feet"),
  28134. weight: math.unit(500, "tonnes"),
  28135. name: "Flying",
  28136. image: {
  28137. source: "./media/characters/kodran/flying.svg"
  28138. }
  28139. },
  28140. foot: {
  28141. height: math.unit(33, "feet"),
  28142. name: "Foot",
  28143. image: {
  28144. source: "./media/characters/kodran/foot.svg"
  28145. }
  28146. },
  28147. footFront: {
  28148. height: math.unit(19, "feet"),
  28149. name: "Foot (Front)",
  28150. image: {
  28151. source: "./media/characters/kodran/foot-front.svg",
  28152. extra: 261 / 261,
  28153. bottom: 91 / 352
  28154. }
  28155. },
  28156. headFront: {
  28157. height: math.unit(53, "feet"),
  28158. name: "Head (Front)",
  28159. image: {
  28160. source: "./media/characters/kodran/head-front.svg"
  28161. }
  28162. },
  28163. headSide: {
  28164. height: math.unit(65, "feet"),
  28165. name: "Head (Side)",
  28166. image: {
  28167. source: "./media/characters/kodran/head-side.svg"
  28168. }
  28169. },
  28170. throat: {
  28171. height: math.unit(79, "feet"),
  28172. name: "Throat",
  28173. image: {
  28174. source: "./media/characters/kodran/throat.svg"
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Large",
  28181. height: math.unit(106, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28188. {
  28189. side: {
  28190. height: math.unit(11, "feet"),
  28191. weight: math.unit(150, "lb"),
  28192. name: "Side",
  28193. image: {
  28194. source: "./media/characters/pyxaron/side.svg",
  28195. extra: 305 / 195,
  28196. bottom: 17 / 322
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(11, "feet"),
  28204. default: true
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(6, "feet"),
  28213. weight: math.unit(150, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/meep/front.svg",
  28217. extra: 88 / 80,
  28218. bottom: 6 / 94
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Fun Sized",
  28225. height: math.unit(2, "inches"),
  28226. default: true
  28227. },
  28228. {
  28229. name: "Friend Sized",
  28230. height: math.unit(8, "inches")
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(15, "feet"),
  28239. weight: math.unit(2500, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/holly-rabbit/front.svg",
  28243. extra: 1433 / 1233,
  28244. bottom: 125 / 1558
  28245. }
  28246. },
  28247. dick: {
  28248. height: math.unit(4.6, "feet"),
  28249. name: "Dick",
  28250. image: {
  28251. source: "./media/characters/holly-rabbit/dick.svg"
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(15, "feet"),
  28259. default: true
  28260. },
  28261. {
  28262. name: "Macro",
  28263. height: math.unit(250, "feet")
  28264. },
  28265. {
  28266. name: "Macro+",
  28267. height: math.unit(2500, "feet")
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(3.02, "meters"),
  28276. weight: math.unit(500, "kg"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/drena/front.svg",
  28280. extra: 282 / 243,
  28281. bottom: 8 / 290
  28282. }
  28283. },
  28284. side: {
  28285. height: math.unit(3.02, "meters"),
  28286. weight: math.unit(500, "kg"),
  28287. name: "Side",
  28288. image: {
  28289. source: "./media/characters/drena/side.svg",
  28290. extra: 280 / 245,
  28291. bottom: 10 / 290
  28292. }
  28293. },
  28294. back: {
  28295. height: math.unit(3.02, "meters"),
  28296. weight: math.unit(500, "kg"),
  28297. name: "Back",
  28298. image: {
  28299. source: "./media/characters/drena/back.svg",
  28300. extra: 278 / 243,
  28301. bottom: 2 / 280
  28302. }
  28303. },
  28304. foot: {
  28305. height: math.unit(0.75, "meters"),
  28306. name: "Foot",
  28307. image: {
  28308. source: "./media/characters/drena/foot.svg"
  28309. }
  28310. },
  28311. maw: {
  28312. height: math.unit(0.82, "meters"),
  28313. name: "Maw",
  28314. image: {
  28315. source: "./media/characters/drena/maw.svg"
  28316. }
  28317. },
  28318. rump: {
  28319. height: math.unit(0.93, "meters"),
  28320. name: "Rump",
  28321. image: {
  28322. source: "./media/characters/drena/rump.svg"
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Normal",
  28329. height: math.unit(3.02, "meters"),
  28330. default: true
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28336. {
  28337. front: {
  28338. height: math.unit(6 + 4 / 12, "feet"),
  28339. weight: math.unit(250, "lb"),
  28340. name: "Front",
  28341. image: {
  28342. source: "./media/characters/remmyzilla/front.svg",
  28343. extra: 4033 / 3588,
  28344. bottom: 123 / 4156
  28345. }
  28346. },
  28347. back: {
  28348. height: math.unit(6 + 4 / 12, "feet"),
  28349. weight: math.unit(250, "lb"),
  28350. name: "Back",
  28351. image: {
  28352. source: "./media/characters/remmyzilla/back.svg",
  28353. extra: 2687 / 2555,
  28354. bottom: 48 / 2735
  28355. }
  28356. },
  28357. paw: {
  28358. height: math.unit(1.73, "feet"),
  28359. name: "Paw",
  28360. image: {
  28361. source: "./media/characters/remmyzilla/paw.svg"
  28362. }
  28363. },
  28364. maw: {
  28365. height: math.unit(1.73, "feet"),
  28366. name: "Maw",
  28367. image: {
  28368. source: "./media/characters/remmyzilla/maw.svg"
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(6 + 4 / 12, "feet")
  28376. },
  28377. {
  28378. name: "Minimacro",
  28379. height: math.unit(12 + 8 / 12, "feet")
  28380. },
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(640, "feet"),
  28384. default: true
  28385. },
  28386. {
  28387. name: "Megamacro",
  28388. height: math.unit(6400, "feet")
  28389. },
  28390. {
  28391. name: "Gigamacro",
  28392. height: math.unit(64000, "miles")
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(2.5, "meters"),
  28401. weight: math.unit(300, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/lawrence/front.svg",
  28405. extra: 357 / 335,
  28406. bottom: 30 / 387
  28407. }
  28408. },
  28409. back: {
  28410. height: math.unit(2.5, "meters"),
  28411. weight: math.unit(300, "lb"),
  28412. name: "Back",
  28413. image: {
  28414. source: "./media/characters/lawrence/back.svg",
  28415. extra: 357 / 338,
  28416. bottom: 16 / 373
  28417. }
  28418. },
  28419. head: {
  28420. height: math.unit(0.9, "meter"),
  28421. name: "Head",
  28422. image: {
  28423. source: "./media/characters/lawrence/head.svg"
  28424. }
  28425. },
  28426. maw: {
  28427. height: math.unit(0.7, "meter"),
  28428. name: "Maw",
  28429. image: {
  28430. source: "./media/characters/lawrence/maw.svg"
  28431. }
  28432. },
  28433. footBottom: {
  28434. height: math.unit(0.5, "meter"),
  28435. name: "Foot (Bottom)",
  28436. image: {
  28437. source: "./media/characters/lawrence/foot-bottom.svg"
  28438. }
  28439. },
  28440. footTop: {
  28441. height: math.unit(0.5, "meter"),
  28442. name: "Foot (Top)",
  28443. image: {
  28444. source: "./media/characters/lawrence/foot-top.svg"
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(2.5, "meters"),
  28452. default: true
  28453. },
  28454. {
  28455. name: "Macro",
  28456. height: math.unit(95, "meters")
  28457. },
  28458. {
  28459. name: "Megamacro",
  28460. height: math.unit(150, "km")
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28466. {
  28467. front: {
  28468. height: math.unit(4.2, "meters"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/sydney/front.svg",
  28472. extra: 1323 / 1277,
  28473. bottom: 111 / 1434
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(4.2, "meters"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28487. {
  28488. back: {
  28489. height: math.unit(201, "feet"),
  28490. name: "Back",
  28491. image: {
  28492. source: "./media/characters/jessica/back.svg",
  28493. extra: 273 / 259,
  28494. bottom: 7 / 280
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(201, "feet"),
  28502. default: true
  28503. },
  28504. {
  28505. name: "Megamacro",
  28506. height: math.unit(8, "miles")
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28512. {
  28513. side: {
  28514. height: math.unit(320, "cm"),
  28515. name: "Side",
  28516. image: {
  28517. source: "./media/characters/victoria/side.svg",
  28518. extra: 778 / 346,
  28519. bottom: 56 / 834
  28520. }
  28521. },
  28522. maw: {
  28523. height: math.unit(5.9, "feet"),
  28524. name: "Maw",
  28525. image: {
  28526. source: "./media/characters/victoria/maw.svg"
  28527. }
  28528. },
  28529. },
  28530. [
  28531. {
  28532. name: "Normal",
  28533. height: math.unit(320, "cm"),
  28534. default: true
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28540. {
  28541. front: {
  28542. height: math.unit(5 + 6 / 12, "feet"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/cat/front.svg",
  28546. extra: 1449/1295,
  28547. bottom: 34/1483
  28548. }
  28549. },
  28550. back: {
  28551. height: math.unit(5 + 6 / 12, "feet"),
  28552. name: "Back",
  28553. image: {
  28554. source: "./media/characters/cat/back.svg",
  28555. extra: 1466/1301,
  28556. bottom: 19/1485
  28557. }
  28558. },
  28559. taur: {
  28560. height: math.unit(7, "feet"),
  28561. name: "Taur",
  28562. image: {
  28563. source: "./media/characters/cat/taur.svg",
  28564. extra: 1389/1233,
  28565. bottom: 83/1472
  28566. }
  28567. },
  28568. lucarioFront: {
  28569. height: math.unit(4, "feet"),
  28570. name: "Lucario (Front)",
  28571. image: {
  28572. source: "./media/characters/cat/lucario-front.svg",
  28573. extra: 1149/1019,
  28574. bottom: 84/1233
  28575. }
  28576. },
  28577. lucarioBack: {
  28578. height: math.unit(4, "feet"),
  28579. name: "Lucario (Back)",
  28580. image: {
  28581. source: "./media/characters/cat/lucario-back.svg",
  28582. extra: 1190/1059,
  28583. bottom: 33/1223
  28584. }
  28585. },
  28586. megaLucario: {
  28587. height: math.unit(4, "feet"),
  28588. name: "Mega Lucario",
  28589. image: {
  28590. source: "./media/characters/cat/mega-lucario.svg",
  28591. extra: 1515 / 1319,
  28592. bottom: 63 / 1578
  28593. }
  28594. },
  28595. nickit: {
  28596. height: math.unit(2, "feet"),
  28597. name: "Nickit",
  28598. image: {
  28599. source: "./media/characters/cat/nickit.svg",
  28600. extra: 1980 / 1585,
  28601. bottom: 102 / 2082
  28602. }
  28603. },
  28604. lopunnyFront: {
  28605. height: math.unit(5, "feet"),
  28606. name: "Lopunny (Front)",
  28607. image: {
  28608. source: "./media/characters/cat/lopunny-front.svg",
  28609. extra: 1782 / 1469,
  28610. bottom: 38 / 1820
  28611. }
  28612. },
  28613. lopunnyBack: {
  28614. height: math.unit(5, "feet"),
  28615. name: "Lopunny (Back)",
  28616. image: {
  28617. source: "./media/characters/cat/lopunny-back.svg",
  28618. extra: 1660 / 1490,
  28619. bottom: 25 / 1685
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Really small",
  28626. height: math.unit(1, "nm")
  28627. },
  28628. {
  28629. name: "Micro",
  28630. height: math.unit(5, "inches")
  28631. },
  28632. {
  28633. name: "Normal",
  28634. height: math.unit(5 + 6 / 12, "feet"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(50, "feet")
  28640. },
  28641. {
  28642. name: "Macro+",
  28643. height: math.unit(150, "feet")
  28644. },
  28645. {
  28646. name: "Megamacro",
  28647. height: math.unit(100, "miles")
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(63.4, "meters"),
  28656. weight: math.unit(3.28349e+6, "kilograms"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/kirina-violet/front.svg",
  28660. extra: 2812 / 2725,
  28661. bottom: 0 / 2812
  28662. }
  28663. },
  28664. back: {
  28665. height: math.unit(63.4, "meters"),
  28666. weight: math.unit(3.28349e+6, "kilograms"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/kirina-violet/back.svg",
  28670. extra: 2812 / 2725,
  28671. bottom: 0 / 2812
  28672. }
  28673. },
  28674. mouth: {
  28675. height: math.unit(4.35, "meters"),
  28676. name: "Mouth",
  28677. image: {
  28678. source: "./media/characters/kirina-violet/mouth.svg"
  28679. }
  28680. },
  28681. paw: {
  28682. height: math.unit(5.6, "meters"),
  28683. name: "Paw",
  28684. image: {
  28685. source: "./media/characters/kirina-violet/paw.svg"
  28686. }
  28687. },
  28688. tail: {
  28689. height: math.unit(18, "meters"),
  28690. name: "Tail",
  28691. image: {
  28692. source: "./media/characters/kirina-violet/tail.svg"
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Macro",
  28699. height: math.unit(63.4, "meters"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(75, "feet"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/cat-gigachu/front.svg",
  28712. extra: 1239/1027,
  28713. bottom: 32/1271
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(75, "feet"),
  28718. name: "Back",
  28719. image: {
  28720. source: "./media/characters/cat-gigachu/back.svg",
  28721. extra: 1229/1030,
  28722. bottom: 9/1238
  28723. }
  28724. },
  28725. },
  28726. [
  28727. {
  28728. name: "Dynamax",
  28729. height: math.unit(75, "feet"),
  28730. default: true
  28731. },
  28732. ]
  28733. ))
  28734. characterMakers.push(() => makeCharacter(
  28735. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28736. {
  28737. front: {
  28738. height: math.unit(6, "feet"),
  28739. weight: math.unit(150, "lb"),
  28740. name: "Front",
  28741. image: {
  28742. source: "./media/characters/sfaiyan/front.svg",
  28743. extra: 999 / 978,
  28744. bottom: 5 / 1004
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(1.82, "meters")
  28752. },
  28753. {
  28754. name: "Giant",
  28755. height: math.unit(2.27, "km"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(179, "cm"),
  28765. weight: math.unit(100, "kg"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/raunehkeli/front.svg",
  28769. extra: 1934 / 1926,
  28770. bottom: 0 / 1934
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(179, "cm")
  28778. },
  28779. {
  28780. name: "Maximum",
  28781. height: math.unit(575, "meters"),
  28782. default: true
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(6, "feet"),
  28791. weight: math.unit(150, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28795. extra: 2625 / 2518,
  28796. bottom: 60 / 2685
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(6 + 2 / 12, "feet")
  28804. },
  28805. {
  28806. name: "Macro",
  28807. height: math.unit(1180, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(5 + 6 / 12, "feet"),
  28817. weight: math.unit(108, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/lilith-zott/front.svg",
  28821. extra: 2510 / 2238,
  28822. bottom: 100 / 2610
  28823. }
  28824. },
  28825. frontDressed: {
  28826. height: math.unit(5 + 6 / 12, "feet"),
  28827. weight: math.unit(108, "lb"),
  28828. name: "Front (Dressed)",
  28829. image: {
  28830. source: "./media/characters/lilith-zott/front-dressed.svg",
  28831. extra: 2510 / 2238,
  28832. bottom: 100 / 2610
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(5 + 6 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(1030, "feet"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(150, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28857. extra: 2567 / 2435,
  28858. bottom: 39 / 2606
  28859. }
  28860. },
  28861. frontSuper: {
  28862. height: math.unit(6, "feet"),
  28863. name: "Front (Super)",
  28864. image: {
  28865. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28866. extra: 2567 / 2435,
  28867. bottom: 39 / 2606
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(5 + 10 / 12, "feet")
  28875. },
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(1100, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(100, "miles"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/sona/front.svg",
  28891. extra: 2433 / 2201,
  28892. bottom: 53 / 2486
  28893. }
  28894. },
  28895. foot: {
  28896. height: math.unit(16.1, "miles"),
  28897. name: "Foot",
  28898. image: {
  28899. source: "./media/characters/sona/foot.svg"
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Macro",
  28906. height: math.unit(100, "miles"),
  28907. default: true
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Bailey", species: ["wolf"], 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/bailey/front.svg",
  28920. extra: 1778 / 1724,
  28921. bottom: 30 / 1808
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Micro",
  28928. height: math.unit(4, "inches")
  28929. },
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(5 + 5 / 12, "feet"),
  28933. default: true
  28934. },
  28935. {
  28936. name: "Macro",
  28937. height: math.unit(250, "feet")
  28938. },
  28939. {
  28940. name: "Megamacro",
  28941. height: math.unit(100, "miles")
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(5 + 2 / 12, "feet"),
  28950. weight: math.unit(120, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/snaps/front.svg",
  28954. extra: 2370 / 2177,
  28955. bottom: 48 / 2418
  28956. }
  28957. },
  28958. back: {
  28959. height: math.unit(5 + 2 / 12, "feet"),
  28960. weight: math.unit(120, "lb"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/snaps/back.svg",
  28964. extra: 2408 / 2258,
  28965. bottom: 15 / 2423
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Micro",
  28972. height: math.unit(9, "inches")
  28973. },
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(5 + 2 / 12, "feet"),
  28977. default: true
  28978. },
  28979. {
  28980. name: "Mini Macro",
  28981. height: math.unit(10, "feet")
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(1.8, "meters"),
  28990. weight: math.unit(85, "kg"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/azteck/front.svg",
  28994. extra: 2815 / 2625,
  28995. bottom: 89 / 2904
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(1.8, "meters"),
  29000. weight: math.unit(85, "kg"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/azteck/back.svg",
  29004. extra: 2856 / 2648,
  29005. bottom: 85 / 2941
  29006. }
  29007. },
  29008. frontDressed: {
  29009. height: math.unit(1.8, "meters"),
  29010. weight: math.unit(85, "kg"),
  29011. name: "Front (Dressed)",
  29012. image: {
  29013. source: "./media/characters/azteck/front-dressed.svg",
  29014. extra: 2147 / 2003,
  29015. bottom: 68 / 2215
  29016. }
  29017. },
  29018. head: {
  29019. height: math.unit(0.47, "meters"),
  29020. weight: math.unit(85, "kg"),
  29021. name: "Head",
  29022. image: {
  29023. source: "./media/characters/azteck/head.svg"
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Bite sized",
  29030. height: math.unit(16, "cm")
  29031. },
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(1.8, "meters"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(6, "feet"),
  29044. weight: math.unit(150, "lb"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/pidge/front.svg",
  29048. extra: 620 / 588,
  29049. bottom: 9 / 629
  29050. }
  29051. },
  29052. back: {
  29053. height: math.unit(6, "feet"),
  29054. weight: math.unit(150, "lb"),
  29055. name: "Back",
  29056. image: {
  29057. source: "./media/characters/pidge/back.svg",
  29058. extra: 620 / 588,
  29059. bottom: 9 / 629
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Macro",
  29066. height: math.unit(1, "mile"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(6, "feet"),
  29076. weight: math.unit(150, "lb"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/en/front.svg",
  29080. extra: 1697 / 1563,
  29081. bottom: 103 / 1800
  29082. }
  29083. },
  29084. back: {
  29085. height: math.unit(6, "feet"),
  29086. weight: math.unit(150, "lb"),
  29087. name: "Back",
  29088. image: {
  29089. source: "./media/characters/en/back.svg",
  29090. extra: 1700 / 1570,
  29091. bottom: 51 / 1751
  29092. }
  29093. },
  29094. frontDressed: {
  29095. height: math.unit(6, "feet"),
  29096. weight: math.unit(150, "lb"),
  29097. name: "Front (Dressed)",
  29098. image: {
  29099. source: "./media/characters/en/front-dressed.svg",
  29100. extra: 1697 / 1563,
  29101. bottom: 103 / 1800
  29102. }
  29103. },
  29104. backDressed: {
  29105. height: math.unit(6, "feet"),
  29106. weight: math.unit(150, "lb"),
  29107. name: "Back (Dressed)",
  29108. image: {
  29109. source: "./media/characters/en/back-dressed.svg",
  29110. extra: 1700 / 1570,
  29111. bottom: 51 / 1751
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(210, "feet"),
  29119. default: true
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(6, "feet"),
  29128. weight: math.unit(150, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/haze-orris/front.svg",
  29132. extra: 3975 / 3525,
  29133. bottom: 137 / 4112
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Micro",
  29140. height: math.unit(150, "mm"),
  29141. default: true
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(6, "feet"),
  29150. weight: math.unit(150, "lb"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/casselene-yaro/front.svg",
  29154. extra: 4721 / 4541,
  29155. bottom: 82 / 4803
  29156. }
  29157. },
  29158. back: {
  29159. height: math.unit(6, "feet"),
  29160. weight: math.unit(150, "lb"),
  29161. name: "Back",
  29162. image: {
  29163. source: "./media/characters/casselene-yaro/back.svg",
  29164. extra: 4569 / 4377,
  29165. bottom: 69 / 4638
  29166. }
  29167. },
  29168. frontDressed: {
  29169. height: math.unit(6, "feet"),
  29170. weight: math.unit(150, "lb"),
  29171. name: "Front-dressed",
  29172. image: {
  29173. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29174. extra: 4721 / 4541,
  29175. bottom: 82 / 4803
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(190, "feet"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(150, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/myra-rue-delore/front.svg",
  29196. extra: 1340 / 1308,
  29197. bottom: 67 / 1407
  29198. }
  29199. },
  29200. back: {
  29201. height: math.unit(6, "feet"),
  29202. weight: math.unit(150, "lb"),
  29203. name: "Back",
  29204. image: {
  29205. source: "./media/characters/myra-rue-delore/back.svg",
  29206. extra: 1341 / 1310,
  29207. bottom: 40 / 1381
  29208. }
  29209. },
  29210. frontDressed: {
  29211. height: math.unit(6, "feet"),
  29212. weight: math.unit(150, "lb"),
  29213. name: "Front (Dressed)",
  29214. image: {
  29215. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29216. extra: 1340 / 1308,
  29217. bottom: 67 / 1407
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(150, "feet"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(10, "feet"),
  29234. weight: math.unit(15015, "lb"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/fem!plat/front.svg",
  29238. extra: 2799 / 2604,
  29239. bottom: 149 / 2948
  29240. }
  29241. },
  29242. },
  29243. [
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(10, "feet"),
  29247. default: true
  29248. },
  29249. {
  29250. name: "Macro",
  29251. height: math.unit(100, "feet")
  29252. },
  29253. {
  29254. name: "Megamacro",
  29255. height: math.unit(1000, "feet")
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29261. {
  29262. front: {
  29263. height: math.unit(15 + 5 / 12, "feet"),
  29264. weight: math.unit(4600, "lb"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/neapolitan-ananassa/front.svg",
  29268. extra: 2903 / 2736,
  29269. bottom: 0 / 2903
  29270. }
  29271. },
  29272. side: {
  29273. height: math.unit(15 + 5 / 12, "feet"),
  29274. weight: math.unit(4600, "lb"),
  29275. name: "Side",
  29276. image: {
  29277. source: "./media/characters/neapolitan-ananassa/side.svg",
  29278. extra: 2925 / 2719,
  29279. bottom: 0 / 2925
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(15 + 5 / 12, "feet"),
  29284. weight: math.unit(4600, "lb"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/neapolitan-ananassa/back.svg",
  29288. extra: 2903 / 2736,
  29289. bottom: 0 / 2903
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(15 + 5 / 12, "feet"),
  29297. default: true
  29298. },
  29299. {
  29300. name: "Post-Millenium",
  29301. height: math.unit(35 + 5 / 12, "feet")
  29302. },
  29303. {
  29304. name: "Post-Era",
  29305. height: math.unit(450 + 5 / 12, "feet")
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(300, "meters"),
  29314. weight: math.unit(125000, "tonnes"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/pazuzu/front.svg",
  29318. extra: 877 / 794,
  29319. bottom: 47 / 924
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Macro",
  29326. height: math.unit(300, "meters"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29333. {
  29334. side: {
  29335. height: math.unit(10 + 7 / 12, "feet"),
  29336. weight: math.unit(2.5, "tons"),
  29337. name: "Side",
  29338. image: {
  29339. source: "./media/characters/aasha/side.svg",
  29340. extra: 1345 / 1245,
  29341. bottom: 111 / 1456
  29342. }
  29343. },
  29344. back: {
  29345. height: math.unit(10 + 7 / 12, "feet"),
  29346. weight: math.unit(2.5, "tons"),
  29347. name: "Back",
  29348. image: {
  29349. source: "./media/characters/aasha/back.svg",
  29350. extra: 1133 / 1057,
  29351. bottom: 257 / 1390
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(10 + 7 / 12, "feet"),
  29359. default: true
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(6 + 3 / 12, "feet"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/nevan/front.svg",
  29371. extra: 704 / 704,
  29372. bottom: 28 / 732
  29373. }
  29374. },
  29375. back: {
  29376. height: math.unit(6 + 3 / 12, "feet"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/nevan/back.svg",
  29380. extra: 714 / 714,
  29381. bottom: 21 / 735
  29382. }
  29383. },
  29384. frontFlaccid: {
  29385. height: math.unit(6 + 3 / 12, "feet"),
  29386. name: "Front (Flaccid)",
  29387. image: {
  29388. source: "./media/characters/nevan/front-flaccid.svg",
  29389. extra: 704 / 704,
  29390. bottom: 28 / 732
  29391. }
  29392. },
  29393. frontErect: {
  29394. height: math.unit(6 + 3 / 12, "feet"),
  29395. name: "Front (Erect)",
  29396. image: {
  29397. source: "./media/characters/nevan/front-erect.svg",
  29398. extra: 704 / 704,
  29399. bottom: 28 / 732
  29400. }
  29401. },
  29402. backFlaccid: {
  29403. height: math.unit(6 + 3 / 12, "feet"),
  29404. name: "Back (Flaccid)",
  29405. image: {
  29406. source: "./media/characters/nevan/back-flaccid.svg",
  29407. extra: 714 / 714,
  29408. bottom: 21 / 735
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(6 + 3 / 12, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(4, "feet"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/arhan/front.svg",
  29428. extra: 3368 / 3133,
  29429. bottom: 0 / 3368
  29430. }
  29431. },
  29432. side: {
  29433. height: math.unit(4, "feet"),
  29434. name: "Side",
  29435. image: {
  29436. source: "./media/characters/arhan/side.svg",
  29437. extra: 3347 / 3105,
  29438. bottom: 0 / 3347
  29439. }
  29440. },
  29441. tongue: {
  29442. height: math.unit(1.42, "feet"),
  29443. name: "Tongue",
  29444. image: {
  29445. source: "./media/characters/arhan/tongue.svg"
  29446. }
  29447. },
  29448. head: {
  29449. height: math.unit(0.85, "feet"),
  29450. name: "Head",
  29451. image: {
  29452. source: "./media/characters/arhan/head.svg"
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(4, "feet"),
  29460. default: true
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(5 + 7.5 / 12, "feet"),
  29469. weight: math.unit(120, "lb"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/digi-duncan/front.svg",
  29473. extra: 330 / 326,
  29474. bottom: 16 / 346
  29475. }
  29476. },
  29477. side: {
  29478. height: math.unit(5 + 7.5 / 12, "feet"),
  29479. weight: math.unit(120, "lb"),
  29480. name: "Side",
  29481. image: {
  29482. source: "./media/characters/digi-duncan/side.svg",
  29483. extra: 341 / 337,
  29484. bottom: 1 / 342
  29485. }
  29486. },
  29487. back: {
  29488. height: math.unit(5 + 7.5 / 12, "feet"),
  29489. weight: math.unit(120, "lb"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/digi-duncan/back.svg",
  29493. extra: 330 / 326,
  29494. bottom: 12 / 342
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Speck",
  29501. height: math.unit(0.25, "mm")
  29502. },
  29503. {
  29504. name: "Micro",
  29505. height: math.unit(5, "mm")
  29506. },
  29507. {
  29508. name: "Tiny",
  29509. height: math.unit(0.5, "inches"),
  29510. default: true
  29511. },
  29512. {
  29513. name: "Human",
  29514. height: math.unit(5 + 7.5 / 12, "feet")
  29515. },
  29516. {
  29517. name: "Minigiant",
  29518. height: math.unit(8 + 5.25, "feet")
  29519. },
  29520. {
  29521. name: "Giant",
  29522. height: math.unit(2000, "feet")
  29523. },
  29524. {
  29525. name: "Mega",
  29526. height: math.unit(371.1, "miles")
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(2, "meters"),
  29535. weight: math.unit(350, "kg"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29539. extra: 898 / 838,
  29540. bottom: 9 / 907
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Micro",
  29547. height: math.unit(8, "meters")
  29548. },
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(50, "meters"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(500, "meters")
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29562. {
  29563. front: {
  29564. height: math.unit(6 + 6 / 12, "feet"),
  29565. name: "Front",
  29566. image: {
  29567. source: "./media/characters/khardesh/front.svg",
  29568. extra: 888 / 797,
  29569. bottom: 25 / 913
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Normal",
  29576. height: math.unit(6 + 6 / 12, "feet"),
  29577. default: true
  29578. },
  29579. {
  29580. name: "Normal+",
  29581. height: math.unit(4, "meters")
  29582. },
  29583. {
  29584. name: "Macro",
  29585. height: math.unit(50, "meters")
  29586. },
  29587. {
  29588. name: "Macro+",
  29589. height: math.unit(100, "meters")
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(20, "km")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(6, "feet"),
  29602. weight: math.unit(150, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/kosho/front.svg",
  29606. extra: 1847 / 1847,
  29607. bottom: 86 / 1933
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Second-stage micro",
  29614. height: math.unit(0.5, "inches")
  29615. },
  29616. {
  29617. name: "First-stage micro",
  29618. height: math.unit(6, "inches")
  29619. },
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(6, "feet"),
  29623. default: true
  29624. },
  29625. {
  29626. name: "First-stage macro",
  29627. height: math.unit(72, "feet")
  29628. },
  29629. {
  29630. name: "Second-stage macro",
  29631. height: math.unit(864, "feet")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29637. {
  29638. normal: {
  29639. height: math.unit(4 + 6 / 12, "feet"),
  29640. name: "Normal",
  29641. image: {
  29642. source: "./media/characters/hydra/normal.svg",
  29643. extra: 2833 / 2634,
  29644. bottom: 68 / 2901
  29645. }
  29646. },
  29647. smol: {
  29648. height: math.unit(0.705, "inches"),
  29649. name: "Smol",
  29650. image: {
  29651. source: "./media/characters/hydra/smol.svg",
  29652. extra: 2715 / 2540,
  29653. bottom: 0 / 2715
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Normal",
  29660. height: math.unit(4 + 6 / 12, "feet"),
  29661. default: true
  29662. }
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(0.6, "cm"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/daz/front.svg",
  29673. extra: 1682 / 1164,
  29674. bottom: 42 / 1724
  29675. }
  29676. },
  29677. },
  29678. [
  29679. {
  29680. name: "Normal",
  29681. height: math.unit(0.6, "cm"),
  29682. default: true
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(6, "feet"),
  29691. weight: math.unit(235, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/theo-pangolin/front.svg",
  29695. extra: 1996 / 1969,
  29696. bottom: 115 / 2111
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(6, "feet"),
  29701. weight: math.unit(235, "lb"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/theo-pangolin/back.svg",
  29705. extra: 1979 / 1979,
  29706. bottom: 40 / 2019
  29707. }
  29708. },
  29709. feral: {
  29710. height: math.unit(2, "feet"),
  29711. weight: math.unit(30, "lb"),
  29712. name: "Feral",
  29713. image: {
  29714. source: "./media/characters/theo-pangolin/feral.svg",
  29715. extra: 803 / 791,
  29716. bottom: 181 / 984
  29717. }
  29718. },
  29719. footFive: {
  29720. height: math.unit(1.43, "feet"),
  29721. name: "Foot (Five Toes)",
  29722. image: {
  29723. source: "./media/characters/theo-pangolin/foot-five.svg"
  29724. }
  29725. },
  29726. footFour: {
  29727. height: math.unit(1.43, "feet"),
  29728. name: "Foot (Four Toes)",
  29729. image: {
  29730. source: "./media/characters/theo-pangolin/foot-four.svg"
  29731. }
  29732. },
  29733. handFour: {
  29734. height: math.unit(0.81, "feet"),
  29735. name: "Hand (Four Fingers)",
  29736. image: {
  29737. source: "./media/characters/theo-pangolin/hand-four.svg"
  29738. }
  29739. },
  29740. handThree: {
  29741. height: math.unit(0.81, "feet"),
  29742. name: "Hand (Three Fingers)",
  29743. image: {
  29744. source: "./media/characters/theo-pangolin/hand-three.svg"
  29745. }
  29746. },
  29747. headFront: {
  29748. height: math.unit(1.37, "feet"),
  29749. name: "Head (Front)",
  29750. image: {
  29751. source: "./media/characters/theo-pangolin/head-front.svg"
  29752. }
  29753. },
  29754. headSide: {
  29755. height: math.unit(1.43, "feet"),
  29756. name: "Head (Side)",
  29757. image: {
  29758. source: "./media/characters/theo-pangolin/head-side.svg"
  29759. }
  29760. },
  29761. tongue: {
  29762. height: math.unit(2.29, "feet"),
  29763. name: "Tongue",
  29764. image: {
  29765. source: "./media/characters/theo-pangolin/tongue.svg"
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(6, "feet")
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(400, "feet"),
  29777. default: true
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(6, "inches"),
  29786. weight: math.unit(0.036, "kg"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/renée/front.svg",
  29790. extra: 900 / 886,
  29791. bottom: 8 / 908
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Nano",
  29798. height: math.unit(1, "nm")
  29799. },
  29800. {
  29801. name: "Micro",
  29802. height: math.unit(1, "mm")
  29803. },
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(6, "inches")
  29807. },
  29808. {
  29809. name: "Macro",
  29810. height: math.unit(2000, "feet"),
  29811. default: true
  29812. },
  29813. {
  29814. name: "Megamacro",
  29815. height: math.unit(2, "km")
  29816. },
  29817. {
  29818. name: "Gigamacro",
  29819. height: math.unit(2000, "km")
  29820. },
  29821. {
  29822. name: "Teramacro",
  29823. height: math.unit(250000, "km")
  29824. },
  29825. ]
  29826. ))
  29827. characterMakers.push(() => makeCharacter(
  29828. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29829. {
  29830. front: {
  29831. height: math.unit(4, "meters"),
  29832. weight: math.unit(150, "kg"),
  29833. name: "Front",
  29834. image: {
  29835. source: "./media/characters/caledvwlch/front.svg",
  29836. extra: 1760 / 1551,
  29837. bottom: 28 / 1788
  29838. }
  29839. },
  29840. side: {
  29841. height: math.unit(4, "meters"),
  29842. weight: math.unit(150, "kg"),
  29843. name: "Side",
  29844. image: {
  29845. source: "./media/characters/caledvwlch/side.svg",
  29846. extra: 1605 / 1536,
  29847. bottom: 31 / 1636
  29848. }
  29849. },
  29850. back: {
  29851. height: math.unit(4, "meters"),
  29852. weight: math.unit(150, "kg"),
  29853. name: "Back",
  29854. image: {
  29855. source: "./media/characters/caledvwlch/back.svg",
  29856. extra: 1635 / 1565,
  29857. bottom: 27 / 1662
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "\"Incognito\"",
  29864. height: math.unit(4, "meters")
  29865. },
  29866. {
  29867. name: "Small rampage",
  29868. height: math.unit(600, "meters")
  29869. },
  29870. {
  29871. name: "Mega",
  29872. height: math.unit(30, "km")
  29873. },
  29874. {
  29875. name: "Home-size",
  29876. height: math.unit(50, "km"),
  29877. default: true
  29878. },
  29879. {
  29880. name: "Giga",
  29881. height: math.unit(300, "km")
  29882. },
  29883. {
  29884. name: "Lounging",
  29885. height: math.unit(11000, "km")
  29886. },
  29887. {
  29888. name: "Planet snacking",
  29889. height: math.unit(2000000, "km")
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29895. {
  29896. front: {
  29897. height: math.unit(6, "feet"),
  29898. weight: math.unit(215, "lb"),
  29899. name: "Front",
  29900. image: {
  29901. source: "./media/characters/sapphire-svell/front.svg",
  29902. extra: 495 / 455,
  29903. bottom: 20 / 515
  29904. }
  29905. },
  29906. back: {
  29907. height: math.unit(6, "feet"),
  29908. weight: math.unit(216, "lb"),
  29909. name: "Back",
  29910. image: {
  29911. source: "./media/characters/sapphire-svell/back.svg",
  29912. extra: 497 / 477,
  29913. bottom: 7 / 504
  29914. }
  29915. },
  29916. maw: {
  29917. height: math.unit(1.57, "feet"),
  29918. name: "Maw",
  29919. image: {
  29920. source: "./media/characters/sapphire-svell/maw.svg"
  29921. }
  29922. },
  29923. foot: {
  29924. height: math.unit(1.07, "feet"),
  29925. name: "Foot",
  29926. image: {
  29927. source: "./media/characters/sapphire-svell/foot.svg"
  29928. }
  29929. },
  29930. toering: {
  29931. height: math.unit(1.7, "inch"),
  29932. name: "Toering",
  29933. image: {
  29934. source: "./media/characters/sapphire-svell/toering.svg"
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(300, "feet"),
  29942. default: true
  29943. },
  29944. {
  29945. name: "Augmented",
  29946. height: math.unit(1250, "feet")
  29947. },
  29948. {
  29949. name: "Unleashed",
  29950. height: math.unit(3000, "feet")
  29951. },
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29956. {
  29957. side: {
  29958. height: math.unit(2 + 3 / 12, "feet"),
  29959. weight: math.unit(110, "lb"),
  29960. name: "Side",
  29961. image: {
  29962. source: "./media/characters/glitch-flux/side.svg",
  29963. extra: 997 / 805,
  29964. bottom: 20 / 1017
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(2 + 3 / 12, "feet"),
  29972. default: true
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29978. {
  29979. front: {
  29980. height: math.unit(4, "meters"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/mid/front.svg",
  29984. extra: 507 / 476,
  29985. bottom: 17 / 524
  29986. }
  29987. },
  29988. back: {
  29989. height: math.unit(4, "meters"),
  29990. name: "Back",
  29991. image: {
  29992. source: "./media/characters/mid/back.svg",
  29993. extra: 519 / 487,
  29994. bottom: 7 / 526
  29995. }
  29996. },
  29997. stuck: {
  29998. height: math.unit(2.2, "meters"),
  29999. name: "Stuck",
  30000. image: {
  30001. source: "./media/characters/mid/stuck.svg",
  30002. extra: 1951 / 1869,
  30003. bottom: 88 / 2039
  30004. }
  30005. }
  30006. },
  30007. [
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(4, "meters"),
  30011. default: true
  30012. },
  30013. {
  30014. name: "Big",
  30015. height: math.unit(10, "meters")
  30016. },
  30017. {
  30018. name: "Macro",
  30019. height: math.unit(800, "meters")
  30020. },
  30021. {
  30022. name: "Megamacro",
  30023. height: math.unit(100, "km")
  30024. },
  30025. {
  30026. name: "Overgrown",
  30027. height: math.unit(1, "parsec")
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(2.5, "meters"),
  30036. weight: math.unit(225, "kg"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/iris/front.svg",
  30040. extra: 3348 / 3251,
  30041. bottom: 205 / 3553
  30042. }
  30043. },
  30044. maw: {
  30045. height: math.unit(0.56, "meter"),
  30046. name: "Maw",
  30047. image: {
  30048. source: "./media/characters/iris/maw.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Mewter cat",
  30055. height: math.unit(1.2, "meters")
  30056. },
  30057. {
  30058. name: "Minimacro",
  30059. height: math.unit(2.5, "meters"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(180, "meters")
  30065. },
  30066. {
  30067. name: "Megamacro",
  30068. height: math.unit(2746, "meters")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(6, "feet"),
  30077. weight: math.unit(135, "lb"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/axel/front.svg",
  30081. extra: 908 / 908,
  30082. bottom: 58 / 966
  30083. }
  30084. },
  30085. side: {
  30086. height: math.unit(6, "feet"),
  30087. weight: math.unit(135, "lb"),
  30088. name: "Side",
  30089. image: {
  30090. source: "./media/characters/axel/side.svg",
  30091. extra: 958 / 958,
  30092. bottom: 11 / 969
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(6, "feet"),
  30097. weight: math.unit(135, "lb"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/axel/back.svg",
  30101. extra: 887 / 887,
  30102. bottom: 34 / 921
  30103. }
  30104. },
  30105. head: {
  30106. height: math.unit(1.07, "feet"),
  30107. name: "Head",
  30108. image: {
  30109. source: "./media/characters/axel/head.svg"
  30110. }
  30111. },
  30112. beak: {
  30113. height: math.unit(1.4, "feet"),
  30114. name: "Beak",
  30115. image: {
  30116. source: "./media/characters/axel/beak.svg"
  30117. }
  30118. },
  30119. beakSide: {
  30120. height: math.unit(1.4, "feet"),
  30121. name: "Beak Side",
  30122. image: {
  30123. source: "./media/characters/axel/beak-side.svg"
  30124. }
  30125. },
  30126. sheath: {
  30127. height: math.unit(0.5, "feet"),
  30128. name: "Sheath",
  30129. image: {
  30130. source: "./media/characters/axel/sheath.svg"
  30131. }
  30132. },
  30133. dick: {
  30134. height: math.unit(0.98, "feet"),
  30135. name: "Dick",
  30136. image: {
  30137. source: "./media/characters/axel/dick.svg"
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(68, "meters"),
  30145. default: true
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(3.5, "meters"),
  30154. weight: math.unit(1200, "kg"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/joanna/front.svg",
  30158. extra: 1596 / 1488,
  30159. bottom: 29 / 1625
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(3.5, "meters"),
  30164. weight: math.unit(1200, "kg"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/joanna/back.svg",
  30168. extra: 1594 / 1495,
  30169. bottom: 26 / 1620
  30170. }
  30171. },
  30172. frontShorts: {
  30173. height: math.unit(3.5, "meters"),
  30174. weight: math.unit(1200, "kg"),
  30175. name: "Front (Shorts)",
  30176. image: {
  30177. source: "./media/characters/joanna/front-shorts.svg",
  30178. extra: 1596 / 1488,
  30179. bottom: 29 / 1625
  30180. }
  30181. },
  30182. frontBiker: {
  30183. height: math.unit(3.5, "meters"),
  30184. weight: math.unit(1200, "kg"),
  30185. name: "Front (Biker)",
  30186. image: {
  30187. source: "./media/characters/joanna/front-biker.svg",
  30188. extra: 1596 / 1488,
  30189. bottom: 29 / 1625
  30190. }
  30191. },
  30192. backBiker: {
  30193. height: math.unit(3.5, "meters"),
  30194. weight: math.unit(1200, "kg"),
  30195. name: "Back (Biker)",
  30196. image: {
  30197. source: "./media/characters/joanna/back-biker.svg",
  30198. extra: 1594 / 1495,
  30199. bottom: 88 / 1682
  30200. }
  30201. },
  30202. bikeLeft: {
  30203. height: math.unit(2.4, "meters"),
  30204. weight: math.unit(1600, "kg"),
  30205. name: "Bike (Left)",
  30206. image: {
  30207. source: "./media/characters/joanna/bike-left.svg",
  30208. extra: 720 / 720,
  30209. bottom: 8 / 728
  30210. }
  30211. },
  30212. bikeRight: {
  30213. height: math.unit(2.4, "meters"),
  30214. weight: math.unit(1600, "kg"),
  30215. name: "Bike (Right)",
  30216. image: {
  30217. source: "./media/characters/joanna/bike-right.svg",
  30218. extra: 720 / 720,
  30219. bottom: 8 / 728
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Incognito",
  30226. height: math.unit(3.5, "meters")
  30227. },
  30228. {
  30229. name: "Casual Big",
  30230. height: math.unit(200, "meters")
  30231. },
  30232. {
  30233. name: "Macro",
  30234. height: math.unit(600, "meters")
  30235. },
  30236. {
  30237. name: "Original",
  30238. height: math.unit(20, "km"),
  30239. default: true
  30240. },
  30241. {
  30242. name: "Giga",
  30243. height: math.unit(400, "km")
  30244. },
  30245. {
  30246. name: "Lounging",
  30247. height: math.unit(1500, "km")
  30248. },
  30249. {
  30250. name: "Planetary",
  30251. height: math.unit(200000, "km")
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(6, "feet"),
  30260. weight: math.unit(150, "lb"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/hugo-sigil/front.svg",
  30264. extra: 522 / 500,
  30265. bottom: 2 / 524
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(6, "feet"),
  30270. weight: math.unit(150, "lb"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/hugo-sigil/back.svg",
  30274. extra: 519 / 495,
  30275. bottom: 5 / 524
  30276. }
  30277. },
  30278. maw: {
  30279. height: math.unit(1.4, "feet"),
  30280. weight: math.unit(150, "lb"),
  30281. name: "Maw",
  30282. image: {
  30283. source: "./media/characters/hugo-sigil/maw.svg"
  30284. }
  30285. },
  30286. feet: {
  30287. height: math.unit(1.56, "feet"),
  30288. weight: math.unit(150, "lb"),
  30289. name: "Feet",
  30290. image: {
  30291. source: "./media/characters/hugo-sigil/feet.svg",
  30292. extra: 177 / 177,
  30293. bottom: 12 / 189
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Normal",
  30300. height: math.unit(6, "feet")
  30301. },
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(200, "feet"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/peri/front.svg",
  30318. extra: 2354 / 2233,
  30319. bottom: 49 / 2403
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Really Small",
  30326. height: math.unit(1, "nm")
  30327. },
  30328. {
  30329. name: "Micro",
  30330. height: math.unit(4, "inches")
  30331. },
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(7, "inches"),
  30335. default: true
  30336. },
  30337. {
  30338. name: "Macro",
  30339. height: math.unit(400, "feet")
  30340. },
  30341. {
  30342. name: "Megamacro",
  30343. height: math.unit(100, "miles")
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30349. {
  30350. frontSlim: {
  30351. height: math.unit(7, "feet"),
  30352. name: "Front (Slim)",
  30353. image: {
  30354. source: "./media/characters/issilora/front-slim.svg",
  30355. extra: 529 / 449,
  30356. bottom: 53 / 582
  30357. }
  30358. },
  30359. sideSlim: {
  30360. height: math.unit(7, "feet"),
  30361. name: "Side (Slim)",
  30362. image: {
  30363. source: "./media/characters/issilora/side-slim.svg",
  30364. extra: 570 / 480,
  30365. bottom: 30 / 600
  30366. }
  30367. },
  30368. backSlim: {
  30369. height: math.unit(7, "feet"),
  30370. name: "Back (Slim)",
  30371. image: {
  30372. source: "./media/characters/issilora/back-slim.svg",
  30373. extra: 537 / 455,
  30374. bottom: 46 / 583
  30375. }
  30376. },
  30377. frontBuff: {
  30378. height: math.unit(7, "feet"),
  30379. name: "Front (Buff)",
  30380. image: {
  30381. source: "./media/characters/issilora/front-buff.svg",
  30382. extra: 2310 / 2035,
  30383. bottom: 335 / 2645
  30384. }
  30385. },
  30386. head: {
  30387. height: math.unit(1.94, "feet"),
  30388. name: "Head",
  30389. image: {
  30390. source: "./media/characters/issilora/head.svg"
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Minimum",
  30397. height: math.unit(7, "feet")
  30398. },
  30399. {
  30400. name: "Comfortable",
  30401. height: math.unit(17, "feet")
  30402. },
  30403. {
  30404. name: "Fun Size",
  30405. height: math.unit(47, "feet")
  30406. },
  30407. {
  30408. name: "Natural Macro",
  30409. height: math.unit(137, "feet"),
  30410. default: true
  30411. },
  30412. {
  30413. name: "Maximum Kaiju",
  30414. height: math.unit(397, "feet")
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30420. {
  30421. front: {
  30422. height: math.unit(50 + 9/12, "feet"),
  30423. weight: math.unit(32.8, "tons"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/irb'iiritaahn/front.svg",
  30427. extra: 1878/1826,
  30428. bottom: 326/2204
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(50 + 9/12, "feet"),
  30433. weight: math.unit(32.8, "tons"),
  30434. name: "Back",
  30435. image: {
  30436. source: "./media/characters/irb'iiritaahn/back.svg",
  30437. extra: 2052/2018,
  30438. bottom: 152/2204
  30439. }
  30440. },
  30441. head: {
  30442. height: math.unit(12.86, "feet"),
  30443. name: "Head",
  30444. image: {
  30445. source: "./media/characters/irb'iiritaahn/head.svg"
  30446. }
  30447. },
  30448. maw: {
  30449. height: math.unit(9.66, "feet"),
  30450. name: "Maw",
  30451. image: {
  30452. source: "./media/characters/irb'iiritaahn/maw.svg"
  30453. }
  30454. },
  30455. frontDick: {
  30456. height: math.unit(8.78461, "feet"),
  30457. name: "Front Dick",
  30458. image: {
  30459. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30460. }
  30461. },
  30462. rearDick: {
  30463. height: math.unit(8.78461, "feet"),
  30464. name: "Rear Dick",
  30465. image: {
  30466. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30467. }
  30468. },
  30469. rearDickUnfolded: {
  30470. height: math.unit(8.78, "feet"),
  30471. name: "Rear Dick (Unfolded)",
  30472. image: {
  30473. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30474. }
  30475. },
  30476. wings: {
  30477. height: math.unit(43, "feet"),
  30478. name: "Wings",
  30479. image: {
  30480. source: "./media/characters/irb'iiritaahn/wings.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Macro",
  30487. height: math.unit(50 + 9/12, "feet"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(205, "cm"),
  30497. weight: math.unit(102, "kg"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/irbisgreif/front.svg",
  30501. extra: 785/706,
  30502. bottom: 13/798
  30503. }
  30504. },
  30505. back: {
  30506. height: math.unit(205, "cm"),
  30507. weight: math.unit(102, "kg"),
  30508. name: "Back",
  30509. image: {
  30510. source: "./media/characters/irbisgreif/back.svg",
  30511. extra: 713/701,
  30512. bottom: 26/739
  30513. }
  30514. },
  30515. frontDressed: {
  30516. height: math.unit(216, "cm"),
  30517. weight: math.unit(102, "kg"),
  30518. name: "Front-dressed",
  30519. image: {
  30520. source: "./media/characters/irbisgreif/front-dressed.svg",
  30521. extra: 902/776,
  30522. bottom: 14/916
  30523. }
  30524. },
  30525. sideDressed: {
  30526. height: math.unit(195, "cm"),
  30527. weight: math.unit(102, "kg"),
  30528. name: "Side-dressed",
  30529. image: {
  30530. source: "./media/characters/irbisgreif/side-dressed.svg",
  30531. extra: 788/688,
  30532. bottom: 21/809
  30533. }
  30534. },
  30535. backDressed: {
  30536. height: math.unit(216, "cm"),
  30537. weight: math.unit(102, "kg"),
  30538. name: "Back-dressed",
  30539. image: {
  30540. source: "./media/characters/irbisgreif/back-dressed.svg",
  30541. extra: 901/783,
  30542. bottom: 10/911
  30543. }
  30544. },
  30545. dick: {
  30546. height: math.unit(0.49, "feet"),
  30547. name: "Dick",
  30548. image: {
  30549. source: "./media/characters/irbisgreif/dick.svg"
  30550. }
  30551. },
  30552. wingTop: {
  30553. height: math.unit(1.93 , "feet"),
  30554. name: "Wing-top",
  30555. image: {
  30556. source: "./media/characters/irbisgreif/wing-top.svg"
  30557. }
  30558. },
  30559. wingBottom: {
  30560. height: math.unit(1.93 , "feet"),
  30561. name: "Wing-bottom",
  30562. image: {
  30563. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(216, "cm"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(6, "feet"),
  30580. weight: math.unit(150, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/pride/front.svg",
  30584. extra: 1299/1230,
  30585. bottom: 18/1317
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(7, "feet")
  30593. },
  30594. {
  30595. name: "Mini-macro",
  30596. height: math.unit(11, "feet")
  30597. },
  30598. {
  30599. name: "Macro",
  30600. height: math.unit(15, "meters"),
  30601. default: true
  30602. },
  30603. {
  30604. name: "Macro+",
  30605. height: math.unit(40, "meters")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30611. {
  30612. front: {
  30613. height: math.unit(4 + 2 / 12, "feet"),
  30614. weight: math.unit(95, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/vaelophis-nyx/front.svg",
  30618. extra: 2532/2330,
  30619. bottom: 0/2532
  30620. }
  30621. },
  30622. back: {
  30623. height: math.unit(4 + 2 / 12, "feet"),
  30624. weight: math.unit(95, "lb"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/vaelophis-nyx/back.svg",
  30628. extra: 2484/2361,
  30629. bottom: 0/2484
  30630. }
  30631. },
  30632. feralSide: {
  30633. height: math.unit(2 + 1/12, "feet"),
  30634. weight: math.unit(20, "lb"),
  30635. name: "Feral (Side)",
  30636. image: {
  30637. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30638. extra: 1721/1581,
  30639. bottom: 70/1791
  30640. }
  30641. },
  30642. feralLazing: {
  30643. height: math.unit(1.08, "feet"),
  30644. weight: math.unit(20, "lb"),
  30645. name: "Feral (Lazing)",
  30646. image: {
  30647. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30648. extra: 822/822,
  30649. bottom: 248/1070
  30650. }
  30651. },
  30652. ear: {
  30653. height: math.unit(0.416, "feet"),
  30654. name: "Ear",
  30655. image: {
  30656. source: "./media/characters/vaelophis-nyx/ear.svg"
  30657. }
  30658. },
  30659. eye: {
  30660. height: math.unit(0.0748, "feet"),
  30661. name: "Eye",
  30662. image: {
  30663. source: "./media/characters/vaelophis-nyx/eye.svg"
  30664. }
  30665. },
  30666. mouth: {
  30667. height: math.unit(0.378, "feet"),
  30668. name: "Mouth",
  30669. image: {
  30670. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30671. }
  30672. },
  30673. spade: {
  30674. height: math.unit(0.55, "feet"),
  30675. name: "Spade",
  30676. image: {
  30677. source: "./media/characters/vaelophis-nyx/spade.svg"
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(4 + 2/12, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30691. {
  30692. front: {
  30693. height: math.unit(7, "feet"),
  30694. weight: math.unit(231, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/flux/front.svg",
  30698. extra: 919/871,
  30699. bottom: 0/919
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(7, "feet"),
  30704. weight: math.unit(231, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/flux/back.svg",
  30708. extra: 1040/992,
  30709. bottom: 0/1040
  30710. }
  30711. },
  30712. frontDressed: {
  30713. height: math.unit(7, "feet"),
  30714. weight: math.unit(231, "lb"),
  30715. name: "Front (Dressed)",
  30716. image: {
  30717. source: "./media/characters/flux/front-dressed.svg",
  30718. extra: 919/871,
  30719. bottom: 0/919
  30720. }
  30721. },
  30722. feralSide: {
  30723. height: math.unit(5, "feet"),
  30724. weight: math.unit(150, "lb"),
  30725. name: "Feral (Side)",
  30726. image: {
  30727. source: "./media/characters/flux/feral-side.svg",
  30728. extra: 598/528,
  30729. bottom: 28/626
  30730. }
  30731. },
  30732. head: {
  30733. height: math.unit(1.585, "feet"),
  30734. name: "Head",
  30735. image: {
  30736. source: "./media/characters/flux/head.svg"
  30737. }
  30738. },
  30739. headSide: {
  30740. height: math.unit(1.74, "feet"),
  30741. name: "Head (Side)",
  30742. image: {
  30743. source: "./media/characters/flux/head-side.svg"
  30744. }
  30745. },
  30746. headSideFire: {
  30747. height: math.unit(1.76, "feet"),
  30748. name: "Head (Side, Fire)",
  30749. image: {
  30750. source: "./media/characters/flux/head-side-fire.svg"
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Normal",
  30757. height: math.unit(7, "feet"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(9, "feet"),
  30767. weight: math.unit(1012, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/ulfra-lupae/front.svg",
  30771. extra: 1083/1011,
  30772. bottom: 67/1150
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Micro",
  30779. height: math.unit(6, "inches")
  30780. },
  30781. {
  30782. name: "Socializing",
  30783. height: math.unit(6 + 5/12, "feet")
  30784. },
  30785. {
  30786. name: "Normal",
  30787. height: math.unit(9, "feet"),
  30788. default: true
  30789. },
  30790. {
  30791. name: "Macro",
  30792. height: math.unit(150, "feet")
  30793. },
  30794. ]
  30795. ))
  30796. characterMakers.push(() => makeCharacter(
  30797. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30798. {
  30799. front: {
  30800. height: math.unit(5 + 2/12, "feet"),
  30801. weight: math.unit(120, "lb"),
  30802. name: "Front",
  30803. image: {
  30804. source: "./media/characters/timber/front.svg",
  30805. extra: 2814/2705,
  30806. bottom: 181/2995
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(5 + 2/12, "feet"),
  30814. default: true
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(5 + 7/12, "feet"),
  30823. weight: math.unit(220, "lb"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/nicki/front.svg",
  30827. extra: 453/419,
  30828. bottom: 7/460
  30829. }
  30830. },
  30831. frontAlt: {
  30832. height: math.unit(5 + 7/12, "feet"),
  30833. weight: math.unit(220, "lb"),
  30834. name: "Front-alt",
  30835. image: {
  30836. source: "./media/characters/nicki/front-alt.svg",
  30837. extra: 435/411,
  30838. bottom: 12/447
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(5 + 7/12, "feet"),
  30843. weight: math.unit(220, "lb"),
  30844. name: "Back",
  30845. image: {
  30846. source: "./media/characters/nicki/back.svg",
  30847. extra: 440/413,
  30848. bottom: 19/459
  30849. }
  30850. },
  30851. taur: {
  30852. height: math.unit(7 + 6/12, "feet"),
  30853. weight: math.unit(700, "lb"),
  30854. name: "Taur",
  30855. image: {
  30856. source: "./media/characters/nicki/taur.svg",
  30857. extra: 975/773,
  30858. bottom: 0/975
  30859. }
  30860. },
  30861. frontNsfw: {
  30862. height: math.unit(5 + 7/12, "feet"),
  30863. weight: math.unit(220, "lb"),
  30864. name: "Front (NSFW)",
  30865. image: {
  30866. source: "./media/characters/nicki/front-nsfw.svg",
  30867. extra: 453/419,
  30868. bottom: 7/460
  30869. }
  30870. },
  30871. frontNsfwAlt: {
  30872. height: math.unit(5 + 7/12, "feet"),
  30873. weight: math.unit(220, "lb"),
  30874. name: "Front (Alt, NSFW)",
  30875. image: {
  30876. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30877. extra: 435/411,
  30878. bottom: 12/447
  30879. }
  30880. },
  30881. backNsfw: {
  30882. height: math.unit(5 + 7/12, "feet"),
  30883. weight: math.unit(220, "lb"),
  30884. name: "Back (NSFW)",
  30885. image: {
  30886. source: "./media/characters/nicki/back-nsfw.svg",
  30887. extra: 440/413,
  30888. bottom: 19/459
  30889. }
  30890. },
  30891. head: {
  30892. height: math.unit(2.1, "feet"),
  30893. name: "Head",
  30894. image: {
  30895. source: "./media/characters/nicki/head.svg"
  30896. }
  30897. },
  30898. paw: {
  30899. height: math.unit(1.88, "feet"),
  30900. name: "Paw",
  30901. image: {
  30902. source: "./media/characters/nicki/paw.svg"
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(5 + 7/12, "feet"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(7 + 10/12, "feet"),
  30919. weight: math.unit(3.5, "tons"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/lee/front.svg",
  30923. extra: 1773/1615,
  30924. bottom: 86/1859
  30925. }
  30926. },
  30927. hand: {
  30928. height: math.unit(1.78, "feet"),
  30929. name: "Hand",
  30930. image: {
  30931. source: "./media/characters/lee/hand.svg"
  30932. }
  30933. },
  30934. maw: {
  30935. height: math.unit(1.18, "feet"),
  30936. name: "Maw",
  30937. image: {
  30938. source: "./media/characters/lee/maw.svg"
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Normal",
  30945. height: math.unit(7 + 10/12, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30952. {
  30953. front: {
  30954. height: math.unit(9, "feet"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/guti/front.svg",
  30958. extra: 4551/4355,
  30959. bottom: 123/4674
  30960. }
  30961. },
  30962. tongue: {
  30963. height: math.unit(1, "feet"),
  30964. name: "Tongue",
  30965. image: {
  30966. source: "./media/characters/guti/tongue.svg"
  30967. }
  30968. },
  30969. paw: {
  30970. height: math.unit(1.18, "feet"),
  30971. name: "Paw",
  30972. image: {
  30973. source: "./media/characters/guti/paw.svg"
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(9, "feet"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30987. {
  30988. side: {
  30989. height: math.unit(5, "meters"),
  30990. name: "Side",
  30991. image: {
  30992. source: "./media/characters/vesper/side.svg",
  30993. extra: 1605/1518,
  30994. bottom: 0/1605
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Small",
  31001. height: math.unit(5, "meters")
  31002. },
  31003. {
  31004. name: "Sage",
  31005. height: math.unit(100, "meters"),
  31006. default: true
  31007. },
  31008. {
  31009. name: "Fun Size",
  31010. height: math.unit(600, "meters")
  31011. },
  31012. {
  31013. name: "Goddess",
  31014. height: math.unit(20000, "km")
  31015. },
  31016. {
  31017. name: "Maximum",
  31018. height: math.unit(5, "galaxies")
  31019. },
  31020. ]
  31021. ))
  31022. characterMakers.push(() => makeCharacter(
  31023. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31024. {
  31025. front: {
  31026. height: math.unit(6 + 3/12, "feet"),
  31027. weight: math.unit(190, "lb"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/gawain/front.svg",
  31031. extra: 2222/2139,
  31032. bottom: 90/2312
  31033. }
  31034. },
  31035. back: {
  31036. height: math.unit(6 + 3/12, "feet"),
  31037. weight: math.unit(190, "lb"),
  31038. name: "Back",
  31039. image: {
  31040. source: "./media/characters/gawain/back.svg",
  31041. extra: 2199/2111,
  31042. bottom: 73/2272
  31043. }
  31044. },
  31045. },
  31046. [
  31047. {
  31048. name: "Normal",
  31049. height: math.unit(6 + 3/12, "feet"),
  31050. default: true
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31056. {
  31057. side: {
  31058. height: math.unit(3.5, "meters"),
  31059. weight: math.unit(16000, "lb"),
  31060. name: "Side",
  31061. image: {
  31062. source: "./media/characters/dascalti/side.svg",
  31063. extra: 392/273,
  31064. bottom: 47/439
  31065. }
  31066. },
  31067. breath: {
  31068. height: math.unit(7.4, "feet"),
  31069. name: "Breath",
  31070. image: {
  31071. source: "./media/characters/dascalti/breath.svg"
  31072. }
  31073. },
  31074. fed: {
  31075. height: math.unit(3.6, "meters"),
  31076. weight: math.unit(16000, "lb"),
  31077. name: "Fed",
  31078. image: {
  31079. source: "./media/characters/dascalti/fed.svg",
  31080. extra: 1419/820,
  31081. bottom: 95/1514
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(3.5, "meters"),
  31089. default: true
  31090. },
  31091. ]
  31092. ))
  31093. characterMakers.push(() => makeCharacter(
  31094. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31095. {
  31096. front: {
  31097. height: math.unit(3 + 5/12, "feet"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/mauve/front.svg",
  31101. extra: 1126/1033,
  31102. bottom: 65/1191
  31103. }
  31104. },
  31105. side: {
  31106. height: math.unit(3 + 5/12, "feet"),
  31107. name: "Side",
  31108. image: {
  31109. source: "./media/characters/mauve/side.svg",
  31110. extra: 1089/1001,
  31111. bottom: 29/1118
  31112. }
  31113. },
  31114. back: {
  31115. height: math.unit(3 + 5/12, "feet"),
  31116. name: "Back",
  31117. image: {
  31118. source: "./media/characters/mauve/back.svg",
  31119. extra: 1173/1053,
  31120. bottom: 109/1282
  31121. }
  31122. },
  31123. },
  31124. [
  31125. {
  31126. name: "Normal",
  31127. height: math.unit(3 + 5/12, "feet"),
  31128. default: true
  31129. },
  31130. ]
  31131. ))
  31132. characterMakers.push(() => makeCharacter(
  31133. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31134. {
  31135. front: {
  31136. height: math.unit(6 + 3/12, "feet"),
  31137. weight: math.unit(430, "lb"),
  31138. name: "Front",
  31139. image: {
  31140. source: "./media/characters/carlos/front.svg",
  31141. extra: 1964/1913,
  31142. bottom: 70/2034
  31143. }
  31144. },
  31145. },
  31146. [
  31147. {
  31148. name: "Normal",
  31149. height: math.unit(6 + 3/12, "feet"),
  31150. default: true
  31151. },
  31152. ]
  31153. ))
  31154. characterMakers.push(() => makeCharacter(
  31155. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31156. {
  31157. back: {
  31158. height: math.unit(5 + 10/12, "feet"),
  31159. weight: math.unit(200, "lb"),
  31160. name: "Back",
  31161. image: {
  31162. source: "./media/characters/jax/back.svg",
  31163. extra: 764/739,
  31164. bottom: 25/789
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(5 + 10/12, "feet"),
  31172. default: true
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(8, "feet"),
  31181. weight: math.unit(250, "lb"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/eikthynir/front.svg",
  31185. extra: 1332/1166,
  31186. bottom: 82/1414
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(8, "feet"),
  31191. weight: math.unit(250, "lb"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/eikthynir/back.svg",
  31195. extra: 1342/1190,
  31196. bottom: 19/1361
  31197. }
  31198. },
  31199. dick: {
  31200. height: math.unit(2.35, "feet"),
  31201. name: "Dick",
  31202. image: {
  31203. source: "./media/characters/eikthynir/dick.svg"
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(8, "feet"),
  31211. default: true
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(99, "meters"),
  31220. weight: math.unit(13000, "tons"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/zlmos/front.svg",
  31224. extra: 2202/1992,
  31225. bottom: 315/2517
  31226. }
  31227. },
  31228. },
  31229. [
  31230. {
  31231. name: "Macro",
  31232. height: math.unit(99, "meters"),
  31233. default: true
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(6 + 5/12, "feet"),
  31242. name: "Front",
  31243. image: {
  31244. source: "./media/characters/purri/front.svg",
  31245. extra: 1698/1610,
  31246. bottom: 32/1730
  31247. }
  31248. },
  31249. frontAlt: {
  31250. height: math.unit(6 + 5/12, "feet"),
  31251. name: "Front (Alt)",
  31252. image: {
  31253. source: "./media/characters/purri/front-alt.svg",
  31254. extra: 450/420,
  31255. bottom: 26/476
  31256. }
  31257. },
  31258. boots: {
  31259. height: math.unit(5.5, "feet"),
  31260. name: "Boots",
  31261. image: {
  31262. source: "./media/characters/purri/boots.svg",
  31263. extra: 905/853,
  31264. bottom: 18/923
  31265. }
  31266. },
  31267. lying: {
  31268. height: math.unit(2, "feet"),
  31269. name: "Lying",
  31270. image: {
  31271. source: "./media/characters/purri/lying.svg",
  31272. extra: 940/843,
  31273. bottom: 146/1086
  31274. }
  31275. },
  31276. devious: {
  31277. height: math.unit(1.77, "feet"),
  31278. name: "Devious",
  31279. image: {
  31280. source: "./media/characters/purri/devious.svg",
  31281. extra: 1440/1155,
  31282. bottom: 147/1587
  31283. }
  31284. },
  31285. bean: {
  31286. height: math.unit(1.94, "feet"),
  31287. name: "Bean",
  31288. image: {
  31289. source: "./media/characters/purri/bean.svg"
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Micro",
  31296. height: math.unit(1, "mm")
  31297. },
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(6 + 5/12, "feet"),
  31301. default: true
  31302. },
  31303. {
  31304. name: "Macro :3c",
  31305. height: math.unit(2, "miles")
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(6 + 2/12, "feet"),
  31314. weight: math.unit(250, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/moonlight/front.svg",
  31318. extra: 1044/908,
  31319. bottom: 56/1100
  31320. }
  31321. },
  31322. feral: {
  31323. height: math.unit(3 + 1/12, "feet"),
  31324. weight: math.unit(50, "kg"),
  31325. name: "Feral",
  31326. image: {
  31327. source: "./media/characters/moonlight/feral.svg",
  31328. extra: 3705/2791,
  31329. bottom: 145/3850
  31330. }
  31331. },
  31332. paw: {
  31333. height: math.unit(1, "feet"),
  31334. name: "Paw",
  31335. image: {
  31336. source: "./media/characters/moonlight/paw.svg"
  31337. }
  31338. },
  31339. paws: {
  31340. height: math.unit(0.98, "feet"),
  31341. name: "Paws",
  31342. image: {
  31343. source: "./media/characters/moonlight/paws.svg",
  31344. extra: 939/939,
  31345. bottom: 50/989
  31346. }
  31347. },
  31348. mouth: {
  31349. height: math.unit(0.48, "feet"),
  31350. name: "Mouth",
  31351. image: {
  31352. source: "./media/characters/moonlight/mouth.svg"
  31353. }
  31354. },
  31355. dick: {
  31356. height: math.unit(1.46, "feet"),
  31357. name: "Dick",
  31358. image: {
  31359. source: "./media/characters/moonlight/dick.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(6 + 2/12, "feet"),
  31367. default: true
  31368. },
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(300, "feet")
  31372. },
  31373. {
  31374. name: "Macro+",
  31375. height: math.unit(1, "mile")
  31376. },
  31377. {
  31378. name: "Mt. Moon",
  31379. height: math.unit(5, "miles")
  31380. },
  31381. {
  31382. name: "Megamacro",
  31383. height: math.unit(15, "miles")
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31389. {
  31390. back: {
  31391. height: math.unit(6, "feet"),
  31392. weight: math.unit(150, "lb"),
  31393. name: "Back",
  31394. image: {
  31395. source: "./media/characters/sylen/back.svg",
  31396. extra: 1335/1273,
  31397. bottom: 107/1442
  31398. }
  31399. },
  31400. },
  31401. [
  31402. {
  31403. name: "Normal",
  31404. height: math.unit(5 + 5/12, "feet")
  31405. },
  31406. {
  31407. name: "Megamacro",
  31408. height: math.unit(3, "miles"),
  31409. default: true
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31415. {
  31416. front: {
  31417. height: math.unit(6, "feet"),
  31418. weight: math.unit(190, "lb"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/huttser/front.svg",
  31422. extra: 1152/1058,
  31423. bottom: 23/1175
  31424. }
  31425. },
  31426. side: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(190, "lb"),
  31429. name: "Side",
  31430. image: {
  31431. source: "./media/characters/huttser/side.svg",
  31432. extra: 1174/1065,
  31433. bottom: 18/1192
  31434. }
  31435. },
  31436. back: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(190, "lb"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/huttser/back.svg",
  31442. extra: 1158/1056,
  31443. bottom: 12/1170
  31444. }
  31445. },
  31446. },
  31447. [
  31448. ]
  31449. ))
  31450. characterMakers.push(() => makeCharacter(
  31451. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31452. {
  31453. side: {
  31454. height: math.unit(12 + 9/12, "feet"),
  31455. weight: math.unit(15000, "lb"),
  31456. name: "Side",
  31457. image: {
  31458. source: "./media/characters/faan/side.svg",
  31459. extra: 2747/2697,
  31460. bottom: 0/2747
  31461. }
  31462. },
  31463. front: {
  31464. height: math.unit(12 + 9/12, "feet"),
  31465. weight: math.unit(15000, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/faan/front.svg",
  31469. extra: 607/571,
  31470. bottom: 24/631
  31471. }
  31472. },
  31473. head: {
  31474. height: math.unit(2.85, "feet"),
  31475. name: "Head",
  31476. image: {
  31477. source: "./media/characters/faan/head.svg"
  31478. }
  31479. },
  31480. headAlt: {
  31481. height: math.unit(3.13, "feet"),
  31482. name: "Head-alt",
  31483. image: {
  31484. source: "./media/characters/faan/head-alt.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(12 + 9/12, "feet"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(6, "feet"),
  31501. weight: math.unit(300, "lb"),
  31502. name: "Front",
  31503. image: {
  31504. source: "./media/characters/tanio/front.svg",
  31505. extra: 711/673,
  31506. bottom: 25/736
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(6, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(3, "inches"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/noboru/front.svg",
  31526. extra: 1039/932,
  31527. bottom: 18/1057
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Micro",
  31534. height: math.unit(3, "inches"),
  31535. default: true
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31541. {
  31542. front: {
  31543. height: math.unit(1.85, "meters"),
  31544. weight: math.unit(80, "kg"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/daniel-barrett/front.svg",
  31548. extra: 355/337,
  31549. bottom: 9/364
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Pico",
  31556. height: math.unit(0.0433, "mm")
  31557. },
  31558. {
  31559. name: "Nano",
  31560. height: math.unit(1.5, "mm")
  31561. },
  31562. {
  31563. name: "Micro",
  31564. height: math.unit(5.3, "cm"),
  31565. default: true
  31566. },
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(1.85, "meters")
  31570. },
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(64.7, "meters")
  31574. },
  31575. {
  31576. name: "Megamacro",
  31577. height: math.unit(2.26, "km")
  31578. },
  31579. {
  31580. name: "Gigamacro",
  31581. height: math.unit(79, "km")
  31582. },
  31583. {
  31584. name: "Teramacro",
  31585. height: math.unit(2765, "km")
  31586. },
  31587. {
  31588. name: "Petamacro",
  31589. height: math.unit(96678, "km")
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31595. {
  31596. front: {
  31597. height: math.unit(30, "meters"),
  31598. weight: math.unit(400, "tons"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/zeel/front.svg",
  31602. extra: 2599/2599,
  31603. bottom: 226/2825
  31604. }
  31605. },
  31606. },
  31607. [
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(30, "meters"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(6 + 7/12, "feet"),
  31620. weight: math.unit(210, "lb"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/tarn/front.svg",
  31624. extra: 3517/3220,
  31625. bottom: 91/3608
  31626. }
  31627. },
  31628. back: {
  31629. height: math.unit(6 + 7/12, "feet"),
  31630. weight: math.unit(210, "lb"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/tarn/back.svg",
  31634. extra: 3566/3241,
  31635. bottom: 34/3600
  31636. }
  31637. },
  31638. dick: {
  31639. height: math.unit(1.65, "feet"),
  31640. name: "Dick",
  31641. image: {
  31642. source: "./media/characters/tarn/dick.svg"
  31643. }
  31644. },
  31645. paw: {
  31646. height: math.unit(1.80, "feet"),
  31647. name: "Paw",
  31648. image: {
  31649. source: "./media/characters/tarn/paw.svg"
  31650. }
  31651. },
  31652. tongue: {
  31653. height: math.unit(0.97, "feet"),
  31654. name: "Tongue",
  31655. image: {
  31656. source: "./media/characters/tarn/tongue.svg"
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Micro",
  31663. height: math.unit(4, "inches")
  31664. },
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(6 + 7/12, "feet"),
  31668. default: true
  31669. },
  31670. {
  31671. name: "Macro",
  31672. height: math.unit(300, "feet")
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(5 + 7/12, "feet"),
  31681. weight: math.unit(80, "kg"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31685. extra: 3023/2865,
  31686. bottom: 33/3056
  31687. }
  31688. },
  31689. back: {
  31690. height: math.unit(5 + 7/12, "feet"),
  31691. weight: math.unit(80, "kg"),
  31692. name: "Back",
  31693. image: {
  31694. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31695. extra: 3020/2886,
  31696. bottom: 30/3050
  31697. }
  31698. },
  31699. dick: {
  31700. height: math.unit(0.98, "feet"),
  31701. name: "Dick",
  31702. image: {
  31703. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31704. }
  31705. },
  31706. anatomy: {
  31707. height: math.unit(2.86, "feet"),
  31708. name: "Anatomy",
  31709. image: {
  31710. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Really Small",
  31717. height: math.unit(2, "inches")
  31718. },
  31719. {
  31720. name: "Micro",
  31721. height: math.unit(5.583, "inches")
  31722. },
  31723. {
  31724. name: "Normal",
  31725. height: math.unit(5 + 7/12, "feet"),
  31726. default: true
  31727. },
  31728. {
  31729. name: "Macro",
  31730. height: math.unit(67, "feet")
  31731. },
  31732. {
  31733. name: "Megamacro",
  31734. height: math.unit(134, "feet")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(9, "feet"),
  31743. weight: math.unit(120, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/sally/front.svg",
  31747. extra: 1506/1349,
  31748. bottom: 66/1572
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(9, "feet"),
  31756. default: true
  31757. },
  31758. ]
  31759. ))
  31760. characterMakers.push(() => makeCharacter(
  31761. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31762. {
  31763. front: {
  31764. height: math.unit(8, "feet"),
  31765. weight: math.unit(900, "lb"),
  31766. name: "Front",
  31767. image: {
  31768. source: "./media/characters/owen/front.svg",
  31769. extra: 1761/1657,
  31770. bottom: 74/1835
  31771. }
  31772. },
  31773. side: {
  31774. height: math.unit(8, "feet"),
  31775. weight: math.unit(900, "lb"),
  31776. name: "Side",
  31777. image: {
  31778. source: "./media/characters/owen/side.svg",
  31779. extra: 1797/1734,
  31780. bottom: 30/1827
  31781. }
  31782. },
  31783. back: {
  31784. height: math.unit(8, "feet"),
  31785. weight: math.unit(900, "lb"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/owen/back.svg",
  31789. extra: 1796/1706,
  31790. bottom: 59/1855
  31791. }
  31792. },
  31793. maw: {
  31794. height: math.unit(1.76, "feet"),
  31795. name: "Maw",
  31796. image: {
  31797. source: "./media/characters/owen/maw.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(8, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31811. {
  31812. front: {
  31813. height: math.unit(4, "feet"),
  31814. weight: math.unit(400, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/ryth/front.svg",
  31818. extra: 1920/1748,
  31819. bottom: 42/1962
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(4, "feet"),
  31824. weight: math.unit(400, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/ryth/back.svg",
  31828. extra: 1897/1690,
  31829. bottom: 89/1986
  31830. }
  31831. },
  31832. mouth: {
  31833. height: math.unit(1.39, "feet"),
  31834. name: "Mouth",
  31835. image: {
  31836. source: "./media/characters/ryth/mouth.svg"
  31837. }
  31838. },
  31839. tailmaw: {
  31840. height: math.unit(1.23, "feet"),
  31841. name: "Tailmaw",
  31842. image: {
  31843. source: "./media/characters/ryth/tailmaw.svg"
  31844. }
  31845. },
  31846. goia: {
  31847. height: math.unit(12, "feet"),
  31848. weight: math.unit(10800, "lb"),
  31849. name: "Goia",
  31850. image: {
  31851. source: "./media/characters/ryth/goia.svg",
  31852. extra: 3450/3198,
  31853. bottom: 61/3511
  31854. }
  31855. },
  31856. },
  31857. [
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(4, "feet"),
  31861. default: true
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31867. {
  31868. front: {
  31869. height: math.unit(7, "feet"),
  31870. weight: math.unit(180, "lb"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/necrolance/front.svg",
  31874. extra: 1062/947,
  31875. bottom: 41/1103
  31876. }
  31877. },
  31878. back: {
  31879. height: math.unit(7, "feet"),
  31880. weight: math.unit(180, "lb"),
  31881. name: "Back",
  31882. image: {
  31883. source: "./media/characters/necrolance/back.svg",
  31884. extra: 1045/984,
  31885. bottom: 14/1059
  31886. }
  31887. },
  31888. wing: {
  31889. height: math.unit(2.67, "feet"),
  31890. name: "Wing",
  31891. image: {
  31892. source: "./media/characters/necrolance/wing.svg"
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(7, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31906. {
  31907. front: {
  31908. height: math.unit(76, "meters"),
  31909. weight: math.unit(30000, "tons"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/tyler/front.svg",
  31913. extra: 1640/1640,
  31914. bottom: 114/1754
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(76, "meters"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(4 + 11/12, "feet"),
  31931. weight: math.unit(132, "lb"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/icey/front.svg",
  31935. extra: 2750/2550,
  31936. bottom: 33/2783
  31937. }
  31938. },
  31939. back: {
  31940. height: math.unit(4 + 11/12, "feet"),
  31941. weight: math.unit(132, "lb"),
  31942. name: "Back",
  31943. image: {
  31944. source: "./media/characters/icey/back.svg",
  31945. extra: 2624/2481,
  31946. bottom: 35/2659
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Normal",
  31953. height: math.unit(4 + 11/12, "feet"),
  31954. default: true
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(100, "feet"),
  31963. weight: math.unit(0, "lb"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/smile/front.svg",
  31967. extra: 2983/2912,
  31968. bottom: 162/3145
  31969. }
  31970. },
  31971. back: {
  31972. height: math.unit(100, "feet"),
  31973. weight: math.unit(0, "lb"),
  31974. name: "Back",
  31975. image: {
  31976. source: "./media/characters/smile/back.svg",
  31977. extra: 3143/3031,
  31978. bottom: 91/3234
  31979. }
  31980. },
  31981. head: {
  31982. height: math.unit(26.3, "feet"),
  31983. weight: math.unit(0, "lb"),
  31984. name: "Head",
  31985. image: {
  31986. source: "./media/characters/smile/head.svg"
  31987. }
  31988. },
  31989. collar: {
  31990. height: math.unit(5.3, "feet"),
  31991. weight: math.unit(0, "lb"),
  31992. name: "Collar",
  31993. image: {
  31994. source: "./media/characters/smile/collar.svg"
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Macro",
  32001. height: math.unit(100, "feet"),
  32002. default: true
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32008. {
  32009. dragon: {
  32010. height: math.unit(26, "feet"),
  32011. weight: math.unit(36, "tons"),
  32012. name: "Dragon",
  32013. image: {
  32014. source: "./media/characters/arimphae/dragon.svg",
  32015. extra: 1574/983,
  32016. bottom: 357/1931
  32017. }
  32018. },
  32019. drake: {
  32020. height: math.unit(9, "feet"),
  32021. weight: math.unit(1.5, "tons"),
  32022. name: "Drake",
  32023. image: {
  32024. source: "./media/characters/arimphae/drake.svg",
  32025. extra: 1120/925,
  32026. bottom: 435/1555
  32027. }
  32028. },
  32029. },
  32030. [
  32031. {
  32032. name: "Small",
  32033. height: math.unit(26*5/9, "feet")
  32034. },
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(26, "feet"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(8 + 9/12, "feet"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/xander/front.svg",
  32050. extra: 848/673,
  32051. bottom: 62/910
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(8 + 9/12, "feet"),
  32059. default: true
  32060. },
  32061. {
  32062. name: "Gaze Grabber",
  32063. height: math.unit(13 + 8/12, "feet")
  32064. },
  32065. {
  32066. name: "Jaw Dropper",
  32067. height: math.unit(27, "feet")
  32068. },
  32069. {
  32070. name: "Show Stopper",
  32071. height: math.unit(136, "feet")
  32072. },
  32073. {
  32074. name: "Superstar",
  32075. height: math.unit(1.9e6, "miles")
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32081. {
  32082. side: {
  32083. height: math.unit(2100, "feet"),
  32084. name: "Side",
  32085. image: {
  32086. source: "./media/characters/osiris/side.svg",
  32087. extra: 1105/939,
  32088. bottom: 167/1272
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Macro",
  32095. height: math.unit(2100, "feet"),
  32096. default: true
  32097. },
  32098. ]
  32099. ))
  32100. characterMakers.push(() => makeCharacter(
  32101. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32102. {
  32103. front: {
  32104. height: math.unit(6 + 8/12, "feet"),
  32105. weight: math.unit(225, "lb"),
  32106. name: "Front",
  32107. image: {
  32108. source: "./media/characters/rhys-londe/front.svg",
  32109. extra: 2258/2141,
  32110. bottom: 188/2446
  32111. }
  32112. },
  32113. back: {
  32114. height: math.unit(6 + 8/12, "feet"),
  32115. weight: math.unit(225, "lb"),
  32116. name: "Back",
  32117. image: {
  32118. source: "./media/characters/rhys-londe/back.svg",
  32119. extra: 2237/2137,
  32120. bottom: 63/2300
  32121. }
  32122. },
  32123. frontNsfw: {
  32124. height: math.unit(6 + 8/12, "feet"),
  32125. weight: math.unit(225, "lb"),
  32126. name: "Front (NSFW)",
  32127. image: {
  32128. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32129. extra: 2258/2141,
  32130. bottom: 188/2446
  32131. }
  32132. },
  32133. backNsfw: {
  32134. height: math.unit(6 + 8/12, "feet"),
  32135. weight: math.unit(225, "lb"),
  32136. name: "Back (NSFW)",
  32137. image: {
  32138. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32139. extra: 2237/2137,
  32140. bottom: 63/2300
  32141. }
  32142. },
  32143. dick: {
  32144. height: math.unit(30, "inches"),
  32145. name: "Dick",
  32146. image: {
  32147. source: "./media/characters/rhys-londe/dick.svg"
  32148. }
  32149. },
  32150. maw: {
  32151. height: math.unit(1.6, "feet"),
  32152. name: "Maw",
  32153. image: {
  32154. source: "./media/characters/rhys-londe/maw.svg"
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(6 + 8/12, "feet"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(3 + 10/12, "feet"),
  32171. weight: math.unit(90, "lb"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/taivas-ensim/front.svg",
  32175. extra: 1327/1216,
  32176. bottom: 96/1423
  32177. }
  32178. },
  32179. back: {
  32180. height: math.unit(3 + 10/12, "feet"),
  32181. weight: math.unit(90, "lb"),
  32182. name: "Back",
  32183. image: {
  32184. source: "./media/characters/taivas-ensim/back.svg",
  32185. extra: 1355/1247,
  32186. bottom: 11/1366
  32187. }
  32188. },
  32189. frontNsfw: {
  32190. height: math.unit(3 + 10/12, "feet"),
  32191. weight: math.unit(90, "lb"),
  32192. name: "Front (NSFW)",
  32193. image: {
  32194. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32195. extra: 1327/1216,
  32196. bottom: 96/1423
  32197. }
  32198. },
  32199. backNsfw: {
  32200. height: math.unit(3 + 10/12, "feet"),
  32201. weight: math.unit(90, "lb"),
  32202. name: "Back (NSFW)",
  32203. image: {
  32204. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32205. extra: 1355/1247,
  32206. bottom: 11/1366
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(3 + 10/12, "feet"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32220. {
  32221. front: {
  32222. height: math.unit(9 + 6/12, "feet"),
  32223. weight: math.unit(940, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/byliss/front.svg",
  32227. extra: 1327/1290,
  32228. bottom: 82/1409
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(9 + 6/12, "feet"),
  32233. weight: math.unit(940, "lb"),
  32234. name: "Back",
  32235. image: {
  32236. source: "./media/characters/byliss/back.svg",
  32237. extra: 1376/1349,
  32238. bottom: 9/1385
  32239. }
  32240. },
  32241. frontNsfw: {
  32242. height: math.unit(9 + 6/12, "feet"),
  32243. weight: math.unit(940, "lb"),
  32244. name: "Front (NSFW)",
  32245. image: {
  32246. source: "./media/characters/byliss/front-nsfw.svg",
  32247. extra: 1327/1290,
  32248. bottom: 82/1409
  32249. }
  32250. },
  32251. backNsfw: {
  32252. height: math.unit(9 + 6/12, "feet"),
  32253. weight: math.unit(940, "lb"),
  32254. name: "Back (NSFW)",
  32255. image: {
  32256. source: "./media/characters/byliss/back-nsfw.svg",
  32257. extra: 1376/1349,
  32258. bottom: 9/1385
  32259. }
  32260. },
  32261. },
  32262. [
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(9 + 6/12, "feet"),
  32266. default: true
  32267. },
  32268. ]
  32269. ))
  32270. characterMakers.push(() => makeCharacter(
  32271. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32272. {
  32273. front: {
  32274. height: math.unit(5 + 2/12, "feet"),
  32275. weight: math.unit(200, "lb"),
  32276. name: "Front",
  32277. image: {
  32278. source: "./media/characters/noraly/front.svg",
  32279. extra: 4985/4773,
  32280. bottom: 150/5135
  32281. }
  32282. },
  32283. full: {
  32284. height: math.unit(5 + 2/12, "feet"),
  32285. weight: math.unit(164, "lb"),
  32286. name: "Full",
  32287. image: {
  32288. source: "./media/characters/noraly/full.svg",
  32289. extra: 1114/1059,
  32290. bottom: 35/1149
  32291. }
  32292. },
  32293. fuller: {
  32294. height: math.unit(5 + 2/12, "feet"),
  32295. weight: math.unit(230, "lb"),
  32296. name: "Fuller",
  32297. image: {
  32298. source: "./media/characters/noraly/fuller.svg",
  32299. extra: 1114/1059,
  32300. bottom: 35/1149
  32301. }
  32302. },
  32303. fullest: {
  32304. height: math.unit(5 + 2/12, "feet"),
  32305. weight: math.unit(300, "lb"),
  32306. name: "Fullest",
  32307. image: {
  32308. source: "./media/characters/noraly/fullest.svg",
  32309. extra: 1114/1059,
  32310. bottom: 35/1149
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Normal",
  32317. height: math.unit(5 + 2/12, "feet"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32324. {
  32325. front: {
  32326. height: math.unit(5 + 2/12, "feet"),
  32327. weight: math.unit(210, "lb"),
  32328. name: "Front",
  32329. image: {
  32330. source: "./media/characters/pera/front.svg",
  32331. extra: 1560/1531,
  32332. bottom: 165/1725
  32333. }
  32334. },
  32335. back: {
  32336. height: math.unit(5 + 2/12, "feet"),
  32337. weight: math.unit(210, "lb"),
  32338. name: "Back",
  32339. image: {
  32340. source: "./media/characters/pera/back.svg",
  32341. extra: 1523/1493,
  32342. bottom: 152/1675
  32343. }
  32344. },
  32345. dick: {
  32346. height: math.unit(2.4, "feet"),
  32347. name: "Dick",
  32348. image: {
  32349. source: "./media/characters/pera/dick.svg"
  32350. }
  32351. },
  32352. },
  32353. [
  32354. {
  32355. name: "Normal",
  32356. height: math.unit(5 + 2/12, "feet"),
  32357. default: true
  32358. },
  32359. ]
  32360. ))
  32361. characterMakers.push(() => makeCharacter(
  32362. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32363. {
  32364. front: {
  32365. height: math.unit(12, "feet"),
  32366. weight: math.unit(3200, "lb"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/julian/front.svg",
  32370. extra: 2962/2701,
  32371. bottom: 184/3146
  32372. }
  32373. },
  32374. maw: {
  32375. height: math.unit(5.35, "feet"),
  32376. name: "Maw",
  32377. image: {
  32378. source: "./media/characters/julian/maw.svg"
  32379. }
  32380. },
  32381. paw: {
  32382. height: math.unit(3.07, "feet"),
  32383. name: "Paw",
  32384. image: {
  32385. source: "./media/characters/julian/paw.svg"
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Default",
  32392. height: math.unit(12, "feet"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Big",
  32397. height: math.unit(50, "feet")
  32398. },
  32399. {
  32400. name: "Really Big",
  32401. height: math.unit(1, "mile")
  32402. },
  32403. {
  32404. name: "Extremely Big",
  32405. height: math.unit(100, "miles")
  32406. },
  32407. {
  32408. name: "Planet Hugger",
  32409. height: math.unit(200, "megameters")
  32410. },
  32411. {
  32412. name: "Unreasonably Big",
  32413. height: math.unit(1e300, "meters")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32419. {
  32420. solgooleo: {
  32421. height: math.unit(4, "meters"),
  32422. weight: math.unit(6000*1.5, "kg"),
  32423. volume: math.unit(6000, "liters"),
  32424. name: "Solgooleo",
  32425. image: {
  32426. source: "./media/characters/pi/solgooleo.svg",
  32427. extra: 388/331,
  32428. bottom: 29/417
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(4, "meters"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(8 + 2/12, "feet"),
  32445. weight: math.unit(4, "tons"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/shaun/front.svg",
  32449. extra: 1550/1505,
  32450. bottom: 353/1903
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Lorg",
  32457. height: math.unit(8 + 2/12, "feet"),
  32458. default: true
  32459. },
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32464. {
  32465. front: {
  32466. height: math.unit(7, "feet"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/sini/front.svg",
  32470. extra: 726/678,
  32471. bottom: 35/761
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(7, "feet"),
  32476. name: "Back",
  32477. image: {
  32478. source: "./media/characters/sini/back.svg",
  32479. extra: 743/701,
  32480. bottom: 12/755
  32481. }
  32482. },
  32483. mawAnthro: {
  32484. height: math.unit(2.14, "feet"),
  32485. name: "Maw (Anthro)",
  32486. image: {
  32487. source: "./media/characters/sini/maw-anthro.svg"
  32488. }
  32489. },
  32490. dick: {
  32491. height: math.unit(1.45, "feet"),
  32492. name: "Dick (Anthro)",
  32493. image: {
  32494. source: "./media/characters/sini/dick-anthro.svg"
  32495. }
  32496. },
  32497. feral: {
  32498. height: math.unit(16, "feet"),
  32499. name: "Feral",
  32500. image: {
  32501. source: "./media/characters/sini/feral.svg",
  32502. extra: 814/605,
  32503. bottom: 11/825
  32504. }
  32505. },
  32506. mawFeral: {
  32507. height: math.unit(5.66, "feet"),
  32508. name: "Maw-feral",
  32509. image: {
  32510. source: "./media/characters/sini/maw-feral.svg"
  32511. }
  32512. },
  32513. footFeral: {
  32514. height: math.unit(5.17, "feet"),
  32515. name: "Foot-feral",
  32516. image: {
  32517. source: "./media/characters/sini/foot-feral.svg"
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Normal",
  32524. height: math.unit(7, "feet"),
  32525. default: true
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32531. {
  32532. side: {
  32533. height: math.unit(13, "meters"),
  32534. weight: math.unit(9072, "kg"),
  32535. name: "Side",
  32536. image: {
  32537. source: "./media/characters/raylldo/side.svg",
  32538. extra: 403/344,
  32539. bottom: 42/445
  32540. }
  32541. },
  32542. leaping: {
  32543. height: math.unit(12.3, "meters"),
  32544. weight: math.unit(9072, "kg"),
  32545. name: "Leaping",
  32546. image: {
  32547. source: "./media/characters/raylldo/leaping.svg",
  32548. extra: 470/249,
  32549. bottom: 13/483
  32550. }
  32551. },
  32552. flying: {
  32553. height: math.unit(18, "meters"),
  32554. weight: math.unit(9072, "kg"),
  32555. name: "Flying",
  32556. image: {
  32557. source: "./media/characters/raylldo/flying.svg"
  32558. }
  32559. },
  32560. head: {
  32561. height: math.unit(5.85, "meters"),
  32562. name: "Head",
  32563. image: {
  32564. source: "./media/characters/raylldo/head.svg"
  32565. }
  32566. },
  32567. maw: {
  32568. height: math.unit(5.32, "meters"),
  32569. name: "Maw",
  32570. image: {
  32571. source: "./media/characters/raylldo/maw.svg"
  32572. }
  32573. },
  32574. eye: {
  32575. height: math.unit(0.54, "meters"),
  32576. name: "Eye",
  32577. image: {
  32578. source: "./media/characters/raylldo/eye.svg"
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(13, "meters"),
  32586. default: true
  32587. },
  32588. ]
  32589. ))
  32590. characterMakers.push(() => makeCharacter(
  32591. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32592. {
  32593. anthroFront: {
  32594. height: math.unit(9, "feet"),
  32595. weight: math.unit(600, "lb"),
  32596. name: "Anthro (Front)",
  32597. image: {
  32598. source: "./media/characters/glint/anthro-front.svg",
  32599. extra: 1097/1018,
  32600. bottom: 28/1125
  32601. }
  32602. },
  32603. anthroBack: {
  32604. height: math.unit(9, "feet"),
  32605. weight: math.unit(600, "lb"),
  32606. name: "Anthro (Back)",
  32607. image: {
  32608. source: "./media/characters/glint/anthro-back.svg",
  32609. extra: 1154/997,
  32610. bottom: 36/1190
  32611. }
  32612. },
  32613. feral: {
  32614. height: math.unit(11, "feet"),
  32615. weight: math.unit(50000, "lb"),
  32616. name: "Feral",
  32617. image: {
  32618. source: "./media/characters/glint/feral.svg",
  32619. extra: 3035/1585,
  32620. bottom: 1169/4204
  32621. }
  32622. },
  32623. dickAnthro: {
  32624. height: math.unit(0.7, "meters"),
  32625. name: "Dick (Anthro)",
  32626. image: {
  32627. source: "./media/characters/glint/dick-anthro.svg"
  32628. }
  32629. },
  32630. dickFeral: {
  32631. height: math.unit(2.65, "meters"),
  32632. name: "Dick (Feral)",
  32633. image: {
  32634. source: "./media/characters/glint/dick-feral.svg"
  32635. }
  32636. },
  32637. slitHidden: {
  32638. height: math.unit(5.85, "meters"),
  32639. name: "Slit (Hidden)",
  32640. image: {
  32641. source: "./media/characters/glint/slit-hidden.svg"
  32642. }
  32643. },
  32644. slitErect: {
  32645. height: math.unit(5.85, "meters"),
  32646. name: "Slit (Erect)",
  32647. image: {
  32648. source: "./media/characters/glint/slit-erect.svg"
  32649. }
  32650. },
  32651. mawAnthro: {
  32652. height: math.unit(0.63, "meters"),
  32653. name: "Maw (Anthro)",
  32654. image: {
  32655. source: "./media/characters/glint/maw.svg"
  32656. }
  32657. },
  32658. mawFeral: {
  32659. height: math.unit(2.89, "meters"),
  32660. name: "Maw (Feral)",
  32661. image: {
  32662. source: "./media/characters/glint/maw.svg"
  32663. }
  32664. },
  32665. },
  32666. [
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(9, "feet"),
  32670. default: true
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32676. {
  32677. side: {
  32678. height: math.unit(15, "feet"),
  32679. weight: math.unit(5000, "kg"),
  32680. name: "Side",
  32681. image: {
  32682. source: "./media/characters/kairne/side.svg",
  32683. extra: 979/811,
  32684. bottom: 13/992
  32685. }
  32686. },
  32687. front: {
  32688. height: math.unit(15, "feet"),
  32689. weight: math.unit(5000, "kg"),
  32690. name: "Front",
  32691. image: {
  32692. source: "./media/characters/kairne/front.svg",
  32693. extra: 908/814,
  32694. bottom: 26/934
  32695. }
  32696. },
  32697. sideNsfw: {
  32698. height: math.unit(15, "feet"),
  32699. weight: math.unit(5000, "kg"),
  32700. name: "Side (NSFW)",
  32701. image: {
  32702. source: "./media/characters/kairne/side-nsfw.svg",
  32703. extra: 979/811,
  32704. bottom: 13/992
  32705. }
  32706. },
  32707. frontNsfw: {
  32708. height: math.unit(15, "feet"),
  32709. weight: math.unit(5000, "kg"),
  32710. name: "Front (NSFW)",
  32711. image: {
  32712. source: "./media/characters/kairne/front-nsfw.svg",
  32713. extra: 908/814,
  32714. bottom: 26/934
  32715. }
  32716. },
  32717. dickCaged: {
  32718. height: math.unit(0.65, "meters"),
  32719. name: "Dick-caged",
  32720. image: {
  32721. source: "./media/characters/kairne/dick-caged.svg"
  32722. }
  32723. },
  32724. dick: {
  32725. height: math.unit(0.79, "meters"),
  32726. name: "Dick",
  32727. image: {
  32728. source: "./media/characters/kairne/dick.svg"
  32729. }
  32730. },
  32731. genitals: {
  32732. height: math.unit(1.29, "meters"),
  32733. name: "Genitals",
  32734. image: {
  32735. source: "./media/characters/kairne/genitals.svg"
  32736. }
  32737. },
  32738. maw: {
  32739. height: math.unit(1.73, "meters"),
  32740. name: "Maw",
  32741. image: {
  32742. source: "./media/characters/kairne/maw.svg"
  32743. }
  32744. },
  32745. },
  32746. [
  32747. {
  32748. name: "Normal",
  32749. height: math.unit(15, "feet"),
  32750. default: true
  32751. },
  32752. ]
  32753. ))
  32754. characterMakers.push(() => makeCharacter(
  32755. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32756. {
  32757. front: {
  32758. height: math.unit(5 + 8/12, "feet"),
  32759. weight: math.unit(139, "lb"),
  32760. name: "Front",
  32761. image: {
  32762. source: "./media/characters/biscuit-jackal/front.svg",
  32763. extra: 2106/1961,
  32764. bottom: 58/2164
  32765. }
  32766. },
  32767. back: {
  32768. height: math.unit(5 + 8/12, "feet"),
  32769. weight: math.unit(139, "lb"),
  32770. name: "Back",
  32771. image: {
  32772. source: "./media/characters/biscuit-jackal/back.svg",
  32773. extra: 2132/1976,
  32774. bottom: 57/2189
  32775. }
  32776. },
  32777. werejackal: {
  32778. height: math.unit(6 + 3/12, "feet"),
  32779. weight: math.unit(188, "lb"),
  32780. name: "Werejackal",
  32781. image: {
  32782. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32783. extra: 2373/2178,
  32784. bottom: 53/2426
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(5 + 8/12, "feet"),
  32792. default: true
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(140, "cm"),
  32801. weight: math.unit(45, "kg"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/tayra-white/front.svg",
  32805. extra: 2229/2192,
  32806. bottom: 75/2304
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(140, "cm"),
  32814. default: true
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32820. {
  32821. front: {
  32822. height: math.unit(4 + 5/12, "feet"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/scoop/front.svg",
  32826. extra: 1257/1136,
  32827. bottom: 69/1326
  32828. }
  32829. },
  32830. back: {
  32831. height: math.unit(4 + 5/12, "feet"),
  32832. name: "Back",
  32833. image: {
  32834. source: "./media/characters/scoop/back.svg",
  32835. extra: 1321/1152,
  32836. bottom: 32/1353
  32837. }
  32838. },
  32839. maw: {
  32840. height: math.unit(0.68, "feet"),
  32841. name: "Maw",
  32842. image: {
  32843. source: "./media/characters/scoop/maw.svg"
  32844. }
  32845. },
  32846. },
  32847. [
  32848. {
  32849. name: "Really Small",
  32850. height: math.unit(1, "mm")
  32851. },
  32852. {
  32853. name: "Micro",
  32854. height: math.unit(1, "inch")
  32855. },
  32856. {
  32857. name: "Normal",
  32858. height: math.unit(4 + 5/12, "feet"),
  32859. default: true
  32860. },
  32861. {
  32862. name: "Macro",
  32863. height: math.unit(200, "feet")
  32864. },
  32865. {
  32866. name: "Megamacro",
  32867. height: math.unit(3240, "feet")
  32868. },
  32869. {
  32870. name: "Teramacro",
  32871. height: math.unit(2500, "miles")
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(15 + 7/12, "feet"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/saphinara/front.svg",
  32883. extra: 604/546,
  32884. bottom: 19/623
  32885. }
  32886. },
  32887. side: {
  32888. height: math.unit(15 + 7/12, "feet"),
  32889. name: "Side",
  32890. image: {
  32891. source: "./media/characters/saphinara/side.svg",
  32892. extra: 605/547,
  32893. bottom: 6/611
  32894. }
  32895. },
  32896. back: {
  32897. height: math.unit(15 + 7/12, "feet"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/saphinara/back.svg",
  32901. extra: 591/531,
  32902. bottom: 13/604
  32903. }
  32904. },
  32905. frontTail: {
  32906. height: math.unit(15 + 7/12, "feet"),
  32907. name: "Front (Full Tail)",
  32908. image: {
  32909. source: "./media/characters/saphinara/front-tail.svg",
  32910. extra: 748/547,
  32911. bottom: 66/814
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(15 + 7/12, "feet"),
  32919. default: true
  32920. },
  32921. {
  32922. name: "Angry",
  32923. height: math.unit(30 + 6/12, "feet")
  32924. },
  32925. {
  32926. name: "Enraged",
  32927. height: math.unit(102 + 1/12, "feet")
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32933. {
  32934. front: {
  32935. height: math.unit(6 + 8/12, "feet"),
  32936. weight: math.unit(300, "lb"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/jrain/front.svg",
  32940. extra: 3039/2865,
  32941. bottom: 399/3438
  32942. }
  32943. },
  32944. back: {
  32945. height: math.unit(6 + 8/12, "feet"),
  32946. weight: math.unit(300, "lb"),
  32947. name: "Back",
  32948. image: {
  32949. source: "./media/characters/jrain/back.svg",
  32950. extra: 3089/2938,
  32951. bottom: 172/3261
  32952. }
  32953. },
  32954. head: {
  32955. height: math.unit(2.14, "feet"),
  32956. name: "Head",
  32957. image: {
  32958. source: "./media/characters/jrain/head.svg"
  32959. }
  32960. },
  32961. maw: {
  32962. height: math.unit(1.77, "feet"),
  32963. name: "Maw",
  32964. image: {
  32965. source: "./media/characters/jrain/maw.svg"
  32966. }
  32967. },
  32968. leftHand: {
  32969. height: math.unit(1.1, "feet"),
  32970. name: "Left Hand",
  32971. image: {
  32972. source: "./media/characters/jrain/left-hand.svg"
  32973. }
  32974. },
  32975. rightHand: {
  32976. height: math.unit(1.1, "feet"),
  32977. name: "Right Hand",
  32978. image: {
  32979. source: "./media/characters/jrain/right-hand.svg"
  32980. }
  32981. },
  32982. eye: {
  32983. height: math.unit(0.35, "feet"),
  32984. name: "Eye",
  32985. image: {
  32986. source: "./media/characters/jrain/eye.svg"
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(6 + 8/12, "feet"),
  32994. default: true
  32995. },
  32996. {
  32997. name: "Casually Large",
  32998. height: math.unit(25, "feet")
  32999. },
  33000. {
  33001. name: "Giant",
  33002. height: math.unit(100, "feet")
  33003. },
  33004. {
  33005. name: "Kaiju",
  33006. height: math.unit(300, "feet")
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33012. {
  33013. dragon: {
  33014. height: math.unit(5, "meters"),
  33015. name: "Dragon",
  33016. image: {
  33017. source: "./media/characters/sabrina/dragon.svg",
  33018. extra: 3670 / 2365,
  33019. bottom: 333 / 4003
  33020. }
  33021. },
  33022. gryphon: {
  33023. height: math.unit(3, "meters"),
  33024. name: "Gryphon",
  33025. image: {
  33026. source: "./media/characters/sabrina/gryphon.svg",
  33027. extra: 1576 / 945,
  33028. bottom: 71 / 1647
  33029. }
  33030. },
  33031. snake: {
  33032. height: math.unit(12, "meters"),
  33033. name: "Snake",
  33034. image: {
  33035. source: "./media/characters/sabrina/snake.svg",
  33036. extra: 1758 / 1320,
  33037. bottom: 186 / 1944
  33038. }
  33039. },
  33040. collar: {
  33041. height: math.unit(1.86, "meters"),
  33042. name: "Collar",
  33043. image: {
  33044. source: "./media/characters/sabrina/collar.svg"
  33045. }
  33046. },
  33047. eye: {
  33048. height: math.unit(0.53, "meters"),
  33049. name: "Eye",
  33050. image: {
  33051. source: "./media/characters/sabrina/eye.svg"
  33052. }
  33053. },
  33054. foot: {
  33055. height: math.unit(1.86, "meters"),
  33056. name: "Foot",
  33057. image: {
  33058. source: "./media/characters/sabrina/foot.svg"
  33059. }
  33060. },
  33061. hand: {
  33062. height: math.unit(1.32, "meters"),
  33063. name: "Hand",
  33064. image: {
  33065. source: "./media/characters/sabrina/hand.svg"
  33066. }
  33067. },
  33068. head: {
  33069. height: math.unit(2.44, "meters"),
  33070. name: "Head",
  33071. image: {
  33072. source: "./media/characters/sabrina/head.svg"
  33073. }
  33074. },
  33075. headAngry: {
  33076. height: math.unit(2.44, "meters"),
  33077. name: "Head (Angry))",
  33078. image: {
  33079. source: "./media/characters/sabrina/head-angry.svg"
  33080. }
  33081. },
  33082. maw: {
  33083. height: math.unit(1.65, "meters"),
  33084. name: "Maw",
  33085. image: {
  33086. source: "./media/characters/sabrina/maw.svg"
  33087. }
  33088. },
  33089. spikes: {
  33090. height: math.unit(1.69, "meters"),
  33091. name: "Spikes",
  33092. image: {
  33093. source: "./media/characters/sabrina/spikes.svg"
  33094. }
  33095. },
  33096. stomach: {
  33097. height: math.unit(1.15, "meters"),
  33098. name: "Stomach",
  33099. image: {
  33100. source: "./media/characters/sabrina/stomach.svg"
  33101. }
  33102. },
  33103. tongue: {
  33104. height: math.unit(1.27, "meters"),
  33105. name: "Tongue",
  33106. image: {
  33107. source: "./media/characters/sabrina/tongue.svg"
  33108. }
  33109. },
  33110. wingDorsal: {
  33111. height: math.unit(4.85, "meters"),
  33112. name: "Wing (Dorsal)",
  33113. image: {
  33114. source: "./media/characters/sabrina/wing-dorsal.svg"
  33115. }
  33116. },
  33117. wingVentral: {
  33118. height: math.unit(4.85, "meters"),
  33119. name: "Wing (Ventral)",
  33120. image: {
  33121. source: "./media/characters/sabrina/wing-ventral.svg"
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(5, "meters"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33135. {
  33136. frontMaid: {
  33137. height: math.unit(5 + 5/12, "feet"),
  33138. weight: math.unit(130, "lb"),
  33139. name: "Front (Maid)",
  33140. image: {
  33141. source: "./media/characters/midnight-tales/front-maid.svg",
  33142. extra: 489/454,
  33143. bottom: 61/550
  33144. }
  33145. },
  33146. frontFormal: {
  33147. height: math.unit(5 + 5/12, "feet"),
  33148. weight: math.unit(130, "lb"),
  33149. name: "Front (Formal)",
  33150. image: {
  33151. source: "./media/characters/midnight-tales/front-formal.svg",
  33152. extra: 489/454,
  33153. bottom: 61/550
  33154. }
  33155. },
  33156. back: {
  33157. height: math.unit(5 + 5/12, "feet"),
  33158. weight: math.unit(130, "lb"),
  33159. name: "Back",
  33160. image: {
  33161. source: "./media/characters/midnight-tales/back.svg",
  33162. extra: 498/456,
  33163. bottom: 33/531
  33164. }
  33165. },
  33166. frontBeast: {
  33167. height: math.unit(40, "feet"),
  33168. weight: math.unit(64000, "lb"),
  33169. name: "Front (Beast)",
  33170. image: {
  33171. source: "./media/characters/midnight-tales/front-beast.svg",
  33172. extra: 927/860,
  33173. bottom: 53/980
  33174. }
  33175. },
  33176. backBeast: {
  33177. height: math.unit(40, "feet"),
  33178. weight: math.unit(64000, "lb"),
  33179. name: "Back (Beast)",
  33180. image: {
  33181. source: "./media/characters/midnight-tales/back-beast.svg",
  33182. extra: 929/855,
  33183. bottom: 16/945
  33184. }
  33185. },
  33186. footBeast: {
  33187. height: math.unit(6.7, "feet"),
  33188. name: "Foot (Beast)",
  33189. image: {
  33190. source: "./media/characters/midnight-tales/foot-beast.svg"
  33191. }
  33192. },
  33193. headBeast: {
  33194. height: math.unit(8, "feet"),
  33195. name: "Head (Beast)",
  33196. image: {
  33197. source: "./media/characters/midnight-tales/head-beast.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Normal",
  33204. height: math.unit(5 + 5 / 12, "feet"),
  33205. default: true
  33206. },
  33207. {
  33208. name: "Macro",
  33209. height: math.unit(25, "feet")
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(5 + 10/12, "feet"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/argon/front.svg",
  33221. extra: 2009/1935,
  33222. bottom: 118/2127
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(5 + 10/12, "feet"),
  33227. name: "Back",
  33228. image: {
  33229. source: "./media/characters/argon/back.svg",
  33230. extra: 2047/1992,
  33231. bottom: 20/2067
  33232. }
  33233. },
  33234. frontDressed: {
  33235. height: math.unit(5 + 10/12, "feet"),
  33236. name: "Front (Dressed)",
  33237. image: {
  33238. source: "./media/characters/argon/front-dressed.svg",
  33239. extra: 2009/1935,
  33240. bottom: 118/2127
  33241. }
  33242. },
  33243. },
  33244. [
  33245. {
  33246. name: "Normal",
  33247. height: math.unit(5 + 10/12, "feet"),
  33248. default: true
  33249. },
  33250. ]
  33251. ))
  33252. characterMakers.push(() => makeCharacter(
  33253. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33254. {
  33255. front: {
  33256. height: math.unit(8 + 6/12, "feet"),
  33257. weight: math.unit(1150, "lb"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/kichi/front.svg",
  33261. extra: 1267/1164,
  33262. bottom: 61/1328
  33263. }
  33264. },
  33265. back: {
  33266. height: math.unit(8 + 6/12, "feet"),
  33267. weight: math.unit(1150, "lb"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/kichi/back.svg",
  33271. extra: 1273/1166,
  33272. bottom: 33/1306
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(8 + 6/12, "feet"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33286. {
  33287. front: {
  33288. height: math.unit(6, "feet"),
  33289. weight: math.unit(210, "lb"),
  33290. name: "Front",
  33291. image: {
  33292. source: "./media/characters/manetel-greyscale/front.svg",
  33293. extra: 350/312,
  33294. bottom: 8/358
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Micro",
  33301. height: math.unit(2, "inches")
  33302. },
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(6, "feet"),
  33306. default: true
  33307. },
  33308. {
  33309. name: "Minimacro",
  33310. height: math.unit(17, "feet")
  33311. },
  33312. {
  33313. name: "Macro",
  33314. height: math.unit(117, "feet")
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33320. {
  33321. side: {
  33322. height: math.unit(5 + 1/12, "feet"),
  33323. weight: math.unit(418, "lb"),
  33324. name: "Side",
  33325. image: {
  33326. source: "./media/characters/softpurr/side.svg",
  33327. extra: 1993/1945,
  33328. bottom: 134/2127
  33329. }
  33330. },
  33331. front: {
  33332. height: math.unit(5 + 1/12, "feet"),
  33333. weight: math.unit(418, "lb"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/softpurr/front.svg",
  33337. extra: 1950/1856,
  33338. bottom: 174/2124
  33339. }
  33340. },
  33341. paw: {
  33342. height: math.unit(1, "feet"),
  33343. name: "Paw",
  33344. image: {
  33345. source: "./media/characters/softpurr/paw.svg"
  33346. }
  33347. },
  33348. },
  33349. [
  33350. {
  33351. name: "Normal",
  33352. height: math.unit(5 + 1/12, "feet"),
  33353. default: true
  33354. },
  33355. ]
  33356. ))
  33357. characterMakers.push(() => makeCharacter(
  33358. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33359. {
  33360. front: {
  33361. height: math.unit(260, "meters"),
  33362. name: "Front",
  33363. image: {
  33364. source: "./media/characters/anahita/front.svg",
  33365. extra: 665/635,
  33366. bottom: 89/754
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Macro",
  33373. height: math.unit(260, "meters"),
  33374. default: true
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(4 + 10/12, "feet"),
  33383. weight: math.unit(160, "lb"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/chip-mouse/front.svg",
  33387. extra: 3528/3408,
  33388. bottom: 0/3528
  33389. }
  33390. },
  33391. frontNsfw: {
  33392. height: math.unit(4 + 10/12, "feet"),
  33393. weight: math.unit(160, "lb"),
  33394. name: "Front (NSFW)",
  33395. image: {
  33396. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33397. extra: 3528/3408,
  33398. bottom: 0/3528
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(4 + 10/12, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33412. {
  33413. side: {
  33414. height: math.unit(10, "feet"),
  33415. weight: math.unit(14000, "lb"),
  33416. name: "Side",
  33417. image: {
  33418. source: "./media/characters/kremm/side.svg",
  33419. extra: 1390/1053,
  33420. bottom: 90/1480
  33421. }
  33422. },
  33423. gut: {
  33424. height: math.unit(5.8, "feet"),
  33425. name: "Gut",
  33426. image: {
  33427. source: "./media/characters/kremm/gut.svg"
  33428. }
  33429. },
  33430. ass: {
  33431. height: math.unit(6.1, "feet"),
  33432. name: "Ass",
  33433. image: {
  33434. source: "./media/characters/kremm/ass.svg"
  33435. }
  33436. },
  33437. jaws: {
  33438. height: math.unit(2.2, "feet"),
  33439. name: "Jaws",
  33440. image: {
  33441. source: "./media/characters/kremm/jaws.svg"
  33442. }
  33443. },
  33444. dick: {
  33445. height: math.unit(4.26, "feet"),
  33446. name: "Dick",
  33447. image: {
  33448. source: "./media/characters/kremm/dick.svg"
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(10, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(30, "stories"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/kai/front.svg",
  33468. extra: 1892/1718,
  33469. bottom: 162/2054
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Macro",
  33476. height: math.unit(30, "stories"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(6 + 4/12, "feet"),
  33486. weight: math.unit(145, "lb"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/sykes/front.svg",
  33490. extra: 1321 / 1187,
  33491. bottom: 66 / 1387
  33492. }
  33493. },
  33494. back: {
  33495. height: math.unit(6 + 4/12, "feet"),
  33496. weight: math.unit(145, "lb"),
  33497. name: "Back",
  33498. image: {
  33499. source: "./media/characters/sykes/back.svg",
  33500. extra: 1326/1181,
  33501. bottom: 31/1357
  33502. }
  33503. },
  33504. handBack: {
  33505. height: math.unit(0.9, "feet"),
  33506. name: "Hand (Back)",
  33507. image: {
  33508. source: "./media/characters/sykes/hand-back.svg"
  33509. }
  33510. },
  33511. handFront: {
  33512. height: math.unit(0.839, "feet"),
  33513. name: "Hand (Front)",
  33514. image: {
  33515. source: "./media/characters/sykes/hand-front.svg"
  33516. }
  33517. },
  33518. leftFoot: {
  33519. height: math.unit(1.2, "feet"),
  33520. name: "Foot (Left)",
  33521. image: {
  33522. source: "./media/characters/sykes/foot-left.svg"
  33523. }
  33524. },
  33525. rightFoot: {
  33526. height: math.unit(1.2, "feet"),
  33527. name: "Foot (Right)",
  33528. image: {
  33529. source: "./media/characters/sykes/foot-right.svg"
  33530. }
  33531. },
  33532. maw: {
  33533. height: math.unit(1.93, "feet"),
  33534. name: "Maw",
  33535. image: {
  33536. source: "./media/characters/sykes/maw.svg"
  33537. }
  33538. },
  33539. teeth: {
  33540. height: math.unit(0.51, "feet"),
  33541. name: "Teeth",
  33542. image: {
  33543. source: "./media/characters/sykes/teeth.svg"
  33544. }
  33545. },
  33546. tongue: {
  33547. height: math.unit(2.13, "feet"),
  33548. name: "Tongue",
  33549. image: {
  33550. source: "./media/characters/sykes/tongue.svg"
  33551. }
  33552. },
  33553. uvula: {
  33554. height: math.unit(0.16, "feet"),
  33555. name: "Uvula",
  33556. image: {
  33557. source: "./media/characters/sykes/uvula.svg"
  33558. }
  33559. },
  33560. collar: {
  33561. height: math.unit(0.287, "feet"),
  33562. name: "Collar",
  33563. image: {
  33564. source: "./media/characters/sykes/collar.svg"
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Shrunken",
  33571. height: math.unit(5, "inches")
  33572. },
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(6 + 4 / 12, "feet"),
  33576. default: true
  33577. },
  33578. {
  33579. name: "Big",
  33580. height: math.unit(15, "feet")
  33581. },
  33582. ]
  33583. ))
  33584. characterMakers.push(() => makeCharacter(
  33585. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33586. {
  33587. front: {
  33588. height: math.unit(5 + 8/12, "feet"),
  33589. weight: math.unit(190, "lb"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/oven-otter/front.svg",
  33593. extra: 1809/1740,
  33594. bottom: 181/1990
  33595. }
  33596. },
  33597. back: {
  33598. height: math.unit(5 + 8/12, "feet"),
  33599. weight: math.unit(190, "lb"),
  33600. name: "Back",
  33601. image: {
  33602. source: "./media/characters/oven-otter/back.svg",
  33603. extra: 1709/1635,
  33604. bottom: 118/1827
  33605. }
  33606. },
  33607. hand: {
  33608. height: math.unit(1.07, "feet"),
  33609. name: "Hand",
  33610. image: {
  33611. source: "./media/characters/oven-otter/hand.svg"
  33612. }
  33613. },
  33614. beans: {
  33615. height: math.unit(1.74, "feet"),
  33616. name: "Beans",
  33617. image: {
  33618. source: "./media/characters/oven-otter/beans.svg"
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Micro",
  33625. height: math.unit(0.5, "inches")
  33626. },
  33627. {
  33628. name: "Normal",
  33629. height: math.unit(5 + 8/12, "feet"),
  33630. default: true
  33631. },
  33632. {
  33633. name: "Macro",
  33634. height: math.unit(250, "feet")
  33635. },
  33636. {
  33637. name: "Really High",
  33638. height: math.unit(420, "feet")
  33639. },
  33640. ]
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33644. {
  33645. front: {
  33646. height: math.unit(5, "meters"),
  33647. weight: math.unit(292000000000000, "kg"),
  33648. name: "Front",
  33649. image: {
  33650. source: "./media/characters/devourer/front.svg",
  33651. extra: 1800/1733,
  33652. bottom: 211/2011
  33653. }
  33654. },
  33655. maw: {
  33656. height: math.unit(1.1, "meter"),
  33657. name: "Maw",
  33658. image: {
  33659. source: "./media/characters/devourer/maw.svg"
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Small",
  33666. height: math.unit(3, "meters")
  33667. },
  33668. {
  33669. name: "Large",
  33670. height: math.unit(5, "meters"),
  33671. default: true
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33677. {
  33678. front: {
  33679. height: math.unit(6, "feet"),
  33680. weight: math.unit(400, "lb"),
  33681. name: "Front",
  33682. image: {
  33683. source: "./media/characters/ellarby/front.svg",
  33684. extra: 1909/1763,
  33685. bottom: 80/1989
  33686. }
  33687. },
  33688. back: {
  33689. height: math.unit(6, "feet"),
  33690. weight: math.unit(400, "lb"),
  33691. name: "Back",
  33692. image: {
  33693. source: "./media/characters/ellarby/back.svg",
  33694. extra: 1914/1784,
  33695. bottom: 172/2086
  33696. }
  33697. },
  33698. },
  33699. [
  33700. {
  33701. name: "Mischief",
  33702. height: math.unit(18, "inches")
  33703. },
  33704. {
  33705. name: "Trouble",
  33706. height: math.unit(12, "feet")
  33707. },
  33708. {
  33709. name: "Havoc",
  33710. height: math.unit(200, "feet"),
  33711. default: true
  33712. },
  33713. {
  33714. name: "Pandemonium",
  33715. height: math.unit(1, "mile")
  33716. },
  33717. {
  33718. name: "Catastrophe",
  33719. height: math.unit(100, "miles")
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33725. {
  33726. front: {
  33727. height: math.unit(4.7, "meters"),
  33728. weight: math.unit(6500, "kg"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/vex/front.svg",
  33732. extra: 1288/1140,
  33733. bottom: 100/1388
  33734. }
  33735. },
  33736. },
  33737. [
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(4.7, "meters"),
  33741. default: true
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33747. {
  33748. normal: {
  33749. height: math.unit(6, "feet"),
  33750. weight: math.unit(350, "lb"),
  33751. name: "Normal",
  33752. image: {
  33753. source: "./media/characters/teshy/normal.svg",
  33754. extra: 1795/1735,
  33755. bottom: 16/1811
  33756. }
  33757. },
  33758. monsterFront: {
  33759. height: math.unit(12, "feet"),
  33760. weight: math.unit(4700, "lb"),
  33761. name: "Monster (Front)",
  33762. image: {
  33763. source: "./media/characters/teshy/monster-front.svg",
  33764. extra: 2042/2034,
  33765. bottom: 128/2170
  33766. }
  33767. },
  33768. monsterSide: {
  33769. height: math.unit(12, "feet"),
  33770. weight: math.unit(4700, "lb"),
  33771. name: "Monster (Side)",
  33772. image: {
  33773. source: "./media/characters/teshy/monster-side.svg",
  33774. extra: 2067/2056,
  33775. bottom: 70/2137
  33776. }
  33777. },
  33778. monsterBack: {
  33779. height: math.unit(12, "feet"),
  33780. weight: math.unit(4700, "lb"),
  33781. name: "Monster (Back)",
  33782. image: {
  33783. source: "./media/characters/teshy/monster-back.svg",
  33784. extra: 1921/1914,
  33785. bottom: 171/2092
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Normal",
  33792. height: math.unit(6, "feet"),
  33793. default: true
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(6, "feet"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/ramey/front.svg",
  33805. extra: 790/787,
  33806. bottom: 27/817
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(6, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(5 + 5/12, "feet"),
  33823. weight: math.unit(120, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/phirae/front.svg",
  33827. extra: 2491/2436,
  33828. bottom: 38/2529
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(5 + 5/12, "feet"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(6, "feet"),
  33845. weight: math.unit(150, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/stagglas/front.svg",
  33849. extra: 962/882,
  33850. bottom: 53/1015
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(5 + 3/12, "feet"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(5 + 4/12, "feet"),
  33867. weight: math.unit(145, "lb"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/starra/front.svg",
  33871. extra: 1790/1691,
  33872. bottom: 91/1881
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(5 + 4/12, "feet"),
  33880. default: true
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(2.2, "meters"),
  33889. name: "Front",
  33890. image: {
  33891. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33892. extra: 1194/1005,
  33893. bottom: 25/1219
  33894. }
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Normal",
  33900. height: math.unit(2.2, "meters"),
  33901. default: true
  33902. },
  33903. ]
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33907. {
  33908. side: {
  33909. height: math.unit(8 + 2/12, "feet"),
  33910. weight: math.unit(1240, "lb"),
  33911. name: "Side",
  33912. image: {
  33913. source: "./media/characters/mika-valentine/side.svg",
  33914. extra: 2670/2501,
  33915. bottom: 250/2920
  33916. }
  33917. },
  33918. },
  33919. [
  33920. {
  33921. name: "Normal",
  33922. height: math.unit(8 + 2/12, "feet"),
  33923. default: true
  33924. },
  33925. ]
  33926. ))
  33927. characterMakers.push(() => makeCharacter(
  33928. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33929. {
  33930. front: {
  33931. height: math.unit(7 + 2/12, "feet"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/xoltol/front.svg",
  33935. extra: 2212/2124,
  33936. bottom: 84/2296
  33937. }
  33938. },
  33939. side: {
  33940. height: math.unit(7 + 2/12, "feet"),
  33941. name: "Side",
  33942. image: {
  33943. source: "./media/characters/xoltol/side.svg",
  33944. extra: 2273/2197,
  33945. bottom: 26/2299
  33946. }
  33947. },
  33948. hand: {
  33949. height: math.unit(2.5, "feet"),
  33950. name: "Hand",
  33951. image: {
  33952. source: "./media/characters/xoltol/hand.svg"
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Small-ish",
  33959. height: math.unit(5 + 11/12, "feet")
  33960. },
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(7 + 2/12, "feet")
  33964. },
  33965. {
  33966. name: "\"Macro\"",
  33967. height: math.unit(14 + 9/12, "feet"),
  33968. default: true
  33969. },
  33970. {
  33971. name: "Alternate Height",
  33972. height: math.unit(20, "feet")
  33973. },
  33974. {
  33975. name: "Actually Macro",
  33976. height: math.unit(100, "feet")
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(5 + 2/12, "feet"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/kotetsu-redwood/front.svg",
  33988. extra: 1053/942,
  33989. bottom: 60/1113
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Normal",
  33996. height: math.unit(5 + 2/12, "feet"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(2.4, "meters"),
  34006. weight: math.unit(125, "kg"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/lilith/front.svg",
  34010. extra: 1590/1513,
  34011. bottom: 203/1793
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Humanoid",
  34018. height: math.unit(2.4, "meters")
  34019. },
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(6, "meters"),
  34023. default: true
  34024. },
  34025. {
  34026. name: "Largest",
  34027. height: math.unit(55, "meters")
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(8 + 4/12, "feet"),
  34036. weight: math.unit(535, "lb"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/beh'kah-bolger/front.svg",
  34040. extra: 1660/1603,
  34041. bottom: 37/1697
  34042. }
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(8 + 4/12, "feet"),
  34049. default: true
  34050. },
  34051. {
  34052. name: "Kaiju",
  34053. height: math.unit(250, "feet")
  34054. },
  34055. {
  34056. name: "Still Growing",
  34057. height: math.unit(10, "miles")
  34058. },
  34059. {
  34060. name: "Continental",
  34061. height: math.unit(5000, "miles")
  34062. },
  34063. {
  34064. name: "Final Form",
  34065. height: math.unit(2500000, "miles")
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34071. {
  34072. front: {
  34073. height: math.unit(7 + 2/12, "feet"),
  34074. weight: math.unit(230, "kg"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/tatyana-milewska/front.svg",
  34078. extra: 1199/1150,
  34079. bottom: 86/1285
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(7 + 2/12, "feet"),
  34087. default: true
  34088. },
  34089. {
  34090. name: "Big",
  34091. height: math.unit(12, "feet")
  34092. },
  34093. {
  34094. name: "Minimacro",
  34095. height: math.unit(20, "feet")
  34096. },
  34097. {
  34098. name: "Macro",
  34099. height: math.unit(120, "feet")
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(7 + 8/12, "feet"),
  34108. weight: math.unit(152, "kg"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/helen-arri/front.svg",
  34112. extra: 440/423,
  34113. bottom: 14/454
  34114. }
  34115. },
  34116. back: {
  34117. height: math.unit(7 + 8/12, "feet"),
  34118. weight: math.unit(152, "kg"),
  34119. name: "Back",
  34120. image: {
  34121. source: "./media/characters/helen-arri/back.svg",
  34122. extra: 443/426,
  34123. bottom: 8/451
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(7 + 8/12, "feet"),
  34131. default: true
  34132. },
  34133. {
  34134. name: "Big",
  34135. height: math.unit(14, "feet")
  34136. },
  34137. {
  34138. name: "Minimacro",
  34139. height: math.unit(24, "feet")
  34140. },
  34141. {
  34142. name: "Macro",
  34143. height: math.unit(140, "feet")
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(6, "meters"),
  34152. name: "Front",
  34153. image: {
  34154. source: "./media/characters/ehanu-rehu/front.svg",
  34155. extra: 1800/1800,
  34156. bottom: 59/1859
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(6, "meters"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(7 + 3/12, "feet"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/renholder/front.svg",
  34176. extra: 3096/2960,
  34177. bottom: 250/3346
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal Bat",
  34184. height: math.unit(7 + 3/12, "feet"),
  34185. default: true
  34186. },
  34187. {
  34188. name: "Slightly Tall Bat",
  34189. height: math.unit(100, "feet")
  34190. },
  34191. {
  34192. name: "Big Bat",
  34193. height: math.unit(1000, "feet")
  34194. },
  34195. {
  34196. name: "City-Sized Bat",
  34197. height: math.unit(200000, "feet")
  34198. },
  34199. {
  34200. name: "Bigger Bat",
  34201. height: math.unit(10000, "miles")
  34202. },
  34203. {
  34204. name: "Solar Sized Bat",
  34205. height: math.unit(100, "AU")
  34206. },
  34207. {
  34208. name: "Galactic Bat",
  34209. height: math.unit(200000, "lightyears")
  34210. },
  34211. {
  34212. name: "Universally Known Bat",
  34213. height: math.unit(1, "universe")
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(6 + 11/12, "feet"),
  34222. weight: math.unit(250, "lb"),
  34223. name: "Front",
  34224. image: {
  34225. source: "./media/characters/cookiecat/front.svg",
  34226. extra: 893/827,
  34227. bottom: 14/907
  34228. }
  34229. },
  34230. },
  34231. [
  34232. {
  34233. name: "Micro",
  34234. height: math.unit(3, "inches")
  34235. },
  34236. {
  34237. name: "Normal",
  34238. height: math.unit(6 + 11/12, "feet"),
  34239. default: true
  34240. },
  34241. {
  34242. name: "Macro",
  34243. height: math.unit(100, "feet")
  34244. },
  34245. {
  34246. name: "Macro+",
  34247. height: math.unit(404, "feet")
  34248. },
  34249. {
  34250. name: "Megamacro",
  34251. height: math.unit(165, "miles")
  34252. },
  34253. {
  34254. name: "Planetary",
  34255. height: math.unit(4600, "miles")
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(10 + 3/12, "feet"),
  34264. weight: math.unit(1500, "lb"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/tux-kusanagi/front.svg",
  34268. extra: 944/840,
  34269. bottom: 39/983
  34270. }
  34271. },
  34272. back: {
  34273. height: math.unit(10 + 3/12, "feet"),
  34274. weight: math.unit(1500, "lb"),
  34275. name: "Back",
  34276. image: {
  34277. source: "./media/characters/tux-kusanagi/back.svg",
  34278. extra: 941/842,
  34279. bottom: 28/969
  34280. }
  34281. },
  34282. rump: {
  34283. height: math.unit(5.25, "feet"),
  34284. name: "Rump",
  34285. image: {
  34286. source: "./media/characters/tux-kusanagi/rump.svg"
  34287. }
  34288. },
  34289. beak: {
  34290. height: math.unit(1.54, "feet"),
  34291. name: "Beak",
  34292. image: {
  34293. source: "./media/characters/tux-kusanagi/beak.svg"
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Normal",
  34300. height: math.unit(10 + 3/12, "feet"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(58, "feet"),
  34310. weight: math.unit(200, "tons"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/uzarmazari/front.svg",
  34314. extra: 1575/1455,
  34315. bottom: 152/1727
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(58, "feet"),
  34320. weight: math.unit(200, "tons"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/uzarmazari/back.svg",
  34324. extra: 1585/1510,
  34325. bottom: 157/1742
  34326. }
  34327. },
  34328. head: {
  34329. height: math.unit(26, "feet"),
  34330. name: "Head",
  34331. image: {
  34332. source: "./media/characters/uzarmazari/head.svg"
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Normal",
  34339. height: math.unit(58, "feet"),
  34340. default: true
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34346. {
  34347. side: {
  34348. height: math.unit(15, "feet"),
  34349. name: "Side",
  34350. image: {
  34351. source: "./media/characters/akitu/side.svg",
  34352. extra: 1421/1321,
  34353. bottom: 157/1578
  34354. }
  34355. },
  34356. front: {
  34357. height: math.unit(15, "feet"),
  34358. name: "Front",
  34359. image: {
  34360. source: "./media/characters/akitu/front.svg",
  34361. extra: 1435/1326,
  34362. bottom: 232/1667
  34363. }
  34364. },
  34365. },
  34366. [
  34367. {
  34368. name: "Normal",
  34369. height: math.unit(15, "feet"),
  34370. default: true
  34371. },
  34372. ]
  34373. ))
  34374. characterMakers.push(() => makeCharacter(
  34375. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34376. {
  34377. front: {
  34378. height: math.unit(10 + 8/12, "feet"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/azalie-croixland/front.svg",
  34382. extra: 1972/1856,
  34383. bottom: 31/2003
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Original Height",
  34390. height: math.unit(5 + 4/12, "feet")
  34391. },
  34392. {
  34393. name: "Normal Height",
  34394. height: math.unit(10 + 8/12, "feet"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34401. {
  34402. side: {
  34403. height: math.unit(7 + 1/12, "feet"),
  34404. weight: math.unit(245, "lb"),
  34405. name: "Side",
  34406. image: {
  34407. source: "./media/characters/kavus-kazian/side.svg",
  34408. extra: 349/342,
  34409. bottom: 15/364
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Normal",
  34416. height: math.unit(7 + 1/12, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34423. {
  34424. normal: {
  34425. height: math.unit(5 + 11/12, "feet"),
  34426. name: "Normal",
  34427. image: {
  34428. source: "./media/characters/moonlight-rose/normal.svg",
  34429. extra: 1979/1835,
  34430. bottom: 14/1993
  34431. }
  34432. },
  34433. demon: {
  34434. height: math.unit(5, "km"),
  34435. name: "Demon",
  34436. image: {
  34437. source: "./media/characters/moonlight-rose/demon.svg",
  34438. extra: 986/916,
  34439. bottom: 28/1014
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "\"Natural\" height",
  34446. height: math.unit(5 + 11/12, "feet")
  34447. },
  34448. {
  34449. name: "Comfortable Size",
  34450. height: math.unit(40, "meters")
  34451. },
  34452. {
  34453. name: "Common Size",
  34454. height: math.unit(50, "km"),
  34455. default: true
  34456. },
  34457. {
  34458. name: "Demonic",
  34459. height: math.unit(1.24415e+21, "meters")
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(16, "feet"),
  34468. weight: math.unit(610, "kg"),
  34469. name: "Front",
  34470. image: {
  34471. source: "./media/characters/huckle/front.svg",
  34472. extra: 1731/1625,
  34473. bottom: 33/1764
  34474. }
  34475. },
  34476. back: {
  34477. height: math.unit(16, "feet"),
  34478. weight: math.unit(610, "kg"),
  34479. name: "Back",
  34480. image: {
  34481. source: "./media/characters/huckle/back.svg",
  34482. extra: 1738/1651,
  34483. bottom: 37/1775
  34484. }
  34485. },
  34486. laughing: {
  34487. height: math.unit(3.75, "feet"),
  34488. name: "Laughing",
  34489. image: {
  34490. source: "./media/characters/huckle/laughing.svg"
  34491. }
  34492. },
  34493. angry: {
  34494. height: math.unit(4.15, "feet"),
  34495. name: "Angry",
  34496. image: {
  34497. source: "./media/characters/huckle/angry.svg"
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(16, "feet"),
  34505. default: true
  34506. },
  34507. {
  34508. name: "Mini Macro",
  34509. height: math.unit(463, "feet")
  34510. },
  34511. {
  34512. name: "Macro",
  34513. height: math.unit(1680, "meters")
  34514. },
  34515. {
  34516. name: "Mega Macro",
  34517. height: math.unit(175, "km")
  34518. },
  34519. {
  34520. name: "Terra Macro",
  34521. height: math.unit(32, "gigameters")
  34522. },
  34523. {
  34524. name: "Multiverse+",
  34525. height: math.unit(2.56e23, "yottameters")
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(6 + 9/12, "feet"),
  34534. weight: math.unit(280, "lb"),
  34535. name: "Front",
  34536. image: {
  34537. source: "./media/characters/candy/front.svg",
  34538. extra: 234/217,
  34539. bottom: 11/245
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Really Small",
  34546. height: math.unit(0.1, "nm")
  34547. },
  34548. {
  34549. name: "Micro",
  34550. height: math.unit(2, "inches")
  34551. },
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(6 + 9/12, "feet"),
  34555. default: true
  34556. },
  34557. {
  34558. name: "Small Macro",
  34559. height: math.unit(69, "feet")
  34560. },
  34561. {
  34562. name: "Macro",
  34563. height: math.unit(160, "feet")
  34564. },
  34565. {
  34566. name: "Megamacro",
  34567. height: math.unit(22000, "miles")
  34568. },
  34569. {
  34570. name: "Gigamacro",
  34571. height: math.unit(50000, "miles")
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34577. {
  34578. front: {
  34579. height: math.unit(4, "feet"),
  34580. weight: math.unit(90, "lb"),
  34581. name: "Front",
  34582. image: {
  34583. source: "./media/characters/joey-mcdonald/front.svg",
  34584. extra: 1059/852,
  34585. bottom: 33/1092
  34586. }
  34587. },
  34588. back: {
  34589. height: math.unit(4, "feet"),
  34590. weight: math.unit(90, "lb"),
  34591. name: "Back",
  34592. image: {
  34593. source: "./media/characters/joey-mcdonald/back.svg",
  34594. extra: 1077/879,
  34595. bottom: 5/1082
  34596. }
  34597. },
  34598. frontKobold: {
  34599. height: math.unit(4, "feet"),
  34600. weight: math.unit(100, "lb"),
  34601. name: "Front-kobold",
  34602. image: {
  34603. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34604. extra: 1480/1367,
  34605. bottom: 0/1480
  34606. }
  34607. },
  34608. backKobold: {
  34609. height: math.unit(4, "feet"),
  34610. weight: math.unit(100, "lb"),
  34611. name: "Back-kobold",
  34612. image: {
  34613. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34614. extra: 1449/1361,
  34615. bottom: 0/1449
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(4, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(12 + 6/12, "feet"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/kass-lockheed/front.svg",
  34635. extra: 354/343,
  34636. bottom: 9/363
  34637. }
  34638. },
  34639. back: {
  34640. height: math.unit(12 + 6/12, "feet"),
  34641. name: "Back",
  34642. image: {
  34643. source: "./media/characters/kass-lockheed/back.svg",
  34644. extra: 364/352,
  34645. bottom: 3/367
  34646. }
  34647. },
  34648. dick: {
  34649. height: math.unit(3.12, "feet"),
  34650. name: "Dick",
  34651. image: {
  34652. source: "./media/characters/kass-lockheed/dick.svg"
  34653. }
  34654. },
  34655. head: {
  34656. height: math.unit(2.6, "feet"),
  34657. name: "Head",
  34658. image: {
  34659. source: "./media/characters/kass-lockheed/head.svg"
  34660. }
  34661. },
  34662. bleh: {
  34663. height: math.unit(2.85, "feet"),
  34664. name: "Bleh",
  34665. image: {
  34666. source: "./media/characters/kass-lockheed/bleh.svg"
  34667. }
  34668. },
  34669. smug: {
  34670. height: math.unit(2.85, "feet"),
  34671. name: "Smug",
  34672. image: {
  34673. source: "./media/characters/kass-lockheed/smug.svg"
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Normal",
  34680. height: math.unit(12 + 6/12, "feet"),
  34681. default: true
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(6 + 2/12, "feet"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/taylor/front.svg",
  34693. extra: 639/495,
  34694. bottom: 12/651
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(6 + 2/12, "feet"),
  34702. default: true
  34703. },
  34704. {
  34705. name: "Big",
  34706. height: math.unit(15, "feet")
  34707. },
  34708. {
  34709. name: "Lorg",
  34710. height: math.unit(80, "feet")
  34711. },
  34712. {
  34713. name: "Too Lorg",
  34714. height: math.unit(120, "feet")
  34715. },
  34716. ]
  34717. ))
  34718. characterMakers.push(() => makeCharacter(
  34719. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34720. {
  34721. front: {
  34722. height: math.unit(15, "feet"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/kaizer/front.svg",
  34726. extra: 1612/1436,
  34727. bottom: 43/1655
  34728. }
  34729. },
  34730. },
  34731. [
  34732. {
  34733. name: "Normal",
  34734. height: math.unit(15, "feet"),
  34735. default: true
  34736. },
  34737. ]
  34738. ))
  34739. characterMakers.push(() => makeCharacter(
  34740. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34741. {
  34742. front: {
  34743. height: math.unit(2, "feet"),
  34744. weight: math.unit(30, "lb"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/sandy/front.svg",
  34748. extra: 1439/1307,
  34749. bottom: 194/1633
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(2, "feet"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34763. {
  34764. front: {
  34765. height: math.unit(3, "feet"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/mellvi/front.svg",
  34769. extra: 1831/1630,
  34770. bottom: 58/1889
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(3, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(5 + 11/12, "feet"),
  34787. weight: math.unit(200, "lb"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/shirou/front.svg",
  34791. extra: 2491/2383,
  34792. bottom: 189/2680
  34793. }
  34794. },
  34795. back: {
  34796. height: math.unit(5 + 11/12, "feet"),
  34797. weight: math.unit(200, "lb"),
  34798. name: "Back",
  34799. image: {
  34800. source: "./media/characters/shirou/back.svg",
  34801. extra: 2554/2450,
  34802. bottom: 76/2630
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(5 + 11/12, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34816. {
  34817. front: {
  34818. height: math.unit(6 + 3/12, "feet"),
  34819. weight: math.unit(177, "lb"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/noryu/front.svg",
  34823. extra: 973/885,
  34824. bottom: 10/983
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(6 + 3/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(5 + 6/12, "feet"),
  34841. weight: math.unit(170, "lb"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/mevolas-rubenido/front.svg",
  34845. extra: 2109/1901,
  34846. bottom: 96/2205
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(5 + 6/12, "feet"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(100, "feet"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/dee/front.svg",
  34866. extra: 2153/2036,
  34867. bottom: 59/2212
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(100, "feet"),
  34872. name: "Back",
  34873. image: {
  34874. source: "./media/characters/dee/back.svg",
  34875. extra: 2183/2058,
  34876. bottom: 75/2258
  34877. }
  34878. },
  34879. foot: {
  34880. height: math.unit(19.43, "feet"),
  34881. name: "Foot",
  34882. image: {
  34883. source: "./media/characters/dee/foot.svg"
  34884. }
  34885. },
  34886. hoof: {
  34887. height: math.unit(20.6, "feet"),
  34888. name: "Hoof",
  34889. image: {
  34890. source: "./media/characters/dee/hoof.svg"
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Macro",
  34897. height: math.unit(100, "feet"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34904. {
  34905. front: {
  34906. height: math.unit(5 + 6/12, "feet"),
  34907. name: "Front",
  34908. image: {
  34909. source: "./media/characters/teh/front.svg",
  34910. extra: 1002/847,
  34911. bottom: 62/1064
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(5 + 6/12, "feet"),
  34919. default: true
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34925. {
  34926. side: {
  34927. height: math.unit(6 + 1/12, "feet"),
  34928. weight: math.unit(204, "lb"),
  34929. name: "Side",
  34930. image: {
  34931. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34932. extra: 974/775,
  34933. bottom: 169/1143
  34934. }
  34935. },
  34936. sitting: {
  34937. height: math.unit(6 + 2/12, "feet"),
  34938. weight: math.unit(204, "lb"),
  34939. name: "Sitting",
  34940. image: {
  34941. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34942. extra: 1175/964,
  34943. bottom: 378/1553
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(6 + 1/12, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(6, "inches"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/tululi/front.svg",
  34963. extra: 1997/1876,
  34964. bottom: 20/2017
  34965. }
  34966. },
  34967. },
  34968. [
  34969. {
  34970. name: "Normal",
  34971. height: math.unit(6, "inches"),
  34972. default: true
  34973. },
  34974. ]
  34975. ))
  34976. characterMakers.push(() => makeCharacter(
  34977. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34978. {
  34979. front: {
  34980. height: math.unit(4 + 1/12, "feet"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/star/front.svg",
  34984. extra: 1493/1189,
  34985. bottom: 48/1541
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(4 + 1/12, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34999. {
  35000. front: {
  35001. height: math.unit(6 + 3/12, "feet"),
  35002. name: "Front",
  35003. image: {
  35004. source: "./media/characters/comet/front.svg",
  35005. extra: 1681/1462,
  35006. bottom: 26/1707
  35007. }
  35008. },
  35009. },
  35010. [
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(6 + 3/12, "feet"),
  35014. default: true
  35015. },
  35016. ]
  35017. ))
  35018. characterMakers.push(() => makeCharacter(
  35019. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35020. {
  35021. front: {
  35022. height: math.unit(950, "feet"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/vortex/front.svg",
  35026. extra: 1497/1434,
  35027. bottom: 56/1553
  35028. }
  35029. },
  35030. maw: {
  35031. height: math.unit(285, "feet"),
  35032. name: "Maw",
  35033. image: {
  35034. source: "./media/characters/vortex/maw.svg"
  35035. }
  35036. },
  35037. },
  35038. [
  35039. {
  35040. name: "Macro",
  35041. height: math.unit(950, "feet"),
  35042. default: true
  35043. },
  35044. ]
  35045. ))
  35046. characterMakers.push(() => makeCharacter(
  35047. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35048. {
  35049. front: {
  35050. height: math.unit(600, "feet"),
  35051. weight: math.unit(0.02, "grams"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/doodle/front.svg",
  35055. extra: 1578/1413,
  35056. bottom: 37/1615
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Macro",
  35063. height: math.unit(600, "feet"),
  35064. default: true
  35065. },
  35066. ]
  35067. ))
  35068. characterMakers.push(() => makeCharacter(
  35069. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35070. {
  35071. front: {
  35072. height: math.unit(6 + 6/12, "feet"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/jai/front.svg",
  35076. extra: 1645/1534,
  35077. bottom: 115/1760
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(6 + 6/12, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(6 + 8/12, "feet"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/pixel/front.svg",
  35097. extra: 1900/1735,
  35098. bottom: 63/1963
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(6 + 8/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(4 + 11/12, "feet"),
  35115. weight: math.unit(111, "lb"),
  35116. name: "Front",
  35117. image: {
  35118. source: "./media/characters/rhett/front.svg",
  35119. extra: 1682/1586,
  35120. bottom: 92/1774
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Mini",
  35127. height: math.unit(1 + 1/12, "feet")
  35128. },
  35129. {
  35130. name: "Normal",
  35131. height: math.unit(4 + 11/12, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(3 + 3/12, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/penny/front.svg",
  35144. extra: 1406/1311,
  35145. bottom: 26/1432
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(3 + 3/12, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(4 + 11/12, "feet"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/monty/front.svg",
  35165. extra: 1479/1209,
  35166. bottom: 0/1479
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(4 + 11/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(8 + 4/12, "feet"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/sterling/front.svg",
  35186. extra: 1420/1236,
  35187. bottom: 27/1447
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(8 + 4/12, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(15, "feet"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/marble/front.svg",
  35207. extra: 973/937,
  35208. bottom: 32/1005
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(15, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35222. {
  35223. front: {
  35224. height: math.unit(3, "inches"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/powder/front.svg",
  35228. extra: 1504/1334,
  35229. bottom: 518/2022
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(3, "inches"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35243. {
  35244. front: {
  35245. height: math.unit(4 + 5/12, "feet"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/joey-raccoon/front.svg",
  35249. extra: 1273/1197,
  35250. bottom: 0/1273
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(4 + 5/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(8 + 4/12, "feet"),
  35267. name: "Front",
  35268. image: {
  35269. source: "./media/characters/vick/front.svg",
  35270. extra: 2187/2118,
  35271. bottom: 47/2234
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(8 + 4/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(5 + 5/12, "feet"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/mitsy/front.svg",
  35291. extra: 1842/1695,
  35292. bottom: 0/1842
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(5 + 5/12, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35306. {
  35307. front: {
  35308. height: math.unit(6 + 3/12, "feet"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/silvy/front.svg",
  35312. extra: 1995/1836,
  35313. bottom: 225/2220
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(6 + 3/12, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(3 + 8/12, "feet"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/rodney/front.svg",
  35333. extra: 1956/1747,
  35334. bottom: 31/1987
  35335. }
  35336. },
  35337. frontDressed: {
  35338. height: math.unit(2.9, "feet"),
  35339. name: "Front (Dressed)",
  35340. image: {
  35341. source: "./media/characters/rodney/front-dressed.svg",
  35342. extra: 1382/1241,
  35343. bottom: 385/1767
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(3 + 8/12, "feet"),
  35351. default: true
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(5 + 9/12, "feet"),
  35360. weight: math.unit(194, "lbs"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/zakail-sudekai/front.svg",
  35364. extra: 2696/2533,
  35365. bottom: 248/2944
  35366. }
  35367. },
  35368. maw: {
  35369. height: math.unit(1.35, "feet"),
  35370. name: "Maw",
  35371. image: {
  35372. source: "./media/characters/zakail-sudekai/maw.svg"
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Normal",
  35379. height: math.unit(5 + 9/12, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(8 + 4/12, "feet"),
  35389. weight: math.unit(1200, "lb"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/eleanor/front.svg",
  35393. extra: 1226/1192,
  35394. bottom: 52/1278
  35395. }
  35396. },
  35397. back: {
  35398. height: math.unit(8 + 4/12, "feet"),
  35399. weight: math.unit(1200, "lb"),
  35400. name: "Back",
  35401. image: {
  35402. source: "./media/characters/eleanor/back.svg",
  35403. extra: 1242/1184,
  35404. bottom: 60/1302
  35405. }
  35406. },
  35407. head: {
  35408. height: math.unit(2.62, "feet"),
  35409. name: "Head",
  35410. image: {
  35411. source: "./media/characters/eleanor/head.svg"
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(8 + 4/12, "feet"),
  35419. default: true
  35420. },
  35421. ]
  35422. ))
  35423. characterMakers.push(() => makeCharacter(
  35424. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35425. {
  35426. front: {
  35427. height: math.unit(8 + 4/12, "feet"),
  35428. weight: math.unit(750, "lb"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/tanya/front.svg",
  35432. extra: 1749/1615,
  35433. bottom: 33/1782
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(8 + 4/12, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(5, "feet"),
  35450. weight: math.unit(225, "lb"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/cindy/front.svg",
  35454. extra: 1320/1250,
  35455. bottom: 42/1362
  35456. }
  35457. },
  35458. frontDressed: {
  35459. height: math.unit(5, "feet"),
  35460. weight: math.unit(225, "lb"),
  35461. name: "Front (Dressed)",
  35462. image: {
  35463. source: "./media/characters/cindy/front-dressed.svg",
  35464. extra: 1320/1250,
  35465. bottom: 42/1362
  35466. }
  35467. },
  35468. back: {
  35469. height: math.unit(5, "feet"),
  35470. weight: math.unit(225, "lb"),
  35471. name: "Back",
  35472. image: {
  35473. source: "./media/characters/cindy/back.svg",
  35474. extra: 1384/1346,
  35475. bottom: 14/1398
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(5, "feet"),
  35483. default: true
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(6 + 9/12, "feet"),
  35492. weight: math.unit(440, "lb"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/wilbur-owen/front.svg",
  35496. extra: 1575/1448,
  35497. bottom: 72/1647
  35498. }
  35499. },
  35500. back: {
  35501. height: math.unit(6 + 9/12, "feet"),
  35502. weight: math.unit(440, "lb"),
  35503. name: "Back",
  35504. image: {
  35505. source: "./media/characters/wilbur-owen/back.svg",
  35506. extra: 1578/1445,
  35507. bottom: 36/1614
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(6 + 9/12, "feet"),
  35515. default: true
  35516. },
  35517. ]
  35518. ))
  35519. characterMakers.push(() => makeCharacter(
  35520. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35521. {
  35522. front: {
  35523. height: math.unit(6 + 5/12, "feet"),
  35524. weight: math.unit(650, "lb"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/keegan/front.svg",
  35528. extra: 2387/2198,
  35529. bottom: 33/2420
  35530. }
  35531. },
  35532. side: {
  35533. height: math.unit(6 + 5/12, "feet"),
  35534. weight: math.unit(650, "lb"),
  35535. name: "Side",
  35536. image: {
  35537. source: "./media/characters/keegan/side.svg",
  35538. extra: 2390/2202,
  35539. bottom: 47/2437
  35540. }
  35541. },
  35542. back: {
  35543. height: math.unit(6 + 5/12, "feet"),
  35544. weight: math.unit(650, "lb"),
  35545. name: "Back",
  35546. image: {
  35547. source: "./media/characters/keegan/back.svg",
  35548. extra: 2418/2268,
  35549. bottom: 15/2433
  35550. }
  35551. },
  35552. frontSfw: {
  35553. height: math.unit(6 + 5/12, "feet"),
  35554. weight: math.unit(650, "lb"),
  35555. name: "Front (SFW)",
  35556. image: {
  35557. source: "./media/characters/keegan/front-sfw.svg",
  35558. extra: 2387/2198,
  35559. bottom: 33/2420
  35560. }
  35561. },
  35562. beans: {
  35563. height: math.unit(1.85, "feet"),
  35564. name: "Beans",
  35565. image: {
  35566. source: "./media/characters/keegan/beans.svg"
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(6 + 5/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(9, "feet"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/colton/front.svg",
  35586. extra: 1589/1326,
  35587. bottom: 139/1728
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Normal",
  35594. height: math.unit(9, "feet"),
  35595. default: true
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35601. {
  35602. front: {
  35603. height: math.unit(2 + 9/12, "feet"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/bora/front.svg",
  35607. extra: 1265/1250,
  35608. bottom: 24/1289
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(2 + 9/12, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(8, "feet"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/myu-myu/front.svg",
  35628. extra: 1949/1857,
  35629. bottom: 90/2039
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(8, "feet"),
  35637. default: true
  35638. },
  35639. {
  35640. name: "Big",
  35641. height: math.unit(15, "feet")
  35642. },
  35643. {
  35644. name: "BIG",
  35645. height: math.unit(25, "feet")
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35651. {
  35652. side: {
  35653. height: math.unit(7 + 5/12, "feet"),
  35654. weight: math.unit(2800, "lb"),
  35655. name: "Side",
  35656. image: {
  35657. source: "./media/characters/haloren/side.svg",
  35658. extra: 1793/409,
  35659. bottom: 59/1852
  35660. }
  35661. },
  35662. frontPaw: {
  35663. height: math.unit(2.36, "feet"),
  35664. name: "Front paw",
  35665. image: {
  35666. source: "./media/characters/haloren/front-paw.svg"
  35667. }
  35668. },
  35669. hindPaw: {
  35670. height: math.unit(3.18, "feet"),
  35671. name: "Hind paw",
  35672. image: {
  35673. source: "./media/characters/haloren/hind-paw.svg"
  35674. }
  35675. },
  35676. maw: {
  35677. height: math.unit(5.05, "feet"),
  35678. name: "Maw",
  35679. image: {
  35680. source: "./media/characters/haloren/maw.svg"
  35681. }
  35682. },
  35683. dick: {
  35684. height: math.unit(2.90, "feet"),
  35685. name: "Dick",
  35686. image: {
  35687. source: "./media/characters/haloren/dick.svg"
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(7 + 5/12, "feet"),
  35695. default: true
  35696. },
  35697. {
  35698. name: "Enhanced",
  35699. height: math.unit(14 + 3/12, "feet")
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(171, "cm"),
  35708. name: "Front",
  35709. image: {
  35710. source: "./media/characters/kimmy/front.svg",
  35711. extra: 1491/1435,
  35712. bottom: 53/1544
  35713. }
  35714. },
  35715. },
  35716. [
  35717. {
  35718. name: "Small",
  35719. height: math.unit(9, "cm")
  35720. },
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(171, "cm"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35730. {
  35731. front: {
  35732. height: math.unit(8, "feet"),
  35733. weight: math.unit(300, "lb"),
  35734. name: "Front",
  35735. image: {
  35736. source: "./media/characters/galeboomer/front.svg",
  35737. extra: 4651/4415,
  35738. bottom: 162/4813
  35739. }
  35740. },
  35741. back: {
  35742. height: math.unit(8, "feet"),
  35743. weight: math.unit(300, "lb"),
  35744. name: "Back",
  35745. image: {
  35746. source: "./media/characters/galeboomer/back.svg",
  35747. extra: 4544/4314,
  35748. bottom: 16/4560
  35749. }
  35750. },
  35751. frontAlt: {
  35752. height: math.unit(8, "feet"),
  35753. weight: math.unit(300, "lb"),
  35754. name: "Front (Alt)",
  35755. image: {
  35756. source: "./media/characters/galeboomer/front-alt.svg",
  35757. extra: 4458/4228,
  35758. bottom: 68/4526
  35759. }
  35760. },
  35761. maw: {
  35762. height: math.unit(1.2, "feet"),
  35763. name: "Maw",
  35764. image: {
  35765. source: "./media/characters/galeboomer/maw.svg"
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(8, "feet"),
  35773. default: true
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35779. {
  35780. front: {
  35781. height: math.unit(5 + 9/12, "feet"),
  35782. weight: math.unit(120, "lb"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/chyr/front.svg",
  35786. extra: 1323/1254,
  35787. bottom: 63/1386
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(5 + 9/12, "feet"),
  35792. weight: math.unit(120, "lb"),
  35793. name: "Back",
  35794. image: {
  35795. source: "./media/characters/chyr/back.svg",
  35796. extra: 1323/1252,
  35797. bottom: 48/1371
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(5 + 9/12, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35811. {
  35812. front: {
  35813. height: math.unit(7, "feet"),
  35814. weight: math.unit(310, "lb"),
  35815. name: "Front",
  35816. image: {
  35817. source: "./media/characters/solarus/front.svg",
  35818. extra: 2415/2021,
  35819. bottom: 103/2518
  35820. }
  35821. },
  35822. back: {
  35823. height: math.unit(7, "feet"),
  35824. weight: math.unit(310, "lb"),
  35825. name: "Back",
  35826. image: {
  35827. source: "./media/characters/solarus/back.svg",
  35828. extra: 2463/2089,
  35829. bottom: 79/2542
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Normal",
  35836. height: math.unit(7, "feet"),
  35837. default: true
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35843. {
  35844. front: {
  35845. height: math.unit(16, "feet"),
  35846. name: "Front",
  35847. image: {
  35848. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35849. extra: 1844/1780,
  35850. bottom: 58/1902
  35851. }
  35852. },
  35853. winterCoat: {
  35854. height: math.unit(16, "feet"),
  35855. name: "Winter Coat",
  35856. image: {
  35857. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35858. extra: 1807/1775,
  35859. bottom: 69/1876
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(16, "feet"),
  35867. default: true
  35868. },
  35869. {
  35870. name: "Chicago Size",
  35871. height: math.unit(560, "feet")
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(11 + 6/12, "feet"),
  35880. weight: math.unit(1366, "lb"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/lexor/front.svg",
  35884. extra: 1560/1481,
  35885. bottom: 211/1771
  35886. }
  35887. },
  35888. back: {
  35889. height: math.unit(11 + 6/12, "feet"),
  35890. weight: math.unit(1366, "lb"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/lexor/back.svg",
  35894. extra: 1614/1533,
  35895. bottom: 76/1690
  35896. }
  35897. },
  35898. maw: {
  35899. height: math.unit(3, "feet"),
  35900. name: "Maw",
  35901. image: {
  35902. source: "./media/characters/lexor/maw.svg"
  35903. }
  35904. },
  35905. dick: {
  35906. height: math.unit(2.59, "feet"),
  35907. name: "Dick",
  35908. image: {
  35909. source: "./media/characters/lexor/dick.svg"
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Normal",
  35916. height: math.unit(11 + 6/12, "feet"),
  35917. default: true
  35918. },
  35919. ]
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35923. {
  35924. front: {
  35925. height: math.unit(5 + 8/12, "feet"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/magnum/front.svg",
  35929. extra: 942/855,
  35930. bottom: 26/968
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(5 + 8/12, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(18 + 4/12, "feet"),
  35947. weight: math.unit(1500, "kg"),
  35948. name: "Front",
  35949. image: {
  35950. source: "./media/characters/solas-sharpsman/front.svg",
  35951. extra: 1698/1589,
  35952. bottom: 0/1698
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(18 + 4/12, "feet"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35966. {
  35967. front: {
  35968. height: math.unit(5 + 5/12, "feet"),
  35969. weight: math.unit(180, "lb"),
  35970. name: "Front",
  35971. image: {
  35972. source: "./media/characters/october/front.svg",
  35973. extra: 1800/1650,
  35974. bottom: 0/1800
  35975. }
  35976. },
  35977. frontNsfw: {
  35978. height: math.unit(5 + 5/12, "feet"),
  35979. weight: math.unit(180, "lb"),
  35980. name: "Front (NSFW)",
  35981. image: {
  35982. source: "./media/characters/october/front-nsfw.svg",
  35983. extra: 1392/1307,
  35984. bottom: 42/1434
  35985. }
  35986. },
  35987. },
  35988. [
  35989. {
  35990. name: "Normal",
  35991. height: math.unit(5 + 5/12, "feet"),
  35992. default: true
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35998. {
  35999. front: {
  36000. height: math.unit(8 + 6/12, "feet"),
  36001. name: "Front",
  36002. image: {
  36003. source: "./media/characters/essynkardi/front.svg",
  36004. extra: 1914/1846,
  36005. bottom: 22/1936
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(8 + 6/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(6 + 6/12, "feet"),
  36022. weight: math.unit(7, "lb"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/icky/front.svg",
  36026. extra: 813/782,
  36027. bottom: 66/879
  36028. }
  36029. },
  36030. back: {
  36031. height: math.unit(6 + 6/12, "feet"),
  36032. weight: math.unit(7, "lb"),
  36033. name: "Back",
  36034. image: {
  36035. source: "./media/characters/icky/back.svg",
  36036. extra: 754/735,
  36037. bottom: 56/810
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(6 + 6/12, "feet"),
  36045. default: true
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(15, "feet"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/rojas/front.svg",
  36057. extra: 1462/1408,
  36058. bottom: 95/1557
  36059. }
  36060. },
  36061. back: {
  36062. height: math.unit(15, "feet"),
  36063. name: "Back",
  36064. image: {
  36065. source: "./media/characters/rojas/back.svg",
  36066. extra: 1023/954,
  36067. bottom: 28/1051
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(15, "feet"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36081. {
  36082. frontHuman: {
  36083. height: math.unit(5 + 7/12, "feet"),
  36084. name: "Front (Human)",
  36085. image: {
  36086. source: "./media/characters/alek-dryagan/front-human.svg",
  36087. extra: 1687/1667,
  36088. bottom: 69/1756
  36089. }
  36090. },
  36091. backHuman: {
  36092. height: math.unit(5 + 7/12, "feet"),
  36093. name: "Back (Human)",
  36094. image: {
  36095. source: "./media/characters/alek-dryagan/back-human.svg",
  36096. extra: 1670/1649,
  36097. bottom: 65/1735
  36098. }
  36099. },
  36100. frontDemi: {
  36101. height: math.unit(65, "feet"),
  36102. name: "Front (Demi)",
  36103. image: {
  36104. source: "./media/characters/alek-dryagan/front-demi.svg",
  36105. extra: 1669/1642,
  36106. bottom: 49/1718
  36107. }
  36108. },
  36109. backDemi: {
  36110. height: math.unit(65, "feet"),
  36111. name: "Back (Demi)",
  36112. image: {
  36113. source: "./media/characters/alek-dryagan/back-demi.svg",
  36114. extra: 1658/1637,
  36115. bottom: 40/1698
  36116. }
  36117. },
  36118. mawHuman: {
  36119. height: math.unit(0.3, "feet"),
  36120. name: "Maw (Human)",
  36121. image: {
  36122. source: "./media/characters/alek-dryagan/maw-human.svg"
  36123. }
  36124. },
  36125. mawDemi: {
  36126. height: math.unit(3.8, "feet"),
  36127. name: "Maw (Demi)",
  36128. image: {
  36129. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(5 + 7/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36143. {
  36144. frontHuman: {
  36145. height: math.unit(5 + 2/12, "feet"),
  36146. name: "Front (Human)",
  36147. image: {
  36148. source: "./media/characters/gen/front-human.svg",
  36149. extra: 1627/1538,
  36150. bottom: 71/1698
  36151. }
  36152. },
  36153. backHuman: {
  36154. height: math.unit(5 + 2/12, "feet"),
  36155. name: "Back (Human)",
  36156. image: {
  36157. source: "./media/characters/gen/back-human.svg",
  36158. extra: 1638/1548,
  36159. bottom: 69/1707
  36160. }
  36161. },
  36162. frontDemi: {
  36163. height: math.unit(5 + 2/12, "feet"),
  36164. name: "Front (Demi)",
  36165. image: {
  36166. source: "./media/characters/gen/front-demi.svg",
  36167. extra: 1627/1538,
  36168. bottom: 71/1698
  36169. }
  36170. },
  36171. backDemi: {
  36172. height: math.unit(5 + 2/12, "feet"),
  36173. name: "Back (Demi)",
  36174. image: {
  36175. source: "./media/characters/gen/back-demi.svg",
  36176. extra: 1638/1548,
  36177. bottom: 69/1707
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(5 + 2/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36191. {
  36192. frontImp: {
  36193. height: math.unit(1 + 11/12, "feet"),
  36194. name: "Front (Imp)",
  36195. image: {
  36196. source: "./media/characters/max-kobold/front-imp.svg",
  36197. extra: 1238/1134,
  36198. bottom: 81/1319
  36199. }
  36200. },
  36201. backImp: {
  36202. height: math.unit(1 + 11/12, "feet"),
  36203. name: "Back (Imp)",
  36204. image: {
  36205. source: "./media/characters/max-kobold/back-imp.svg",
  36206. extra: 1334/1175,
  36207. bottom: 34/1368
  36208. }
  36209. },
  36210. frontDemi: {
  36211. height: math.unit(5 + 9/12, "feet"),
  36212. name: "Front (Demi)",
  36213. image: {
  36214. source: "./media/characters/max-kobold/front-demi.svg",
  36215. extra: 1715/1685,
  36216. bottom: 54/1769
  36217. }
  36218. },
  36219. backDemi: {
  36220. height: math.unit(5 + 9/12, "feet"),
  36221. name: "Back (Demi)",
  36222. image: {
  36223. source: "./media/characters/max-kobold/back-demi.svg",
  36224. extra: 1752/1729,
  36225. bottom: 41/1793
  36226. }
  36227. },
  36228. handImp: {
  36229. height: math.unit(0.45, "feet"),
  36230. name: "Hand (Imp)",
  36231. image: {
  36232. source: "./media/characters/max-kobold/hand.svg"
  36233. }
  36234. },
  36235. pawImp: {
  36236. height: math.unit(0.46, "feet"),
  36237. name: "Paw (Imp)",
  36238. image: {
  36239. source: "./media/characters/max-kobold/paw.svg"
  36240. }
  36241. },
  36242. handDemi: {
  36243. height: math.unit(0.80, "feet"),
  36244. name: "Hand (Demi)",
  36245. image: {
  36246. source: "./media/characters/max-kobold/hand.svg"
  36247. }
  36248. },
  36249. pawDemi: {
  36250. height: math.unit(1.1, "feet"),
  36251. name: "Paw (Demi)",
  36252. image: {
  36253. source: "./media/characters/max-kobold/paw.svg"
  36254. }
  36255. },
  36256. headImp: {
  36257. height: math.unit(1.33, "feet"),
  36258. name: "Head (Imp)",
  36259. image: {
  36260. source: "./media/characters/max-kobold/head-imp.svg"
  36261. }
  36262. },
  36263. mawImp: {
  36264. height: math.unit(0.75, "feet"),
  36265. name: "Maw (Imp)",
  36266. image: {
  36267. source: "./media/characters/max-kobold/maw-imp.svg"
  36268. }
  36269. },
  36270. mawDemi: {
  36271. height: math.unit(0.42, "feet"),
  36272. name: "Maw (Demi)",
  36273. image: {
  36274. source: "./media/characters/max-kobold/maw-demi.svg"
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(1 + 11/12, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36288. {
  36289. front: {
  36290. height: math.unit(7 + 5/12, "feet"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/carbon/front.svg",
  36294. extra: 1754/1689,
  36295. bottom: 65/1819
  36296. }
  36297. },
  36298. back: {
  36299. height: math.unit(7 + 5/12, "feet"),
  36300. name: "Back",
  36301. image: {
  36302. source: "./media/characters/carbon/back.svg",
  36303. extra: 1762/1695,
  36304. bottom: 24/1786
  36305. }
  36306. },
  36307. frontGigantamax: {
  36308. height: math.unit(150, "feet"),
  36309. name: "Front (Gigantamax)",
  36310. image: {
  36311. source: "./media/characters/carbon/front-gigantamax.svg",
  36312. extra: 1826/1669,
  36313. bottom: 59/1885
  36314. }
  36315. },
  36316. backGigantamax: {
  36317. height: math.unit(150, "feet"),
  36318. name: "Back (Gigantamax)",
  36319. image: {
  36320. source: "./media/characters/carbon/back-gigantamax.svg",
  36321. extra: 1796/1653,
  36322. bottom: 53/1849
  36323. }
  36324. },
  36325. maw: {
  36326. height: math.unit(0.48, "feet"),
  36327. name: "Maw",
  36328. image: {
  36329. source: "./media/characters/carbon/maw.svg"
  36330. }
  36331. },
  36332. mawGigantamax: {
  36333. height: math.unit(7.5, "feet"),
  36334. name: "Maw (Gigantamax)",
  36335. image: {
  36336. source: "./media/characters/carbon/maw-gigantamax.svg"
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(7 + 5/12, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(6, "feet"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/maverick/front.svg",
  36356. extra: 1672/1661,
  36357. bottom: 85/1757
  36358. }
  36359. },
  36360. back: {
  36361. height: math.unit(6, "feet"),
  36362. name: "Back",
  36363. image: {
  36364. source: "./media/characters/maverick/back.svg",
  36365. extra: 1642/1631,
  36366. bottom: 38/1680
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "Normal",
  36373. height: math.unit(6, "feet"),
  36374. default: true
  36375. },
  36376. ]
  36377. ))
  36378. characterMakers.push(() => makeCharacter(
  36379. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36380. {
  36381. front: {
  36382. height: math.unit(15, "feet"),
  36383. weight: math.unit(615, "lb"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/grockle/front.svg",
  36387. extra: 1535/1427,
  36388. bottom: 56/1591
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(15, "feet"),
  36396. default: true
  36397. },
  36398. {
  36399. name: "Large",
  36400. height: math.unit(150, "feet")
  36401. },
  36402. {
  36403. name: "Macro",
  36404. height: math.unit(1876, "feet")
  36405. },
  36406. {
  36407. name: "Mega Macro",
  36408. height: math.unit(121940, "feet")
  36409. },
  36410. {
  36411. name: "Giga Macro",
  36412. height: math.unit(750, "km")
  36413. },
  36414. {
  36415. name: "Tera Macro",
  36416. height: math.unit(750000, "km")
  36417. },
  36418. {
  36419. name: "Galactic",
  36420. height: math.unit(1.4e5, "km")
  36421. },
  36422. {
  36423. name: "Godlike",
  36424. height: math.unit(9.8e280, "galaxies")
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(11, "meters"),
  36433. weight: math.unit(20, "tonnes"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/alistair/front.svg",
  36437. extra: 1265/1009,
  36438. bottom: 93/1358
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(11, "meters"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(5 + 8/12, "feet"),
  36455. name: "Front",
  36456. image: {
  36457. source: "./media/characters/haruka/front.svg",
  36458. extra: 2012/1952,
  36459. bottom: 0/2012
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Normal",
  36466. height: math.unit(5 + 8/12, "feet"),
  36467. default: true
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36473. {
  36474. back: {
  36475. height: math.unit(9, "feet"),
  36476. name: "Back",
  36477. image: {
  36478. source: "./media/characters/vivian-sylveon/back.svg",
  36479. extra: 1853/1714,
  36480. bottom: 0/1853
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(9, "feet"),
  36488. default: true
  36489. },
  36490. {
  36491. name: "Macro",
  36492. height: math.unit(500, "feet")
  36493. },
  36494. {
  36495. name: "Megamacro",
  36496. height: math.unit(600, "miles")
  36497. },
  36498. {
  36499. name: "Gigamacro",
  36500. height: math.unit(30000, "miles")
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36506. {
  36507. anthro: {
  36508. height: math.unit(5 + 10/12, "feet"),
  36509. weight: math.unit(100, "lb"),
  36510. name: "Anthro",
  36511. image: {
  36512. source: "./media/characters/daiki/anthro.svg",
  36513. extra: 1115/1027,
  36514. bottom: 69/1184
  36515. }
  36516. },
  36517. feral: {
  36518. height: math.unit(200, "feet"),
  36519. name: "Feral",
  36520. image: {
  36521. source: "./media/characters/daiki/feral.svg",
  36522. extra: 1256/313,
  36523. bottom: 39/1295
  36524. }
  36525. },
  36526. feralHead: {
  36527. height: math.unit(171, "feet"),
  36528. name: "Feral Head",
  36529. image: {
  36530. source: "./media/characters/daiki/feral-head.svg"
  36531. }
  36532. },
  36533. manaDragon: {
  36534. height: math.unit(170, "meters"),
  36535. name: "Mana-dragon",
  36536. image: {
  36537. source: "./media/characters/daiki/mana-dragon.svg",
  36538. extra: 763/420,
  36539. bottom: 97/860
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(5 + 10/12, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36553. {
  36554. fullyEquippedFront: {
  36555. height: math.unit(3 + 1/12, "feet"),
  36556. weight: math.unit(24, "lb"),
  36557. name: "Fully Equipped (Front)",
  36558. image: {
  36559. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36560. extra: 687/605,
  36561. bottom: 18/705
  36562. }
  36563. },
  36564. fullyEquippedBack: {
  36565. height: math.unit(3 + 1/12, "feet"),
  36566. weight: math.unit(24, "lb"),
  36567. name: "Fully Equipped (Back)",
  36568. image: {
  36569. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36570. extra: 689/590,
  36571. bottom: 18/707
  36572. }
  36573. },
  36574. dailyWear: {
  36575. height: math.unit(3 + 1/12, "feet"),
  36576. weight: math.unit(24, "lb"),
  36577. name: "Daily Wear",
  36578. image: {
  36579. source: "./media/characters/tea-spot/daily-wear.svg",
  36580. extra: 701/620,
  36581. bottom: 21/722
  36582. }
  36583. },
  36584. maidWork: {
  36585. height: math.unit(3 + 1/12, "feet"),
  36586. weight: math.unit(24, "lb"),
  36587. name: "Maid Work",
  36588. image: {
  36589. source: "./media/characters/tea-spot/maid-work.svg",
  36590. extra: 693/609,
  36591. bottom: 15/708
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(3 + 1/12, "feet"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(175, "cm"),
  36608. weight: math.unit(75, "kg"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/chee/front.svg",
  36612. extra: 1796/1740,
  36613. bottom: 40/1836
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Micro-Micro",
  36620. height: math.unit(1, "nm")
  36621. },
  36622. {
  36623. name: "Micro-erst",
  36624. height: math.unit(1, "micrometer")
  36625. },
  36626. {
  36627. name: "Micro-er",
  36628. height: math.unit(1, "cm")
  36629. },
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(175, "cm"),
  36633. default: true
  36634. },
  36635. {
  36636. name: "Macro",
  36637. height: math.unit(100, "m")
  36638. },
  36639. {
  36640. name: "Macro-er",
  36641. height: math.unit(1, "km")
  36642. },
  36643. {
  36644. name: "Macro-erst",
  36645. height: math.unit(10, "km")
  36646. },
  36647. {
  36648. name: "Macro-Macro",
  36649. height: math.unit(100, "km")
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36655. {
  36656. front: {
  36657. height: math.unit(11 + 9/12, "feet"),
  36658. weight: math.unit(935, "lb"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/kingsley/front.svg",
  36662. extra: 1803/1674,
  36663. bottom: 127/1930
  36664. }
  36665. },
  36666. frontNude: {
  36667. height: math.unit(11 + 9/12, "feet"),
  36668. weight: math.unit(935, "lb"),
  36669. name: "Front (Nude)",
  36670. image: {
  36671. source: "./media/characters/kingsley/front-nude.svg",
  36672. extra: 1803/1674,
  36673. bottom: 127/1930
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(11 + 9/12, "feet"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36687. {
  36688. side: {
  36689. height: math.unit(9, "feet"),
  36690. name: "Side",
  36691. image: {
  36692. source: "./media/characters/rymel/side.svg",
  36693. extra: 792/469,
  36694. bottom: 121/913
  36695. }
  36696. },
  36697. maw: {
  36698. height: math.unit(2.4, "meters"),
  36699. name: "Maw",
  36700. image: {
  36701. source: "./media/characters/rymel/maw.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "House Drake",
  36708. height: math.unit(2, "feet")
  36709. },
  36710. {
  36711. name: "Reduced",
  36712. height: math.unit(4.5, "feet")
  36713. },
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(9, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(1.74, "meters"),
  36726. weight: math.unit(55, "kg"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/rubus/front.svg",
  36730. extra: 1894/1742,
  36731. bottom: 44/1938
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(1.74, "meters"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(5 + 2/12, "feet"),
  36748. weight: math.unit(112, "lb"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/cassie-kingston/front.svg",
  36752. extra: 1438/1390,
  36753. bottom: 47/1485
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(5 + 2/12, "feet"),
  36761. default: true
  36762. },
  36763. {
  36764. name: "Macro",
  36765. height: math.unit(128, "feet")
  36766. },
  36767. {
  36768. name: "Megamacro",
  36769. height: math.unit(2.56, "miles")
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(7, "feet"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/fox/front.svg",
  36781. extra: 1798/1703,
  36782. bottom: 55/1853
  36783. }
  36784. },
  36785. back: {
  36786. height: math.unit(7, "feet"),
  36787. name: "Back",
  36788. image: {
  36789. source: "./media/characters/fox/back.svg",
  36790. extra: 1748/1649,
  36791. bottom: 32/1780
  36792. }
  36793. },
  36794. head: {
  36795. height: math.unit(1.95, "feet"),
  36796. name: "Head",
  36797. image: {
  36798. source: "./media/characters/fox/head.svg"
  36799. }
  36800. },
  36801. dick: {
  36802. height: math.unit(1.33, "feet"),
  36803. name: "Dick",
  36804. image: {
  36805. source: "./media/characters/fox/dick.svg"
  36806. }
  36807. },
  36808. foot: {
  36809. height: math.unit(1, "feet"),
  36810. name: "Foot",
  36811. image: {
  36812. source: "./media/characters/fox/foot.svg"
  36813. }
  36814. },
  36815. paw: {
  36816. height: math.unit(0.92, "feet"),
  36817. name: "Paw",
  36818. image: {
  36819. source: "./media/characters/fox/paw.svg"
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Small",
  36826. height: math.unit(3, "inches")
  36827. },
  36828. {
  36829. name: "\"Realistic\"",
  36830. height: math.unit(7, "feet")
  36831. },
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(150, "feet"),
  36835. default: true
  36836. },
  36837. {
  36838. name: "BIG",
  36839. height: math.unit(1200, "feet")
  36840. },
  36841. {
  36842. name: "👀",
  36843. height: math.unit(5, "miles")
  36844. },
  36845. {
  36846. name: "👀👀👀",
  36847. height: math.unit(64, "miles")
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(625, "feet"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/asonja-rossa/front.svg",
  36859. extra: 1833/1686,
  36860. bottom: 24/1857
  36861. }
  36862. },
  36863. back: {
  36864. height: math.unit(625, "feet"),
  36865. name: "Back",
  36866. image: {
  36867. source: "./media/characters/asonja-rossa/back.svg",
  36868. extra: 1852/1753,
  36869. bottom: 26/1878
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Macro",
  36876. height: math.unit(625, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36883. {
  36884. side: {
  36885. height: math.unit(8, "feet"),
  36886. name: "Side",
  36887. image: {
  36888. source: "./media/characters/rezukii/side.svg",
  36889. extra: 979/542,
  36890. bottom: 87/1066
  36891. }
  36892. },
  36893. sitting: {
  36894. height: math.unit(14.6, "feet"),
  36895. name: "Sitting",
  36896. image: {
  36897. source: "./media/characters/rezukii/sitting.svg",
  36898. extra: 1023/813,
  36899. bottom: 45/1068
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Tiny",
  36906. height: math.unit(2, "feet")
  36907. },
  36908. {
  36909. name: "Smol",
  36910. height: math.unit(4, "feet")
  36911. },
  36912. {
  36913. name: "Normal",
  36914. height: math.unit(8, "feet"),
  36915. default: true
  36916. },
  36917. {
  36918. name: "Big",
  36919. height: math.unit(12, "feet")
  36920. },
  36921. {
  36922. name: "Macro",
  36923. height: math.unit(30, "feet")
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(14, "feet"),
  36932. weight: math.unit(9.5, "tonnes"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/dawnheart/front.svg",
  36936. extra: 2792/2675,
  36937. bottom: 64/2856
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(14, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36951. {
  36952. front: {
  36953. height: math.unit(1.7, "m"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/gladi/front.svg",
  36957. extra: 1460/1362,
  36958. bottom: 19/1479
  36959. }
  36960. },
  36961. back: {
  36962. height: math.unit(1.7, "m"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/gladi/back.svg",
  36966. extra: 1459/1357,
  36967. bottom: 12/1471
  36968. }
  36969. },
  36970. feral: {
  36971. height: math.unit(2.05, "m"),
  36972. name: "Feral",
  36973. image: {
  36974. source: "./media/characters/gladi/feral.svg",
  36975. extra: 821/557,
  36976. bottom: 91/912
  36977. }
  36978. },
  36979. },
  36980. [
  36981. {
  36982. name: "Shortest",
  36983. height: math.unit(70, "cm")
  36984. },
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(1.7, "m")
  36988. },
  36989. {
  36990. name: "Macro",
  36991. height: math.unit(10, "m"),
  36992. default: true
  36993. },
  36994. {
  36995. name: "Tallest",
  36996. height: math.unit(200, "m")
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(5 + 7/12, "feet"),
  37005. weight: math.unit(2, "tons"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/erdno/front.svg",
  37009. extra: 1234/1129,
  37010. bottom: 35/1269
  37011. }
  37012. },
  37013. angled: {
  37014. height: math.unit(5 + 7/12, "feet"),
  37015. weight: math.unit(2, "tons"),
  37016. name: "Angled",
  37017. image: {
  37018. source: "./media/characters/erdno/angled.svg",
  37019. extra: 1185/1139,
  37020. bottom: 36/1221
  37021. }
  37022. },
  37023. side: {
  37024. height: math.unit(5 + 7/12, "feet"),
  37025. weight: math.unit(2, "tons"),
  37026. name: "Side",
  37027. image: {
  37028. source: "./media/characters/erdno/side.svg",
  37029. extra: 1191/1144,
  37030. bottom: 40/1231
  37031. }
  37032. },
  37033. back: {
  37034. height: math.unit(5 + 7/12, "feet"),
  37035. weight: math.unit(2, "tons"),
  37036. name: "Back",
  37037. image: {
  37038. source: "./media/characters/erdno/back.svg",
  37039. extra: 1202/1146,
  37040. bottom: 17/1219
  37041. }
  37042. },
  37043. frontNsfw: {
  37044. height: math.unit(5 + 7/12, "feet"),
  37045. weight: math.unit(2, "tons"),
  37046. name: "Front (NSFW)",
  37047. image: {
  37048. source: "./media/characters/erdno/front-nsfw.svg",
  37049. extra: 1234/1129,
  37050. bottom: 35/1269
  37051. }
  37052. },
  37053. angledNsfw: {
  37054. height: math.unit(5 + 7/12, "feet"),
  37055. weight: math.unit(2, "tons"),
  37056. name: "Angled (NSFW)",
  37057. image: {
  37058. source: "./media/characters/erdno/angled-nsfw.svg",
  37059. extra: 1185/1139,
  37060. bottom: 36/1221
  37061. }
  37062. },
  37063. sideNsfw: {
  37064. height: math.unit(5 + 7/12, "feet"),
  37065. weight: math.unit(2, "tons"),
  37066. name: "Side (NSFW)",
  37067. image: {
  37068. source: "./media/characters/erdno/side-nsfw.svg",
  37069. extra: 1191/1144,
  37070. bottom: 40/1231
  37071. }
  37072. },
  37073. backNsfw: {
  37074. height: math.unit(5 + 7/12, "feet"),
  37075. weight: math.unit(2, "tons"),
  37076. name: "Back (NSFW)",
  37077. image: {
  37078. source: "./media/characters/erdno/back-nsfw.svg",
  37079. extra: 1202/1146,
  37080. bottom: 17/1219
  37081. }
  37082. },
  37083. frontHyper: {
  37084. height: math.unit(5 + 7/12, "feet"),
  37085. weight: math.unit(2, "tons"),
  37086. name: "Front (Hyper)",
  37087. image: {
  37088. source: "./media/characters/erdno/front-hyper.svg",
  37089. extra: 1298/1136,
  37090. bottom: 35/1333
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(5 + 7/12, "feet"),
  37098. default: true
  37099. },
  37100. {
  37101. name: "Big",
  37102. height: math.unit(5.7, "meters")
  37103. },
  37104. {
  37105. name: "Macro",
  37106. height: math.unit(5.7, "kilometers")
  37107. },
  37108. {
  37109. name: "Megamacro",
  37110. height: math.unit(5.7, "earths")
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37116. {
  37117. front: {
  37118. height: math.unit(5 + 10/12, "feet"),
  37119. weight: math.unit(150, "lb"),
  37120. name: "Front",
  37121. image: {
  37122. source: "./media/characters/jamie/front.svg",
  37123. extra: 1908/1768,
  37124. bottom: 19/1927
  37125. }
  37126. },
  37127. },
  37128. [
  37129. {
  37130. name: "Minimum",
  37131. height: math.unit(2, "cm")
  37132. },
  37133. {
  37134. name: "Micro",
  37135. height: math.unit(3, "inches")
  37136. },
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(5 + 10/12, "feet"),
  37140. default: true
  37141. },
  37142. {
  37143. name: "Macro",
  37144. height: math.unit(150, "feet")
  37145. },
  37146. {
  37147. name: "Megamacro",
  37148. height: math.unit(10000, "m")
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(2, "meters"),
  37157. weight: math.unit(100, "kg"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/shiron/front.svg",
  37161. extra: 2103/1985,
  37162. bottom: 98/2201
  37163. }
  37164. },
  37165. back: {
  37166. height: math.unit(2, "meters"),
  37167. weight: math.unit(100, "kg"),
  37168. name: "Back",
  37169. image: {
  37170. source: "./media/characters/shiron/back.svg",
  37171. extra: 2110/2015,
  37172. bottom: 89/2199
  37173. }
  37174. },
  37175. hand: {
  37176. height: math.unit(0.96, "feet"),
  37177. name: "Hand",
  37178. image: {
  37179. source: "./media/characters/shiron/hand.svg"
  37180. }
  37181. },
  37182. foot: {
  37183. height: math.unit(1.464, "feet"),
  37184. name: "Foot",
  37185. image: {
  37186. source: "./media/characters/shiron/foot.svg"
  37187. }
  37188. },
  37189. },
  37190. [
  37191. {
  37192. name: "Normal",
  37193. height: math.unit(2, "meters")
  37194. },
  37195. {
  37196. name: "Macro",
  37197. height: math.unit(500, "meters"),
  37198. default: true
  37199. },
  37200. {
  37201. name: "Megamacro",
  37202. height: math.unit(20, "km")
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(6, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/sam/front.svg",
  37214. extra: 849/826,
  37215. bottom: 19/868
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(6, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(8 + 4/12, "feet"),
  37232. weight: math.unit(122, "kg"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/namori-kurogawa/front.svg",
  37236. extra: 1894/1576,
  37237. bottom: 34/1928
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(8 + 4/12, "feet"),
  37245. default: true
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(9, "feet"),
  37254. weight: math.unit(621, "lb"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/unmru/front.svg",
  37258. extra: 1853/1747,
  37259. bottom: 73/1926
  37260. }
  37261. },
  37262. side: {
  37263. height: math.unit(9, "feet"),
  37264. weight: math.unit(621, "lb"),
  37265. name: "Side",
  37266. image: {
  37267. source: "./media/characters/unmru/side.svg",
  37268. extra: 1781/1671,
  37269. bottom: 127/1908
  37270. }
  37271. },
  37272. back: {
  37273. height: math.unit(9, "feet"),
  37274. weight: math.unit(621, "lb"),
  37275. name: "Back",
  37276. image: {
  37277. source: "./media/characters/unmru/back.svg",
  37278. extra: 1894/1765,
  37279. bottom: 75/1969
  37280. }
  37281. },
  37282. dick: {
  37283. height: math.unit(3, "feet"),
  37284. weight: math.unit(35, "lb"),
  37285. name: "Dick",
  37286. image: {
  37287. source: "./media/characters/unmru/dick.svg"
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(9, "feet")
  37295. },
  37296. {
  37297. name: "Natural",
  37298. height: math.unit(27, "feet"),
  37299. default: true
  37300. },
  37301. {
  37302. name: "Giant",
  37303. height: math.unit(90, "feet")
  37304. },
  37305. {
  37306. name: "Kaiju",
  37307. height: math.unit(270, "feet")
  37308. },
  37309. {
  37310. name: "Macro",
  37311. height: math.unit(900, "feet")
  37312. },
  37313. {
  37314. name: "Macro+",
  37315. height: math.unit(2700, "feet")
  37316. },
  37317. {
  37318. name: "Megamacro",
  37319. height: math.unit(9000, "feet")
  37320. },
  37321. {
  37322. name: "City-Crushing",
  37323. height: math.unit(27000, "feet")
  37324. },
  37325. {
  37326. name: "Mountain-Mashing",
  37327. height: math.unit(90000, "feet")
  37328. },
  37329. {
  37330. name: "Earth-Eclipsing",
  37331. height: math.unit(2.7e8, "feet")
  37332. },
  37333. {
  37334. name: "Sol-Swallowing",
  37335. height: math.unit(9e10, "feet")
  37336. },
  37337. {
  37338. name: "Majoris-Munching",
  37339. height: math.unit(2.7e13, "feet")
  37340. },
  37341. ]
  37342. ))
  37343. characterMakers.push(() => makeCharacter(
  37344. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37345. {
  37346. front: {
  37347. height: math.unit(1, "inch"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/squeaks-mouse/front.svg",
  37351. extra: 352/308,
  37352. bottom: 25/377
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Micro",
  37359. height: math.unit(1, "inch"),
  37360. default: true
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37366. {
  37367. side: {
  37368. height: math.unit(35, "feet"),
  37369. name: "Side",
  37370. image: {
  37371. source: "./media/characters/sayko/side.svg",
  37372. extra: 1697/1021,
  37373. bottom: 82/1779
  37374. }
  37375. },
  37376. head: {
  37377. height: math.unit(16, "feet"),
  37378. name: "Head",
  37379. image: {
  37380. source: "./media/characters/sayko/head.svg"
  37381. }
  37382. },
  37383. forepaw: {
  37384. height: math.unit(7.85, "feet"),
  37385. name: "Forepaw",
  37386. image: {
  37387. source: "./media/characters/sayko/forepaw.svg"
  37388. }
  37389. },
  37390. hindpaw: {
  37391. height: math.unit(8.8, "feet"),
  37392. name: "Hindpaw",
  37393. image: {
  37394. source: "./media/characters/sayko/hindpaw.svg"
  37395. }
  37396. },
  37397. },
  37398. [
  37399. {
  37400. name: "Normal",
  37401. height: math.unit(35, "feet"),
  37402. default: true
  37403. },
  37404. {
  37405. name: "Colossus",
  37406. height: math.unit(100, "meters")
  37407. },
  37408. {
  37409. name: "\"Small\" Deity",
  37410. height: math.unit(1, "km")
  37411. },
  37412. {
  37413. name: "\"Large\" Deity",
  37414. height: math.unit(15, "km")
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(6, "feet"),
  37423. weight: math.unit(250, "lb"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/mukiro/front.svg",
  37427. extra: 1368/1310,
  37428. bottom: 34/1402
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(6, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(12 + 4/12, "feet"),
  37445. name: "Front",
  37446. image: {
  37447. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37448. extra: 1346/1311,
  37449. bottom: 65/1411
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Base",
  37456. height: math.unit(12 + 4/12, "feet"),
  37457. default: true
  37458. },
  37459. {
  37460. name: "Macro",
  37461. height: math.unit(150, "feet")
  37462. },
  37463. {
  37464. name: "Mega",
  37465. height: math.unit(2, "miles")
  37466. },
  37467. {
  37468. name: "Demi God",
  37469. height: math.unit(4, "AU")
  37470. },
  37471. {
  37472. name: "God Size",
  37473. height: math.unit(1, "universe")
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(3 + 3/12, "feet"),
  37482. weight: math.unit(88, "lb"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/trey/front.svg",
  37486. extra: 1815/1509,
  37487. bottom: 60/1875
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(3 + 3/12, "feet"),
  37495. default: true
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37501. {
  37502. front: {
  37503. height: math.unit(4, "meters"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/adelonda/front.svg",
  37507. extra: 1077/982,
  37508. bottom: 39/1116
  37509. }
  37510. },
  37511. back: {
  37512. height: math.unit(4, "meters"),
  37513. name: "Back",
  37514. image: {
  37515. source: "./media/characters/adelonda/back.svg",
  37516. extra: 1105/1003,
  37517. bottom: 25/1130
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Normal",
  37524. height: math.unit(4, "meters"),
  37525. default: true
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37531. {
  37532. front: {
  37533. height: math.unit(8 + 4/12, "feet"),
  37534. weight: math.unit(670, "lb"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/acadiel/front.svg",
  37538. extra: 1901/1595,
  37539. bottom: 142/2043
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(8 + 4/12, "feet"),
  37547. default: true
  37548. },
  37549. {
  37550. name: "Macro",
  37551. height: math.unit(200, "feet")
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(6 + 2/12, "feet"),
  37560. weight: math.unit(185, "lb"),
  37561. name: "Front",
  37562. image: {
  37563. source: "./media/characters/kayne-ein/front.svg",
  37564. extra: 1780/1560,
  37565. bottom: 81/1861
  37566. }
  37567. },
  37568. },
  37569. [
  37570. {
  37571. name: "Normal",
  37572. height: math.unit(6 + 2/12, "feet"),
  37573. default: true
  37574. },
  37575. {
  37576. name: "Transformation Stage",
  37577. height: math.unit(15, "feet")
  37578. },
  37579. {
  37580. name: "Macro",
  37581. height: math.unit(150, "feet")
  37582. },
  37583. {
  37584. name: "Earth's Shadow",
  37585. height: math.unit(6200, "miles")
  37586. },
  37587. {
  37588. name: "Universal Demon",
  37589. height: math.unit(28e9, "parsecs")
  37590. },
  37591. {
  37592. name: "Multiverse God",
  37593. height: math.unit(3, "multiverses")
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(5 + 5/12, "feet"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/fawn/front.svg",
  37605. extra: 1873/1731,
  37606. bottom: 95/1968
  37607. }
  37608. },
  37609. back: {
  37610. height: math.unit(5 + 5/12, "feet"),
  37611. name: "Back",
  37612. image: {
  37613. source: "./media/characters/fawn/back.svg",
  37614. extra: 1813/1700,
  37615. bottom: 14/1827
  37616. }
  37617. },
  37618. hoof: {
  37619. height: math.unit(1.45, "feet"),
  37620. name: "Hoof",
  37621. image: {
  37622. source: "./media/characters/fawn/hoof.svg"
  37623. }
  37624. },
  37625. },
  37626. [
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(5 + 5/12, "feet"),
  37630. default: true
  37631. },
  37632. ]
  37633. ))
  37634. characterMakers.push(() => makeCharacter(
  37635. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37636. {
  37637. front: {
  37638. height: math.unit(2 + 5/12, "feet"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/orion/front.svg",
  37642. extra: 1366/1304,
  37643. bottom: 43/1409
  37644. }
  37645. },
  37646. paw: {
  37647. height: math.unit(0.52, "feet"),
  37648. name: "Paw",
  37649. image: {
  37650. source: "./media/characters/orion/paw.svg"
  37651. }
  37652. },
  37653. },
  37654. [
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(2 + 5/12, "feet"),
  37658. default: true
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(5 + 10/12, "feet"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/vera/front.svg",
  37670. extra: 1680/1575,
  37671. bottom: 49/1729
  37672. }
  37673. },
  37674. back: {
  37675. height: math.unit(5 + 10/12, "feet"),
  37676. name: "Back",
  37677. image: {
  37678. source: "./media/characters/vera/back.svg",
  37679. extra: 1700/1588,
  37680. bottom: 18/1718
  37681. }
  37682. },
  37683. arcanine: {
  37684. height: math.unit(6 + 8/12, "feet"),
  37685. name: "Arcanine",
  37686. image: {
  37687. source: "./media/characters/vera/arcanine.svg",
  37688. extra: 1590/1511,
  37689. bottom: 71/1661
  37690. }
  37691. },
  37692. maw: {
  37693. height: math.unit(0.82, "feet"),
  37694. name: "Maw",
  37695. image: {
  37696. source: "./media/characters/vera/maw.svg"
  37697. }
  37698. },
  37699. mawArcanine: {
  37700. height: math.unit(0.97, "feet"),
  37701. name: "Maw (Arcanine)",
  37702. image: {
  37703. source: "./media/characters/vera/maw-arcanine.svg"
  37704. }
  37705. },
  37706. paw: {
  37707. height: math.unit(0.75, "feet"),
  37708. name: "Paw",
  37709. image: {
  37710. source: "./media/characters/vera/paw.svg"
  37711. }
  37712. },
  37713. pawprint: {
  37714. height: math.unit(0.52, "feet"),
  37715. name: "Pawprint",
  37716. image: {
  37717. source: "./media/characters/vera/pawprint.svg"
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(5 + 10/12, "feet"),
  37725. default: true
  37726. },
  37727. {
  37728. name: "Macro",
  37729. height: math.unit(75, "feet")
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(4, "feet"),
  37738. weight: math.unit(40, "lb"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/orvan-rabbit/front.svg",
  37742. extra: 1896/1642,
  37743. bottom: 29/1925
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(4, "feet"),
  37751. default: true
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(6, "feet"),
  37760. weight: math.unit(168, "lb"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/lisa/front.svg",
  37764. extra: 2065/1867,
  37765. bottom: 46/2111
  37766. }
  37767. },
  37768. back: {
  37769. height: math.unit(6, "feet"),
  37770. weight: math.unit(168, "lb"),
  37771. name: "Back",
  37772. image: {
  37773. source: "./media/characters/lisa/back.svg",
  37774. extra: 1982/1838,
  37775. bottom: 29/2011
  37776. }
  37777. },
  37778. maw: {
  37779. height: math.unit(0.81, "feet"),
  37780. name: "Maw",
  37781. image: {
  37782. source: "./media/characters/lisa/maw.svg"
  37783. }
  37784. },
  37785. paw: {
  37786. height: math.unit(0.9, "feet"),
  37787. name: "Paw",
  37788. image: {
  37789. source: "./media/characters/lisa/paw.svg"
  37790. }
  37791. },
  37792. caribousune: {
  37793. height: math.unit(7 + 2/12, "feet"),
  37794. weight: math.unit(268, "lb"),
  37795. name: "Caribousune",
  37796. image: {
  37797. source: "./media/characters/lisa/caribousune.svg",
  37798. extra: 1843/1633,
  37799. bottom: 29/1872
  37800. }
  37801. },
  37802. frontCaribousune: {
  37803. height: math.unit(7 + 2/12, "feet"),
  37804. weight: math.unit(268, "lb"),
  37805. name: "Front (Caribousune)",
  37806. image: {
  37807. source: "./media/characters/lisa/front-caribousune.svg",
  37808. extra: 1818/1638,
  37809. bottom: 52/1870
  37810. }
  37811. },
  37812. sideCaribousune: {
  37813. height: math.unit(7 + 2/12, "feet"),
  37814. weight: math.unit(268, "lb"),
  37815. name: "Side (Caribousune)",
  37816. image: {
  37817. source: "./media/characters/lisa/side-caribousune.svg",
  37818. extra: 1851/1635,
  37819. bottom: 16/1867
  37820. }
  37821. },
  37822. backCaribousune: {
  37823. height: math.unit(7 + 2/12, "feet"),
  37824. weight: math.unit(268, "lb"),
  37825. name: "Back (Caribousune)",
  37826. image: {
  37827. source: "./media/characters/lisa/back-caribousune.svg",
  37828. extra: 1801/1604,
  37829. bottom: 44/1845
  37830. }
  37831. },
  37832. caribou: {
  37833. height: math.unit(7 + 2/12, "feet"),
  37834. weight: math.unit(268, "lb"),
  37835. name: "Caribou",
  37836. image: {
  37837. source: "./media/characters/lisa/caribou.svg",
  37838. extra: 1843/1633,
  37839. bottom: 29/1872
  37840. }
  37841. },
  37842. frontCaribou: {
  37843. height: math.unit(7 + 2/12, "feet"),
  37844. weight: math.unit(268, "lb"),
  37845. name: "Front (Caribou)",
  37846. image: {
  37847. source: "./media/characters/lisa/front-caribou.svg",
  37848. extra: 1818/1638,
  37849. bottom: 52/1870
  37850. }
  37851. },
  37852. sideCaribou: {
  37853. height: math.unit(7 + 2/12, "feet"),
  37854. weight: math.unit(268, "lb"),
  37855. name: "Side (Caribou)",
  37856. image: {
  37857. source: "./media/characters/lisa/side-caribou.svg",
  37858. extra: 1851/1635,
  37859. bottom: 16/1867
  37860. }
  37861. },
  37862. backCaribou: {
  37863. height: math.unit(7 + 2/12, "feet"),
  37864. weight: math.unit(268, "lb"),
  37865. name: "Back (Caribou)",
  37866. image: {
  37867. source: "./media/characters/lisa/back-caribou.svg",
  37868. extra: 1801/1604,
  37869. bottom: 44/1845
  37870. }
  37871. },
  37872. mawCaribou: {
  37873. height: math.unit(1.45, "feet"),
  37874. name: "Maw (Caribou)",
  37875. image: {
  37876. source: "./media/characters/lisa/maw-caribou.svg"
  37877. }
  37878. },
  37879. mawCaribousune: {
  37880. height: math.unit(1.45, "feet"),
  37881. name: "Maw (Caribousune)",
  37882. image: {
  37883. source: "./media/characters/lisa/maw-caribousune.svg"
  37884. }
  37885. },
  37886. pawCaribousune: {
  37887. height: math.unit(1.61, "feet"),
  37888. name: "Paw (Caribou)",
  37889. image: {
  37890. source: "./media/characters/lisa/paw-caribousune.svg"
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(6, "feet")
  37898. },
  37899. {
  37900. name: "God Size",
  37901. height: math.unit(72, "feet"),
  37902. default: true
  37903. },
  37904. {
  37905. name: "Towering",
  37906. height: math.unit(288, "feet")
  37907. },
  37908. {
  37909. name: "City Size",
  37910. height: math.unit(48384, "feet")
  37911. },
  37912. {
  37913. name: "Continental",
  37914. height: math.unit(4200, "miles")
  37915. },
  37916. {
  37917. name: "Planet Eater",
  37918. height: math.unit(42, "earths")
  37919. },
  37920. {
  37921. name: "Star Swallower",
  37922. height: math.unit(42, "solarradii")
  37923. },
  37924. {
  37925. name: "System Swallower",
  37926. height: math.unit(84000, "AU")
  37927. },
  37928. {
  37929. name: "Galaxy Gobbler",
  37930. height: math.unit(42, "galaxies")
  37931. },
  37932. {
  37933. name: "Universe Devourer",
  37934. height: math.unit(42, "universes")
  37935. },
  37936. {
  37937. name: "Multiverse Muncher",
  37938. height: math.unit(42, "multiverses")
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(36, "feet"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/shadow-rat/front.svg",
  37950. extra: 1845/1758,
  37951. bottom: 83/1928
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Macro",
  37958. height: math.unit(36, "feet"),
  37959. default: true
  37960. },
  37961. ]
  37962. ))
  37963. characterMakers.push(() => makeCharacter(
  37964. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37965. {
  37966. side: {
  37967. height: math.unit(8, "feet"),
  37968. weight: math.unit(2630, "lb"),
  37969. name: "Side",
  37970. image: {
  37971. source: "./media/characters/torallia/side.svg",
  37972. extra: 2164/2021,
  37973. bottom: 371/2535
  37974. }
  37975. },
  37976. },
  37977. [
  37978. {
  37979. name: "Mortal Interaction",
  37980. height: math.unit(8, "feet")
  37981. },
  37982. {
  37983. name: "Natural",
  37984. height: math.unit(24, "feet"),
  37985. default: true
  37986. },
  37987. {
  37988. name: "Giant",
  37989. height: math.unit(80, "feet")
  37990. },
  37991. {
  37992. name: "Kaiju",
  37993. height: math.unit(240, "feet")
  37994. },
  37995. {
  37996. name: "Macro",
  37997. height: math.unit(800, "feet")
  37998. },
  37999. {
  38000. name: "Macro+",
  38001. height: math.unit(2400, "feet")
  38002. },
  38003. {
  38004. name: "Macro++",
  38005. height: math.unit(8000, "feet")
  38006. },
  38007. {
  38008. name: "City-Crushing",
  38009. height: math.unit(24000, "feet")
  38010. },
  38011. {
  38012. name: "Mountain-Mashing",
  38013. height: math.unit(80000, "feet")
  38014. },
  38015. {
  38016. name: "District Demolisher",
  38017. height: math.unit(240000, "feet")
  38018. },
  38019. {
  38020. name: "Tri-County Terror",
  38021. height: math.unit(800000, "feet")
  38022. },
  38023. {
  38024. name: "State Smasher",
  38025. height: math.unit(2.4e6, "feet")
  38026. },
  38027. {
  38028. name: "Nation Nemesis",
  38029. height: math.unit(8e6, "feet")
  38030. },
  38031. {
  38032. name: "Continent Cracker",
  38033. height: math.unit(2.4e7, "feet")
  38034. },
  38035. {
  38036. name: "Planet-Pillaging",
  38037. height: math.unit(8e7, "feet")
  38038. },
  38039. {
  38040. name: "Earth-Eclipsing",
  38041. height: math.unit(2.4e8, "feet")
  38042. },
  38043. {
  38044. name: "Jovian-Jostling",
  38045. height: math.unit(8e8, "feet")
  38046. },
  38047. {
  38048. name: "Gas Giant Gulper",
  38049. height: math.unit(2.4e9, "feet")
  38050. },
  38051. {
  38052. name: "Astral Annihilator",
  38053. height: math.unit(8e9, "feet")
  38054. },
  38055. {
  38056. name: "Celestial Conqueror",
  38057. height: math.unit(2.4e10, "feet")
  38058. },
  38059. {
  38060. name: "Sol-Swallowing",
  38061. height: math.unit(8e10, "feet")
  38062. },
  38063. {
  38064. name: "Hunter of the Heavens",
  38065. height: math.unit(2.4e13, "feet")
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(6 + 8/12, "feet"),
  38074. name: "Front",
  38075. image: {
  38076. source: "./media/characters/rebecca-pawlson/front.svg",
  38077. extra: 1737/1596,
  38078. bottom: 107/1844
  38079. }
  38080. },
  38081. back: {
  38082. height: math.unit(6 + 8/12, "feet"),
  38083. name: "Back",
  38084. image: {
  38085. source: "./media/characters/rebecca-pawlson/back.svg",
  38086. extra: 1702/1523,
  38087. bottom: 86/1788
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Normal",
  38094. height: math.unit(6 + 8/12, "feet")
  38095. },
  38096. {
  38097. name: "Mini Macro",
  38098. height: math.unit(10, "feet"),
  38099. default: true
  38100. },
  38101. {
  38102. name: "Macro",
  38103. height: math.unit(100, "feet")
  38104. },
  38105. {
  38106. name: "Mega Macro",
  38107. height: math.unit(2500, "feet")
  38108. },
  38109. {
  38110. name: "Giga Macro",
  38111. height: math.unit(50, "miles")
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(7 + 6/12, "feet"),
  38120. weight: math.unit(600, "lb"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/moxie-nova/front.svg",
  38124. extra: 1734/1652,
  38125. bottom: 41/1775
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(7 + 6/12, "feet"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38139. {
  38140. goat: {
  38141. height: math.unit(4, "feet"),
  38142. weight: math.unit(180, "lb"),
  38143. name: "Goat",
  38144. image: {
  38145. source: "./media/characters/tiffany/goat.svg",
  38146. extra: 1845/1595,
  38147. bottom: 106/1951
  38148. }
  38149. },
  38150. front: {
  38151. height: math.unit(5, "feet"),
  38152. weight: math.unit(150, "lb"),
  38153. name: "Foxcoon",
  38154. image: {
  38155. source: "./media/characters/tiffany/foxcoon.svg",
  38156. extra: 1941/1845,
  38157. bottom: 58/1999
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(5, "feet"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(8, "feet"),
  38174. weight: math.unit(300, "lb"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/raxinath/front.svg",
  38178. extra: 1407/1309,
  38179. bottom: 39/1446
  38180. }
  38181. },
  38182. back: {
  38183. height: math.unit(8, "feet"),
  38184. weight: math.unit(300, "lb"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/raxinath/back.svg",
  38188. extra: 1405/1315,
  38189. bottom: 9/1414
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Speck",
  38196. height: math.unit(0.5, "nm")
  38197. },
  38198. {
  38199. name: "Micro",
  38200. height: math.unit(3, "inches")
  38201. },
  38202. {
  38203. name: "Kobold",
  38204. height: math.unit(3, "feet")
  38205. },
  38206. {
  38207. name: "Normal",
  38208. height: math.unit(8, "feet"),
  38209. default: true
  38210. },
  38211. {
  38212. name: "Giant",
  38213. height: math.unit(50, "feet")
  38214. },
  38215. {
  38216. name: "Macro",
  38217. height: math.unit(1000, "feet")
  38218. },
  38219. {
  38220. name: "Megamacro",
  38221. height: math.unit(1, "mile")
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38227. {
  38228. front: {
  38229. height: math.unit(10, "feet"),
  38230. weight: math.unit(1442, "lb"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/mal-dragon/front.svg",
  38234. extra: 1515/1444,
  38235. bottom: 113/1628
  38236. }
  38237. },
  38238. back: {
  38239. height: math.unit(10, "feet"),
  38240. weight: math.unit(1442, "lb"),
  38241. name: "Back",
  38242. image: {
  38243. source: "./media/characters/mal-dragon/back.svg",
  38244. extra: 1527/1434,
  38245. bottom: 25/1552
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Mortal Interaction",
  38252. height: math.unit(10, "feet"),
  38253. default: true
  38254. },
  38255. {
  38256. name: "Large",
  38257. height: math.unit(30, "feet")
  38258. },
  38259. {
  38260. name: "Kaiju",
  38261. height: math.unit(300, "feet")
  38262. },
  38263. {
  38264. name: "Megamacro",
  38265. height: math.unit(10000, "feet")
  38266. },
  38267. {
  38268. name: "Continent Cracker",
  38269. height: math.unit(30000000, "feet")
  38270. },
  38271. {
  38272. name: "Sol-Swallowing",
  38273. height: math.unit(1e11, "feet")
  38274. },
  38275. {
  38276. name: "Light Universal",
  38277. height: math.unit(5, "universes")
  38278. },
  38279. {
  38280. name: "Universe Atoms",
  38281. height: math.unit(1.829e9, "universes")
  38282. },
  38283. {
  38284. name: "Light Multiversal",
  38285. height: math.unit(5, "multiverses")
  38286. },
  38287. {
  38288. name: "Multiverse Atoms",
  38289. height: math.unit(1.829e9, "multiverses")
  38290. },
  38291. {
  38292. name: "Fabric of Time",
  38293. height: math.unit(1e262, "multiverses")
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(9, "feet"),
  38302. weight: math.unit(1050, "lb"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/tabitha/front.svg",
  38306. extra: 2083/1994,
  38307. bottom: 68/2151
  38308. }
  38309. },
  38310. },
  38311. [
  38312. {
  38313. name: "Baseline",
  38314. height: math.unit(9, "feet"),
  38315. default: true
  38316. },
  38317. {
  38318. name: "Giant",
  38319. height: math.unit(90, "feet")
  38320. },
  38321. {
  38322. name: "Macro",
  38323. height: math.unit(900, "feet")
  38324. },
  38325. {
  38326. name: "Megamacro",
  38327. height: math.unit(9000, "feet")
  38328. },
  38329. {
  38330. name: "City-Crushing",
  38331. height: math.unit(27000, "feet")
  38332. },
  38333. {
  38334. name: "Mountain-Mashing",
  38335. height: math.unit(90000, "feet")
  38336. },
  38337. {
  38338. name: "Nation Nemesis",
  38339. height: math.unit(9e6, "feet")
  38340. },
  38341. {
  38342. name: "Continent Cracker",
  38343. height: math.unit(27e6, "feet")
  38344. },
  38345. {
  38346. name: "Earth-Eclipsing",
  38347. height: math.unit(2.7e8, "feet")
  38348. },
  38349. {
  38350. name: "Gas Giant Gulper",
  38351. height: math.unit(2.7e9, "feet")
  38352. },
  38353. {
  38354. name: "Sol-Swallowing",
  38355. height: math.unit(9e10, "feet")
  38356. },
  38357. {
  38358. name: "Galaxy Gulper",
  38359. height: math.unit(9, "galaxies")
  38360. },
  38361. {
  38362. name: "Cosmos Churner",
  38363. height: math.unit(9, "universes")
  38364. },
  38365. ]
  38366. ))
  38367. characterMakers.push(() => makeCharacter(
  38368. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38369. {
  38370. front: {
  38371. height: math.unit(160, "cm"),
  38372. weight: math.unit(55, "kg"),
  38373. name: "Front",
  38374. image: {
  38375. source: "./media/characters/tow/front.svg",
  38376. extra: 1751/1722,
  38377. bottom: 74/1825
  38378. }
  38379. },
  38380. },
  38381. [
  38382. {
  38383. name: "Norm",
  38384. height: math.unit(160, "cm")
  38385. },
  38386. {
  38387. name: "Casual",
  38388. height: math.unit(3200, "m"),
  38389. default: true
  38390. },
  38391. {
  38392. name: "Show-Off",
  38393. height: math.unit(160, "km")
  38394. },
  38395. ]
  38396. ))
  38397. characterMakers.push(() => makeCharacter(
  38398. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38399. {
  38400. front: {
  38401. height: math.unit(7 + 11/12, "feet"),
  38402. weight: math.unit(342.8, "lb"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/vivian-orca-dragon/front.svg",
  38406. extra: 1890/1865,
  38407. bottom: 28/1918
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Micro",
  38414. height: math.unit(5, "inches")
  38415. },
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(7 + 11/12, "feet"),
  38419. default: true
  38420. },
  38421. {
  38422. name: "Macro",
  38423. height: math.unit(395 + 7/12, "feet")
  38424. },
  38425. ]
  38426. ))
  38427. characterMakers.push(() => makeCharacter(
  38428. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38429. {
  38430. side: {
  38431. height: math.unit(10, "feet"),
  38432. weight: math.unit(1442, "lb"),
  38433. name: "Side",
  38434. image: {
  38435. source: "./media/characters/lotherakon/side.svg",
  38436. extra: 1604/1497,
  38437. bottom: 89/1693
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Mortal Interaction",
  38444. height: math.unit(10, "feet")
  38445. },
  38446. {
  38447. name: "Large",
  38448. height: math.unit(30, "feet"),
  38449. default: true
  38450. },
  38451. {
  38452. name: "Giant",
  38453. height: math.unit(100, "feet")
  38454. },
  38455. {
  38456. name: "Kaiju",
  38457. height: math.unit(300, "feet")
  38458. },
  38459. {
  38460. name: "Macro",
  38461. height: math.unit(1000, "feet")
  38462. },
  38463. {
  38464. name: "Macro+",
  38465. height: math.unit(3000, "feet")
  38466. },
  38467. {
  38468. name: "Megamacro",
  38469. height: math.unit(10000, "feet")
  38470. },
  38471. {
  38472. name: "City-Crushing",
  38473. height: math.unit(30000, "feet")
  38474. },
  38475. {
  38476. name: "Continent Cracker",
  38477. height: math.unit(30e6, "feet")
  38478. },
  38479. {
  38480. name: "Earth Eclipsing",
  38481. height: math.unit(3e8, "feet")
  38482. },
  38483. {
  38484. name: "Gas Giant Gulper",
  38485. height: math.unit(3e9, "feet")
  38486. },
  38487. {
  38488. name: "Sol-Swallowing",
  38489. height: math.unit(1e11, "feet")
  38490. },
  38491. {
  38492. name: "System Swallower",
  38493. height: math.unit(3e14, "feet")
  38494. },
  38495. {
  38496. name: "Galaxy Gulper",
  38497. height: math.unit(10, "galaxies")
  38498. },
  38499. {
  38500. name: "Light Universal",
  38501. height: math.unit(5, "universes")
  38502. },
  38503. {
  38504. name: "Universe Palm",
  38505. height: math.unit(20, "universes")
  38506. },
  38507. {
  38508. name: "Light Multiversal",
  38509. height: math.unit(5, "multiverses")
  38510. },
  38511. {
  38512. name: "Multiverse Palm",
  38513. height: math.unit(20, "multiverses")
  38514. },
  38515. {
  38516. name: "Inferno Incarnate",
  38517. height: math.unit(1e7, "multiverses")
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(8, "feet"),
  38526. weight: math.unit(1200, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/malithee/front.svg",
  38530. extra: 1675/1640,
  38531. bottom: 162/1837
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Mortal Interaction",
  38538. height: math.unit(8, "feet"),
  38539. default: true
  38540. },
  38541. {
  38542. name: "Large",
  38543. height: math.unit(24, "feet")
  38544. },
  38545. {
  38546. name: "Kaiju",
  38547. height: math.unit(240, "feet")
  38548. },
  38549. {
  38550. name: "Megamacro",
  38551. height: math.unit(8000, "feet")
  38552. },
  38553. {
  38554. name: "Continent Cracker",
  38555. height: math.unit(24e6, "feet")
  38556. },
  38557. {
  38558. name: "Earth-Eclipsing",
  38559. height: math.unit(2.4e8, "feet")
  38560. },
  38561. {
  38562. name: "Sol-Swallowing",
  38563. height: math.unit(8e10, "feet")
  38564. },
  38565. {
  38566. name: "Galaxy Gulper",
  38567. height: math.unit(8, "galaxies")
  38568. },
  38569. {
  38570. name: "Light Universal",
  38571. height: math.unit(4, "universes")
  38572. },
  38573. {
  38574. name: "Universe Atoms",
  38575. height: math.unit(1.829e9, "universes")
  38576. },
  38577. {
  38578. name: "Light Multiversal",
  38579. height: math.unit(4, "multiverses")
  38580. },
  38581. {
  38582. name: "Multiverse Atoms",
  38583. height: math.unit(1.829e9, "multiverses")
  38584. },
  38585. {
  38586. name: "Nigh-Omnipresence",
  38587. height: math.unit(8e261, "multiverses")
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(10, "feet"),
  38596. weight: math.unit(1500, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/miles-thestia/front.svg",
  38600. extra: 1812/1727,
  38601. bottom: 86/1898
  38602. }
  38603. },
  38604. back: {
  38605. height: math.unit(10, "feet"),
  38606. weight: math.unit(1500, "lb"),
  38607. name: "Back",
  38608. image: {
  38609. source: "./media/characters/miles-thestia/back.svg",
  38610. extra: 1799/1690,
  38611. bottom: 47/1846
  38612. }
  38613. },
  38614. frontNsfw: {
  38615. height: math.unit(10, "feet"),
  38616. weight: math.unit(1500, "lb"),
  38617. name: "Front (NSFW)",
  38618. image: {
  38619. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38620. extra: 1812/1727,
  38621. bottom: 86/1898
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Mini-Macro",
  38628. height: math.unit(10, "feet"),
  38629. default: true
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(25, "feet"),
  38638. name: "Front",
  38639. image: {
  38640. source: "./media/characters/titan-s-wulf/front.svg",
  38641. extra: 1560/1484,
  38642. bottom: 76/1636
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Smallest",
  38649. height: math.unit(25, "feet"),
  38650. default: true
  38651. },
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(200, "feet")
  38655. },
  38656. {
  38657. name: "Macro",
  38658. height: math.unit(200000, "feet")
  38659. },
  38660. {
  38661. name: "Multiversal Original",
  38662. height: math.unit(10000, "multiverses")
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(8, "feet"),
  38671. weight: math.unit(553, "lb"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/tawendeh/front.svg",
  38675. extra: 2365/2268,
  38676. bottom: 83/2448
  38677. }
  38678. },
  38679. frontClothed: {
  38680. height: math.unit(8, "feet"),
  38681. weight: math.unit(553, "lb"),
  38682. name: "Front (Clothed)",
  38683. image: {
  38684. source: "./media/characters/tawendeh/front-clothed.svg",
  38685. extra: 2365/2268,
  38686. bottom: 83/2448
  38687. }
  38688. },
  38689. back: {
  38690. height: math.unit(8, "feet"),
  38691. weight: math.unit(553, "lb"),
  38692. name: "Back",
  38693. image: {
  38694. source: "./media/characters/tawendeh/back.svg",
  38695. extra: 2397/2294,
  38696. bottom: 42/2439
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Mortal Interaction",
  38703. height: math.unit(8, "feet"),
  38704. default: true
  38705. },
  38706. {
  38707. name: "Giant",
  38708. height: math.unit(80, "feet")
  38709. },
  38710. {
  38711. name: "Macro",
  38712. height: math.unit(800, "feet")
  38713. },
  38714. {
  38715. name: "Megamacro",
  38716. height: math.unit(8000, "feet")
  38717. },
  38718. {
  38719. name: "City-Crushing",
  38720. height: math.unit(24000, "feet")
  38721. },
  38722. {
  38723. name: "Mountain-Mashing",
  38724. height: math.unit(80000, "feet")
  38725. },
  38726. {
  38727. name: "Nation Nemesis",
  38728. height: math.unit(8e6, "feet")
  38729. },
  38730. {
  38731. name: "Continent Cracker",
  38732. height: math.unit(24e6, "feet")
  38733. },
  38734. {
  38735. name: "Earth-Eclipsing",
  38736. height: math.unit(2.4e8, "feet")
  38737. },
  38738. {
  38739. name: "Gas Giant Gulper",
  38740. height: math.unit(2.4e9, "feet")
  38741. },
  38742. {
  38743. name: "Sol-Swallowing",
  38744. height: math.unit(8e10, "feet")
  38745. },
  38746. {
  38747. name: "Galaxy Gulper",
  38748. height: math.unit(8, "galaxies")
  38749. },
  38750. {
  38751. name: "Cosmos Churner",
  38752. height: math.unit(8, "universes")
  38753. },
  38754. {
  38755. name: "Omnipotent Otter",
  38756. height: math.unit(80, "universes")
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(2.6, "meters"),
  38765. weight: math.unit(900, "kg"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/neesha/front.svg",
  38769. extra: 1803/1653,
  38770. bottom: 128/1931
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Normal",
  38777. height: math.unit(2.6, "meters"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Macro",
  38782. height: math.unit(50, "meters")
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38788. {
  38789. front: {
  38790. height: math.unit(5, "feet"),
  38791. weight: math.unit(185, "lb"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/kyera/front.svg",
  38795. extra: 1875/1790,
  38796. bottom: 96/1971
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(5, "feet"),
  38804. default: true
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(7 + 6/12, "feet"),
  38813. weight: math.unit(540, "lb"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/yuko/front.svg",
  38817. extra: 1282/1222,
  38818. bottom: 101/1383
  38819. }
  38820. },
  38821. frontClothed: {
  38822. height: math.unit(7 + 6/12, "feet"),
  38823. weight: math.unit(540, "lb"),
  38824. name: "Front (Clothed)",
  38825. image: {
  38826. source: "./media/characters/yuko/front-clothed.svg",
  38827. extra: 1282/1222,
  38828. bottom: 101/1383
  38829. }
  38830. },
  38831. },
  38832. [
  38833. {
  38834. name: "Normal",
  38835. height: math.unit(7 + 6/12, "feet"),
  38836. default: true
  38837. },
  38838. {
  38839. name: "Macro",
  38840. height: math.unit(26 + 9/12, "feet")
  38841. },
  38842. {
  38843. name: "Megamacro",
  38844. height: math.unit(300, "feet")
  38845. },
  38846. {
  38847. name: "Gigamacro",
  38848. height: math.unit(5000, "feet")
  38849. },
  38850. {
  38851. name: "Planetary",
  38852. height: math.unit(10000, "miles")
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(8 + 2/12, "feet"),
  38861. weight: math.unit(600, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/deam-nitrel/front.svg",
  38865. extra: 1308/1234,
  38866. bottom: 125/1433
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(8 + 2/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(6.1, "feet"),
  38883. weight: math.unit(180, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/skyress/front.svg",
  38887. extra: 1045/915,
  38888. bottom: 28/1073
  38889. }
  38890. },
  38891. maw: {
  38892. height: math.unit(1, "feet"),
  38893. name: "Maw",
  38894. image: {
  38895. source: "./media/characters/skyress/maw.svg"
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Normal",
  38902. height: math.unit(6.1, "feet"),
  38903. default: true
  38904. },
  38905. {
  38906. name: "Macro",
  38907. height: math.unit(200, "feet")
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(4 + 2/12, "feet"),
  38916. weight: math.unit(40, "kg"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/amethyst-jones/front.svg",
  38920. extra: 1220/1150,
  38921. bottom: 101/1321
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(4 + 2/12, "feet"),
  38929. default: true
  38930. },
  38931. ]
  38932. ))
  38933. characterMakers.push(() => makeCharacter(
  38934. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38935. {
  38936. front: {
  38937. height: math.unit(1.7, "m"),
  38938. weight: math.unit(135, "lb"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/jade/front.svg",
  38942. extra: 1818/1767,
  38943. bottom: 32/1850
  38944. }
  38945. },
  38946. back: {
  38947. height: math.unit(1.7, "m"),
  38948. weight: math.unit(135, "lb"),
  38949. name: "Back",
  38950. image: {
  38951. source: "./media/characters/jade/back.svg",
  38952. extra: 1869/1809,
  38953. bottom: 35/1904
  38954. }
  38955. },
  38956. hand: {
  38957. height: math.unit(0.24, "m"),
  38958. name: "Hand",
  38959. image: {
  38960. source: "./media/characters/jade/hand.svg"
  38961. }
  38962. },
  38963. foot: {
  38964. height: math.unit(0.263, "m"),
  38965. name: "Foot",
  38966. image: {
  38967. source: "./media/characters/jade/foot.svg"
  38968. }
  38969. },
  38970. dick: {
  38971. height: math.unit(0.47, "m"),
  38972. name: "Dick",
  38973. image: {
  38974. source: "./media/characters/jade/dick.svg"
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Micro",
  38981. height: math.unit(22, "cm")
  38982. },
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(1.7, "m"),
  38986. default: true
  38987. },
  38988. {
  38989. name: "Macro",
  38990. height: math.unit(152, "m")
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(100, "miles"),
  38999. weight: math.unit(20000, "tons"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/cookie/front.svg",
  39003. extra: 1125/1070,
  39004. bottom: 30/1155
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Big",
  39011. height: math.unit(50, "feet")
  39012. },
  39013. {
  39014. name: "Macro",
  39015. height: math.unit(100, "miles"),
  39016. default: true
  39017. },
  39018. {
  39019. name: "Megamacro",
  39020. height: math.unit(90000, "miles")
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(6, "feet"),
  39029. weight: math.unit(145, "lb"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/farzian/front.svg",
  39033. extra: 1902/1693,
  39034. bottom: 108/2010
  39035. }
  39036. },
  39037. },
  39038. [
  39039. {
  39040. name: "Macro",
  39041. height: math.unit(500, "feet"),
  39042. default: true
  39043. },
  39044. ]
  39045. ))
  39046. characterMakers.push(() => makeCharacter(
  39047. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39048. {
  39049. front: {
  39050. height: math.unit(3 + 6/12, "feet"),
  39051. weight: math.unit(50, "lb"),
  39052. name: "Front",
  39053. image: {
  39054. source: "./media/characters/kimberly-tilson/front.svg",
  39055. extra: 1400/1322,
  39056. bottom: 36/1436
  39057. }
  39058. },
  39059. back: {
  39060. height: math.unit(3 + 6/12, "feet"),
  39061. weight: math.unit(50, "lb"),
  39062. name: "Back",
  39063. image: {
  39064. source: "./media/characters/kimberly-tilson/back.svg",
  39065. extra: 1370/1307,
  39066. bottom: 20/1390
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(3 + 6/12, "feet"),
  39074. default: true
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(1148, "feet"),
  39083. weight: math.unit(34057, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/harthos/front.svg",
  39087. extra: 1391/1339,
  39088. bottom: 13/1404
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Macro",
  39095. height: math.unit(1148, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(15, "feet"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/hypatia/front.svg",
  39108. extra: 1653/1591,
  39109. bottom: 79/1732
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Normal",
  39116. height: math.unit(15, "feet")
  39117. },
  39118. {
  39119. name: "Small",
  39120. height: math.unit(300, "feet")
  39121. },
  39122. {
  39123. name: "Macro",
  39124. height: math.unit(2500, "feet"),
  39125. default: true
  39126. },
  39127. {
  39128. name: "Mega Macro",
  39129. height: math.unit(1500, "miles")
  39130. },
  39131. {
  39132. name: "Giga Macro",
  39133. height: math.unit(1.5e6, "miles")
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(6, "feet"),
  39142. weight: math.unit(200, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/wulver/front.svg",
  39146. extra: 1724/1632,
  39147. bottom: 130/1854
  39148. }
  39149. },
  39150. frontNsfw: {
  39151. height: math.unit(6, "feet"),
  39152. weight: math.unit(200, "lb"),
  39153. name: "Front (NSFW)",
  39154. image: {
  39155. source: "./media/characters/wulver/front-nsfw.svg",
  39156. extra: 1724/1632,
  39157. bottom: 130/1854
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Human-Sized",
  39164. height: math.unit(6, "feet")
  39165. },
  39166. {
  39167. name: "Normal",
  39168. height: math.unit(4, "meters"),
  39169. default: true
  39170. },
  39171. {
  39172. name: "Large",
  39173. height: math.unit(6, "m")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(7, "feet"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/maru/front.svg",
  39185. extra: 1595/1570,
  39186. bottom: 0/1595
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(7, "feet"),
  39194. default: true
  39195. },
  39196. {
  39197. name: "Macro",
  39198. height: math.unit(700, "feet")
  39199. },
  39200. {
  39201. name: "Mega Macro",
  39202. height: math.unit(25, "miles")
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(6, "feet"),
  39211. weight: math.unit(170, "lb"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/xenon/front.svg",
  39215. extra: 1376/1305,
  39216. bottom: 56/1432
  39217. }
  39218. },
  39219. back: {
  39220. height: math.unit(6, "feet"),
  39221. weight: math.unit(170, "lb"),
  39222. name: "Back",
  39223. image: {
  39224. source: "./media/characters/xenon/back.svg",
  39225. extra: 1328/1259,
  39226. bottom: 95/1423
  39227. }
  39228. },
  39229. maw: {
  39230. height: math.unit(0.52, "feet"),
  39231. name: "Maw",
  39232. image: {
  39233. source: "./media/characters/xenon/maw.svg"
  39234. }
  39235. },
  39236. hand: {
  39237. height: math.unit(0.82, "feet"),
  39238. name: "Hand",
  39239. image: {
  39240. source: "./media/characters/xenon/hand.svg"
  39241. }
  39242. },
  39243. foot: {
  39244. height: math.unit(1.13, "feet"),
  39245. name: "Foot",
  39246. image: {
  39247. source: "./media/characters/xenon/foot.svg"
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Micro",
  39254. height: math.unit(0.8, "inches")
  39255. },
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(6, "feet")
  39259. },
  39260. {
  39261. name: "Macro",
  39262. height: math.unit(50, "feet"),
  39263. default: true
  39264. },
  39265. {
  39266. name: "Macro+",
  39267. height: math.unit(250, "feet")
  39268. },
  39269. {
  39270. name: "Megamacro",
  39271. height: math.unit(1500, "feet")
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(7 + 5/12, "feet"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/zane/front.svg",
  39283. extra: 1260/1203,
  39284. bottom: 94/1354
  39285. }
  39286. },
  39287. back: {
  39288. height: math.unit(5.05, "feet"),
  39289. name: "Back",
  39290. image: {
  39291. source: "./media/characters/zane/back.svg",
  39292. extra: 893/829,
  39293. bottom: 30/923
  39294. }
  39295. },
  39296. werewolf: {
  39297. height: math.unit(11, "feet"),
  39298. name: "Werewolf",
  39299. image: {
  39300. source: "./media/characters/zane/werewolf.svg",
  39301. extra: 1383/1323,
  39302. bottom: 89/1472
  39303. }
  39304. },
  39305. foot: {
  39306. height: math.unit(1.46, "feet"),
  39307. name: "Foot",
  39308. image: {
  39309. source: "./media/characters/zane/foot.svg"
  39310. }
  39311. },
  39312. footFront: {
  39313. height: math.unit(0.784, "feet"),
  39314. name: "Foot (Front)",
  39315. image: {
  39316. source: "./media/characters/zane/foot-front.svg"
  39317. }
  39318. },
  39319. dick: {
  39320. height: math.unit(1.95, "feet"),
  39321. name: "Dick",
  39322. image: {
  39323. source: "./media/characters/zane/dick.svg"
  39324. }
  39325. },
  39326. dickWerewolf: {
  39327. height: math.unit(3.77, "feet"),
  39328. name: "Dick (Werewolf)",
  39329. image: {
  39330. source: "./media/characters/zane/dick.svg"
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(7 + 5/12, "feet"),
  39338. default: true
  39339. },
  39340. ]
  39341. ))
  39342. characterMakers.push(() => makeCharacter(
  39343. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39344. {
  39345. front: {
  39346. height: math.unit(6 + 2/12, "feet"),
  39347. weight: math.unit(284, "lb"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/benni-desparque/front.svg",
  39351. extra: 1353/1126,
  39352. bottom: 69/1422
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Civilian",
  39359. height: math.unit(6 + 2/12, "feet")
  39360. },
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(98, "feet"),
  39364. default: true
  39365. },
  39366. {
  39367. name: "Kaiju Fighter",
  39368. height: math.unit(268, "feet")
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39374. {
  39375. front: {
  39376. height: math.unit(5, "feet"),
  39377. weight: math.unit(105, "lb"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/maxine/front.svg",
  39381. extra: 1386/1250,
  39382. bottom: 71/1457
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(5, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(11 + 7/12, "feet"),
  39399. weight: math.unit(9576, "lb"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/scaly/front.svg",
  39403. extra: 888/867,
  39404. bottom: 36/924
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(11 + 7/12, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(9, "inches"),
  39421. name: "Front",
  39422. image: {
  39423. source: "./media/characters/saelria/front.svg",
  39424. extra: 662/621,
  39425. bottom: 12/674
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Tiny",
  39432. height: math.unit(9, "inches"),
  39433. default: true
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39439. {
  39440. front: {
  39441. height: math.unit(80, "meters"),
  39442. weight: math.unit(7000, "tonnes"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/tef/front.svg",
  39446. extra: 2036/1991,
  39447. bottom: 54/2090
  39448. }
  39449. },
  39450. back: {
  39451. height: math.unit(80, "meters"),
  39452. weight: math.unit(7000, "tonnes"),
  39453. name: "Back",
  39454. image: {
  39455. source: "./media/characters/tef/back.svg",
  39456. extra: 2036/1991,
  39457. bottom: 54/2090
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Macro",
  39464. height: math.unit(80, "meters"),
  39465. default: true
  39466. },
  39467. ]
  39468. ))
  39469. characterMakers.push(() => makeCharacter(
  39470. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39471. {
  39472. front: {
  39473. height: math.unit(13, "feet"),
  39474. weight: math.unit(6, "tons"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/rover/front.svg",
  39478. extra: 1233/1156,
  39479. bottom: 50/1283
  39480. }
  39481. },
  39482. back: {
  39483. height: math.unit(13, "feet"),
  39484. weight: math.unit(6, "tons"),
  39485. name: "Back",
  39486. image: {
  39487. source: "./media/characters/rover/back.svg",
  39488. extra: 1327/1258,
  39489. bottom: 39/1366
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(13, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Macro",
  39501. height: math.unit(1300, "feet")
  39502. },
  39503. {
  39504. name: "Megamacro",
  39505. height: math.unit(1300, "miles")
  39506. },
  39507. {
  39508. name: "Gigamacro",
  39509. height: math.unit(1300000, "miles")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(6, "feet"),
  39518. weight: math.unit(150, "lb"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/ariz/front.svg",
  39522. extra: 1401/1346,
  39523. bottom: 5/1406
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Normal",
  39530. height: math.unit(10, "feet"),
  39531. default: true
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(6, "feet"),
  39540. weight: math.unit(140, "lb"),
  39541. name: "Front",
  39542. image: {
  39543. source: "./media/characters/sigrun/front.svg",
  39544. extra: 1418/1359,
  39545. bottom: 27/1445
  39546. }
  39547. },
  39548. },
  39549. [
  39550. {
  39551. name: "Macro",
  39552. height: math.unit(35, "feet"),
  39553. default: true
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(6, "feet"),
  39562. weight: math.unit(150, "lb"),
  39563. name: "Front",
  39564. image: {
  39565. source: "./media/characters/numin/front.svg",
  39566. extra: 1433/1388,
  39567. bottom: 12/1445
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Macro",
  39574. height: math.unit(21.5, "km"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(6, "feet"),
  39584. weight: math.unit(463, "lb"),
  39585. name: "Front",
  39586. image: {
  39587. source: "./media/characters/melwa/front.svg",
  39588. extra: 1307/1248,
  39589. bottom: 93/1400
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(50, "meters"),
  39597. default: true
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(325, "feet"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/zorkaiju/front.svg",
  39609. extra: 1955/1814,
  39610. bottom: 40/1995
  39611. }
  39612. },
  39613. frontExtended: {
  39614. height: math.unit(325, "feet"),
  39615. name: "Front (Extended)",
  39616. image: {
  39617. source: "./media/characters/zorkaiju/front-extended.svg",
  39618. extra: 1955/1814,
  39619. bottom: 40/1995
  39620. }
  39621. },
  39622. side: {
  39623. height: math.unit(325, "feet"),
  39624. name: "Side",
  39625. image: {
  39626. source: "./media/characters/zorkaiju/side.svg",
  39627. extra: 1495/1396,
  39628. bottom: 17/1512
  39629. }
  39630. },
  39631. sideExtended: {
  39632. height: math.unit(325, "feet"),
  39633. name: "Side (Extended)",
  39634. image: {
  39635. source: "./media/characters/zorkaiju/side-extended.svg",
  39636. extra: 1495/1396,
  39637. bottom: 17/1512
  39638. }
  39639. },
  39640. back: {
  39641. height: math.unit(325, "feet"),
  39642. name: "Back",
  39643. image: {
  39644. source: "./media/characters/zorkaiju/back.svg",
  39645. extra: 1959/1821,
  39646. bottom: 31/1990
  39647. }
  39648. },
  39649. backExtended: {
  39650. height: math.unit(325, "feet"),
  39651. name: "Back (Extended)",
  39652. image: {
  39653. source: "./media/characters/zorkaiju/back-extended.svg",
  39654. extra: 1959/1821,
  39655. bottom: 31/1990
  39656. }
  39657. },
  39658. hand: {
  39659. height: math.unit(58.4, "feet"),
  39660. name: "Hand",
  39661. image: {
  39662. source: "./media/characters/zorkaiju/hand.svg"
  39663. }
  39664. },
  39665. handExtended: {
  39666. height: math.unit(61.4, "feet"),
  39667. name: "Hand (Extended)",
  39668. image: {
  39669. source: "./media/characters/zorkaiju/hand-extended.svg"
  39670. }
  39671. },
  39672. foot: {
  39673. height: math.unit(95, "feet"),
  39674. name: "Foot",
  39675. image: {
  39676. source: "./media/characters/zorkaiju/foot.svg"
  39677. }
  39678. },
  39679. leftArm: {
  39680. height: math.unit(59, "feet"),
  39681. name: "Left Arm",
  39682. image: {
  39683. source: "./media/characters/zorkaiju/left-arm.svg"
  39684. }
  39685. },
  39686. rightArm: {
  39687. height: math.unit(59, "feet"),
  39688. name: "Right Arm",
  39689. image: {
  39690. source: "./media/characters/zorkaiju/right-arm.svg"
  39691. }
  39692. },
  39693. tail: {
  39694. height: math.unit(104, "feet"),
  39695. name: "Tail",
  39696. image: {
  39697. source: "./media/characters/zorkaiju/tail.svg"
  39698. }
  39699. },
  39700. tailExtended: {
  39701. height: math.unit(104, "feet"),
  39702. name: "Tail (Extended)",
  39703. image: {
  39704. source: "./media/characters/zorkaiju/tail-extended.svg"
  39705. }
  39706. },
  39707. tailBottom: {
  39708. height: math.unit(104, "feet"),
  39709. name: "Tail Bottom",
  39710. image: {
  39711. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39712. }
  39713. },
  39714. crystal: {
  39715. height: math.unit(27.54, "feet"),
  39716. name: "Crystal",
  39717. image: {
  39718. source: "./media/characters/zorkaiju/crystal.svg"
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Kaiju",
  39725. height: math.unit(325, "feet"),
  39726. default: true
  39727. },
  39728. ]
  39729. ))
  39730. characterMakers.push(() => makeCharacter(
  39731. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39732. {
  39733. front: {
  39734. height: math.unit(6 + 1/12, "feet"),
  39735. weight: math.unit(115, "lb"),
  39736. name: "Front",
  39737. image: {
  39738. source: "./media/characters/bailey-belfry/front.svg",
  39739. extra: 1240/1121,
  39740. bottom: 101/1341
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(6 + 1/12, "feet"),
  39748. default: true
  39749. },
  39750. ]
  39751. ))
  39752. characterMakers.push(() => makeCharacter(
  39753. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39754. {
  39755. side: {
  39756. height: math.unit(4, "meters"),
  39757. weight: math.unit(250, "kg"),
  39758. name: "Side",
  39759. image: {
  39760. source: "./media/characters/blacky/side.svg",
  39761. extra: 1027/919,
  39762. bottom: 43/1070
  39763. }
  39764. },
  39765. maw: {
  39766. height: math.unit(1, "meters"),
  39767. name: "Maw",
  39768. image: {
  39769. source: "./media/characters/blacky/maw.svg"
  39770. }
  39771. },
  39772. paw: {
  39773. height: math.unit(1, "meters"),
  39774. name: "Paw",
  39775. image: {
  39776. source: "./media/characters/blacky/paw.svg"
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(4, "meters"),
  39784. default: true
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(170, "cm"),
  39793. weight: math.unit(66, "kg"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/thux-ei/front.svg",
  39797. extra: 1109/1011,
  39798. bottom: 8/1117
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(170, "cm"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(5, "feet"),
  39815. weight: math.unit(120, "lb"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/roxanne-voltaire/front.svg",
  39819. extra: 1901/1779,
  39820. bottom: 53/1954
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(5, "feet"),
  39828. default: true
  39829. },
  39830. {
  39831. name: "Giant",
  39832. height: math.unit(50, "feet")
  39833. },
  39834. {
  39835. name: "Titan",
  39836. height: math.unit(500, "feet")
  39837. },
  39838. {
  39839. name: "Macro",
  39840. height: math.unit(5000, "feet")
  39841. },
  39842. {
  39843. name: "Megamacro",
  39844. height: math.unit(50000, "feet")
  39845. },
  39846. {
  39847. name: "Gigamacro",
  39848. height: math.unit(500000, "feet")
  39849. },
  39850. {
  39851. name: "Teramacro",
  39852. height: math.unit(5e6, "feet")
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(6 + 2/12, "feet"),
  39861. name: "Front",
  39862. image: {
  39863. source: "./media/characters/squeaks/front.svg",
  39864. extra: 1823/1768,
  39865. bottom: 138/1961
  39866. }
  39867. },
  39868. },
  39869. [
  39870. {
  39871. name: "Micro",
  39872. height: math.unit(0.5, "inches")
  39873. },
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(6 + 2/12, "feet"),
  39877. default: true
  39878. },
  39879. {
  39880. name: "Macro",
  39881. height: math.unit(600, "feet")
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(1.72, "meters"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/archinger/front.svg",
  39893. extra: 1861/1675,
  39894. bottom: 125/1986
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(1.72, "meters"),
  39899. name: "Back",
  39900. image: {
  39901. source: "./media/characters/archinger/back.svg",
  39902. extra: 1844/1701,
  39903. bottom: 104/1948
  39904. }
  39905. },
  39906. cock: {
  39907. height: math.unit(0.59, "feet"),
  39908. name: "Cock",
  39909. image: {
  39910. source: "./media/characters/archinger/cock.svg"
  39911. }
  39912. },
  39913. },
  39914. [
  39915. {
  39916. name: "Normal",
  39917. height: math.unit(1.72, "meters"),
  39918. default: true
  39919. },
  39920. {
  39921. name: "Macro",
  39922. height: math.unit(84, "meters")
  39923. },
  39924. {
  39925. name: "Macro+",
  39926. height: math.unit(112, "meters")
  39927. },
  39928. {
  39929. name: "Macro++",
  39930. height: math.unit(960, "meters")
  39931. },
  39932. {
  39933. name: "Macro+++",
  39934. height: math.unit(4, "km")
  39935. },
  39936. {
  39937. name: "Macro++++",
  39938. height: math.unit(48, "km")
  39939. },
  39940. {
  39941. name: "Macro+++++",
  39942. height: math.unit(4500, "km")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(5 + 5/12, "feet"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/alsnapz/front.svg",
  39954. extra: 1157/1065,
  39955. bottom: 42/1199
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(5 + 5/12, "feet"),
  39963. default: true
  39964. },
  39965. ]
  39966. ))
  39967. characterMakers.push(() => makeCharacter(
  39968. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39969. {
  39970. side: {
  39971. height: math.unit(3.2, "earths"),
  39972. name: "Side",
  39973. image: {
  39974. source: "./media/characters/mag/side.svg",
  39975. extra: 1331/1008,
  39976. bottom: 52/1383
  39977. }
  39978. },
  39979. wing: {
  39980. height: math.unit(1.94, "earths"),
  39981. name: "Wing",
  39982. image: {
  39983. source: "./media/characters/mag/wing.svg"
  39984. }
  39985. },
  39986. dick: {
  39987. height: math.unit(1.8, "earths"),
  39988. name: "Dick",
  39989. image: {
  39990. source: "./media/characters/mag/dick.svg"
  39991. }
  39992. },
  39993. ass: {
  39994. height: math.unit(1.33, "earths"),
  39995. name: "Ass",
  39996. image: {
  39997. source: "./media/characters/mag/ass.svg"
  39998. }
  39999. },
  40000. head: {
  40001. height: math.unit(1.1, "earths"),
  40002. name: "Head",
  40003. image: {
  40004. source: "./media/characters/mag/head.svg"
  40005. }
  40006. },
  40007. maw: {
  40008. height: math.unit(1.62, "earths"),
  40009. name: "Maw",
  40010. image: {
  40011. source: "./media/characters/mag/maw.svg"
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Small",
  40018. height: math.unit(162, "feet")
  40019. },
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(3.2, "earths"),
  40023. default: true
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(512, "feet"),
  40032. weight: math.unit(63509, "tonnes"),
  40033. name: "Front",
  40034. image: {
  40035. source: "./media/characters/vorrel-harroc/front.svg",
  40036. extra: 1075/1063,
  40037. bottom: 62/1137
  40038. }
  40039. },
  40040. },
  40041. [
  40042. {
  40043. name: "Normal",
  40044. height: math.unit(10, "feet")
  40045. },
  40046. {
  40047. name: "Macro",
  40048. height: math.unit(512, "feet"),
  40049. default: true
  40050. },
  40051. {
  40052. name: "Megamacro",
  40053. height: math.unit(256, "miles")
  40054. },
  40055. {
  40056. name: "Gigamacro",
  40057. height: math.unit(4096, "miles")
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40063. {
  40064. side: {
  40065. height: math.unit(50, "feet"),
  40066. name: "Side",
  40067. image: {
  40068. source: "./media/characters/froimar/side.svg",
  40069. extra: 855/638,
  40070. bottom: 99/954
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(50, "feet"),
  40078. default: true
  40079. },
  40080. ]
  40081. ))
  40082. characterMakers.push(() => makeCharacter(
  40083. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40084. {
  40085. front: {
  40086. height: math.unit(210, "miles"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/timothy/front.svg",
  40090. extra: 1007/943,
  40091. bottom: 62/1069
  40092. }
  40093. },
  40094. frontSkirt: {
  40095. height: math.unit(210, "miles"),
  40096. name: "Front (Skirt)",
  40097. image: {
  40098. source: "./media/characters/timothy/front-skirt.svg",
  40099. extra: 1007/943,
  40100. bottom: 62/1069
  40101. }
  40102. },
  40103. frontCoat: {
  40104. height: math.unit(210, "miles"),
  40105. name: "Front (Coat)",
  40106. image: {
  40107. source: "./media/characters/timothy/front-coat.svg",
  40108. extra: 1007/943,
  40109. bottom: 62/1069
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Macro",
  40116. height: math.unit(210, "miles"),
  40117. default: true
  40118. },
  40119. {
  40120. name: "Megamacro",
  40121. height: math.unit(210000, "miles")
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(188, "feet"),
  40130. name: "Front",
  40131. image: {
  40132. source: "./media/characters/pyotr/front.svg",
  40133. extra: 1912/1826,
  40134. bottom: 18/1930
  40135. }
  40136. },
  40137. },
  40138. [
  40139. {
  40140. name: "Macro",
  40141. height: math.unit(188, "feet"),
  40142. default: true
  40143. },
  40144. {
  40145. name: "Megamacro",
  40146. height: math.unit(8, "miles")
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40152. {
  40153. side: {
  40154. height: math.unit(10, "feet"),
  40155. weight: math.unit(4500, "lb"),
  40156. name: "Side",
  40157. image: {
  40158. source: "./media/characters/ackart/side.svg",
  40159. extra: 1776/1668,
  40160. bottom: 116/1892
  40161. }
  40162. },
  40163. },
  40164. [
  40165. {
  40166. name: "Normal",
  40167. height: math.unit(10, "feet"),
  40168. default: true
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40174. {
  40175. side: {
  40176. height: math.unit(21, "feet"),
  40177. name: "Side",
  40178. image: {
  40179. source: "./media/characters/nolow/side.svg",
  40180. extra: 1484/1434,
  40181. bottom: 85/1569
  40182. }
  40183. },
  40184. sideErect: {
  40185. height: math.unit(21, "feet"),
  40186. name: "Side-erect",
  40187. image: {
  40188. source: "./media/characters/nolow/side-erect.svg",
  40189. extra: 1484/1434,
  40190. bottom: 85/1569
  40191. }
  40192. },
  40193. },
  40194. [
  40195. {
  40196. name: "Regular",
  40197. height: math.unit(12, "feet")
  40198. },
  40199. {
  40200. name: "Big Chee",
  40201. height: math.unit(21, "feet"),
  40202. default: true
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40208. {
  40209. front: {
  40210. height: math.unit(7, "feet"),
  40211. weight: math.unit(250, "lb"),
  40212. name: "Front",
  40213. image: {
  40214. source: "./media/characters/nines/front.svg",
  40215. extra: 1741/1607,
  40216. bottom: 41/1782
  40217. }
  40218. },
  40219. side: {
  40220. height: math.unit(7, "feet"),
  40221. weight: math.unit(250, "lb"),
  40222. name: "Side",
  40223. image: {
  40224. source: "./media/characters/nines/side.svg",
  40225. extra: 1854/1735,
  40226. bottom: 93/1947
  40227. }
  40228. },
  40229. back: {
  40230. height: math.unit(7, "feet"),
  40231. weight: math.unit(250, "lb"),
  40232. name: "Back",
  40233. image: {
  40234. source: "./media/characters/nines/back.svg",
  40235. extra: 1748/1615,
  40236. bottom: 20/1768
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Megamacro",
  40243. height: math.unit(99, "km"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40250. {
  40251. front: {
  40252. height: math.unit(5 + 10/12, "feet"),
  40253. weight: math.unit(210, "lb"),
  40254. name: "Front",
  40255. image: {
  40256. source: "./media/characters/zenith/front.svg",
  40257. extra: 1531/1452,
  40258. bottom: 198/1729
  40259. }
  40260. },
  40261. back: {
  40262. height: math.unit(5 + 10/12, "feet"),
  40263. weight: math.unit(210, "lb"),
  40264. name: "Back",
  40265. image: {
  40266. source: "./media/characters/zenith/back.svg",
  40267. extra: 1571/1487,
  40268. bottom: 75/1646
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(5 + 10/12, "feet"),
  40276. default: true
  40277. }
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(4, "feet"),
  40285. weight: math.unit(60, "lb"),
  40286. name: "Front",
  40287. image: {
  40288. source: "./media/characters/jasper/front.svg",
  40289. extra: 1450/1379,
  40290. bottom: 19/1469
  40291. }
  40292. },
  40293. },
  40294. [
  40295. {
  40296. name: "Normal",
  40297. height: math.unit(4, "feet"),
  40298. default: true
  40299. },
  40300. ]
  40301. ))
  40302. characterMakers.push(() => makeCharacter(
  40303. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40304. {
  40305. front: {
  40306. height: math.unit(6 + 5/12, "feet"),
  40307. weight: math.unit(290, "lb"),
  40308. name: "Front",
  40309. image: {
  40310. source: "./media/characters/tiberius-thyben/front.svg",
  40311. extra: 757/739,
  40312. bottom: 39/796
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Micro",
  40319. height: math.unit(1.5, "inches")
  40320. },
  40321. {
  40322. name: "Normal",
  40323. height: math.unit(6 + 5/12, "feet"),
  40324. default: true
  40325. },
  40326. {
  40327. name: "Macro",
  40328. height: math.unit(300, "feet")
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(5 + 6/12, "feet"),
  40337. weight: math.unit(60, "kg"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/sabre/front.svg",
  40341. extra: 738/671,
  40342. bottom: 27/765
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Teeny",
  40349. height: math.unit(2, "inches")
  40350. },
  40351. {
  40352. name: "Smol",
  40353. height: math.unit(8, "inches")
  40354. },
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(5 + 6/12, "feet"),
  40358. default: true
  40359. },
  40360. {
  40361. name: "Mini-Macro",
  40362. height: math.unit(15, "feet")
  40363. },
  40364. {
  40365. name: "Macro",
  40366. height: math.unit(50, "feet")
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(6 + 4/12, "feet"),
  40375. weight: math.unit(170, "lb"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/charlie/front.svg",
  40379. extra: 1348/1228,
  40380. bottom: 15/1363
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Macro",
  40387. height: math.unit(1700, "meters"),
  40388. default: true
  40389. },
  40390. {
  40391. name: "MegaMacro",
  40392. height: math.unit(20400, "meters")
  40393. },
  40394. ]
  40395. ))
  40396. characterMakers.push(() => makeCharacter(
  40397. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40398. {
  40399. front: {
  40400. height: math.unit(6 + 3/12, "feet"),
  40401. weight: math.unit(185, "lb"),
  40402. name: "Front",
  40403. image: {
  40404. source: "./media/characters/susan-grant/front.svg",
  40405. extra: 1351/1327,
  40406. bottom: 26/1377
  40407. }
  40408. },
  40409. },
  40410. [
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(6 + 3/12, "feet"),
  40414. default: true
  40415. },
  40416. {
  40417. name: "Macro",
  40418. height: math.unit(225, "feet")
  40419. },
  40420. {
  40421. name: "Macro+",
  40422. height: math.unit(900, "feet")
  40423. },
  40424. {
  40425. name: "MegaMacro",
  40426. height: math.unit(14400, "feet")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(5 + 4/12, "feet"),
  40435. weight: math.unit(110, "lb"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/axel-isanov/front.svg",
  40439. extra: 1096/1065,
  40440. bottom: 13/1109
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Normal",
  40447. height: math.unit(5 + 4/12, "feet"),
  40448. default: true
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(9, "feet"),
  40457. weight: math.unit(467, "lb"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/necahual/front.svg",
  40461. extra: 920/873,
  40462. bottom: 26/946
  40463. }
  40464. },
  40465. back: {
  40466. height: math.unit(9, "feet"),
  40467. weight: math.unit(467, "lb"),
  40468. name: "Back",
  40469. image: {
  40470. source: "./media/characters/necahual/back.svg",
  40471. extra: 930/884,
  40472. bottom: 16/946
  40473. }
  40474. },
  40475. frontUnderwear: {
  40476. height: math.unit(9, "feet"),
  40477. weight: math.unit(467, "lb"),
  40478. name: "Front (Underwear)",
  40479. image: {
  40480. source: "./media/characters/necahual/front-underwear.svg",
  40481. extra: 920/873,
  40482. bottom: 26/946
  40483. }
  40484. },
  40485. frontDressed: {
  40486. height: math.unit(9, "feet"),
  40487. weight: math.unit(467, "lb"),
  40488. name: "Front (Dressed)",
  40489. image: {
  40490. source: "./media/characters/necahual/front-dressed.svg",
  40491. extra: 920/873,
  40492. bottom: 26/946
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Comprsesed",
  40499. height: math.unit(9, "feet")
  40500. },
  40501. {
  40502. name: "Natural",
  40503. height: math.unit(15, "feet"),
  40504. default: true
  40505. },
  40506. {
  40507. name: "Boosted",
  40508. height: math.unit(50, "feet")
  40509. },
  40510. {
  40511. name: "Boosted+",
  40512. height: math.unit(150, "feet")
  40513. },
  40514. {
  40515. name: "Max",
  40516. height: math.unit(500, "feet")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(22 + 1/12, "feet"),
  40525. weight: math.unit(3200, "lb"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/theo-acacia/front.svg",
  40529. extra: 1796/1741,
  40530. bottom: 83/1879
  40531. }
  40532. },
  40533. frontUnderwear: {
  40534. height: math.unit(22 + 1/12, "feet"),
  40535. weight: math.unit(3200, "lb"),
  40536. name: "Front (Underwear)",
  40537. image: {
  40538. source: "./media/characters/theo-acacia/front-underwear.svg",
  40539. extra: 1796/1741,
  40540. bottom: 83/1879
  40541. }
  40542. },
  40543. frontNude: {
  40544. height: math.unit(22 + 1/12, "feet"),
  40545. weight: math.unit(3200, "lb"),
  40546. name: "Front (Nude)",
  40547. image: {
  40548. source: "./media/characters/theo-acacia/front-nude.svg",
  40549. extra: 1796/1741,
  40550. bottom: 83/1879
  40551. }
  40552. },
  40553. },
  40554. [
  40555. {
  40556. name: "Normal",
  40557. height: math.unit(22 + 1/12, "feet"),
  40558. default: true
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40564. {
  40565. front: {
  40566. height: math.unit(20, "feet"),
  40567. name: "Front",
  40568. image: {
  40569. source: "./media/characters/astra/front.svg",
  40570. extra: 1850/1714,
  40571. bottom: 106/1956
  40572. }
  40573. },
  40574. frontUndressed: {
  40575. height: math.unit(20, "feet"),
  40576. name: "Front (Undressed)",
  40577. image: {
  40578. source: "./media/characters/astra/front-undressed.svg",
  40579. extra: 1926/1749,
  40580. bottom: 0/1926
  40581. }
  40582. },
  40583. hand: {
  40584. height: math.unit(1.53, "feet"),
  40585. name: "Hand",
  40586. image: {
  40587. source: "./media/characters/astra/hand.svg"
  40588. }
  40589. },
  40590. paw: {
  40591. height: math.unit(1.53, "feet"),
  40592. name: "Paw",
  40593. image: {
  40594. source: "./media/characters/astra/paw.svg"
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Smallest",
  40601. height: math.unit(20, "feet")
  40602. },
  40603. {
  40604. name: "Normal",
  40605. height: math.unit(1e9, "miles"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Larger",
  40610. height: math.unit(5, "multiverses")
  40611. },
  40612. {
  40613. name: "Largest",
  40614. height: math.unit(1e9, "multiverses")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(8, "feet"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/breanna/front.svg",
  40626. extra: 1912/1632,
  40627. bottom: 33/1945
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Smallest",
  40634. height: math.unit(8, "feet")
  40635. },
  40636. {
  40637. name: "Normal",
  40638. height: math.unit(1, "mile"),
  40639. default: true
  40640. },
  40641. {
  40642. name: "Maximum",
  40643. height: math.unit(1500000000000, "lightyears")
  40644. },
  40645. ]
  40646. ))
  40647. characterMakers.push(() => makeCharacter(
  40648. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40649. {
  40650. front: {
  40651. height: math.unit(5 + 11/12, "feet"),
  40652. weight: math.unit(155, "lb"),
  40653. name: "Front",
  40654. image: {
  40655. source: "./media/characters/cai/front.svg",
  40656. extra: 1823/1702,
  40657. bottom: 32/1855
  40658. }
  40659. },
  40660. back: {
  40661. height: math.unit(5 + 11/12, "feet"),
  40662. weight: math.unit(155, "lb"),
  40663. name: "Back",
  40664. image: {
  40665. source: "./media/characters/cai/back.svg",
  40666. extra: 1809/1708,
  40667. bottom: 31/1840
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(5 + 11/12, "feet"),
  40675. default: true
  40676. },
  40677. {
  40678. name: "Big",
  40679. height: math.unit(15, "feet")
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(200, "feet")
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(5 + 6/12, "feet"),
  40692. weight: math.unit(160, "lb"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40696. extra: 1227/1174,
  40697. bottom: 37/1264
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Macro",
  40704. height: math.unit(444, "meters"),
  40705. default: true
  40706. },
  40707. ]
  40708. ))
  40709. characterMakers.push(() => makeCharacter(
  40710. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40711. {
  40712. front: {
  40713. height: math.unit(18 + 7/12, "feet"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/rex/front.svg",
  40717. extra: 1941/1807,
  40718. bottom: 66/2007
  40719. }
  40720. },
  40721. back: {
  40722. height: math.unit(18 + 7/12, "feet"),
  40723. name: "Back",
  40724. image: {
  40725. source: "./media/characters/rex/back.svg",
  40726. extra: 1937/1822,
  40727. bottom: 42/1979
  40728. }
  40729. },
  40730. boot: {
  40731. height: math.unit(3.45, "feet"),
  40732. name: "Boot",
  40733. image: {
  40734. source: "./media/characters/rex/boot.svg"
  40735. }
  40736. },
  40737. paw: {
  40738. height: math.unit(4.17, "feet"),
  40739. name: "Paw",
  40740. image: {
  40741. source: "./media/characters/rex/paw.svg"
  40742. }
  40743. },
  40744. head: {
  40745. height: math.unit(6.728, "feet"),
  40746. name: "Head",
  40747. image: {
  40748. source: "./media/characters/rex/head.svg"
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Nano",
  40755. height: math.unit(18 + 7/12, "feet")
  40756. },
  40757. {
  40758. name: "Micro",
  40759. height: math.unit(1.5, "megameters")
  40760. },
  40761. {
  40762. name: "Normal",
  40763. height: math.unit(440, "megameters"),
  40764. default: true
  40765. },
  40766. {
  40767. name: "Macro",
  40768. height: math.unit(2.5, "gigameters")
  40769. },
  40770. {
  40771. name: "Gigamacro",
  40772. height: math.unit(2, "galaxies")
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40778. {
  40779. side: {
  40780. height: math.unit(32, "feet"),
  40781. weight: math.unit(250000, "lb"),
  40782. name: "Side",
  40783. image: {
  40784. source: "./media/characters/silverwing/side.svg",
  40785. extra: 1100/1019,
  40786. bottom: 204/1304
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(32, "feet"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(6 + 6/12, "feet"),
  40803. weight: math.unit(350, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/tristan-hawthorne/front.svg",
  40807. extra: 1159/1124,
  40808. bottom: 37/1196
  40809. }
  40810. },
  40811. },
  40812. [
  40813. {
  40814. name: "Normal",
  40815. height: math.unit(6 + 6/12, "feet"),
  40816. default: true
  40817. },
  40818. ]
  40819. ))
  40820. characterMakers.push(() => makeCharacter(
  40821. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40822. {
  40823. front: {
  40824. height: math.unit(5 + 11/12, "feet"),
  40825. weight: math.unit(190, "lb"),
  40826. name: "Front",
  40827. image: {
  40828. source: "./media/characters/mizu/front.svg",
  40829. extra: 1988/1788,
  40830. bottom: 14/2002
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(5 + 11/12, "feet"),
  40838. default: true
  40839. },
  40840. ]
  40841. ))
  40842. characterMakers.push(() => makeCharacter(
  40843. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40844. {
  40845. front: {
  40846. height: math.unit(6, "feet"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/moonlight-rose-terra/front.svg",
  40850. extra: 1434/1252,
  40851. bottom: 48/1482
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "TRAPPIST-1D",
  40858. height: math.unit(4992*2, "km")
  40859. },
  40860. {
  40861. name: "Earth",
  40862. height: math.unit(6367*2, "km"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Kepler-22b",
  40867. height: math.unit(15282*2, "km")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(6, "feet"),
  40876. name: "Front",
  40877. image: {
  40878. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40879. extra: 1851/1712,
  40880. bottom: 0/1851
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Enceladus",
  40887. height: math.unit(513*2, "km")
  40888. },
  40889. {
  40890. name: "Europe",
  40891. height: math.unit(1560*2, "km")
  40892. },
  40893. {
  40894. name: "Neptune",
  40895. height: math.unit(24622*2, "km"),
  40896. default: true
  40897. },
  40898. {
  40899. name: "CoRoT-9b",
  40900. height: math.unit(75067*2, "km")
  40901. },
  40902. ]
  40903. ))
  40904. characterMakers.push(() => makeCharacter(
  40905. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40906. {
  40907. front: {
  40908. height: math.unit(6, "feet"),
  40909. name: "Front",
  40910. image: {
  40911. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40912. extra: 1367/1286,
  40913. bottom: 55/1422
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Saturn",
  40920. height: math.unit(58232*2, "km")
  40921. },
  40922. {
  40923. name: "Jupiter",
  40924. height: math.unit(69911*2, "km"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "HD 100546 b",
  40929. height: math.unit(482938, "km")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(1.7, "feet"),
  40938. weight: math.unit(50, "lb"),
  40939. name: "Front",
  40940. image: {
  40941. source: "./media/characters/dechroma/front.svg",
  40942. extra: 1095/859,
  40943. bottom: 64/1159
  40944. }
  40945. },
  40946. },
  40947. [
  40948. {
  40949. name: "Normal",
  40950. height: math.unit(1.7, "feet"),
  40951. default: true
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40957. {
  40958. side: {
  40959. height: math.unit(30, "feet"),
  40960. name: "Side",
  40961. image: {
  40962. source: "./media/characters/veluren-thanazel/side.svg",
  40963. extra: 1611/633,
  40964. bottom: 118/1729
  40965. }
  40966. },
  40967. front: {
  40968. height: math.unit(30, "feet"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/veluren-thanazel/front.svg",
  40972. extra: 1486/636,
  40973. bottom: 238/1724
  40974. }
  40975. },
  40976. head: {
  40977. height: math.unit(21.4, "feet"),
  40978. name: "Head",
  40979. image: {
  40980. source: "./media/characters/veluren-thanazel/head.svg"
  40981. }
  40982. },
  40983. genitals: {
  40984. height: math.unit(19.4, "feet"),
  40985. name: "Genitals",
  40986. image: {
  40987. source: "./media/characters/veluren-thanazel/genitals.svg"
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Social",
  40994. height: math.unit(6, "feet")
  40995. },
  40996. {
  40997. name: "Play",
  40998. height: math.unit(12, "feet")
  40999. },
  41000. {
  41001. name: "True",
  41002. height: math.unit(30, "feet"),
  41003. default: true
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(7 + 6/12, "feet"),
  41012. weight: math.unit(500, "kg"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/arcturas/front.svg",
  41016. extra: 1700/1500,
  41017. bottom: 145/1845
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(7 + 6/12, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41031. {
  41032. side: {
  41033. height: math.unit(6, "feet"),
  41034. weight: math.unit(2, "tons"),
  41035. name: "Side",
  41036. image: {
  41037. source: "./media/characters/vitaen/side.svg",
  41038. extra: 1157/617,
  41039. bottom: 122/1279
  41040. }
  41041. },
  41042. },
  41043. [
  41044. {
  41045. name: "Normal",
  41046. height: math.unit(6, "feet"),
  41047. default: true
  41048. },
  41049. ]
  41050. ))
  41051. characterMakers.push(() => makeCharacter(
  41052. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41053. {
  41054. front: {
  41055. height: math.unit(19, "feet"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/fia-dreamweaver/front.svg",
  41059. extra: 1630/1504,
  41060. bottom: 25/1655
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Normal",
  41067. height: math.unit(19, "feet"),
  41068. default: true
  41069. },
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41074. {
  41075. front: {
  41076. height: math.unit(5 + 4/12, "feet"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/artan/front.svg",
  41080. extra: 1618/1535,
  41081. bottom: 46/1664
  41082. }
  41083. },
  41084. back: {
  41085. height: math.unit(5 + 4/12, "feet"),
  41086. name: "Back",
  41087. image: {
  41088. source: "./media/characters/artan/back.svg",
  41089. extra: 1618/1543,
  41090. bottom: 31/1649
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Normal",
  41097. height: math.unit(5 + 4/12, "feet"),
  41098. default: true
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41104. {
  41105. side: {
  41106. height: math.unit(182, "cm"),
  41107. weight: math.unit(1000, "lb"),
  41108. name: "Side",
  41109. image: {
  41110. source: "./media/characters/silver-dragon/side.svg",
  41111. extra: 710/287,
  41112. bottom: 88/798
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(182, "cm"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41126. {
  41127. side: {
  41128. height: math.unit(6 + 6/12, "feet"),
  41129. weight: math.unit(1.5, "tons"),
  41130. name: "Side",
  41131. image: {
  41132. source: "./media/characters/zephyr/side.svg",
  41133. extra: 1433/586,
  41134. bottom: 109/1542
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(6 + 6/12, "feet"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41148. {
  41149. side: {
  41150. height: math.unit(1, "feet"),
  41151. name: "Side",
  41152. image: {
  41153. source: "./media/characters/vixye/side.svg",
  41154. extra: 632/541,
  41155. bottom: 0/632
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(1, "feet"),
  41163. default: true
  41164. },
  41165. {
  41166. name: "True",
  41167. height: math.unit(1e15, "multiverses")
  41168. },
  41169. ]
  41170. ))
  41171. characterMakers.push(() => makeCharacter(
  41172. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41173. {
  41174. front: {
  41175. height: math.unit(8 + 2/12, "feet"),
  41176. weight: math.unit(650, "lb"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41180. extra: 1174/1137,
  41181. bottom: 82/1256
  41182. }
  41183. },
  41184. back: {
  41185. height: math.unit(8 + 2/12, "feet"),
  41186. weight: math.unit(650, "lb"),
  41187. name: "Back",
  41188. image: {
  41189. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41190. extra: 1204/1157,
  41191. bottom: 46/1250
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Wildform",
  41198. height: math.unit(8 + 2/12, "feet"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(18, "feet"),
  41208. name: "Front",
  41209. image: {
  41210. source: "./media/characters/cyphin/front.svg",
  41211. extra: 970/886,
  41212. bottom: 42/1012
  41213. }
  41214. },
  41215. back: {
  41216. height: math.unit(18, "feet"),
  41217. name: "Back",
  41218. image: {
  41219. source: "./media/characters/cyphin/back.svg",
  41220. extra: 1009/894,
  41221. bottom: 24/1033
  41222. }
  41223. },
  41224. head: {
  41225. height: math.unit(5.05, "feet"),
  41226. name: "Head",
  41227. image: {
  41228. source: "./media/characters/cyphin/head.svg"
  41229. }
  41230. },
  41231. tailbud: {
  41232. height: math.unit(5, "feet"),
  41233. name: "Tailbud",
  41234. image: {
  41235. source: "./media/characters/cyphin/tailbud.svg"
  41236. }
  41237. },
  41238. },
  41239. [
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41244. {
  41245. side: {
  41246. height: math.unit(10, "feet"),
  41247. weight: math.unit(6, "tons"),
  41248. name: "Side",
  41249. image: {
  41250. source: "./media/characters/raijin/side.svg",
  41251. extra: 1529/613,
  41252. bottom: 337/1866
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Normal",
  41259. height: math.unit(10, "feet"),
  41260. default: true
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41266. {
  41267. side: {
  41268. height: math.unit(9, "feet"),
  41269. name: "Side",
  41270. image: {
  41271. source: "./media/characters/nilghais/side.svg",
  41272. extra: 1047/744,
  41273. bottom: 91/1138
  41274. }
  41275. },
  41276. head: {
  41277. height: math.unit(3.14, "feet"),
  41278. name: "Head",
  41279. image: {
  41280. source: "./media/characters/nilghais/head.svg"
  41281. }
  41282. },
  41283. mouth: {
  41284. height: math.unit(4.6, "feet"),
  41285. name: "Mouth",
  41286. image: {
  41287. source: "./media/characters/nilghais/mouth.svg"
  41288. }
  41289. },
  41290. wings: {
  41291. height: math.unit(24, "feet"),
  41292. name: "Wings",
  41293. image: {
  41294. source: "./media/characters/nilghais/wings.svg"
  41295. }
  41296. },
  41297. ass: {
  41298. height: math.unit(6.12, "feet"),
  41299. name: "Ass",
  41300. image: {
  41301. source: "./media/characters/nilghais/ass.svg"
  41302. }
  41303. },
  41304. },
  41305. [
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(9, "feet"),
  41309. default: true
  41310. },
  41311. ]
  41312. ))
  41313. characterMakers.push(() => makeCharacter(
  41314. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41315. {
  41316. regular: {
  41317. height: math.unit(16 + 2/12, "feet"),
  41318. weight: math.unit(2300, "lb"),
  41319. name: "Regular",
  41320. image: {
  41321. source: "./media/characters/zolgar/regular.svg",
  41322. extra: 1246/1004,
  41323. bottom: 124/1370
  41324. }
  41325. },
  41326. boxers: {
  41327. height: math.unit(16 + 2/12, "feet"),
  41328. weight: math.unit(2300, "lb"),
  41329. name: "Boxers",
  41330. image: {
  41331. source: "./media/characters/zolgar/boxers.svg",
  41332. extra: 1246/1004,
  41333. bottom: 124/1370
  41334. }
  41335. },
  41336. armored: {
  41337. height: math.unit(16 + 2/12, "feet"),
  41338. weight: math.unit(2300, "lb"),
  41339. name: "Armored",
  41340. image: {
  41341. source: "./media/characters/zolgar/armored.svg",
  41342. extra: 1246/1004,
  41343. bottom: 124/1370
  41344. }
  41345. },
  41346. goth: {
  41347. height: math.unit(16 + 2/12, "feet"),
  41348. weight: math.unit(2300, "lb"),
  41349. name: "Goth",
  41350. image: {
  41351. source: "./media/characters/zolgar/goth.svg",
  41352. extra: 1246/1004,
  41353. bottom: 124/1370
  41354. }
  41355. },
  41356. },
  41357. [
  41358. {
  41359. name: "Shrunken Down",
  41360. height: math.unit(9 + 2/12, "feet")
  41361. },
  41362. {
  41363. name: "Normal",
  41364. height: math.unit(16 + 2/12, "feet"),
  41365. default: true
  41366. },
  41367. ]
  41368. ))
  41369. characterMakers.push(() => makeCharacter(
  41370. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41371. {
  41372. front: {
  41373. height: math.unit(6, "feet"),
  41374. weight: math.unit(168, "lb"),
  41375. name: "Front",
  41376. image: {
  41377. source: "./media/characters/luca/front.svg",
  41378. extra: 841/667,
  41379. bottom: 102/943
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Normal",
  41386. height: math.unit(6, "feet"),
  41387. default: true
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41393. {
  41394. side: {
  41395. height: math.unit(7 + 3/12, "feet"),
  41396. weight: math.unit(312, "lb"),
  41397. name: "Side",
  41398. image: {
  41399. source: "./media/characters/zezo/side.svg",
  41400. extra: 1192/1067,
  41401. bottom: 63/1255
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Normal",
  41408. height: math.unit(7 + 3/12, "feet"),
  41409. default: true
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(5 + 5/12, "feet"),
  41418. weight: math.unit(170, "lb"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/mayso/front.svg",
  41422. extra: 1215/1108,
  41423. bottom: 16/1231
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(5 + 5/12, "feet"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(4 + 3/12, "feet"),
  41440. weight: math.unit(80, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/hess/front.svg",
  41444. extra: 1200/1123,
  41445. bottom: 16/1216
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(4 + 3/12, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41459. {
  41460. front: {
  41461. height: math.unit(1.9, "meters"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/ashgar/front.svg",
  41465. extra: 1177/1146,
  41466. bottom: 99/1276
  41467. }
  41468. },
  41469. back: {
  41470. height: math.unit(1.9, "meters"),
  41471. name: "Back",
  41472. image: {
  41473. source: "./media/characters/ashgar/back.svg",
  41474. extra: 1201/1183,
  41475. bottom: 53/1254
  41476. }
  41477. },
  41478. feral: {
  41479. height: math.unit(1.4, "meters"),
  41480. name: "Feral",
  41481. image: {
  41482. source: "./media/characters/ashgar/feral.svg",
  41483. extra: 370/345,
  41484. bottom: 45/415
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(1.9, "meters"),
  41492. default: true
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41498. {
  41499. regular: {
  41500. height: math.unit(6, "feet"),
  41501. weight: math.unit(220, "lb"),
  41502. name: "Regular",
  41503. image: {
  41504. source: "./media/characters/phillip/regular.svg",
  41505. extra: 1373/1277,
  41506. bottom: 75/1448
  41507. }
  41508. },
  41509. dressed: {
  41510. height: math.unit(6, "feet"),
  41511. weight: math.unit(220, "lb"),
  41512. name: "Dressed",
  41513. image: {
  41514. source: "./media/characters/phillip/dressed.svg",
  41515. extra: 1373/1277,
  41516. bottom: 75/1448
  41517. }
  41518. },
  41519. paw: {
  41520. height: math.unit(1.44, "feet"),
  41521. name: "Paw",
  41522. image: {
  41523. source: "./media/characters/phillip/paw.svg"
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(6, "feet"),
  41531. default: true
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41537. {
  41538. side: {
  41539. height: math.unit(42, "feet"),
  41540. name: "Side",
  41541. image: {
  41542. source: "./media/characters/uvula/side.svg",
  41543. extra: 683/586,
  41544. bottom: 60/743
  41545. }
  41546. },
  41547. front: {
  41548. height: math.unit(42, "feet"),
  41549. name: "Front",
  41550. image: {
  41551. source: "./media/characters/uvula/front.svg",
  41552. extra: 705/613,
  41553. bottom: 54/759
  41554. }
  41555. },
  41556. maw: {
  41557. height: math.unit(23.5, "feet"),
  41558. name: "Maw",
  41559. image: {
  41560. source: "./media/characters/uvula/maw.svg"
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Original Size",
  41567. height: math.unit(14, "inches")
  41568. },
  41569. {
  41570. name: "Human Size",
  41571. height: math.unit(6, "feet")
  41572. },
  41573. {
  41574. name: "Big",
  41575. height: math.unit(42, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Bigger",
  41580. height: math.unit(100, "feet")
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(5 + 11/12, "feet"),
  41589. name: "Front",
  41590. image: {
  41591. source: "./media/characters/lannah/front.svg",
  41592. extra: 1208/1113,
  41593. bottom: 97/1305
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(5 + 11/12, "feet"),
  41601. default: true
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41607. {
  41608. front: {
  41609. height: math.unit(6 + 3/12, "feet"),
  41610. weight: math.unit(3.5, "tons"),
  41611. name: "Front",
  41612. image: {
  41613. source: "./media/characters/emberflame/front.svg",
  41614. extra: 1198/672,
  41615. bottom: 82/1280
  41616. }
  41617. },
  41618. side: {
  41619. height: math.unit(6 + 3/12, "feet"),
  41620. weight: math.unit(3.5, "tons"),
  41621. name: "Side",
  41622. image: {
  41623. source: "./media/characters/emberflame/side.svg",
  41624. extra: 938/527,
  41625. bottom: 56/994
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(6 + 3/12, "feet"),
  41633. default: true
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41639. {
  41640. side: {
  41641. height: math.unit(17.5, "feet"),
  41642. weight: math.unit(35, "tons"),
  41643. name: "Side",
  41644. image: {
  41645. source: "./media/characters/sophie-ambrose/side.svg",
  41646. extra: 1573/1242,
  41647. bottom: 71/1644
  41648. }
  41649. },
  41650. maw: {
  41651. height: math.unit(7.4, "feet"),
  41652. name: "Maw",
  41653. image: {
  41654. source: "./media/characters/sophie-ambrose/maw.svg"
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(17.5, "feet"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(280, "feet"),
  41671. weight: math.unit(550, "tons"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/king-mugi/front.svg",
  41675. extra: 1102/947,
  41676. bottom: 104/1206
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "King Mugi",
  41683. height: math.unit(280, "feet"),
  41684. default: true
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(64, "meters"),
  41693. name: "Front",
  41694. image: {
  41695. source: "./media/characters/nova-fox/front.svg",
  41696. extra: 1310/1246,
  41697. bottom: 65/1375
  41698. }
  41699. },
  41700. },
  41701. [
  41702. {
  41703. name: "Macro",
  41704. height: math.unit(64, "meters"),
  41705. default: true
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(6 + 3/12, "feet"),
  41714. weight: math.unit(170, "lb"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/sam-bat/front.svg",
  41718. extra: 1601/1411,
  41719. bottom: 125/1726
  41720. }
  41721. },
  41722. back: {
  41723. height: math.unit(6 + 3/12, "feet"),
  41724. weight: math.unit(170, "lb"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/sam-bat/back.svg",
  41728. extra: 1577/1405,
  41729. bottom: 58/1635
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Normal",
  41736. height: math.unit(6 + 3/12, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41743. {
  41744. front: {
  41745. height: math.unit(59, "feet"),
  41746. weight: math.unit(40000, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/inari/front.svg",
  41750. extra: 1884/1350,
  41751. bottom: 95/1979
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Gigantamax",
  41758. height: math.unit(59, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(5 + 8/12, "feet"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/elizabeth/front.svg",
  41771. extra: 1395/1298,
  41772. bottom: 54/1449
  41773. }
  41774. },
  41775. mouth: {
  41776. height: math.unit(1.97, "feet"),
  41777. name: "Mouth",
  41778. image: {
  41779. source: "./media/characters/elizabeth/mouth.svg"
  41780. }
  41781. },
  41782. foot: {
  41783. height: math.unit(1.17, "feet"),
  41784. name: "Foot",
  41785. image: {
  41786. source: "./media/characters/elizabeth/foot.svg"
  41787. }
  41788. },
  41789. },
  41790. [
  41791. {
  41792. name: "Normal",
  41793. height: math.unit(5 + 8/12, "feet"),
  41794. default: true
  41795. },
  41796. {
  41797. name: "Minimacro",
  41798. height: math.unit(18, "feet")
  41799. },
  41800. {
  41801. name: "Macro",
  41802. height: math.unit(180, "feet")
  41803. },
  41804. ]
  41805. ))
  41806. characterMakers.push(() => makeCharacter(
  41807. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41808. {
  41809. front: {
  41810. height: math.unit(5 + 2/12, "feet"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/october-gossamer/front.svg",
  41814. extra: 505/454,
  41815. bottom: 7/512
  41816. }
  41817. },
  41818. back: {
  41819. height: math.unit(5 + 2/12, "feet"),
  41820. name: "Back",
  41821. image: {
  41822. source: "./media/characters/october-gossamer/back.svg",
  41823. extra: 501/454,
  41824. bottom: 11/512
  41825. }
  41826. },
  41827. },
  41828. [
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(5 + 2/12, "feet"),
  41832. default: true
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(5, "feet"),
  41841. name: "Front",
  41842. image: {
  41843. source: "./media/characters/epiglottis/front.svg",
  41844. extra: 923/849,
  41845. bottom: 17/940
  41846. }
  41847. },
  41848. },
  41849. [
  41850. {
  41851. name: "Original Size",
  41852. height: math.unit(10, "inches")
  41853. },
  41854. {
  41855. name: "Human Size",
  41856. height: math.unit(5, "feet"),
  41857. default: true
  41858. },
  41859. {
  41860. name: "Big",
  41861. height: math.unit(25, "feet")
  41862. },
  41863. {
  41864. name: "Bigger",
  41865. height: math.unit(50, "feet")
  41866. },
  41867. {
  41868. name: "oh lawd",
  41869. height: math.unit(75, "feet")
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(2 + 4/12, "feet"),
  41878. weight: math.unit(60, "lb"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/lerm/front.svg",
  41882. extra: 796/790,
  41883. bottom: 79/875
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(2 + 4/12, "feet"),
  41891. default: true
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(5.5, "feet"),
  41900. weight: math.unit(130, "lb"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/xena-nebadon/front.svg",
  41904. extra: 1828/1730,
  41905. bottom: 79/1907
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Tiny Puppy",
  41912. height: math.unit(3, "inches")
  41913. },
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(5.5, "feet"),
  41917. default: true
  41918. },
  41919. {
  41920. name: "Lotta Lady",
  41921. height: math.unit(12, "feet")
  41922. },
  41923. {
  41924. name: "Pretty Big",
  41925. height: math.unit(100, "feet")
  41926. },
  41927. {
  41928. name: "Big",
  41929. height: math.unit(500, "feet")
  41930. },
  41931. {
  41932. name: "Skyscraper Toys",
  41933. height: math.unit(2500, "feet")
  41934. },
  41935. {
  41936. name: "Plane Catcher",
  41937. height: math.unit(8, "miles")
  41938. },
  41939. {
  41940. name: "Planet Toys",
  41941. height: math.unit(15, "earths")
  41942. },
  41943. {
  41944. name: "Stardust",
  41945. height: math.unit(0.25, "galaxies")
  41946. },
  41947. {
  41948. name: "Snacks",
  41949. height: math.unit(70, "universes")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(1.6, "meters"),
  41958. weight: math.unit(60, "kg"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/bounty/front.svg",
  41962. extra: 1426/1308,
  41963. bottom: 15/1441
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(1.6, "meters"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Macro",
  41975. height: math.unit(300, "meters")
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41981. {
  41982. front: {
  41983. height: math.unit(2 + 8/12, "feet"),
  41984. weight: math.unit(15, "lb"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/mochi/front.svg",
  41988. extra: 1022/852,
  41989. bottom: 435/1457
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(2 + 8/12, "feet"),
  41994. weight: math.unit(15, "lb"),
  41995. name: "Back",
  41996. image: {
  41997. source: "./media/characters/mochi/back.svg",
  41998. extra: 1335/1119,
  41999. bottom: 39/1374
  42000. }
  42001. },
  42002. bird: {
  42003. height: math.unit(2 + 8/12, "feet"),
  42004. weight: math.unit(15, "lb"),
  42005. name: "Bird",
  42006. image: {
  42007. source: "./media/characters/mochi/bird.svg",
  42008. extra: 1251/1113,
  42009. bottom: 178/1429
  42010. }
  42011. },
  42012. kaiju: {
  42013. height: math.unit(154, "feet"),
  42014. weight: math.unit(1e7, "lb"),
  42015. name: "Kaiju",
  42016. image: {
  42017. source: "./media/characters/mochi/kaiju.svg",
  42018. extra: 460/324,
  42019. bottom: 40/500
  42020. }
  42021. },
  42022. head: {
  42023. height: math.unit(1.21, "feet"),
  42024. name: "Head",
  42025. image: {
  42026. source: "./media/characters/mochi/head.svg"
  42027. }
  42028. },
  42029. alternateTail: {
  42030. height: math.unit(2 + 8/12, "feet"),
  42031. weight: math.unit(45, "lb"),
  42032. name: "Alternate Tail",
  42033. image: {
  42034. source: "./media/characters/mochi/alternate-tail.svg",
  42035. extra: 139/76,
  42036. bottom: 45/184
  42037. }
  42038. },
  42039. },
  42040. [
  42041. {
  42042. name: "Micro",
  42043. height: math.unit(2, "inches")
  42044. },
  42045. {
  42046. name: "Normal",
  42047. height: math.unit(2 + 8/12, "feet"),
  42048. default: true
  42049. },
  42050. {
  42051. name: "Macro",
  42052. height: math.unit(106, "feet")
  42053. },
  42054. ]
  42055. ))
  42056. characterMakers.push(() => makeCharacter(
  42057. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42058. {
  42059. front: {
  42060. height: math.unit(5.67, "feet"),
  42061. weight: math.unit(135, "lb"),
  42062. name: "Front",
  42063. image: {
  42064. source: "./media/characters/sarel/front.svg",
  42065. extra: 865/788,
  42066. bottom: 97/962
  42067. }
  42068. },
  42069. back: {
  42070. height: math.unit(5.67, "feet"),
  42071. weight: math.unit(135, "lb"),
  42072. name: "Back",
  42073. image: {
  42074. source: "./media/characters/sarel/back.svg",
  42075. extra: 857/777,
  42076. bottom: 32/889
  42077. }
  42078. },
  42079. chozoan: {
  42080. height: math.unit(5.67, "feet"),
  42081. weight: math.unit(135, "lb"),
  42082. name: "Chozoan",
  42083. image: {
  42084. source: "./media/characters/sarel/chozoan.svg",
  42085. extra: 865/788,
  42086. bottom: 97/962
  42087. }
  42088. },
  42089. current: {
  42090. height: math.unit(5.67, "feet"),
  42091. weight: math.unit(135, "lb"),
  42092. name: "Current",
  42093. image: {
  42094. source: "./media/characters/sarel/current.svg",
  42095. extra: 865/788,
  42096. bottom: 97/962
  42097. }
  42098. },
  42099. head: {
  42100. height: math.unit(1.77, "feet"),
  42101. name: "Head",
  42102. image: {
  42103. source: "./media/characters/sarel/head.svg"
  42104. }
  42105. },
  42106. claws: {
  42107. height: math.unit(1.8, "feet"),
  42108. name: "Claws",
  42109. image: {
  42110. source: "./media/characters/sarel/claws.svg"
  42111. }
  42112. },
  42113. clawsAlt: {
  42114. height: math.unit(1.8, "feet"),
  42115. name: "Claws-alt",
  42116. image: {
  42117. source: "./media/characters/sarel/claws-alt.svg"
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(5.67, "feet"),
  42125. default: true
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42131. {
  42132. front: {
  42133. height: math.unit(5500, "feet"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/alyonia/front.svg",
  42137. extra: 1200/1135,
  42138. bottom: 29/1229
  42139. }
  42140. },
  42141. back: {
  42142. height: math.unit(5500, "feet"),
  42143. name: "Back",
  42144. image: {
  42145. source: "./media/characters/alyonia/back.svg",
  42146. extra: 1205/1138,
  42147. bottom: 10/1215
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Small",
  42154. height: math.unit(10, "feet")
  42155. },
  42156. {
  42157. name: "Macro",
  42158. height: math.unit(500, "feet")
  42159. },
  42160. {
  42161. name: "Mega Macro",
  42162. height: math.unit(5500, "feet"),
  42163. default: true
  42164. },
  42165. {
  42166. name: "Mega Macro+",
  42167. height: math.unit(500000, "feet")
  42168. },
  42169. {
  42170. name: "Giga Macro",
  42171. height: math.unit(3000, "miles")
  42172. },
  42173. {
  42174. name: "Tera Macro",
  42175. height: math.unit(2.8e6, "miles")
  42176. },
  42177. {
  42178. name: "Galactic",
  42179. height: math.unit(120000, "lightyears")
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42185. {
  42186. werewolf: {
  42187. height: math.unit(8, "feet"),
  42188. weight: math.unit(425, "lb"),
  42189. name: "Werewolf",
  42190. image: {
  42191. source: "./media/characters/autumn/werewolf.svg",
  42192. extra: 2154/2031,
  42193. bottom: 160/2314
  42194. }
  42195. },
  42196. human: {
  42197. height: math.unit(5 + 8/12, "feet"),
  42198. weight: math.unit(150, "lb"),
  42199. name: "Human",
  42200. image: {
  42201. source: "./media/characters/autumn/human.svg",
  42202. extra: 1200/1149,
  42203. bottom: 30/1230
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Normal",
  42210. height: math.unit(8, "feet"),
  42211. default: true
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(8 + 5/12, "feet"),
  42220. weight: math.unit(825, "lb"),
  42221. name: "Front",
  42222. image: {
  42223. source: "./media/characters/cobalt-charizard/front.svg",
  42224. extra: 1268/1155,
  42225. bottom: 122/1390
  42226. }
  42227. },
  42228. side: {
  42229. height: math.unit(8 + 5/12, "feet"),
  42230. weight: math.unit(825, "lb"),
  42231. name: "Side",
  42232. image: {
  42233. source: "./media/characters/cobalt-charizard/side.svg",
  42234. extra: 1348/1257,
  42235. bottom: 58/1406
  42236. }
  42237. },
  42238. gMax: {
  42239. height: math.unit(134 + 11/12, "feet"),
  42240. name: "G-Max",
  42241. image: {
  42242. source: "./media/characters/cobalt-charizard/g-max.svg",
  42243. extra: 1835/1541,
  42244. bottom: 151/1986
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(8 + 5/12, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(6 + 3/12, "feet"),
  42261. weight: math.unit(210, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/stella/front.svg",
  42265. extra: 3549/3335,
  42266. bottom: 51/3600
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(6 + 3/12, "feet"),
  42274. default: true
  42275. },
  42276. ]
  42277. ))
  42278. characterMakers.push(() => makeCharacter(
  42279. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42280. {
  42281. front: {
  42282. height: math.unit(5, "feet"),
  42283. weight: math.unit(90, "lb"),
  42284. name: "Front",
  42285. image: {
  42286. source: "./media/characters/riley-bishop/front.svg",
  42287. extra: 1450/1428,
  42288. bottom: 152/1602
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(5, "feet"),
  42296. default: true
  42297. },
  42298. ]
  42299. ))
  42300. characterMakers.push(() => makeCharacter(
  42301. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42302. {
  42303. side: {
  42304. height: math.unit(8 + 2/12, "feet"),
  42305. weight: math.unit(500, "kg"),
  42306. name: "Side",
  42307. image: {
  42308. source: "./media/characters/theo-arcanine/side.svg",
  42309. extra: 1342/1074,
  42310. bottom: 111/1453
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(8 + 2/12, "feet"),
  42318. default: true
  42319. },
  42320. ]
  42321. ))
  42322. characterMakers.push(() => makeCharacter(
  42323. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42324. {
  42325. front: {
  42326. height: math.unit(4, "feet"),
  42327. name: "Front",
  42328. image: {
  42329. source: "./media/characters/kali/front.svg",
  42330. extra: 1921/1357,
  42331. bottom: 70/1991
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Normal",
  42338. height: math.unit(4, "feet"),
  42339. default: true
  42340. },
  42341. {
  42342. name: "Macro",
  42343. height: math.unit(32, "meters")
  42344. },
  42345. {
  42346. name: "Macro+",
  42347. height: math.unit(150, "meters")
  42348. },
  42349. {
  42350. name: "Megamacro",
  42351. height: math.unit(7500, "meters")
  42352. },
  42353. {
  42354. name: "Megamacro+",
  42355. height: math.unit(80, "kilometers")
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42361. {
  42362. side: {
  42363. height: math.unit(5 + 11/12, "feet"),
  42364. weight: math.unit(236, "lb"),
  42365. name: "Side",
  42366. image: {
  42367. source: "./media/characters/gapp/side.svg",
  42368. extra: 775/340,
  42369. bottom: 58/833
  42370. }
  42371. },
  42372. mouth: {
  42373. height: math.unit(2.98, "feet"),
  42374. name: "Mouth",
  42375. image: {
  42376. source: "./media/characters/gapp/mouth.svg"
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(5 + 1/12, "feet"),
  42384. default: true
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42390. {
  42391. front: {
  42392. height: math.unit(6, "feet"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/persephone/front.svg",
  42396. extra: 1895/1717,
  42397. bottom: 96/1991
  42398. }
  42399. },
  42400. back: {
  42401. height: math.unit(6, "feet"),
  42402. name: "Back",
  42403. image: {
  42404. source: "./media/characters/persephone/back.svg",
  42405. extra: 1868/1679,
  42406. bottom: 26/1894
  42407. }
  42408. },
  42409. casual: {
  42410. height: math.unit(6, "feet"),
  42411. name: "Casual",
  42412. image: {
  42413. source: "./media/characters/persephone/casual.svg",
  42414. extra: 1713/1541,
  42415. bottom: 76/1789
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Human Size",
  42422. height: math.unit(6, "feet"),
  42423. default: true
  42424. },
  42425. {
  42426. name: "Galaxy Brain",
  42427. height: math.unit(1, "zettameter")
  42428. },
  42429. ]
  42430. ))
  42431. characterMakers.push(() => makeCharacter(
  42432. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42433. {
  42434. front: {
  42435. height: math.unit(1.85, "meters"),
  42436. name: "Front",
  42437. image: {
  42438. source: "./media/characters/riley-foxthing/front.svg",
  42439. extra: 1495/1354,
  42440. bottom: 122/1617
  42441. }
  42442. },
  42443. frontAlt: {
  42444. height: math.unit(1.85, "meters"),
  42445. name: "Front (Alt)",
  42446. image: {
  42447. source: "./media/characters/riley-foxthing/front-alt.svg",
  42448. extra: 1572/1389,
  42449. bottom: 116/1688
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Normal Sized",
  42456. height: math.unit(1.85, "meters"),
  42457. default: true
  42458. },
  42459. {
  42460. name: "Quite Sizable",
  42461. height: math.unit(5, "meters")
  42462. },
  42463. {
  42464. name: "Rather Large",
  42465. height: math.unit(20, "meters")
  42466. },
  42467. {
  42468. name: "Macro",
  42469. height: math.unit(450, "meters")
  42470. },
  42471. {
  42472. name: "Giga",
  42473. height: math.unit(5, "km")
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(6, "feet"),
  42482. weight: math.unit(200, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/blizzard/front.svg",
  42486. extra: 1136/990,
  42487. bottom: 136/1272
  42488. }
  42489. },
  42490. back: {
  42491. height: math.unit(6, "feet"),
  42492. weight: math.unit(200, "lb"),
  42493. name: "Back",
  42494. image: {
  42495. source: "./media/characters/blizzard/back.svg",
  42496. extra: 1175/1034,
  42497. bottom: 97/1272
  42498. }
  42499. },
  42500. sitting: {
  42501. height: math.unit(3.725, "feet"),
  42502. weight: math.unit(200, "lb"),
  42503. name: "Sitting",
  42504. image: {
  42505. source: "./media/characters/blizzard/sitting.svg",
  42506. extra: 581/485,
  42507. bottom: 90/671
  42508. }
  42509. },
  42510. frontWizard: {
  42511. height: math.unit(7.9, "feet"),
  42512. weight: math.unit(200, "lb"),
  42513. name: "Front (Wizard)",
  42514. image: {
  42515. source: "./media/characters/blizzard/front-wizard.svg"
  42516. }
  42517. },
  42518. backWizard: {
  42519. height: math.unit(7.9, "feet"),
  42520. weight: math.unit(200, "lb"),
  42521. name: "Back (Wizard)",
  42522. image: {
  42523. source: "./media/characters/blizzard/back-wizard.svg"
  42524. }
  42525. },
  42526. frontNsfw: {
  42527. height: math.unit(6, "feet"),
  42528. weight: math.unit(200, "lb"),
  42529. name: "Front (NSFW)",
  42530. image: {
  42531. source: "./media/characters/blizzard/front-nsfw.svg",
  42532. extra: 1136/990,
  42533. bottom: 136/1272
  42534. }
  42535. },
  42536. backNsfw: {
  42537. height: math.unit(6, "feet"),
  42538. weight: math.unit(200, "lb"),
  42539. name: "Back (NSFW)",
  42540. image: {
  42541. source: "./media/characters/blizzard/back-nsfw.svg",
  42542. extra: 1175/1034,
  42543. bottom: 97/1272
  42544. }
  42545. },
  42546. sittingNsfw: {
  42547. height: math.unit(3.725, "feet"),
  42548. weight: math.unit(200, "lb"),
  42549. name: "Sitting (NSFW)",
  42550. image: {
  42551. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42552. extra: 581/485,
  42553. bottom: 90/671
  42554. }
  42555. },
  42556. wizardFrontNsfw: {
  42557. height: math.unit(7.9, "feet"),
  42558. weight: math.unit(200, "lb"),
  42559. name: "Wizard (Front, NSFW)",
  42560. image: {
  42561. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Normal",
  42568. height: math.unit(6, "feet"),
  42569. default: true
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(5 + 2/12, "feet"),
  42578. name: "Front",
  42579. image: {
  42580. source: "./media/characters/lumi/front.svg",
  42581. extra: 1328/1268,
  42582. bottom: 103/1431
  42583. }
  42584. },
  42585. back: {
  42586. height: math.unit(5 + 2/12, "feet"),
  42587. name: "Back",
  42588. image: {
  42589. source: "./media/characters/lumi/back.svg",
  42590. extra: 1381/1327,
  42591. bottom: 43/1424
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(5 + 2/12, "feet"),
  42599. default: true
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(5 + 9/12, "feet"),
  42608. name: "Front",
  42609. image: {
  42610. source: "./media/characters/aliya-cotton/front.svg",
  42611. extra: 577/564,
  42612. bottom: 29/606
  42613. }
  42614. },
  42615. },
  42616. [
  42617. {
  42618. name: "Normal",
  42619. height: math.unit(5 + 9/12, "feet"),
  42620. default: true
  42621. },
  42622. ]
  42623. ))
  42624. characterMakers.push(() => makeCharacter(
  42625. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42626. {
  42627. front: {
  42628. height: math.unit(2.7, "meters"),
  42629. weight: math.unit(25000, "lb"),
  42630. name: "Front",
  42631. image: {
  42632. source: "./media/characters/noah-luxray/front.svg",
  42633. extra: 1644/825,
  42634. bottom: 339/1983
  42635. }
  42636. },
  42637. side: {
  42638. height: math.unit(2.97, "meters"),
  42639. weight: math.unit(25000, "lb"),
  42640. name: "Side",
  42641. image: {
  42642. source: "./media/characters/noah-luxray/side.svg",
  42643. extra: 1319/650,
  42644. bottom: 163/1482
  42645. }
  42646. },
  42647. dick: {
  42648. height: math.unit(7.4, "feet"),
  42649. weight: math.unit(2500, "lb"),
  42650. name: "Dick",
  42651. image: {
  42652. source: "./media/characters/noah-luxray/dick.svg"
  42653. }
  42654. },
  42655. dickAlt: {
  42656. height: math.unit(10.83, "feet"),
  42657. weight: math.unit(2500, "lb"),
  42658. name: "Dick-alt",
  42659. image: {
  42660. source: "./media/characters/noah-luxray/dick-alt.svg"
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "BIG",
  42667. height: math.unit(2.7, "meters"),
  42668. default: true
  42669. },
  42670. ]
  42671. ))
  42672. characterMakers.push(() => makeCharacter(
  42673. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42674. {
  42675. standing: {
  42676. height: math.unit(183, "cm"),
  42677. weight: math.unit(68, "kg"),
  42678. name: "Standing",
  42679. image: {
  42680. source: "./media/characters/arion/standing.svg",
  42681. extra: 1869/1807,
  42682. bottom: 93/1962
  42683. }
  42684. },
  42685. reclining: {
  42686. height: math.unit(70.5, "cm"),
  42687. weight: math.unit(68, "lb"),
  42688. name: "Reclining",
  42689. image: {
  42690. source: "./media/characters/arion/reclining.svg",
  42691. extra: 937/870,
  42692. bottom: 63/1000
  42693. }
  42694. },
  42695. },
  42696. [
  42697. {
  42698. name: "Colossus Size, Low",
  42699. height: math.unit(33, "meters"),
  42700. default: true
  42701. },
  42702. {
  42703. name: "Colossus Size, Mid",
  42704. height: math.unit(52, "meters")
  42705. },
  42706. {
  42707. name: "Colossus Size, High",
  42708. height: math.unit(60, "meters")
  42709. },
  42710. {
  42711. name: "Titan Size, Low",
  42712. height: math.unit(91, "meters"),
  42713. },
  42714. {
  42715. name: "Titan Size, Mid",
  42716. height: math.unit(122, "meters")
  42717. },
  42718. {
  42719. name: "Titan Size, High",
  42720. height: math.unit(162, "meters")
  42721. },
  42722. ]
  42723. ))
  42724. characterMakers.push(() => makeCharacter(
  42725. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42726. {
  42727. front: {
  42728. height: math.unit(53, "meters"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/stellar-marbey/front.svg",
  42732. extra: 1913/1805,
  42733. bottom: 92/2005
  42734. }
  42735. },
  42736. back: {
  42737. height: math.unit(53, "meters"),
  42738. name: "Back",
  42739. image: {
  42740. source: "./media/characters/stellar-marbey/back.svg",
  42741. extra: 1960/1851,
  42742. bottom: 28/1988
  42743. }
  42744. },
  42745. mouth: {
  42746. height: math.unit(3.5, "meters"),
  42747. name: "Mouth",
  42748. image: {
  42749. source: "./media/characters/stellar-marbey/mouth.svg"
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Macro",
  42756. height: math.unit(53, "meters"),
  42757. default: true
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42763. {
  42764. front: {
  42765. height: math.unit(8 + 1/12, "feet"),
  42766. weight: math.unit(233, "lb"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/matsu/front.svg",
  42770. extra: 832/772,
  42771. bottom: 40/872
  42772. }
  42773. },
  42774. back: {
  42775. height: math.unit(8 + 1/12, "feet"),
  42776. weight: math.unit(233, "lb"),
  42777. name: "Back",
  42778. image: {
  42779. source: "./media/characters/matsu/back.svg",
  42780. extra: 839/780,
  42781. bottom: 47/886
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(8 + 1/12, "feet"),
  42789. default: true
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(4, "feet"),
  42798. weight: math.unit(148, "lb"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/thiz/front.svg",
  42802. extra: 1913/1748,
  42803. bottom: 62/1975
  42804. }
  42805. },
  42806. },
  42807. [
  42808. {
  42809. name: "Normal",
  42810. height: math.unit(4, "feet"),
  42811. default: true
  42812. },
  42813. ]
  42814. ))
  42815. characterMakers.push(() => makeCharacter(
  42816. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42817. {
  42818. front: {
  42819. height: math.unit(7 + 6/12, "feet"),
  42820. weight: math.unit(267, "lb"),
  42821. name: "Front",
  42822. image: {
  42823. source: "./media/characters/marcel/front.svg",
  42824. extra: 1221/1096,
  42825. bottom: 76/1297
  42826. }
  42827. },
  42828. },
  42829. [
  42830. {
  42831. name: "Normal",
  42832. height: math.unit(7 + 6/12, "feet"),
  42833. default: true
  42834. },
  42835. ]
  42836. ))
  42837. //characters
  42838. function makeCharacters() {
  42839. const results = [];
  42840. characterMakers.forEach(character => {
  42841. results.push(character());
  42842. });
  42843. return results;
  42844. }