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.
 
 
 

42940 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. }
  1747. //species
  1748. function getSpeciesInfo(speciesList) {
  1749. let result = new Set();
  1750. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1751. result.add(entry)
  1752. });
  1753. return Array.from(result);
  1754. };
  1755. function getSpeciesInfoHelper(species) {
  1756. if (!speciesData[species]) {
  1757. console.warn(species + " doesn't exist");
  1758. return [];
  1759. }
  1760. if (speciesData[species].parents) {
  1761. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1762. } else {
  1763. return [species];
  1764. }
  1765. }
  1766. characterMakers.push(() => makeCharacter(
  1767. {
  1768. name: "Fen",
  1769. species: ["crux"],
  1770. description: {
  1771. title: "Bio",
  1772. text: "Very furry. Sheds on everything."
  1773. },
  1774. tags: [
  1775. "anthro",
  1776. "goo"
  1777. ]
  1778. },
  1779. {
  1780. back: {
  1781. height: math.unit(2.2428, "meter"),
  1782. weight: math.unit(124.738, "kg"),
  1783. name: "Back",
  1784. image: {
  1785. source: "./media/characters/fen/back.svg",
  1786. },
  1787. info: {
  1788. description: {
  1789. mode: "append",
  1790. text: "\n\nHe is not currently looking at you."
  1791. }
  1792. }
  1793. },
  1794. full: {
  1795. height: math.unit(1.34, "meter"),
  1796. weight: math.unit(225, "kg"),
  1797. name: "Full",
  1798. image: {
  1799. source: "./media/characters/fen/full.svg"
  1800. },
  1801. info: {
  1802. description: {
  1803. mode: "append",
  1804. text: "\n\nMunch."
  1805. }
  1806. }
  1807. },
  1808. kneeling: {
  1809. height: math.unit(5.4, "feet"),
  1810. weight: math.unit(124.738, "kg"),
  1811. name: "Kneeling",
  1812. image: {
  1813. source: "./media/characters/fen/kneeling.svg",
  1814. extra: 563 / 507
  1815. }
  1816. },
  1817. goo: {
  1818. height: math.unit(2.8, "feet"),
  1819. weight: math.unit(125, "kg"),
  1820. capacity: math.unit(1, "people"),
  1821. name: "Goo",
  1822. image: {
  1823. source: "./media/characters/fen/goo.svg",
  1824. bottom: 116 / 613
  1825. }
  1826. },
  1827. lounging: {
  1828. height: math.unit(6.5, "feet"),
  1829. weight: math.unit(125, "kg"),
  1830. name: "Lounging",
  1831. image: {
  1832. source: "./media/characters/fen/lounging.svg"
  1833. }
  1834. },
  1835. },
  1836. [
  1837. {
  1838. name: "Normal",
  1839. height: math.unit(2.2428, "meter")
  1840. },
  1841. {
  1842. name: "Big",
  1843. height: math.unit(12, "feet")
  1844. },
  1845. {
  1846. name: "Minimacro",
  1847. height: math.unit(40, "feet"),
  1848. default: true,
  1849. info: {
  1850. description: {
  1851. mode: "append",
  1852. text: "\n\nTOO DAMN BIG"
  1853. }
  1854. }
  1855. },
  1856. {
  1857. name: "Macro",
  1858. height: math.unit(100, "feet"),
  1859. info: {
  1860. description: {
  1861. mode: "append",
  1862. text: "\n\nTOO DAMN BIG"
  1863. }
  1864. }
  1865. },
  1866. {
  1867. name: "Macro+",
  1868. height: math.unit(300, "feet")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(2, "miles")
  1873. }
  1874. ]
  1875. ))
  1876. characterMakers.push(() => makeCharacter(
  1877. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1878. {
  1879. front: {
  1880. height: math.unit(183, "cm"),
  1881. weight: math.unit(80, "kg"),
  1882. name: "Front",
  1883. image: {
  1884. source: "./media/characters/sofia-fluttertail/front.svg",
  1885. bottom: 0.01,
  1886. extra: 2154 / 2081
  1887. }
  1888. },
  1889. frontAlt: {
  1890. height: math.unit(183, "cm"),
  1891. weight: math.unit(80, "kg"),
  1892. name: "Front (alt)",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1895. }
  1896. },
  1897. back: {
  1898. height: math.unit(183, "cm"),
  1899. weight: math.unit(80, "kg"),
  1900. name: "Back",
  1901. image: {
  1902. source: "./media/characters/sofia-fluttertail/back.svg"
  1903. }
  1904. },
  1905. kneeling: {
  1906. height: math.unit(125, "cm"),
  1907. weight: math.unit(80, "kg"),
  1908. name: "Kneeling",
  1909. image: {
  1910. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1911. extra: 1033 / 977,
  1912. bottom: 23.7 / 1057
  1913. }
  1914. },
  1915. maw: {
  1916. height: math.unit(183 / 5, "cm"),
  1917. name: "Maw",
  1918. image: {
  1919. source: "./media/characters/sofia-fluttertail/maw.svg"
  1920. }
  1921. },
  1922. mawcloseup: {
  1923. height: math.unit(183 / 5 * 0.41, "cm"),
  1924. name: "Maw (Closeup)",
  1925. image: {
  1926. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1927. }
  1928. },
  1929. paws: {
  1930. height: math.unit(1.17, "feet"),
  1931. name: "Paws",
  1932. image: {
  1933. source: "./media/characters/sofia-fluttertail/paws.svg",
  1934. extra: 851 / 851,
  1935. bottom: 17 / 868
  1936. }
  1937. },
  1938. },
  1939. [
  1940. {
  1941. name: "Normal",
  1942. height: math.unit(1.83, "meter")
  1943. },
  1944. {
  1945. name: "Size Thief",
  1946. height: math.unit(18, "feet")
  1947. },
  1948. {
  1949. name: "50 Foot Collie",
  1950. height: math.unit(50, "feet")
  1951. },
  1952. {
  1953. name: "Macro",
  1954. height: math.unit(96, "feet"),
  1955. default: true
  1956. },
  1957. {
  1958. name: "Megamerger",
  1959. height: math.unit(650, "feet")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(7, "feet"),
  1968. weight: math.unit(100, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/march/front.svg",
  1972. extra: 1992/1851,
  1973. bottom: 39/2031
  1974. }
  1975. },
  1976. foot: {
  1977. height: math.unit(0.9, "feet"),
  1978. name: "Foot",
  1979. image: {
  1980. source: "./media/characters/march/foot.svg"
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Normal",
  1987. height: math.unit(7.9, "feet")
  1988. },
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(220, "meters")
  1992. },
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(2.98, "km"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Gigamacro",
  2000. height: math.unit(15963, "km")
  2001. },
  2002. {
  2003. name: "Teramacro",
  2004. height: math.unit(2980000000, "km")
  2005. },
  2006. {
  2007. name: "Examacro",
  2008. height: math.unit(250, "parsecs")
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(6, "feet"),
  2017. weight: math.unit(60, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/noir/front.svg",
  2021. extra: 1,
  2022. bottom: 0.032
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(6.6, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(500, "feet")
  2034. },
  2035. {
  2036. name: "Megamacro",
  2037. height: math.unit(2.5, "km"),
  2038. default: true
  2039. },
  2040. {
  2041. name: "Gigamacro",
  2042. height: math.unit(22500, "km")
  2043. },
  2044. {
  2045. name: "Teramacro",
  2046. height: math.unit(2500000000, "km")
  2047. },
  2048. {
  2049. name: "Examacro",
  2050. height: math.unit(200, "parsecs")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/okuri/front.svg",
  2063. extra: 1,
  2064. bottom: 0.037
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(100, "kg"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/okuri/back.svg",
  2073. extra: 1,
  2074. bottom: 0.007
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(100, "miles"),
  2082. default: true
  2083. },
  2084. ]
  2085. ))
  2086. characterMakers.push(() => makeCharacter(
  2087. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  2095. extra: 1,
  2096. bottom: 0.06
  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/manny/back.svg",
  2105. extra: 1,
  2106. bottom: 0.014
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Normal",
  2113. height: math.unit(7, "feet"),
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(78, "feet"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "Macro+",
  2122. height: math.unit(300, "meters")
  2123. },
  2124. {
  2125. name: "Macro++",
  2126. height: math.unit(2400, "meters")
  2127. },
  2128. {
  2129. name: "Megamacro",
  2130. height: math.unit(5167, "meters")
  2131. },
  2132. {
  2133. name: "Gigamacro",
  2134. height: math.unit(41769, "miles")
  2135. },
  2136. ]
  2137. ))
  2138. characterMakers.push(() => makeCharacter(
  2139. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2140. {
  2141. front: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(100, "kg"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/adake/front-1.svg"
  2147. }
  2148. },
  2149. frontAlt: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Front (Alt)",
  2153. image: {
  2154. source: "./media/characters/adake/front-2.svg",
  2155. extra: 1,
  2156. bottom: 0.01
  2157. }
  2158. },
  2159. back: {
  2160. height: math.unit(7, "feet"),
  2161. weight: math.unit(100, "kg"),
  2162. name: "Back",
  2163. image: {
  2164. source: "./media/characters/adake/back.svg",
  2165. }
  2166. },
  2167. kneel: {
  2168. height: math.unit(5.385, "feet"),
  2169. weight: math.unit(100, "kg"),
  2170. name: "Kneeling",
  2171. image: {
  2172. source: "./media/characters/adake/kneel.svg",
  2173. bottom: 0.052
  2174. }
  2175. },
  2176. },
  2177. [
  2178. {
  2179. name: "Normal",
  2180. height: math.unit(7, "feet"),
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(78, "feet"),
  2185. default: true
  2186. },
  2187. {
  2188. name: "Macro+",
  2189. height: math.unit(300, "meters")
  2190. },
  2191. {
  2192. name: "Macro++",
  2193. height: math.unit(2400, "meters")
  2194. },
  2195. {
  2196. name: "Megamacro",
  2197. height: math.unit(5167, "meters")
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(41769, "miles")
  2202. },
  2203. ]
  2204. ))
  2205. characterMakers.push(() => makeCharacter(
  2206. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2207. {
  2208. front: {
  2209. height: math.unit(1.65, "meters"),
  2210. weight: math.unit(50, "kg"),
  2211. name: "Front",
  2212. image: {
  2213. source: "./media/characters/elijah/front.svg",
  2214. extra: 858 / 830,
  2215. bottom: 95.5 / 953.8559
  2216. }
  2217. },
  2218. back: {
  2219. height: math.unit(1.65, "meters"),
  2220. weight: math.unit(50, "kg"),
  2221. name: "Back",
  2222. image: {
  2223. source: "./media/characters/elijah/back.svg",
  2224. extra: 895 / 850,
  2225. bottom: 5.3 / 897.956
  2226. }
  2227. },
  2228. frontNsfw: {
  2229. height: math.unit(1.65, "meters"),
  2230. weight: math.unit(50, "kg"),
  2231. name: "Front (NSFW)",
  2232. image: {
  2233. source: "./media/characters/elijah/front-nsfw.svg",
  2234. extra: 858 / 830,
  2235. bottom: 95.5 / 953.8559
  2236. }
  2237. },
  2238. backNsfw: {
  2239. height: math.unit(1.65, "meters"),
  2240. weight: math.unit(50, "kg"),
  2241. name: "Back (NSFW)",
  2242. image: {
  2243. source: "./media/characters/elijah/back-nsfw.svg",
  2244. extra: 895 / 850,
  2245. bottom: 5.3 / 897.956
  2246. }
  2247. },
  2248. dick: {
  2249. height: math.unit(1, "feet"),
  2250. name: "Dick",
  2251. image: {
  2252. source: "./media/characters/elijah/dick.svg"
  2253. }
  2254. },
  2255. beakOpen: {
  2256. height: math.unit(1.25, "feet"),
  2257. name: "Beak (Open)",
  2258. image: {
  2259. source: "./media/characters/elijah/beak-open.svg"
  2260. }
  2261. },
  2262. beakShut: {
  2263. height: math.unit(1.25, "feet"),
  2264. name: "Beak (Shut)",
  2265. image: {
  2266. source: "./media/characters/elijah/beak-shut.svg"
  2267. }
  2268. },
  2269. footFlexing: {
  2270. height: math.unit(1.61, "feet"),
  2271. name: "Foot (Flexing)",
  2272. image: {
  2273. source: "./media/characters/elijah/foot-flexing.svg"
  2274. }
  2275. },
  2276. footStepping: {
  2277. height: math.unit(1.44, "feet"),
  2278. name: "Foot (Stepping)",
  2279. image: {
  2280. source: "./media/characters/elijah/foot-stepping.svg"
  2281. }
  2282. },
  2283. plantigradeLeg: {
  2284. height: math.unit(2.34, "feet"),
  2285. name: "Plantigrade Leg",
  2286. image: {
  2287. source: "./media/characters/elijah/plantigrade-leg.svg"
  2288. }
  2289. },
  2290. plantigradeFootLeft: {
  2291. height: math.unit(0.9, "feet"),
  2292. name: "Plantigrade Foot (Left)",
  2293. image: {
  2294. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2295. }
  2296. },
  2297. plantigradeFootRight: {
  2298. height: math.unit(0.9, "feet"),
  2299. name: "Plantigrade Foot (Right)",
  2300. image: {
  2301. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2302. }
  2303. },
  2304. },
  2305. [
  2306. {
  2307. name: "Normal",
  2308. height: math.unit(1.65, "meters")
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(55, "meters"),
  2313. default: true
  2314. },
  2315. {
  2316. name: "Macro+",
  2317. height: math.unit(105, "meters")
  2318. },
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(11, "feet"),
  2326. weight: math.unit(320, "kg"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/rai/front.svg",
  2330. extra: 1802/1696,
  2331. bottom: 68/1870
  2332. }
  2333. },
  2334. frontDressed: {
  2335. height: math.unit(11, "feet"),
  2336. weight: math.unit(320, "kg"),
  2337. name: "Front (Dressed)",
  2338. image: {
  2339. source: "./media/characters/rai/front-dressed.svg",
  2340. extra: 1802/1696,
  2341. bottom: 68/1870
  2342. }
  2343. },
  2344. side: {
  2345. height: math.unit(11, "feet"),
  2346. weight: math.unit(320, "kg"),
  2347. name: "Side",
  2348. image: {
  2349. source: "./media/characters/rai/side.svg",
  2350. extra: 1789/1710,
  2351. bottom: 115/1904
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(11, "feet"),
  2356. weight: math.unit(320, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/rai/back.svg",
  2360. extra: 1770/1707,
  2361. bottom: 28/1798
  2362. }
  2363. },
  2364. feral: {
  2365. height: math.unit(11, "feet"),
  2366. weight: math.unit(640, "kg"),
  2367. name: "Feral",
  2368. image: {
  2369. source: "./media/characters/rai/feral.svg",
  2370. extra: 1035/642,
  2371. bottom: 86/1121
  2372. }
  2373. },
  2374. dragon: {
  2375. height: math.unit(23, "feet"),
  2376. weight: math.unit(50000, "lb"),
  2377. name: "Dragon",
  2378. image: {
  2379. source: "./media/characters/rai/dragon.svg",
  2380. extra: 2498 / 2030,
  2381. bottom: 85.2 / 2584
  2382. }
  2383. },
  2384. maw: {
  2385. height: math.unit(6 / 3.81416, "feet"),
  2386. name: "Maw",
  2387. image: {
  2388. source: "./media/characters/rai/maw.svg"
  2389. }
  2390. },
  2391. },
  2392. [
  2393. {
  2394. name: "Normal",
  2395. height: math.unit(11, "feet")
  2396. },
  2397. {
  2398. name: "Macro",
  2399. height: math.unit(302, "feet"),
  2400. default: true
  2401. },
  2402. ]
  2403. ))
  2404. characterMakers.push(() => makeCharacter(
  2405. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2406. {
  2407. frontDressed: {
  2408. height: math.unit(216, "feet"),
  2409. weight: math.unit(7000000, "lb"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/jazzy/front-dressed.svg",
  2413. extra: 2738 / 2651,
  2414. bottom: 41.8 / 2786
  2415. }
  2416. },
  2417. backDressed: {
  2418. height: math.unit(216, "feet"),
  2419. weight: math.unit(7000000, "lb"),
  2420. name: "Back (Dressed)",
  2421. image: {
  2422. source: "./media/characters/jazzy/back-dressed.svg",
  2423. extra: 2775 / 2673,
  2424. bottom: 36.8 / 2817
  2425. }
  2426. },
  2427. front: {
  2428. height: math.unit(216, "feet"),
  2429. weight: math.unit(7000000, "lb"),
  2430. name: "Front",
  2431. image: {
  2432. source: "./media/characters/jazzy/front.svg",
  2433. extra: 2738 / 2651,
  2434. bottom: 41.8 / 2786
  2435. }
  2436. },
  2437. back: {
  2438. height: math.unit(216, "feet"),
  2439. weight: math.unit(7000000, "lb"),
  2440. name: "Back",
  2441. image: {
  2442. source: "./media/characters/jazzy/back.svg",
  2443. extra: 2775 / 2673,
  2444. bottom: 36.8 / 2817
  2445. }
  2446. },
  2447. maw: {
  2448. height: math.unit(20, "feet"),
  2449. name: "Maw",
  2450. image: {
  2451. source: "./media/characters/jazzy/maw.svg"
  2452. }
  2453. },
  2454. paws: {
  2455. height: math.unit(27.5, "feet"),
  2456. name: "Paws",
  2457. image: {
  2458. source: "./media/characters/jazzy/paws.svg"
  2459. }
  2460. },
  2461. eye: {
  2462. height: math.unit(4.4, "feet"),
  2463. name: "Eye",
  2464. image: {
  2465. source: "./media/characters/jazzy/eye.svg"
  2466. }
  2467. },
  2468. droneOffense: {
  2469. height: math.unit(9.5, "inches"),
  2470. name: "Drone (Offense)",
  2471. image: {
  2472. source: "./media/characters/jazzy/drone-offense.svg"
  2473. }
  2474. },
  2475. droneRecon: {
  2476. height: math.unit(9.5, "inches"),
  2477. name: "Drone (Recon)",
  2478. image: {
  2479. source: "./media/characters/jazzy/drone-recon.svg"
  2480. }
  2481. },
  2482. droneDefense: {
  2483. height: math.unit(9.5, "inches"),
  2484. name: "Drone (Defense)",
  2485. image: {
  2486. source: "./media/characters/jazzy/drone-defense.svg"
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(216, "feet"),
  2494. default: true
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2500. {
  2501. front: {
  2502. height: math.unit(9 + 6/12, "feet"),
  2503. weight: math.unit(700, "lb"),
  2504. name: "Front",
  2505. image: {
  2506. source: "./media/characters/flamm/front.svg",
  2507. extra: 1751/1632,
  2508. bottom: 46/1797
  2509. }
  2510. },
  2511. buff: {
  2512. height: math.unit(9 + 6/12, "feet"),
  2513. weight: math.unit(950, "lb"),
  2514. name: "Buff",
  2515. image: {
  2516. source: "./media/characters/flamm/buff.svg",
  2517. extra: 3018/2874,
  2518. bottom: 221/3239
  2519. }
  2520. },
  2521. },
  2522. [
  2523. {
  2524. name: "Normal",
  2525. height: math.unit(9.5, "feet")
  2526. },
  2527. {
  2528. name: "Macro",
  2529. height: math.unit(200, "feet"),
  2530. default: true
  2531. },
  2532. ]
  2533. ))
  2534. characterMakers.push(() => makeCharacter(
  2535. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2536. {
  2537. front: {
  2538. height: math.unit(5 + 3/12, "feet"),
  2539. weight: math.unit(60, "kg"),
  2540. name: "Front",
  2541. image: {
  2542. source: "./media/characters/zephiro/front.svg",
  2543. extra: 2309 / 2162,
  2544. bottom: 0.069
  2545. }
  2546. },
  2547. side: {
  2548. height: math.unit(5 + 3/12, "feet"),
  2549. weight: math.unit(60, "kg"),
  2550. name: "Side",
  2551. image: {
  2552. source: "./media/characters/zephiro/side.svg",
  2553. extra: 2403 / 2279,
  2554. bottom: 0.015
  2555. }
  2556. },
  2557. back: {
  2558. height: math.unit(5 + 3/12, "feet"),
  2559. weight: math.unit(60, "kg"),
  2560. name: "Back",
  2561. image: {
  2562. source: "./media/characters/zephiro/back.svg",
  2563. extra: 2373 / 2244,
  2564. bottom: 0.013
  2565. }
  2566. },
  2567. hand: {
  2568. height: math.unit(0.68, "feet"),
  2569. name: "Hand",
  2570. image: {
  2571. source: "./media/characters/zephiro/hand.svg"
  2572. }
  2573. },
  2574. paw: {
  2575. height: math.unit(1, "feet"),
  2576. name: "Paw",
  2577. image: {
  2578. source: "./media/characters/zephiro/paw.svg"
  2579. }
  2580. },
  2581. beans: {
  2582. height: math.unit(0.93, "feet"),
  2583. name: "Beans",
  2584. image: {
  2585. source: "./media/characters/zephiro/beans.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Micro",
  2592. height: math.unit(3, "inches")
  2593. },
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(5 + 3 / 12, "feet"),
  2597. default: true
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(118, "feet")
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2607. {
  2608. front: {
  2609. height: math.unit(5, "feet"),
  2610. weight: math.unit(90, "kg"),
  2611. name: "Front",
  2612. image: {
  2613. source: "./media/characters/fory/front.svg",
  2614. extra: 2862 / 2674,
  2615. bottom: 180 / 3043.8
  2616. }
  2617. },
  2618. back: {
  2619. height: math.unit(5, "feet"),
  2620. weight: math.unit(90, "kg"),
  2621. name: "Back",
  2622. image: {
  2623. source: "./media/characters/fory/back.svg",
  2624. extra: 2962 / 2791,
  2625. bottom: 106 / 3071.8
  2626. }
  2627. },
  2628. foot: {
  2629. height: math.unit(2.14, "feet"),
  2630. name: "Foot",
  2631. image: {
  2632. source: "./media/characters/fory/foot.svg"
  2633. }
  2634. },
  2635. },
  2636. [
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(5, "feet")
  2640. },
  2641. {
  2642. name: "Macro",
  2643. height: math.unit(50, "feet"),
  2644. default: true
  2645. },
  2646. {
  2647. name: "Megamacro",
  2648. height: math.unit(10, "miles")
  2649. },
  2650. {
  2651. name: "Gigamacro",
  2652. height: math.unit(5, "earths")
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2658. {
  2659. front: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(90, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/kurrikage/front.svg",
  2665. extra: 1,
  2666. bottom: 0.035
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(7, "feet"),
  2671. weight: math.unit(90, "lb"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/kurrikage/back.svg"
  2675. }
  2676. },
  2677. paw: {
  2678. height: math.unit(1.5, "feet"),
  2679. name: "Paw",
  2680. image: {
  2681. source: "./media/characters/kurrikage/paw.svg"
  2682. }
  2683. },
  2684. staff: {
  2685. height: math.unit(6.7, "feet"),
  2686. name: "Staff",
  2687. image: {
  2688. source: "./media/characters/kurrikage/staff.svg"
  2689. }
  2690. },
  2691. peek: {
  2692. height: math.unit(1.05, "feet"),
  2693. name: "Peeking",
  2694. image: {
  2695. source: "./media/characters/kurrikage/peek.svg",
  2696. bottom: 0.08
  2697. }
  2698. },
  2699. },
  2700. [
  2701. {
  2702. name: "Normal",
  2703. height: math.unit(12, "feet"),
  2704. default: true
  2705. },
  2706. {
  2707. name: "Big",
  2708. height: math.unit(20, "feet")
  2709. },
  2710. {
  2711. name: "Macro",
  2712. height: math.unit(500, "feet")
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(20, "miles")
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2722. {
  2723. front: {
  2724. height: math.unit(6, "feet"),
  2725. weight: math.unit(75, "kg"),
  2726. name: "Front",
  2727. image: {
  2728. source: "./media/characters/shingo/front.svg",
  2729. extra: 1900/1825,
  2730. bottom: 82/1982
  2731. }
  2732. },
  2733. side: {
  2734. height: math.unit(6, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Side",
  2737. image: {
  2738. source: "./media/characters/shingo/side.svg",
  2739. extra: 1930/1865,
  2740. bottom: 16/1946
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/shingo/back.svg",
  2749. extra: 1922/1852,
  2750. bottom: 16/1938
  2751. }
  2752. },
  2753. frontDressed: {
  2754. height: math.unit(6, "feet"),
  2755. weight: math.unit(150, "lb"),
  2756. name: "Front-dressed",
  2757. image: {
  2758. source: "./media/characters/shingo/front-dressed.svg",
  2759. extra: 1900/1825,
  2760. bottom: 82/1982
  2761. }
  2762. },
  2763. paw: {
  2764. height: math.unit(1.29, "feet"),
  2765. name: "Paw",
  2766. image: {
  2767. source: "./media/characters/shingo/paw.svg"
  2768. }
  2769. },
  2770. hand: {
  2771. height: math.unit(1.07, "feet"),
  2772. name: "Hand",
  2773. image: {
  2774. source: "./media/characters/shingo/hand.svg"
  2775. }
  2776. },
  2777. frontAlt: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front (Alt)",
  2781. image: {
  2782. source: "./media/characters/shingo/front-alt.svg",
  2783. extra: 3511 / 3338,
  2784. bottom: 0.005
  2785. }
  2786. },
  2787. frontAlt2: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front (Alt 2)",
  2791. image: {
  2792. source: "./media/characters/shingo/front-alt-2.svg",
  2793. extra: 706/681,
  2794. bottom: 11/717
  2795. }
  2796. },
  2797. pawAlt: {
  2798. height: math.unit(1, "feet"),
  2799. name: "Paw (Alt)",
  2800. image: {
  2801. source: "./media/characters/shingo/paw-alt.svg"
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Micro",
  2808. height: math.unit(4, "inches")
  2809. },
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(6, "feet"),
  2813. default: true
  2814. },
  2815. {
  2816. name: "Macro",
  2817. height: math.unit(108, "feet")
  2818. },
  2819. {
  2820. name: "Macro+",
  2821. height: math.unit(1500, "feet")
  2822. },
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2827. {
  2828. side: {
  2829. height: math.unit(6, "feet"),
  2830. weight: math.unit(75, "kg"),
  2831. name: "Side",
  2832. image: {
  2833. source: "./media/characters/aigey/side.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Macro",
  2840. height: math.unit(200, "feet"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Megamacro",
  2845. height: math.unit(100, "miles")
  2846. },
  2847. ]
  2848. )
  2849. )
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(5 + 5 / 12, "feet"),
  2855. weight: math.unit(75, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/natasha/front.svg",
  2859. extra: 859 / 824,
  2860. bottom: 23 / 879.6
  2861. }
  2862. },
  2863. frontNsfw: {
  2864. height: math.unit(5 + 5 / 12, "feet"),
  2865. weight: math.unit(75, "kg"),
  2866. name: "Front (NSFW)",
  2867. image: {
  2868. source: "./media/characters/natasha/front-nsfw.svg",
  2869. extra: 859 / 824,
  2870. bottom: 23 / 879.6
  2871. }
  2872. },
  2873. frontErect: {
  2874. height: math.unit(5 + 5 / 12, "feet"),
  2875. weight: math.unit(75, "kg"),
  2876. name: "Front (Erect)",
  2877. image: {
  2878. source: "./media/characters/natasha/front-erect.svg",
  2879. extra: 859 / 824,
  2880. bottom: 23 / 879.6
  2881. }
  2882. },
  2883. back: {
  2884. height: math.unit(5 + 5 / 12, "feet"),
  2885. weight: math.unit(75, "kg"),
  2886. name: "Back",
  2887. image: {
  2888. source: "./media/characters/natasha/back.svg",
  2889. extra: 887.9 / 852.6,
  2890. bottom: 9.7 / 896.4
  2891. }
  2892. },
  2893. backAlt: {
  2894. height: math.unit(5 + 5 / 12, "feet"),
  2895. weight: math.unit(75, "kg"),
  2896. name: "Back (Alt)",
  2897. image: {
  2898. source: "./media/characters/natasha/back-alt.svg",
  2899. extra: 1236.7 / 1192,
  2900. bottom: 22.3 / 1258.2
  2901. }
  2902. },
  2903. dick: {
  2904. height: math.unit(1.772, "feet"),
  2905. name: "Dick",
  2906. image: {
  2907. source: "./media/characters/natasha/dick.svg"
  2908. }
  2909. },
  2910. paw: {
  2911. height: math.unit(0.250, "meters"),
  2912. name: "Paw",
  2913. image: {
  2914. source: "./media/characters/natasha/paw.svg"
  2915. }
  2916. },
  2917. },
  2918. [
  2919. {
  2920. name: "Normal",
  2921. height: math.unit(5 + 5 / 12, "feet")
  2922. },
  2923. {
  2924. name: "Large",
  2925. height: math.unit(12, "feet")
  2926. },
  2927. {
  2928. name: "Macro",
  2929. height: math.unit(100, "feet"),
  2930. default: true
  2931. },
  2932. {
  2933. name: "Macro+",
  2934. height: math.unit(260, "feet")
  2935. },
  2936. {
  2937. name: "Macro++",
  2938. height: math.unit(1, "mile")
  2939. },
  2940. ]
  2941. ))
  2942. characterMakers.push(() => makeCharacter(
  2943. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2944. {
  2945. front: {
  2946. height: math.unit(6, "feet"),
  2947. weight: math.unit(75, "kg"),
  2948. name: "Front",
  2949. image: {
  2950. source: "./media/characters/malik/front.svg"
  2951. }
  2952. },
  2953. side: {
  2954. height: math.unit(6, "feet"),
  2955. weight: math.unit(75, "kg"),
  2956. name: "Side",
  2957. image: {
  2958. source: "./media/characters/malik/side.svg",
  2959. extra: 1.1539
  2960. }
  2961. },
  2962. back: {
  2963. height: math.unit(6, "feet"),
  2964. weight: math.unit(75, "kg"),
  2965. name: "Back",
  2966. image: {
  2967. source: "./media/characters/malik/back.svg"
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(156, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro+",
  2979. height: math.unit(1188, "feet")
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/sefer/front.svg",
  2992. extra: 848 / 659,
  2993. bottom: 28.3 / 876.442
  2994. }
  2995. },
  2996. back: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Back",
  3000. image: {
  3001. source: "./media/characters/sefer/back.svg",
  3002. extra: 864 / 695,
  3003. bottom: 10 / 871
  3004. }
  3005. },
  3006. frontDressed: {
  3007. height: math.unit(6, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Front (Dressed)",
  3010. image: {
  3011. source: "./media/characters/sefer/front-dressed.svg",
  3012. extra: 839 / 653,
  3013. bottom: 37.6 / 878
  3014. }
  3015. },
  3016. },
  3017. [
  3018. {
  3019. name: "Normal",
  3020. height: math.unit(6, "feet"),
  3021. default: true
  3022. },
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3027. {
  3028. body: {
  3029. height: math.unit(2.2428, "meter"),
  3030. weight: math.unit(124.738, "kg"),
  3031. name: "Body",
  3032. image: {
  3033. extra: 1225 / 1050,
  3034. source: "./media/characters/north/front.svg"
  3035. }
  3036. }
  3037. },
  3038. [
  3039. {
  3040. name: "Micro",
  3041. height: math.unit(4, "inches")
  3042. },
  3043. {
  3044. name: "Macro",
  3045. height: math.unit(63, "meters")
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(101, "miles"),
  3050. default: true
  3051. }
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3056. {
  3057. angled: {
  3058. height: math.unit(4, "meter"),
  3059. weight: math.unit(150, "kg"),
  3060. name: "Angled",
  3061. image: {
  3062. source: "./media/characters/talan/angled-sfw.svg",
  3063. bottom: 29 / 3734
  3064. }
  3065. },
  3066. angledNsfw: {
  3067. height: math.unit(4, "meter"),
  3068. weight: math.unit(150, "kg"),
  3069. name: "Angled (NSFW)",
  3070. image: {
  3071. source: "./media/characters/talan/angled-nsfw.svg",
  3072. bottom: 29 / 3734
  3073. }
  3074. },
  3075. frontNsfw: {
  3076. height: math.unit(4, "meter"),
  3077. weight: math.unit(150, "kg"),
  3078. name: "Front (NSFW)",
  3079. image: {
  3080. source: "./media/characters/talan/front-nsfw.svg",
  3081. bottom: 29 / 3734
  3082. }
  3083. },
  3084. sideNsfw: {
  3085. height: math.unit(4, "meter"),
  3086. weight: math.unit(150, "kg"),
  3087. name: "Side (NSFW)",
  3088. image: {
  3089. source: "./media/characters/talan/side-nsfw.svg",
  3090. bottom: 29 / 3734
  3091. }
  3092. },
  3093. back: {
  3094. height: math.unit(4, "meter"),
  3095. weight: math.unit(150, "kg"),
  3096. name: "Back",
  3097. image: {
  3098. source: "./media/characters/talan/back.svg"
  3099. }
  3100. },
  3101. dickBottom: {
  3102. height: math.unit(0.621, "meter"),
  3103. name: "Dick (Bottom)",
  3104. image: {
  3105. source: "./media/characters/talan/dick-bottom.svg"
  3106. }
  3107. },
  3108. dickTop: {
  3109. height: math.unit(0.621, "meter"),
  3110. name: "Dick (Top)",
  3111. image: {
  3112. source: "./media/characters/talan/dick-top.svg"
  3113. }
  3114. },
  3115. dickSide: {
  3116. height: math.unit(0.305, "meter"),
  3117. name: "Dick (Side)",
  3118. image: {
  3119. source: "./media/characters/talan/dick-side.svg"
  3120. }
  3121. },
  3122. dickFront: {
  3123. height: math.unit(0.305, "meter"),
  3124. name: "Dick (Front)",
  3125. image: {
  3126. source: "./media/characters/talan/dick-front.svg"
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Normal",
  3133. height: math.unit(4, "meters")
  3134. },
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(100, "meters")
  3138. },
  3139. {
  3140. name: "Megamacro",
  3141. height: math.unit(2, "miles"),
  3142. default: true
  3143. },
  3144. {
  3145. name: "Gigamacro",
  3146. height: math.unit(5000, "miles")
  3147. },
  3148. {
  3149. name: "Teramacro",
  3150. height: math.unit(100, "parsecs")
  3151. }
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3156. {
  3157. front: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(90, "kg"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/gael'rathus/front.svg"
  3163. }
  3164. },
  3165. frontAlt: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(90, "kg"),
  3168. name: "Front (alt)",
  3169. image: {
  3170. source: "./media/characters/gael'rathus/front-alt.svg"
  3171. }
  3172. },
  3173. frontAlt2: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front (alt 2)",
  3177. image: {
  3178. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3179. }
  3180. }
  3181. },
  3182. [
  3183. {
  3184. name: "Normal",
  3185. height: math.unit(9, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Large",
  3190. height: math.unit(25, "feet")
  3191. },
  3192. {
  3193. name: "Macro",
  3194. height: math.unit(0.25, "miles")
  3195. },
  3196. {
  3197. name: "Megamacro",
  3198. height: math.unit(10, "miles")
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3204. {
  3205. side: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(140, "kg"),
  3208. name: "Side",
  3209. image: {
  3210. source: "./media/characters/sosha/side.svg",
  3211. bottom: 0.042
  3212. }
  3213. },
  3214. },
  3215. [
  3216. {
  3217. name: "Normal",
  3218. height: math.unit(12, "feet"),
  3219. default: true
  3220. }
  3221. ]
  3222. ))
  3223. characterMakers.push(() => makeCharacter(
  3224. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3225. {
  3226. side: {
  3227. height: math.unit(5 + 5 / 12, "feet"),
  3228. weight: math.unit(170, "kg"),
  3229. name: "Side",
  3230. image: {
  3231. source: "./media/characters/runnola/side.svg",
  3232. extra: 741 / 448,
  3233. bottom: 0.05
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Small",
  3240. height: math.unit(3, "feet")
  3241. },
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(5 + 5 / 12, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Big",
  3249. height: math.unit(10, "feet")
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(50, "kg"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/kurribird/front.svg",
  3262. bottom: 0.015
  3263. }
  3264. },
  3265. frontAlt: {
  3266. height: math.unit(1.5, "meter"),
  3267. weight: math.unit(50, "kg"),
  3268. name: "Front (Alt)",
  3269. image: {
  3270. source: "./media/characters/kurribird/front-alt.svg",
  3271. extra: 1.45
  3272. }
  3273. },
  3274. },
  3275. [
  3276. {
  3277. name: "Normal",
  3278. height: math.unit(7, "feet")
  3279. },
  3280. {
  3281. name: "Big",
  3282. height: math.unit(12, "feet"),
  3283. default: true
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(1500, "feet")
  3288. },
  3289. {
  3290. name: "Megamacro",
  3291. height: math.unit(2, "miles")
  3292. }
  3293. ]
  3294. ))
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3297. {
  3298. front: {
  3299. height: math.unit(2, "meter"),
  3300. weight: math.unit(80, "kg"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/elbial/front.svg",
  3304. extra: 1643 / 1556,
  3305. bottom: 60.2 / 1696
  3306. }
  3307. },
  3308. side: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(80, "kg"),
  3311. name: "Side",
  3312. image: {
  3313. source: "./media/characters/elbial/side.svg",
  3314. extra: 1630 / 1565,
  3315. bottom: 71.5 / 1697
  3316. }
  3317. },
  3318. back: {
  3319. height: math.unit(2, "meter"),
  3320. weight: math.unit(80, "kg"),
  3321. name: "Back",
  3322. image: {
  3323. source: "./media/characters/elbial/back.svg",
  3324. extra: 1668 / 1595,
  3325. bottom: 5.6 / 1672
  3326. }
  3327. },
  3328. frontDressed: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(80, "kg"),
  3331. name: "Front (Dressed)",
  3332. image: {
  3333. source: "./media/characters/elbial/front-dressed.svg",
  3334. extra: 1653 / 1584,
  3335. bottom: 57 / 1708
  3336. }
  3337. },
  3338. genitals: {
  3339. height: math.unit(2 / 3.367, "meter"),
  3340. name: "Genitals",
  3341. image: {
  3342. source: "./media/characters/elbial/genitals.svg"
  3343. }
  3344. },
  3345. },
  3346. [
  3347. {
  3348. name: "Large",
  3349. height: math.unit(100, "feet")
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(500, "feet"),
  3354. default: true
  3355. },
  3356. {
  3357. name: "Megamacro",
  3358. height: math.unit(10, "miles")
  3359. },
  3360. {
  3361. name: "Gigamacro",
  3362. height: math.unit(25000, "miles")
  3363. },
  3364. {
  3365. name: "Full-Size",
  3366. height: math.unit(8000000, "gigaparsecs")
  3367. }
  3368. ]
  3369. ))
  3370. characterMakers.push(() => makeCharacter(
  3371. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3372. {
  3373. front: {
  3374. height: math.unit(2, "meter"),
  3375. weight: math.unit(60, "kg"),
  3376. name: "Front",
  3377. image: {
  3378. source: "./media/characters/noah/front.svg"
  3379. }
  3380. },
  3381. talons: {
  3382. height: math.unit(0.315, "meter"),
  3383. name: "Talons",
  3384. image: {
  3385. source: "./media/characters/noah/talons.svg"
  3386. }
  3387. }
  3388. },
  3389. [
  3390. {
  3391. name: "Large",
  3392. height: math.unit(50, "feet")
  3393. },
  3394. {
  3395. name: "Macro",
  3396. height: math.unit(750, "feet"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Megamacro",
  3401. height: math.unit(50, "miles")
  3402. },
  3403. {
  3404. name: "Gigamacro",
  3405. height: math.unit(100000, "miles")
  3406. },
  3407. {
  3408. name: "Full-Size",
  3409. height: math.unit(3000000000, "miles")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(80, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/natalya/front.svg"
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(80, "kg"),
  3427. name: "Back",
  3428. image: {
  3429. source: "./media/characters/natalya/back.svg"
  3430. }
  3431. }
  3432. },
  3433. [
  3434. {
  3435. name: "Normal",
  3436. height: math.unit(150, "feet"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Megamacro",
  3441. height: math.unit(5, "miles")
  3442. },
  3443. {
  3444. name: "Full-Size",
  3445. height: math.unit(600, "kiloparsecs")
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3451. {
  3452. front: {
  3453. height: math.unit(2, "meter"),
  3454. weight: math.unit(50, "kg"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/erestrebah/front.svg",
  3458. extra: 208 / 193,
  3459. bottom: 0.055
  3460. }
  3461. },
  3462. back: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(50, "kg"),
  3465. name: "Back",
  3466. image: {
  3467. source: "./media/characters/erestrebah/back.svg",
  3468. extra: 1.3
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(10, "feet")
  3476. },
  3477. {
  3478. name: "Large",
  3479. height: math.unit(50, "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Macro",
  3484. height: math.unit(300, "feet")
  3485. },
  3486. {
  3487. name: "Macro+",
  3488. height: math.unit(750, "feet")
  3489. },
  3490. {
  3491. name: "Megamacro",
  3492. height: math.unit(3, "miles")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(80, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/jennifer/front.svg",
  3505. bottom: 0.11,
  3506. extra: 1.16
  3507. }
  3508. },
  3509. frontAlt: {
  3510. height: math.unit(2, "meter"),
  3511. weight: math.unit(80, "kg"),
  3512. name: "Front (Alt)",
  3513. image: {
  3514. source: "./media/characters/jennifer/front-alt.svg"
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Canon Height",
  3521. height: math.unit(120, "feet"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Macro+",
  3526. height: math.unit(300, "feet")
  3527. },
  3528. {
  3529. name: "Megamacro",
  3530. height: math.unit(20000, "feet")
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3536. {
  3537. front: {
  3538. height: math.unit(2, "meter"),
  3539. weight: math.unit(50, "kg"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/kalista/front.svg",
  3543. extra: 1947 / 1700,
  3544. bottom: 76.6 / 1412.98
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(2, "meter"),
  3549. weight: math.unit(50, "kg"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/kalista/back.svg",
  3553. extra: 1366 / 1156,
  3554. bottom: 33.9 / 1362.78
  3555. }
  3556. }
  3557. },
  3558. [
  3559. {
  3560. name: "Uncomfortably Small",
  3561. height: math.unit(10, "feet")
  3562. },
  3563. {
  3564. name: "Small",
  3565. height: math.unit(30, "feet")
  3566. },
  3567. {
  3568. name: "Macro",
  3569. height: math.unit(100, "feet"),
  3570. default: true
  3571. },
  3572. {
  3573. name: "Macro+",
  3574. height: math.unit(2000, "feet")
  3575. },
  3576. {
  3577. name: "True Form",
  3578. height: math.unit(8924, "miles")
  3579. }
  3580. ]
  3581. ))
  3582. characterMakers.push(() => makeCharacter(
  3583. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3584. {
  3585. front: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(120, "kg"),
  3588. name: "Front",
  3589. image: {
  3590. source: "./media/characters/ggv/front.svg"
  3591. }
  3592. },
  3593. side: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(120, "kg"),
  3596. name: "Side",
  3597. image: {
  3598. source: "./media/characters/ggv/side.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Extremely Puny",
  3605. height: math.unit(9 + 5 / 12, "feet")
  3606. },
  3607. {
  3608. name: "Horribly Small",
  3609. height: math.unit(47.7, "miles"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Reasonably Sized",
  3614. height: math.unit(25000, "parsecs")
  3615. },
  3616. {
  3617. name: "Slightly Uncompressed",
  3618. height: math.unit(7.77e31, "parsecs")
  3619. },
  3620. {
  3621. name: "Omniversal",
  3622. height: math.unit(1e300, "meters")
  3623. },
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(75, "lb"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/napalm/front.svg"
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(75, "lb"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/napalm/back.svg"
  3643. }
  3644. }
  3645. },
  3646. [
  3647. {
  3648. name: "Standard",
  3649. height: math.unit(55, "feet"),
  3650. default: true
  3651. }
  3652. ]
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(7 + 5 / 6, "feet"),
  3659. weight: math.unit(325, "lb"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/asana/front.svg",
  3663. extra: 1133 / 1060,
  3664. bottom: 15.2 / 1148.6
  3665. }
  3666. },
  3667. back: {
  3668. height: math.unit(7 + 5 / 6, "feet"),
  3669. weight: math.unit(325, "lb"),
  3670. name: "Back",
  3671. image: {
  3672. source: "./media/characters/asana/back.svg",
  3673. extra: 1114 / 1043,
  3674. bottom: 5 / 1120
  3675. }
  3676. },
  3677. dressedDark: {
  3678. height: math.unit(7 + 5 / 6, "feet"),
  3679. weight: math.unit(325, "lb"),
  3680. name: "Dressed (Dark)",
  3681. image: {
  3682. source: "./media/characters/asana/dressed-dark.svg",
  3683. extra: 1133 / 1060,
  3684. bottom: 15.2 / 1148.6
  3685. }
  3686. },
  3687. dressedLight: {
  3688. height: math.unit(7 + 5 / 6, "feet"),
  3689. weight: math.unit(325, "lb"),
  3690. name: "Dressed (Light)",
  3691. image: {
  3692. source: "./media/characters/asana/dressed-light.svg",
  3693. extra: 1133 / 1060,
  3694. bottom: 15.2 / 1148.6
  3695. }
  3696. },
  3697. },
  3698. [
  3699. {
  3700. name: "Standard",
  3701. height: math.unit(7 + 5 / 6, "feet"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Large",
  3706. height: math.unit(10, "meters")
  3707. },
  3708. {
  3709. name: "Macro",
  3710. height: math.unit(2500, "meters")
  3711. },
  3712. {
  3713. name: "Megamacro",
  3714. height: math.unit(5e6, "meters")
  3715. },
  3716. {
  3717. name: "Examacro",
  3718. height: math.unit(5e12, "lightyears")
  3719. },
  3720. {
  3721. name: "Max Size",
  3722. height: math.unit(1e31, "lightyears")
  3723. }
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(60, "kg"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/ebony/front.svg",
  3735. bottom: 0.03,
  3736. extra: 1045 / 810 + 0.03
  3737. }
  3738. },
  3739. side: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(60, "kg"),
  3742. name: "Side",
  3743. image: {
  3744. source: "./media/characters/ebony/side.svg",
  3745. bottom: 0.03,
  3746. extra: 1045 / 810 + 0.03
  3747. }
  3748. },
  3749. back: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(60, "kg"),
  3752. name: "Back",
  3753. image: {
  3754. source: "./media/characters/ebony/back.svg",
  3755. bottom: 0.01,
  3756. extra: 1045 / 810 + 0.01
  3757. }
  3758. },
  3759. },
  3760. [
  3761. // TODO check why I did this lol
  3762. {
  3763. name: "Standard",
  3764. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(200, "feet")
  3770. },
  3771. {
  3772. name: "Gigamacro",
  3773. height: math.unit(13000, "km")
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(175, "lb"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/mountain/front.svg",
  3786. extra: 972 / 955,
  3787. bottom: 64 / 1036.6
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(175, "lb"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/mountain/back.svg",
  3796. extra: 970 / 950,
  3797. bottom: 28.25 / 999
  3798. }
  3799. },
  3800. },
  3801. [
  3802. {
  3803. name: "Large",
  3804. height: math.unit(20, "meters")
  3805. },
  3806. {
  3807. name: "Macro",
  3808. height: math.unit(300, "meters")
  3809. },
  3810. {
  3811. name: "Gigamacro",
  3812. height: math.unit(10000, "km"),
  3813. default: true
  3814. },
  3815. {
  3816. name: "Examacro",
  3817. height: math.unit(10e9, "lightyears")
  3818. }
  3819. ]
  3820. ))
  3821. characterMakers.push(() => makeCharacter(
  3822. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3823. {
  3824. front: {
  3825. height: math.unit(8, "feet"),
  3826. weight: math.unit(500, "lb"),
  3827. name: "Front",
  3828. image: {
  3829. source: "./media/characters/rick/front.svg"
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(8, "feet"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Macro",
  3841. height: math.unit(5, "km")
  3842. }
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(8, "feet"),
  3850. weight: math.unit(120, "lb"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/ona/front.svg"
  3854. }
  3855. },
  3856. frontAlt: {
  3857. height: math.unit(8, "feet"),
  3858. weight: math.unit(120, "lb"),
  3859. name: "Front (Alt)",
  3860. image: {
  3861. source: "./media/characters/ona/front-alt.svg"
  3862. }
  3863. },
  3864. back: {
  3865. height: math.unit(8, "feet"),
  3866. weight: math.unit(120, "lb"),
  3867. name: "Back",
  3868. image: {
  3869. source: "./media/characters/ona/back.svg"
  3870. }
  3871. },
  3872. foot: {
  3873. height: math.unit(1.1, "feet"),
  3874. name: "Foot",
  3875. image: {
  3876. source: "./media/characters/ona/foot.svg"
  3877. }
  3878. }
  3879. },
  3880. [
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(70, "km"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Gigamacro",
  3888. height: math.unit(681818, "miles")
  3889. },
  3890. {
  3891. name: "Examacro",
  3892. height: math.unit(3800000, "lightyears")
  3893. },
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(12, "feet"),
  3901. weight: math.unit(3000, "lb"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/mech/front.svg",
  3905. extra: 2900 / 2770,
  3906. bottom: 110 / 3010
  3907. }
  3908. },
  3909. back: {
  3910. height: math.unit(12, "feet"),
  3911. weight: math.unit(3000, "lb"),
  3912. name: "Back",
  3913. image: {
  3914. source: "./media/characters/mech/back.svg",
  3915. extra: 3011 / 2890,
  3916. bottom: 94 / 3105
  3917. }
  3918. },
  3919. maw: {
  3920. height: math.unit(3.07, "feet"),
  3921. name: "Maw",
  3922. image: {
  3923. source: "./media/characters/mech/maw.svg"
  3924. }
  3925. },
  3926. head: {
  3927. height: math.unit(2.82, "feet"),
  3928. name: "Head",
  3929. image: {
  3930. source: "./media/characters/mech/head.svg"
  3931. }
  3932. },
  3933. dick: {
  3934. height: math.unit(1.43, "feet"),
  3935. name: "Dick",
  3936. image: {
  3937. source: "./media/characters/mech/dick.svg"
  3938. }
  3939. },
  3940. },
  3941. [
  3942. {
  3943. name: "Normal",
  3944. height: math.unit(12, "feet")
  3945. },
  3946. {
  3947. name: "Macro",
  3948. height: math.unit(300, "feet"),
  3949. default: true
  3950. },
  3951. {
  3952. name: "Macro+",
  3953. height: math.unit(1500, "feet")
  3954. },
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(1.3, "meter"),
  3962. weight: math.unit(30, "kg"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/gregory/front.svg",
  3966. }
  3967. }
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(1.3, "meter"),
  3973. default: true
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(20, "meter")
  3978. }
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(2.8, "meter"),
  3986. weight: math.unit(200, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/elory/front.svg",
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Normal",
  3996. height: math.unit(2.8, "meter"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Macro",
  4001. height: math.unit(38, "meter")
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(470, "feet"),
  4010. weight: math.unit(924, "tons"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/angelpatamon/front.svg",
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(470, "feet"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Deity Size I",
  4025. height: math.unit(28651.2, "km")
  4026. },
  4027. {
  4028. name: "Deity Size II",
  4029. height: math.unit(171907.2, "km")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4035. {
  4036. side: {
  4037. height: math.unit(7.2, "meter"),
  4038. weight: math.unit(8.2, "tons"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/cryae/side.svg",
  4042. extra: 3500 / 1500
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(7.2, "meter"),
  4050. default: true
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(175, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/xera/front.svg",
  4063. extra: 2377 / 1972,
  4064. bottom: 75.5 / 2452
  4065. }
  4066. },
  4067. side: {
  4068. height: math.unit(6, "feet"),
  4069. weight: math.unit(175, "lb"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/xera/side.svg",
  4073. extra: 2345 / 2019,
  4074. bottom: 39.7 / 2384
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(175, "lb"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/xera/back.svg",
  4083. extra: 2095 / 1984,
  4084. bottom: 67 / 2166
  4085. }
  4086. },
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(10, "feet")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Macro+",
  4100. height: math.unit(10, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(25000, "km")
  4105. },
  4106. {
  4107. name: "Teramacro",
  4108. height: math.unit(3e6, "km")
  4109. }
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(175, "lb"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/nebula/front.svg",
  4121. extra: 2566 / 2362,
  4122. bottom: 81 / 2644
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Small",
  4129. height: math.unit(4.5, "meters")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(1500, "meters"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(150, "km")
  4139. },
  4140. {
  4141. name: "Gigamacro",
  4142. height: math.unit(27000, "km")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4148. {
  4149. front: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(225, "lb"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/abysgar/front.svg"
  4155. }
  4156. }
  4157. },
  4158. [
  4159. {
  4160. name: "Small",
  4161. height: math.unit(4.5, "meters")
  4162. },
  4163. {
  4164. name: "Macro",
  4165. height: math.unit(1250, "meters"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Megamacro",
  4170. height: math.unit(125, "km")
  4171. },
  4172. {
  4173. name: "Gigamacro",
  4174. height: math.unit(26000, "km")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(180, "lb"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/yakuz/front.svg"
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Small",
  4193. height: math.unit(5, "meters")
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(1500, "meters"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Megamacro",
  4202. height: math.unit(200, "km")
  4203. },
  4204. {
  4205. name: "Gigamacro",
  4206. height: math.unit(100000, "km")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(6, "feet"),
  4215. weight: math.unit(175, "lb"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/mirova/front.svg",
  4219. extra: 3334 / 3071,
  4220. bottom: 42 / 3375.6
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Small",
  4227. height: math.unit(5, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(900, "meters"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Megamacro",
  4236. height: math.unit(135, "km")
  4237. },
  4238. {
  4239. name: "Gigamacro",
  4240. height: math.unit(20000, "km")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4246. {
  4247. side: {
  4248. height: math.unit(28.35, "feet"),
  4249. weight: math.unit(99.75, "tons"),
  4250. name: "Side",
  4251. image: {
  4252. source: "./media/characters/asana-mech/side.svg",
  4253. extra: 923 / 699,
  4254. bottom: 50 / 975
  4255. }
  4256. },
  4257. chaingun: {
  4258. height: math.unit(7, "feet"),
  4259. weight: math.unit(2400, "lb"),
  4260. name: "Chaingun",
  4261. image: {
  4262. source: "./media/characters/asana-mech/chaingun.svg"
  4263. }
  4264. },
  4265. laser: {
  4266. height: math.unit(7.12, "feet"),
  4267. weight: math.unit(2000, "lb"),
  4268. name: "Laser",
  4269. image: {
  4270. source: "./media/characters/asana-mech/laser.svg"
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(28.35, "feet"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Macro",
  4282. height: math.unit(2500, "feet")
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(25, "miles")
  4287. },
  4288. {
  4289. name: "Examacro",
  4290. height: math.unit(6e8, "lightyears")
  4291. },
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(5, "meters"),
  4299. weight: math.unit(1000, "kg"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/asche/front.svg",
  4303. extra: 1258 / 1190,
  4304. bottom: 47 / 1305
  4305. }
  4306. },
  4307. frontUnderwear: {
  4308. height: math.unit(5, "meters"),
  4309. weight: math.unit(1000, "kg"),
  4310. name: "Front (Underwear)",
  4311. image: {
  4312. source: "./media/characters/asche/front-underwear.svg",
  4313. extra: 1258 / 1190,
  4314. bottom: 47 / 1305
  4315. }
  4316. },
  4317. frontDressed: {
  4318. height: math.unit(5, "meters"),
  4319. weight: math.unit(1000, "kg"),
  4320. name: "Front (Dressed)",
  4321. image: {
  4322. source: "./media/characters/asche/front-dressed.svg",
  4323. extra: 1258 / 1190,
  4324. bottom: 47 / 1305
  4325. }
  4326. },
  4327. frontArmor: {
  4328. height: math.unit(5, "meters"),
  4329. weight: math.unit(1000, "kg"),
  4330. name: "Front (Armored)",
  4331. image: {
  4332. source: "./media/characters/asche/front-armored.svg",
  4333. extra: 1374 / 1308,
  4334. bottom: 23 / 1397
  4335. }
  4336. },
  4337. mp724: {
  4338. height: math.unit(0.96, "meters"),
  4339. weight: math.unit(38, "kg"),
  4340. name: "H&K MP724",
  4341. image: {
  4342. source: "./media/characters/asche/h&k-mp724.svg"
  4343. }
  4344. },
  4345. side: {
  4346. height: math.unit(5, "meters"),
  4347. weight: math.unit(1000, "kg"),
  4348. name: "Side",
  4349. image: {
  4350. source: "./media/characters/asche/side.svg",
  4351. extra: 1717 / 1609,
  4352. bottom: 0.005
  4353. }
  4354. },
  4355. back: {
  4356. height: math.unit(5, "meters"),
  4357. weight: math.unit(1000, "kg"),
  4358. name: "Back",
  4359. image: {
  4360. source: "./media/characters/asche/back.svg",
  4361. extra: 1570 / 1501
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "DEFCON 5",
  4368. height: math.unit(5, "meters")
  4369. },
  4370. {
  4371. name: "DEFCON 4",
  4372. height: math.unit(500, "meters"),
  4373. default: true
  4374. },
  4375. {
  4376. name: "DEFCON 3",
  4377. height: math.unit(5, "km")
  4378. },
  4379. {
  4380. name: "DEFCON 2",
  4381. height: math.unit(500, "km")
  4382. },
  4383. {
  4384. name: "DEFCON 1",
  4385. height: math.unit(500000, "km")
  4386. },
  4387. {
  4388. name: "DEFCON 0",
  4389. height: math.unit(3, "gigaparsecs")
  4390. },
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(2, "meters"),
  4398. weight: math.unit(76, "kg"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/gale/front.svg"
  4402. }
  4403. },
  4404. frontAlt1: {
  4405. height: math.unit(2, "meters"),
  4406. weight: math.unit(76, "kg"),
  4407. name: "Front (Alt 1)",
  4408. image: {
  4409. source: "./media/characters/gale/front-alt-1.svg"
  4410. }
  4411. },
  4412. frontAlt2: {
  4413. height: math.unit(2, "meters"),
  4414. weight: math.unit(76, "kg"),
  4415. name: "Front (Alt 2)",
  4416. image: {
  4417. source: "./media/characters/gale/front-alt-2.svg"
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(7, "feet")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(150, "feet"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Macro+",
  4433. height: math.unit(300, "feet")
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4439. {
  4440. front: {
  4441. height: math.unit(2, "meters"),
  4442. weight: math.unit(76, "kg"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/draylen/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(150, "feet"),
  4453. default: true
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4459. {
  4460. front: {
  4461. height: math.unit(7 + 9 / 12, "feet"),
  4462. weight: math.unit(379, "lbs"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/chez/front.svg"
  4466. }
  4467. },
  4468. side: {
  4469. height: math.unit(7 + 9 / 12, "feet"),
  4470. weight: math.unit(379, "lbs"),
  4471. name: "Side",
  4472. image: {
  4473. source: "./media/characters/chez/side.svg"
  4474. }
  4475. }
  4476. },
  4477. [
  4478. {
  4479. name: "Normal",
  4480. height: math.unit(7 + 9 / 12, "feet"),
  4481. default: true
  4482. },
  4483. {
  4484. name: "God King",
  4485. height: math.unit(9750000, "meters")
  4486. }
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4491. {
  4492. front: {
  4493. height: math.unit(6, "feet"),
  4494. weight: math.unit(275, "lbs"),
  4495. name: "Front",
  4496. image: {
  4497. source: "./media/characters/kaylum/front.svg",
  4498. bottom: 0.01,
  4499. extra: 1166 / 1031
  4500. }
  4501. },
  4502. frontWingless: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(275, "lbs"),
  4505. name: "Front (Wingless)",
  4506. image: {
  4507. source: "./media/characters/kaylum/front-wingless.svg",
  4508. bottom: 0.01,
  4509. extra: 1117 / 1031
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Normal",
  4516. height: math.unit(3.05, "meters")
  4517. },
  4518. {
  4519. name: "Master",
  4520. height: math.unit(5.5, "meters")
  4521. },
  4522. {
  4523. name: "Rampage",
  4524. height: math.unit(19, "meters")
  4525. },
  4526. {
  4527. name: "Macro Lite",
  4528. height: math.unit(37, "meters")
  4529. },
  4530. {
  4531. name: "Hyper Predator",
  4532. height: math.unit(61, "meters")
  4533. },
  4534. {
  4535. name: "Macro",
  4536. height: math.unit(138, "meters"),
  4537. default: true
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(150, "lbs"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/geta/front.svg"
  4550. }
  4551. }
  4552. },
  4553. [
  4554. {
  4555. name: "Micro",
  4556. height: math.unit(3, "inches"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(5 + 5 / 12, "feet")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(300, "lbs"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/tyrnn/front.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Main Height",
  4580. height: math.unit(355, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Fave. Height",
  4585. height: math.unit(2400, "feet")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(300, "lbs"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/appledectomy/front.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Macro",
  4604. height: math.unit(2500, "feet")
  4605. },
  4606. {
  4607. name: "Megamacro",
  4608. height: math.unit(50, "miles"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Gigamacro",
  4613. height: math.unit(5000, "miles")
  4614. },
  4615. {
  4616. name: "Teramacro",
  4617. height: math.unit(250000, "miles")
  4618. },
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(200, "lbs"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/vulpes/front.svg",
  4630. extra: 573 / 543,
  4631. bottom: 0.033
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(200, "lbs"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/vulpes/side.svg",
  4640. extra: 577 / 549,
  4641. bottom: 11 / 588
  4642. }
  4643. },
  4644. back: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(200, "lbs"),
  4647. name: "Back",
  4648. image: {
  4649. source: "./media/characters/vulpes/back.svg",
  4650. extra: 573 / 549,
  4651. bottom: 20 / 593
  4652. }
  4653. },
  4654. feet: {
  4655. height: math.unit(1.276, "feet"),
  4656. name: "Feet",
  4657. image: {
  4658. source: "./media/characters/vulpes/feet.svg"
  4659. }
  4660. },
  4661. maw: {
  4662. height: math.unit(1.18, "feet"),
  4663. name: "Maw",
  4664. image: {
  4665. source: "./media/characters/vulpes/maw.svg"
  4666. }
  4667. },
  4668. },
  4669. [
  4670. {
  4671. name: "Micro",
  4672. height: math.unit(2, "inches")
  4673. },
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(6.3, "feet")
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(850, "feet")
  4681. },
  4682. {
  4683. name: "Megamacro",
  4684. height: math.unit(7500, "feet"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Gigamacro",
  4689. height: math.unit(570000, "miles")
  4690. }
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4695. {
  4696. front: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(210, "lbs"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/rain-fallen/front.svg"
  4702. }
  4703. },
  4704. side: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(210, "lbs"),
  4707. name: "Side",
  4708. image: {
  4709. source: "./media/characters/rain-fallen/side.svg"
  4710. }
  4711. },
  4712. back: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(210, "lbs"),
  4715. name: "Back",
  4716. image: {
  4717. source: "./media/characters/rain-fallen/back.svg"
  4718. }
  4719. },
  4720. feral: {
  4721. height: math.unit(9, "feet"),
  4722. weight: math.unit(700, "lbs"),
  4723. name: "Feral",
  4724. image: {
  4725. source: "./media/characters/rain-fallen/feral.svg"
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Meddling with Mortals",
  4732. height: math.unit(8 + 8/12, "feet")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(5, "meter")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(150, "meter"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(278e6, "meter")
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(2e9, "meter")
  4750. },
  4751. {
  4752. name: "Teramacro",
  4753. height: math.unit(8e12, "meter")
  4754. },
  4755. {
  4756. name: "Devourer",
  4757. height: math.unit(14, "zettameters")
  4758. },
  4759. {
  4760. name: "Scarlet King",
  4761. height: math.unit(18, "yottameters")
  4762. },
  4763. {
  4764. name: "Void",
  4765. height: math.unit(1e88, "yottameters")
  4766. }
  4767. ]
  4768. ))
  4769. characterMakers.push(() => makeCharacter(
  4770. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4771. {
  4772. standing: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(180, "lbs"),
  4775. name: "Standing",
  4776. image: {
  4777. source: "./media/characters/zaakira/standing.svg",
  4778. extra: 1599/1504,
  4779. bottom: 39/1638
  4780. }
  4781. },
  4782. laying: {
  4783. height: math.unit(3, "feet"),
  4784. weight: math.unit(180, "lbs"),
  4785. name: "Laying",
  4786. image: {
  4787. source: "./media/characters/zaakira/laying.svg"
  4788. }
  4789. },
  4790. },
  4791. [
  4792. {
  4793. name: "Normal",
  4794. height: math.unit(12, "feet")
  4795. },
  4796. {
  4797. name: "Macro",
  4798. height: math.unit(279, "feet"),
  4799. default: true
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4805. {
  4806. femSfw: {
  4807. height: math.unit(8, "feet"),
  4808. weight: math.unit(350, "lb"),
  4809. name: "Fem",
  4810. image: {
  4811. source: "./media/characters/sigvald/fem-sfw.svg",
  4812. extra: 182 / 164,
  4813. bottom: 8.7 / 190.5
  4814. }
  4815. },
  4816. femNsfw: {
  4817. height: math.unit(8, "feet"),
  4818. weight: math.unit(350, "lb"),
  4819. name: "Fem (NSFW)",
  4820. image: {
  4821. source: "./media/characters/sigvald/fem-nsfw.svg",
  4822. extra: 182 / 164,
  4823. bottom: 8.7 / 190.5
  4824. }
  4825. },
  4826. maleNsfw: {
  4827. height: math.unit(8, "feet"),
  4828. weight: math.unit(350, "lb"),
  4829. name: "Male (NSFW)",
  4830. image: {
  4831. source: "./media/characters/sigvald/male-nsfw.svg",
  4832. extra: 182 / 164,
  4833. bottom: 8.7 / 190.5
  4834. }
  4835. },
  4836. hermNsfw: {
  4837. height: math.unit(8, "feet"),
  4838. weight: math.unit(350, "lb"),
  4839. name: "Herm (NSFW)",
  4840. image: {
  4841. source: "./media/characters/sigvald/herm-nsfw.svg",
  4842. extra: 182 / 164,
  4843. bottom: 8.7 / 190.5
  4844. }
  4845. },
  4846. dick: {
  4847. height: math.unit(2.36, "feet"),
  4848. name: "Dick",
  4849. image: {
  4850. source: "./media/characters/sigvald/dick.svg"
  4851. }
  4852. },
  4853. eye: {
  4854. height: math.unit(0.31, "feet"),
  4855. name: "Eye",
  4856. image: {
  4857. source: "./media/characters/sigvald/eye.svg"
  4858. }
  4859. },
  4860. mouth: {
  4861. height: math.unit(0.92, "feet"),
  4862. name: "Mouth",
  4863. image: {
  4864. source: "./media/characters/sigvald/mouth.svg"
  4865. }
  4866. },
  4867. paws: {
  4868. height: math.unit(2.2, "feet"),
  4869. name: "Paws",
  4870. image: {
  4871. source: "./media/characters/sigvald/paws.svg"
  4872. }
  4873. }
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(8, "feet")
  4879. },
  4880. {
  4881. name: "Large",
  4882. height: math.unit(12, "feet")
  4883. },
  4884. {
  4885. name: "Larger",
  4886. height: math.unit(20, "feet")
  4887. },
  4888. {
  4889. name: "Macro",
  4890. height: math.unit(150, "feet")
  4891. },
  4892. {
  4893. name: "Macro+",
  4894. height: math.unit(200, "feet"),
  4895. default: true
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4901. {
  4902. side: {
  4903. height: math.unit(12, "feet"),
  4904. weight: math.unit(2000, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/scott/side.svg",
  4908. extra: 754 / 724,
  4909. bottom: 0.069
  4910. }
  4911. },
  4912. upright: {
  4913. height: math.unit(12, "feet"),
  4914. weight: math.unit(2000, "kg"),
  4915. name: "Upright",
  4916. image: {
  4917. source: "./media/characters/scott/upright.svg",
  4918. extra: 3881 / 3722,
  4919. bottom: 0.05
  4920. }
  4921. },
  4922. },
  4923. [
  4924. {
  4925. name: "Normal",
  4926. height: math.unit(12, "feet"),
  4927. default: true
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4933. {
  4934. side: {
  4935. height: math.unit(8, "meters"),
  4936. weight: math.unit(84755, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/tobias/side.svg",
  4940. extra: 1474 / 1096,
  4941. bottom: 38.9 / 1513.1235
  4942. }
  4943. },
  4944. },
  4945. [
  4946. {
  4947. name: "Normal",
  4948. height: math.unit(8, "meters"),
  4949. default: true
  4950. },
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4955. {
  4956. front: {
  4957. height: math.unit(5.5, "feet"),
  4958. weight: math.unit(400, "lbs"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/kieran/front.svg",
  4962. extra: 2694 / 2364,
  4963. bottom: 217 / 2908
  4964. }
  4965. },
  4966. side: {
  4967. height: math.unit(5.5, "feet"),
  4968. weight: math.unit(400, "lbs"),
  4969. name: "Side",
  4970. image: {
  4971. source: "./media/characters/kieran/side.svg",
  4972. extra: 875 / 777,
  4973. bottom: 84.6 / 959
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(5.5, "feet"),
  4981. default: true
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4987. {
  4988. side: {
  4989. height: math.unit(2, "meters"),
  4990. weight: math.unit(70, "kg"),
  4991. name: "Side",
  4992. image: {
  4993. source: "./media/characters/sanya/side.svg",
  4994. bottom: 0.02,
  4995. extra: 1.02
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Small",
  5002. height: math.unit(2, "meters")
  5003. },
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(3, "meters")
  5007. },
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(16, "meters"),
  5011. default: true
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(120, "kg"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/miranda/front.svg",
  5024. extra: 195 / 185,
  5025. bottom: 10.9 / 206.5
  5026. }
  5027. },
  5028. back: {
  5029. height: math.unit(2, "meters"),
  5030. weight: math.unit(120, "kg"),
  5031. name: "Back",
  5032. image: {
  5033. source: "./media/characters/miranda/back.svg",
  5034. extra: 201 / 193,
  5035. bottom: 2.3 / 203.7
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(10, "feet"),
  5043. default: true
  5044. }
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "James", species: ["deer"], tags: ["anthro"] },
  5049. {
  5050. side: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(100, "kg"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/james/front.svg",
  5056. extra: 10 / 8.5
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(8.5, "feet"),
  5064. default: true
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5070. {
  5071. side: {
  5072. height: math.unit(9.5, "feet"),
  5073. weight: math.unit(2500, "lbs"),
  5074. name: "Side",
  5075. image: {
  5076. source: "./media/characters/heather/side.svg"
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(9.5, "feet"),
  5084. default: true
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5090. {
  5091. side: {
  5092. height: math.unit(6.5, "feet"),
  5093. weight: math.unit(400, "lbs"),
  5094. name: "Side",
  5095. image: {
  5096. source: "./media/characters/lukas/side.svg",
  5097. extra: 7.25 / 6.5
  5098. }
  5099. },
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(6.5, "feet"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5111. {
  5112. side: {
  5113. height: math.unit(5, "feet"),
  5114. weight: math.unit(3000, "lbs"),
  5115. name: "Side",
  5116. image: {
  5117. source: "./media/characters/louise/side.svg"
  5118. }
  5119. },
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(5, "feet"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5131. {
  5132. side: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(150, "lbs"),
  5135. name: "Side",
  5136. image: {
  5137. source: "./media/characters/ramona/side.svg"
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Normal",
  5144. height: math.unit(5.3, "meters"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(20, "stories")
  5150. },
  5151. {
  5152. name: "Macro+",
  5153. height: math.unit(50, "stories")
  5154. },
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5159. {
  5160. standing: {
  5161. height: math.unit(5.75, "feet"),
  5162. weight: math.unit(160, "lbs"),
  5163. name: "Standing",
  5164. image: {
  5165. source: "./media/characters/deerpuff/standing.svg",
  5166. extra: 682 / 624
  5167. }
  5168. },
  5169. sitting: {
  5170. height: math.unit(5.75 / 1.79, "feet"),
  5171. weight: math.unit(160, "lbs"),
  5172. name: "Sitting",
  5173. image: {
  5174. source: "./media/characters/deerpuff/sitting.svg",
  5175. bottom: 44 / 400,
  5176. extra: 1
  5177. }
  5178. },
  5179. taurLaying: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(400, "lbs"),
  5182. name: "Taur (Laying)",
  5183. image: {
  5184. source: "./media/characters/deerpuff/taur-laying.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Puffball",
  5191. height: math.unit(6, "inches")
  5192. },
  5193. {
  5194. name: "Normalpuff",
  5195. height: math.unit(5.75, "feet")
  5196. },
  5197. {
  5198. name: "Macropuff",
  5199. height: math.unit(1500, "feet"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "Megapuff",
  5204. height: math.unit(500, "miles")
  5205. },
  5206. {
  5207. name: "Gigapuff",
  5208. height: math.unit(250000, "miles")
  5209. },
  5210. {
  5211. name: "Omegapuff",
  5212. height: math.unit(1000, "lightyears")
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5218. {
  5219. stomping: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(170, "lbs"),
  5222. name: "Stomping",
  5223. image: {
  5224. source: "./media/characters/vivian/stomping.svg"
  5225. }
  5226. },
  5227. sitting: {
  5228. height: math.unit(6 / 1.75, "feet"),
  5229. weight: math.unit(170, "lbs"),
  5230. name: "Sitting",
  5231. image: {
  5232. source: "./media/characters/vivian/sitting.svg",
  5233. bottom: 1 / 6.4,
  5234. extra: 1,
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(7, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(10, "stories")
  5247. },
  5248. {
  5249. name: "Macro+",
  5250. height: math.unit(30, "stories")
  5251. },
  5252. {
  5253. name: "Megamacro",
  5254. height: math.unit(10, "miles")
  5255. },
  5256. {
  5257. name: "Megamacro+",
  5258. height: math.unit(2750000, "meters")
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(160, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/prince/front.svg",
  5271. extra: 3400 / 3000
  5272. }
  5273. },
  5274. jumping: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(160, "lbs"),
  5277. name: "Jumping",
  5278. image: {
  5279. source: "./media/characters/prince/jump.svg",
  5280. extra: 2555 / 2134
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(7.75, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Not cute",
  5292. height: math.unit(17, "feet")
  5293. },
  5294. {
  5295. name: "I said NOT",
  5296. height: math.unit(91, "feet")
  5297. },
  5298. {
  5299. name: "Please stop",
  5300. height: math.unit(560, "feet")
  5301. },
  5302. {
  5303. name: "What have you done",
  5304. height: math.unit(2200, "feet")
  5305. },
  5306. {
  5307. name: "Deer God",
  5308. height: math.unit(3.6, "miles")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5314. {
  5315. standing: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(300, "lbs"),
  5318. name: "Standing",
  5319. image: {
  5320. source: "./media/characters/psymon/standing.svg",
  5321. extra: 1888 / 1810,
  5322. bottom: 0.05
  5323. }
  5324. },
  5325. slithering: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(300, "lbs"),
  5328. name: "Slithering",
  5329. image: {
  5330. source: "./media/characters/psymon/slithering.svg",
  5331. extra: 1330 / 1224
  5332. }
  5333. },
  5334. slitheringAlt: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(300, "lbs"),
  5337. name: "Slithering (Alt)",
  5338. image: {
  5339. source: "./media/characters/psymon/slithering-alt.svg",
  5340. extra: 1330 / 1224
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(11.25, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Large",
  5352. height: math.unit(27, "feet")
  5353. },
  5354. {
  5355. name: "Giant",
  5356. height: math.unit(87, "feet")
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(365, "feet")
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(3, "miles")
  5365. },
  5366. {
  5367. name: "World Serpent",
  5368. height: math.unit(8000, "miles")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/daimos/front.svg",
  5381. extra: 4160 / 3897,
  5382. bottom: 0.021
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(8, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Big Dog",
  5394. height: math.unit(22, "feet")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(127, "feet")
  5399. },
  5400. {
  5401. name: "Megamacro",
  5402. height: math.unit(3600, "feet")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(180, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/blake/side.svg",
  5415. extra: 1212 / 1120,
  5416. bottom: 0.05
  5417. }
  5418. },
  5419. crouched: {
  5420. height: math.unit(6 * 0.57, "feet"),
  5421. weight: math.unit(180, "lbs"),
  5422. name: "Crouched",
  5423. image: {
  5424. source: "./media/characters/blake/crouched.svg",
  5425. extra: 840 / 587,
  5426. bottom: 0.04
  5427. }
  5428. },
  5429. bent: {
  5430. height: math.unit(6 * 0.75, "feet"),
  5431. weight: math.unit(180, "lbs"),
  5432. name: "Bent",
  5433. image: {
  5434. source: "./media/characters/blake/bent.svg",
  5435. extra: 592 / 544,
  5436. bottom: 0.035
  5437. }
  5438. },
  5439. },
  5440. [
  5441. {
  5442. name: "Normal",
  5443. height: math.unit(8 + 1 / 6, "feet"),
  5444. default: true
  5445. },
  5446. {
  5447. name: "Big Backside",
  5448. height: math.unit(37, "feet")
  5449. },
  5450. {
  5451. name: "Subway Shredder",
  5452. height: math.unit(72, "feet")
  5453. },
  5454. {
  5455. name: "City Carver",
  5456. height: math.unit(1675, "feet")
  5457. },
  5458. {
  5459. name: "Tectonic Tweaker",
  5460. height: math.unit(2300, "miles")
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5466. {
  5467. front: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(180, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/guisetto/front.svg",
  5473. extra: 856 / 817,
  5474. bottom: 0.06
  5475. }
  5476. },
  5477. airborne: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(180, "lbs"),
  5480. name: "Airborne",
  5481. image: {
  5482. source: "./media/characters/guisetto/airborne.svg",
  5483. extra: 584 / 525
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(10 + 11 / 12, "feet"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Large",
  5495. height: math.unit(35, "feet")
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(475, "feet")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(180, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/luxor/front.svg",
  5512. extra: 2940 / 2152
  5513. }
  5514. },
  5515. back: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(180, "lbs"),
  5518. name: "Back",
  5519. image: {
  5520. source: "./media/characters/luxor/back.svg",
  5521. extra: 1083 / 960
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(5 + 5 / 6, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Lamp",
  5533. height: math.unit(50, "feet")
  5534. },
  5535. {
  5536. name: "Lämp",
  5537. height: math.unit(300, "feet")
  5538. },
  5539. {
  5540. name: "The sun is a lamp",
  5541. height: math.unit(250000, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(50, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/huoyan/front.svg"
  5554. }
  5555. },
  5556. side: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Side",
  5560. image: {
  5561. source: "./media/characters/huoyan/side.svg"
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Chef",
  5568. height: math.unit(9, "feet")
  5569. },
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(65, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(780, "feet")
  5578. },
  5579. {
  5580. name: "Flaming Mountain",
  5581. height: math.unit(4.8, "miles")
  5582. },
  5583. {
  5584. name: "Celestial",
  5585. height: math.unit(765000, "miles")
  5586. },
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(5 + 3 / 4, "feet"),
  5594. weight: math.unit(120, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/tails/front.svg"
  5598. }
  5599. }
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(5 + 3 / 4, "feet"),
  5605. default: true
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(4, "feet"),
  5614. weight: math.unit(50, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/rainy/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Macro",
  5624. height: math.unit(800, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(150, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/rainier/front.svg"
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Micro",
  5644. height: math.unit(2, "mm"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(8 + 4/12, "feet"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/andy-renard/front.svg",
  5657. extra: 1839/1726,
  5658. bottom: 134/1973
  5659. }
  5660. },
  5661. back: {
  5662. height: math.unit(8 + 4/12, "feet"),
  5663. name: "Back",
  5664. image: {
  5665. source: "./media/characters/andy-renard/back.svg",
  5666. extra: 1838/1710,
  5667. bottom: 105/1943
  5668. }
  5669. },
  5670. },
  5671. [
  5672. {
  5673. name: "Tall",
  5674. height: math.unit(8 + 4/12, "feet")
  5675. },
  5676. {
  5677. name: "Mini Macro",
  5678. height: math.unit(15, "feet"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(100, "feet")
  5684. },
  5685. {
  5686. name: "Mega Macro",
  5687. height: math.unit(1000, "feet")
  5688. },
  5689. {
  5690. name: "Giga Macro",
  5691. height: math.unit(10, "miles")
  5692. },
  5693. {
  5694. name: "God Macro",
  5695. height: math.unit(1, "multiverse")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(210, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/cimmaron/front-sfw.svg",
  5708. extra: 701 / 676,
  5709. bottom: 0.046
  5710. }
  5711. },
  5712. back: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(210, "lbs"),
  5715. name: "Back",
  5716. image: {
  5717. source: "./media/characters/cimmaron/back-sfw.svg",
  5718. extra: 701 / 676,
  5719. bottom: 0.046
  5720. }
  5721. },
  5722. frontNsfw: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(210, "lbs"),
  5725. name: "Front (NSFW)",
  5726. image: {
  5727. source: "./media/characters/cimmaron/front-nsfw.svg",
  5728. extra: 701 / 676,
  5729. bottom: 0.046
  5730. }
  5731. },
  5732. backNsfw: {
  5733. height: math.unit(6, "feet"),
  5734. weight: math.unit(210, "lbs"),
  5735. name: "Back (NSFW)",
  5736. image: {
  5737. source: "./media/characters/cimmaron/back-nsfw.svg",
  5738. extra: 701 / 676,
  5739. bottom: 0.046
  5740. }
  5741. },
  5742. dick: {
  5743. height: math.unit(1.714, "feet"),
  5744. name: "Dick",
  5745. image: {
  5746. source: "./media/characters/cimmaron/dick.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(6, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Macro Mayor",
  5758. height: math.unit(350, "meters")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(200, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/akari/front.svg",
  5771. extra: 962 / 901,
  5772. bottom: 0.04
  5773. }
  5774. }
  5775. },
  5776. [
  5777. {
  5778. name: "Micro",
  5779. height: math.unit(5, "inches"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Normal",
  5784. height: math.unit(7, "feet")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(140, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/cynosura/front.svg",
  5797. extra: 896 / 847
  5798. }
  5799. },
  5800. back: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(140, "lbs"),
  5803. name: "Back",
  5804. image: {
  5805. source: "./media/characters/cynosura/back.svg",
  5806. extra: 1365 / 1250
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(4, "inches")
  5814. },
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5.75, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Tall",
  5822. height: math.unit(10, "feet")
  5823. },
  5824. {
  5825. name: "Big",
  5826. height: math.unit(20, "feet")
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(50, "feet")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(13 + 2/12, "feet"),
  5839. weight: math.unit(800, "kg"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/gin/front.svg",
  5843. extra: 1312/1191,
  5844. bottom: 45/1357
  5845. }
  5846. },
  5847. mouth: {
  5848. height: math.unit(2.39 * 1.8, "feet"),
  5849. name: "Mouth",
  5850. image: {
  5851. source: "./media/characters/gin/mouth.svg"
  5852. }
  5853. },
  5854. hand: {
  5855. height: math.unit(1.57 * 2.19, "feet"),
  5856. name: "Hand",
  5857. image: {
  5858. source: "./media/characters/gin/hand.svg"
  5859. }
  5860. },
  5861. foot: {
  5862. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5863. name: "Foot",
  5864. image: {
  5865. source: "./media/characters/gin/foot.svg"
  5866. }
  5867. },
  5868. sole: {
  5869. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5870. name: "Sole",
  5871. image: {
  5872. source: "./media/characters/gin/sole.svg"
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Very Small",
  5879. height: math.unit(13 + 2 / 12, "feet")
  5880. },
  5881. {
  5882. name: "Micro",
  5883. height: math.unit(600, "miles")
  5884. },
  5885. {
  5886. name: "Regular",
  5887. height: math.unit(20, "earths"),
  5888. default: true
  5889. },
  5890. {
  5891. name: "Macro",
  5892. height: math.unit(2.2, "solarradii")
  5893. },
  5894. {
  5895. name: "Teramacro",
  5896. height: math.unit(1.2, "galaxies")
  5897. },
  5898. {
  5899. name: "Omegamacro",
  5900. height: math.unit(200, "universes")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6 + 1 / 6, "feet"),
  5909. weight: math.unit(178, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/guy/front.svg"
  5913. }
  5914. }
  5915. },
  5916. [
  5917. {
  5918. name: "Normal",
  5919. height: math.unit(6 + 1 / 6, "feet"),
  5920. default: true
  5921. },
  5922. {
  5923. name: "Large",
  5924. height: math.unit(25 + 7 / 12, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(60 + 9 / 12, "feet")
  5929. },
  5930. {
  5931. name: "Macro+",
  5932. height: math.unit(246, "feet")
  5933. },
  5934. {
  5935. name: "Macro++",
  5936. height: math.unit(878, "feet")
  5937. }
  5938. ]
  5939. ))
  5940. characterMakers.push(() => makeCharacter(
  5941. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5942. {
  5943. front: {
  5944. height: math.unit(9, "feet"),
  5945. weight: math.unit(800, "lbs"),
  5946. name: "Front",
  5947. image: {
  5948. source: "./media/characters/tiberius/front.svg",
  5949. extra: 2295 / 2071
  5950. }
  5951. },
  5952. back: {
  5953. height: math.unit(9, "feet"),
  5954. weight: math.unit(800, "lbs"),
  5955. name: "Back",
  5956. image: {
  5957. source: "./media/characters/tiberius/back.svg",
  5958. extra: 2373 / 2160
  5959. }
  5960. },
  5961. },
  5962. [
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(9, "feet"),
  5966. default: true
  5967. }
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5972. {
  5973. front: {
  5974. height: math.unit(6, "feet"),
  5975. weight: math.unit(600, "lbs"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/surgo/front.svg",
  5979. extra: 3591 / 2227
  5980. }
  5981. },
  5982. back: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(600, "lbs"),
  5985. name: "Back",
  5986. image: {
  5987. source: "./media/characters/surgo/back.svg",
  5988. extra: 3557 / 2228
  5989. }
  5990. },
  5991. laying: {
  5992. height: math.unit(6 * 0.85, "feet"),
  5993. weight: math.unit(600, "lbs"),
  5994. name: "Laying",
  5995. image: {
  5996. source: "./media/characters/surgo/laying.svg"
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(6, "feet"),
  6004. default: true
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6010. {
  6011. side: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(150, "lbs"),
  6014. name: "Side",
  6015. image: {
  6016. source: "./media/characters/cibus/side.svg",
  6017. extra: 800 / 400
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(6, "feet"),
  6025. default: true
  6026. }
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6031. {
  6032. front: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(240, "lbs"),
  6035. name: "Front",
  6036. image: {
  6037. source: "./media/characters/nibbles/front.svg"
  6038. }
  6039. },
  6040. side: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(240, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/nibbles/side.svg"
  6046. }
  6047. },
  6048. },
  6049. [
  6050. {
  6051. name: "Normal",
  6052. height: math.unit(9, "feet"),
  6053. default: true
  6054. }
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6059. {
  6060. side: {
  6061. height: math.unit(5 + 1 / 6, "feet"),
  6062. weight: math.unit(130, "lbs"),
  6063. name: "Side",
  6064. image: {
  6065. source: "./media/characters/rikky/side.svg",
  6066. extra: 851 / 801
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(5 + 1 / 6, "feet")
  6074. },
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(152, "feet"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Megamacro",
  6082. height: math.unit(7, "miles")
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6088. {
  6089. side: {
  6090. height: math.unit(370, "cm"),
  6091. weight: math.unit(350, "lbs"),
  6092. name: "Side",
  6093. image: {
  6094. source: "./media/characters/malfressa/side.svg"
  6095. }
  6096. },
  6097. walking: {
  6098. height: math.unit(370, "cm"),
  6099. weight: math.unit(350, "lbs"),
  6100. name: "Walking",
  6101. image: {
  6102. source: "./media/characters/malfressa/walking.svg"
  6103. }
  6104. },
  6105. feral: {
  6106. height: math.unit(2500, "cm"),
  6107. weight: math.unit(100000, "lbs"),
  6108. name: "Feral",
  6109. image: {
  6110. source: "./media/characters/malfressa/feral.svg",
  6111. extra: 2108 / 837,
  6112. bottom: 0.02
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(370, "cm")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(300, "meters"),
  6124. default: true
  6125. }
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6130. {
  6131. front: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(60, "kg"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/jaro/front.svg"
  6137. }
  6138. },
  6139. back: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(60, "kg"),
  6142. name: "Back",
  6143. image: {
  6144. source: "./media/characters/jaro/back.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Micro",
  6151. height: math.unit(7, "inches")
  6152. },
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(5.5, "feet"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Minimacro",
  6160. height: math.unit(20, "feet")
  6161. },
  6162. {
  6163. name: "Macro",
  6164. height: math.unit(200, "meters")
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(195, "lb"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/rogue/front.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(90, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(5 + 8 / 12, "feet"),
  6193. weight: math.unit(140, "lb"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/piper/front.svg",
  6197. extra: 3948/3655,
  6198. bottom: 0/3948
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Micro",
  6205. height: math.unit(2, "inches")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(5 + 8 / 12, "feet")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(250, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(7, "miles")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(220, "lb"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/gemini/front.svg"
  6231. }
  6232. },
  6233. back: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(220, "lb"),
  6236. name: "Back",
  6237. image: {
  6238. source: "./media/characters/gemini/back.svg"
  6239. }
  6240. },
  6241. kneeling: {
  6242. height: math.unit(6 / 1.5, "feet"),
  6243. weight: math.unit(220, "lb"),
  6244. name: "Kneeling",
  6245. image: {
  6246. source: "./media/characters/gemini/kneeling.svg",
  6247. bottom: 0.02
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(300, "meters"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Megamacro",
  6259. height: math.unit(6900, "meters")
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6265. {
  6266. anthro: {
  6267. height: math.unit(2.35, "meters"),
  6268. weight: math.unit(73, "kg"),
  6269. name: "Anthro",
  6270. image: {
  6271. source: "./media/characters/alicia/anthro.svg",
  6272. extra: 2571 / 2385,
  6273. bottom: 75 / 2648
  6274. }
  6275. },
  6276. paw: {
  6277. height: math.unit(1.32, "feet"),
  6278. name: "Paw",
  6279. image: {
  6280. source: "./media/characters/alicia/paw.svg"
  6281. }
  6282. },
  6283. feral: {
  6284. height: math.unit(1.69, "meters"),
  6285. weight: math.unit(73, "kg"),
  6286. name: "Feral",
  6287. image: {
  6288. source: "./media/characters/alicia/feral.svg",
  6289. extra: 2123 / 1715,
  6290. bottom: 222 / 2349
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(2.35, "meters")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(60, "meters"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Megamacro",
  6306. height: math.unit(10000, "kilometers")
  6307. },
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(7, "feet"),
  6315. weight: math.unit(250, "lbs"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/archy/front.svg"
  6319. }
  6320. }
  6321. },
  6322. [
  6323. {
  6324. name: "Micro",
  6325. height: math.unit(1, "inch")
  6326. },
  6327. {
  6328. name: "Shorty",
  6329. height: math.unit(5, "feet")
  6330. },
  6331. {
  6332. name: "Normal",
  6333. height: math.unit(7, "feet")
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(600, "meters"),
  6338. default: true
  6339. },
  6340. {
  6341. name: "Megamacro",
  6342. height: math.unit(1, "mile")
  6343. },
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6348. {
  6349. front: {
  6350. height: math.unit(1.65, "meters"),
  6351. weight: math.unit(74, "kg"),
  6352. name: "Front",
  6353. image: {
  6354. source: "./media/characters/berri/front.svg",
  6355. extra: 857 / 837,
  6356. bottom: 18 / 877
  6357. }
  6358. },
  6359. bum: {
  6360. height: math.unit(1.46, "feet"),
  6361. name: "Bum",
  6362. image: {
  6363. source: "./media/characters/berri/bum.svg"
  6364. }
  6365. },
  6366. mouth: {
  6367. height: math.unit(0.44, "feet"),
  6368. name: "Mouth",
  6369. image: {
  6370. source: "./media/characters/berri/mouth.svg"
  6371. }
  6372. },
  6373. paw: {
  6374. height: math.unit(0.826, "feet"),
  6375. name: "Paw",
  6376. image: {
  6377. source: "./media/characters/berri/paw.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(1.65, "meters")
  6385. },
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(60, "m"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Megamacro",
  6393. height: math.unit(9.213, "km")
  6394. },
  6395. {
  6396. name: "Planet Eater",
  6397. height: math.unit(489, "megameters")
  6398. },
  6399. {
  6400. name: "Teramacro",
  6401. height: math.unit(2471635000000, "meters")
  6402. },
  6403. {
  6404. name: "Examacro",
  6405. height: math.unit(8.0624e+26, "meters")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(1.72, "meters"),
  6414. weight: math.unit(68, "kg"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/lexi/front.svg"
  6418. }
  6419. }
  6420. },
  6421. [
  6422. {
  6423. name: "Very Smol",
  6424. height: math.unit(10, "mm")
  6425. },
  6426. {
  6427. name: "Micro",
  6428. height: math.unit(6.8, "cm"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Normal",
  6433. height: math.unit(1.72, "m")
  6434. }
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(1.69, "meters"),
  6442. weight: math.unit(68, "kg"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/martin/front.svg",
  6446. extra: 596 / 581
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Micro",
  6453. height: math.unit(6.85, "cm"),
  6454. default: true
  6455. },
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(1.69, "m")
  6459. }
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(1.69, "meters"),
  6467. weight: math.unit(68, "kg"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/juno/front.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Micro",
  6477. height: math.unit(7, "cm")
  6478. },
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(1.89, "m")
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(353, "meters"),
  6486. default: true
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(1.93, "meters"),
  6495. weight: math.unit(83, "kg"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/samantha/front.svg"
  6499. }
  6500. },
  6501. frontClothed: {
  6502. height: math.unit(1.93, "meters"),
  6503. weight: math.unit(83, "kg"),
  6504. name: "Front (Clothed)",
  6505. image: {
  6506. source: "./media/characters/samantha/front-clothed.svg"
  6507. }
  6508. },
  6509. back: {
  6510. height: math.unit(1.93, "meters"),
  6511. weight: math.unit(83, "kg"),
  6512. name: "Back",
  6513. image: {
  6514. source: "./media/characters/samantha/back.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(1.93, "m")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(74, "meters"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro+",
  6530. height: math.unit(223, "meters"),
  6531. },
  6532. {
  6533. name: "Megamacro",
  6534. height: math.unit(8381, "meters"),
  6535. },
  6536. {
  6537. name: "Megamacro+",
  6538. height: math.unit(12000, "kilometers")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(1.92, "meters"),
  6547. weight: math.unit(80, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/dr-clay/front.svg"
  6551. }
  6552. },
  6553. frontClothed: {
  6554. height: math.unit(1.92, "meters"),
  6555. weight: math.unit(80, "kg"),
  6556. name: "Front (Clothed)",
  6557. image: {
  6558. source: "./media/characters/dr-clay/front-clothed.svg"
  6559. }
  6560. }
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(1.92, "m")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(214, "meters"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Macro+",
  6574. height: math.unit(12.237, "meters"),
  6575. },
  6576. {
  6577. name: "Megamacro",
  6578. height: math.unit(557, "megameters"),
  6579. },
  6580. {
  6581. name: "Unimaginable",
  6582. height: math.unit(120e9, "lightyears")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(2, "meters"),
  6591. weight: math.unit(80, "kg"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Teramacro",
  6601. height: math.unit(500000, "lightyears"),
  6602. default: true
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6608. {
  6609. crux: {
  6610. height: math.unit(2, "meters"),
  6611. weight: math.unit(150, "kg"),
  6612. name: "Crux",
  6613. image: {
  6614. source: "./media/characters/vemus/crux.svg",
  6615. extra: 1074/936,
  6616. bottom: 23/1097
  6617. }
  6618. },
  6619. skunkTanuki: {
  6620. height: math.unit(2, "meters"),
  6621. weight: math.unit(150, "kg"),
  6622. name: "Skunk-Tanuki",
  6623. image: {
  6624. source: "./media/characters/vemus/skunk-tanuki.svg",
  6625. extra: 926/893,
  6626. bottom: 20/946
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(3.75, "meters"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Big",
  6638. height: math.unit(8, "meters")
  6639. },
  6640. {
  6641. name: "Macro",
  6642. height: math.unit(100, "meters")
  6643. },
  6644. {
  6645. name: "Macro+",
  6646. height: math.unit(1500, "meters")
  6647. },
  6648. {
  6649. name: "Stellar",
  6650. height: math.unit(14e8, "meters")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(2, "meters"),
  6659. weight: math.unit(70, "kg"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/beherit/front.svg",
  6663. extra: 1408 / 1242
  6664. }
  6665. }
  6666. },
  6667. [
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(6, "feet")
  6671. },
  6672. {
  6673. name: "Lorg",
  6674. height: math.unit(25, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Lorger",
  6679. height: math.unit(75, "feet")
  6680. },
  6681. {
  6682. name: "Macro",
  6683. height: math.unit(200, "meters")
  6684. },
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(2, "meters"),
  6692. weight: math.unit(150, "kg"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/everett/front.svg",
  6696. extra: 2038 / 1737,
  6697. bottom: 0.03
  6698. }
  6699. },
  6700. paw: {
  6701. height: math.unit(2 / 3.6, "meters"),
  6702. name: "Paw",
  6703. image: {
  6704. source: "./media/characters/everett/paw.svg"
  6705. }
  6706. },
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(15, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Lorg",
  6716. height: math.unit(70, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Lorger",
  6721. height: math.unit(250, "feet")
  6722. },
  6723. {
  6724. name: "Macro",
  6725. height: math.unit(500, "meters")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(2, "meters"),
  6734. weight: math.unit(86, "kg"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/rose/front.svg",
  6738. extra: 1785/1636,
  6739. bottom: 30/1815
  6740. }
  6741. },
  6742. frontSporty: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(86, "kg"),
  6745. name: "Front (Sporty)",
  6746. image: {
  6747. source: "./media/characters/rose/front-sporty.svg",
  6748. extra: 350/335,
  6749. bottom: 10/360
  6750. }
  6751. },
  6752. frontAlt: {
  6753. height: math.unit(1.6, "meters"),
  6754. weight: math.unit(86, "kg"),
  6755. name: "Front (Alt)",
  6756. image: {
  6757. source: "./media/characters/rose/front-alt.svg",
  6758. extra: 299/283,
  6759. bottom: 3/302
  6760. }
  6761. },
  6762. plush: {
  6763. height: math.unit(2, "meters"),
  6764. weight: math.unit(86/3, "kg"),
  6765. name: "Plush",
  6766. image: {
  6767. source: "./media/characters/rose/plush.svg",
  6768. extra: 361/337,
  6769. bottom: 11/372
  6770. }
  6771. },
  6772. },
  6773. [
  6774. {
  6775. name: "True Micro",
  6776. height: math.unit(9, "cm")
  6777. },
  6778. {
  6779. name: "Micro",
  6780. height: math.unit(16, "cm")
  6781. },
  6782. {
  6783. name: "Normal",
  6784. height: math.unit(1.85, "meters"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Mini-Macro",
  6789. height: math.unit(5, "meters")
  6790. },
  6791. {
  6792. name: "Macro",
  6793. height: math.unit(15, "meters")
  6794. },
  6795. {
  6796. name: "True Macro",
  6797. height: math.unit(40, "meters")
  6798. },
  6799. {
  6800. name: "City Scale",
  6801. height: math.unit(1, "km")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(2, "meters"),
  6810. weight: math.unit(350, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/regal/front.svg"
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(2, "meters"),
  6818. weight: math.unit(350, "lbs"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/regal/back.svg"
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(350, "feet"),
  6829. default: true
  6830. }
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(4 + 11 / 12, "feet"),
  6838. weight: math.unit(100, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/opal/front.svg"
  6842. }
  6843. },
  6844. frontAlt: {
  6845. height: math.unit(4 + 11 / 12, "feet"),
  6846. weight: math.unit(100, "lbs"),
  6847. name: "Front (Alt)",
  6848. image: {
  6849. source: "./media/characters/opal/front-alt.svg"
  6850. }
  6851. },
  6852. },
  6853. [
  6854. {
  6855. name: "Small",
  6856. height: math.unit(4 + 11 / 12, "feet")
  6857. },
  6858. {
  6859. name: "Normal",
  6860. height: math.unit(20, "feet"),
  6861. default: true
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(120, "feet")
  6866. },
  6867. {
  6868. name: "Megamacro",
  6869. height: math.unit(80, "miles")
  6870. },
  6871. {
  6872. name: "True Size",
  6873. height: math.unit(100000, "lightyears")
  6874. },
  6875. ]
  6876. ))
  6877. characterMakers.push(() => makeCharacter(
  6878. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6879. {
  6880. front: {
  6881. height: math.unit(6, "feet"),
  6882. weight: math.unit(200, "lbs"),
  6883. name: "Front",
  6884. image: {
  6885. source: "./media/characters/vector-wuff/front.svg"
  6886. }
  6887. }
  6888. },
  6889. [
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(2.8, "meters")
  6893. },
  6894. {
  6895. name: "Macro",
  6896. height: math.unit(450, "meters"),
  6897. default: true
  6898. },
  6899. {
  6900. name: "Megamacro",
  6901. height: math.unit(15, "kilometers")
  6902. }
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(256, "lbs"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/dannik/front.svg"
  6914. }
  6915. }
  6916. },
  6917. [
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(69.57, "meters"),
  6921. default: true
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(6, "feet"),
  6930. weight: math.unit(120, "lbs"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/azura-saharah/front.svg"
  6934. }
  6935. },
  6936. back: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(120, "lbs"),
  6939. name: "Back",
  6940. image: {
  6941. source: "./media/characters/azura-saharah/back.svg"
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(100, "feet"),
  6949. default: true
  6950. },
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6955. {
  6956. side: {
  6957. height: math.unit(5 + 4 / 12, "feet"),
  6958. weight: math.unit(163, "lbs"),
  6959. name: "Side",
  6960. image: {
  6961. source: "./media/characters/kennedy/side.svg"
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Standard Doggo",
  6968. height: math.unit(5 + 4 / 12, "feet")
  6969. },
  6970. {
  6971. name: "Big Doggo",
  6972. height: math.unit(25 + 3 / 12, "feet"),
  6973. default: true
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(90, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/odi-lunar/front.svg"
  6986. }
  6987. }
  6988. },
  6989. [
  6990. {
  6991. name: "Micro",
  6992. height: math.unit(3, "inches"),
  6993. default: true
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(5.5, "feet")
  6998. }
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7003. {
  7004. back: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(220, "lbs"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/mandake/back.svg"
  7010. }
  7011. }
  7012. },
  7013. [
  7014. {
  7015. name: "Normal",
  7016. height: math.unit(7, "feet"),
  7017. default: true
  7018. },
  7019. {
  7020. name: "Macro",
  7021. height: math.unit(78, "feet")
  7022. },
  7023. {
  7024. name: "Macro+",
  7025. height: math.unit(300, "meters")
  7026. },
  7027. {
  7028. name: "Macro++",
  7029. height: math.unit(2400, "feet")
  7030. },
  7031. {
  7032. name: "Megamacro",
  7033. height: math.unit(5167, "meters")
  7034. },
  7035. {
  7036. name: "Gigamacro",
  7037. height: math.unit(41769, "miles")
  7038. },
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7043. {
  7044. front: {
  7045. height: math.unit(6, "feet"),
  7046. weight: math.unit(120, "lbs"),
  7047. name: "Front",
  7048. image: {
  7049. source: "./media/characters/yozey/front.svg"
  7050. }
  7051. },
  7052. frontAlt: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(120, "lbs"),
  7055. name: "Front (Alt)",
  7056. image: {
  7057. source: "./media/characters/yozey/front-alt.svg"
  7058. }
  7059. },
  7060. side: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(120, "lbs"),
  7063. name: "Side",
  7064. image: {
  7065. source: "./media/characters/yozey/side.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Micro",
  7072. height: math.unit(3, "inches"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(6, "feet")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(103, "lbs"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/valeska-voss/front.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Mini-Sized Sub",
  7096. height: math.unit(3.1, "inches")
  7097. },
  7098. {
  7099. name: "Mid-Sized Sub",
  7100. height: math.unit(6.2, "inches")
  7101. },
  7102. {
  7103. name: "Full-Sized Sub",
  7104. height: math.unit(9.3, "inches")
  7105. },
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(5 + 2 / 12, "foot"),
  7109. default: true
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(160, "lbs"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/gene-zeta/front.svg",
  7122. extra: 3006 / 2826,
  7123. bottom: 182 / 3188
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Micro",
  7130. height: math.unit(6, "inches")
  7131. },
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(5 + 11 / 12, "foot"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(140, "feet")
  7140. },
  7141. {
  7142. name: "Supercharged",
  7143. height: math.unit(2500, "feet")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(350, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/razinox/front.svg",
  7156. extra: 1686 / 1548,
  7157. bottom: 28.2 / 1868
  7158. }
  7159. },
  7160. back: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(350, "lbs"),
  7163. name: "Back",
  7164. image: {
  7165. source: "./media/characters/razinox/back.svg",
  7166. extra: 1660 / 1590,
  7167. bottom: 15 / 1665
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(10 + 8 / 12, "foot")
  7175. },
  7176. {
  7177. name: "Minimacro",
  7178. height: math.unit(15, "foot")
  7179. },
  7180. {
  7181. name: "Macro",
  7182. height: math.unit(60, "foot"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Megamacro",
  7187. height: math.unit(5, "miles")
  7188. },
  7189. {
  7190. name: "Gigamacro",
  7191. height: math.unit(6000, "miles")
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(150, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/cobalt/front.svg"
  7204. }
  7205. }
  7206. },
  7207. [
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(8 + 1 / 12, "foot")
  7211. },
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(111, "foot"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Supracosmic",
  7219. height: math.unit(1e42, "feet")
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(140, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/amanda/front.svg"
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Micro",
  7238. height: math.unit(5, "inches"),
  7239. default: true
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(2.75, "meters"),
  7248. weight: math.unit(1200, "lb"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/teal/front.svg",
  7252. extra: 2463 / 2320,
  7253. bottom: 166 / 2629
  7254. }
  7255. },
  7256. back: {
  7257. height: math.unit(2.75, "meters"),
  7258. weight: math.unit(1200, "lb"),
  7259. name: "Back",
  7260. image: {
  7261. source: "./media/characters/teal/back.svg",
  7262. extra: 2580 / 2489,
  7263. bottom: 151 / 2731
  7264. }
  7265. },
  7266. sitting: {
  7267. height: math.unit(1.9, "meters"),
  7268. weight: math.unit(1200, "lb"),
  7269. name: "Sitting",
  7270. image: {
  7271. source: "./media/characters/teal/sitting.svg",
  7272. extra: 623 / 590,
  7273. bottom: 121 / 744
  7274. }
  7275. },
  7276. standing: {
  7277. height: math.unit(2.75, "meters"),
  7278. weight: math.unit(1200, "lb"),
  7279. name: "Standing",
  7280. image: {
  7281. source: "./media/characters/teal/standing.svg",
  7282. extra: 923 / 893,
  7283. bottom: 60 / 983
  7284. }
  7285. },
  7286. stretching: {
  7287. height: math.unit(3.65, "meters"),
  7288. weight: math.unit(1200, "lb"),
  7289. name: "Stretching",
  7290. image: {
  7291. source: "./media/characters/teal/stretching.svg",
  7292. extra: 1276 / 1244,
  7293. bottom: 0 / 1276
  7294. }
  7295. },
  7296. legged: {
  7297. height: math.unit(1.3, "meters"),
  7298. weight: math.unit(100, "lb"),
  7299. name: "Legged",
  7300. image: {
  7301. source: "./media/characters/teal/legged.svg",
  7302. extra: 462 / 437,
  7303. bottom: 24 / 486
  7304. }
  7305. },
  7306. naga: {
  7307. height: math.unit(5.4, "meters"),
  7308. weight: math.unit(4000, "lb"),
  7309. name: "Naga",
  7310. image: {
  7311. source: "./media/characters/teal/naga.svg",
  7312. extra: 1902 / 1858,
  7313. bottom: 0 / 1902
  7314. }
  7315. },
  7316. hand: {
  7317. height: math.unit(0.52, "meters"),
  7318. name: "Hand",
  7319. image: {
  7320. source: "./media/characters/teal/hand.svg"
  7321. }
  7322. },
  7323. maw: {
  7324. height: math.unit(0.43, "meters"),
  7325. name: "Maw",
  7326. image: {
  7327. source: "./media/characters/teal/maw.svg"
  7328. }
  7329. },
  7330. slit: {
  7331. height: math.unit(0.25, "meters"),
  7332. name: "Slit",
  7333. image: {
  7334. source: "./media/characters/teal/slit.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(2.75, "meters"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(300, "feet")
  7347. },
  7348. {
  7349. name: "Macro+",
  7350. height: math.unit(2000, "feet")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7356. {
  7357. frontCat: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(180, "lbs"),
  7360. name: "Front (Cat)",
  7361. image: {
  7362. source: "./media/characters/ravin-amulet/front-cat.svg"
  7363. }
  7364. },
  7365. frontCatAlt: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(180, "lbs"),
  7368. name: "Front (Alt, Cat)",
  7369. image: {
  7370. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7371. }
  7372. },
  7373. frontWerewolf: {
  7374. height: math.unit(6 * 1.2, "feet"),
  7375. weight: math.unit(225, "lbs"),
  7376. name: "Front (Werewolf)",
  7377. image: {
  7378. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7379. }
  7380. },
  7381. backWerewolf: {
  7382. height: math.unit(6 * 1.2, "feet"),
  7383. weight: math.unit(225, "lbs"),
  7384. name: "Back (Werewolf)",
  7385. image: {
  7386. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Nano",
  7393. height: math.unit(1, "micrometer")
  7394. },
  7395. {
  7396. name: "Micro",
  7397. height: math.unit(1, "inch")
  7398. },
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(6, "feet"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(60, "feet")
  7407. }
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(165, "lbs"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/fluoresce/front.svg"
  7419. }
  7420. }
  7421. },
  7422. [
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(6, "cm")
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(5 + 7 / 12, "feet"),
  7430. default: true
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(56, "feet")
  7435. },
  7436. {
  7437. name: "Megamacro",
  7438. height: math.unit(1.9, "miles")
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(9 + 6 / 12, "feet"),
  7447. weight: math.unit(523, "lbs"),
  7448. name: "Side",
  7449. image: {
  7450. source: "./media/characters/aurora/side.svg"
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Normal",
  7457. height: math.unit(9 + 6 / 12, "feet")
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(96, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro+",
  7466. height: math.unit(243, "feet")
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(194, "cm"),
  7475. weight: math.unit(90, "kg"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/ranek/front.svg"
  7479. }
  7480. },
  7481. side: {
  7482. height: math.unit(194, "cm"),
  7483. weight: math.unit(90, "kg"),
  7484. name: "Side",
  7485. image: {
  7486. source: "./media/characters/ranek/side.svg"
  7487. }
  7488. },
  7489. back: {
  7490. height: math.unit(194, "cm"),
  7491. weight: math.unit(90, "kg"),
  7492. name: "Back",
  7493. image: {
  7494. source: "./media/characters/ranek/back.svg"
  7495. }
  7496. },
  7497. feral: {
  7498. height: math.unit(30, "cm"),
  7499. weight: math.unit(1.6, "lbs"),
  7500. name: "Feral",
  7501. image: {
  7502. source: "./media/characters/ranek/feral.svg"
  7503. }
  7504. },
  7505. },
  7506. [
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(194, "cm"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(100, "meters")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7520. {
  7521. front: {
  7522. height: math.unit(5 + 6 / 12, "feet"),
  7523. weight: math.unit(153, "lbs"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/andrew-cooper/front.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Nano",
  7533. height: math.unit(1, "mm")
  7534. },
  7535. {
  7536. name: "Micro",
  7537. height: math.unit(2, "inches")
  7538. },
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(5 + 6 / 12, "feet"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(180, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/akane-sato/front.svg",
  7555. extra: 1219 / 1140
  7556. }
  7557. },
  7558. back: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(180, "lbs"),
  7561. name: "Back",
  7562. image: {
  7563. source: "./media/characters/akane-sato/back.svg",
  7564. extra: 1219 / 1170
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(2.5, "meters")
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(250, "meters"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Megamacro",
  7580. height: math.unit(25, "km")
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(6, "feet"),
  7589. weight: math.unit(65, "kg"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/rook/front.svg",
  7593. extra: 960 / 950
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(8.8, "feet")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(88, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(8, "miles")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(12 + 2 / 12, "feet"),
  7618. weight: math.unit(808, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/prodigy/front.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(12 + 2 / 12, "feet"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(143, "feet")
  7634. },
  7635. {
  7636. name: "Macro+",
  7637. height: math.unit(400, "feet")
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7643. {
  7644. front: {
  7645. height: math.unit(6, "feet"),
  7646. weight: math.unit(225, "lbs"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/daniel/front.svg"
  7650. }
  7651. },
  7652. leaning: {
  7653. height: math.unit(6, "feet"),
  7654. weight: math.unit(225, "lbs"),
  7655. name: "Leaning",
  7656. image: {
  7657. source: "./media/characters/daniel/leaning.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(1000, "feet"),
  7665. default: true
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7671. {
  7672. front: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(88, "lbs"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/chiros/front.svg",
  7678. extra: 306 / 226
  7679. }
  7680. },
  7681. side: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(88, "lbs"),
  7684. name: "Side",
  7685. image: {
  7686. source: "./media/characters/chiros/side.svg",
  7687. extra: 306 / 226
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Normal",
  7694. height: math.unit(6, "cm"),
  7695. default: true
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7701. {
  7702. front: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(100, "lbs"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/selka/front.svg",
  7708. extra: 947 / 887
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(5, "cm"),
  7716. default: true
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(8 + 3 / 12, "feet"),
  7725. weight: math.unit(424, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/verin/front.svg",
  7729. extra: 1845 / 1550
  7730. }
  7731. },
  7732. frontArmored: {
  7733. height: math.unit(8 + 3 / 12, "feet"),
  7734. weight: math.unit(424, "lbs"),
  7735. name: "Front (Armored)",
  7736. image: {
  7737. source: "./media/characters/verin/front-armor.svg",
  7738. extra: 1845 / 1550,
  7739. bottom: 0.01
  7740. }
  7741. },
  7742. back: {
  7743. height: math.unit(8 + 3 / 12, "feet"),
  7744. weight: math.unit(424, "lbs"),
  7745. name: "Back",
  7746. image: {
  7747. source: "./media/characters/verin/back.svg",
  7748. bottom: 0.1,
  7749. extra: 1
  7750. }
  7751. },
  7752. foot: {
  7753. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7754. name: "Foot",
  7755. image: {
  7756. source: "./media/characters/verin/foot.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(8 + 3 / 12, "feet")
  7764. },
  7765. {
  7766. name: "Minimacro",
  7767. height: math.unit(21, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(626, "feet")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(2.718, "meters"),
  7781. weight: math.unit(150, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/sovrim-terraquian/front.svg"
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(2.718, "meters"),
  7789. weight: math.unit(150, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/sovrim-terraquian/back.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Micro",
  7799. height: math.unit(2, "inches")
  7800. },
  7801. {
  7802. name: "Small",
  7803. height: math.unit(1, "meter")
  7804. },
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(Math.E, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(20, "meters")
  7813. },
  7814. {
  7815. name: "Macro+",
  7816. height: math.unit(400, "meters")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(7, "feet"),
  7825. weight: math.unit(489, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/reece-silvermane/front.svg",
  7829. bottom: 0.02,
  7830. extra: 1
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(1.5, "miles"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(78, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/kane/front.svg",
  7851. extra: 978 / 899
  7852. }
  7853. },
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.1, "m"),
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(1, "km"),
  7863. default: true
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(200, "kg"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/tegon/front.svg",
  7876. bottom: 0.01,
  7877. extra: 1
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Micro",
  7884. height: math.unit(1, "inch")
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(6 + 3 / 12, "feet"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(300, "feet")
  7894. },
  7895. {
  7896. name: "Megamacro",
  7897. height: math.unit(69, "miles")
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7903. {
  7904. side: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(2304, "lbs"),
  7907. name: "Side",
  7908. image: {
  7909. source: "./media/characters/arcturax/side.svg",
  7910. extra: 790 / 376,
  7911. bottom: 0.01
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Micro",
  7918. height: math.unit(2, "inch")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(6, "feet")
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(39, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Megamacro",
  7931. height: math.unit(7, "miles")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(50, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/sentri/front.svg",
  7944. extra: 1750 / 1570,
  7945. bottom: 0.025
  7946. }
  7947. },
  7948. frontAlt: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(50, "lbs"),
  7951. name: "Front (Alt)",
  7952. image: {
  7953. source: "./media/characters/sentri/front-alt.svg",
  7954. extra: 1750 / 1570,
  7955. bottom: 0.025
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(15, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(2500, "feet")
  7968. }
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(5 + 8 / 12, "feet"),
  7976. weight: math.unit(130, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/corvin/front.svg",
  7980. extra: 1803 / 1629
  7981. }
  7982. },
  7983. frontShirt: {
  7984. height: math.unit(5 + 8 / 12, "feet"),
  7985. weight: math.unit(130, "lbs"),
  7986. name: "Front (Shirt)",
  7987. image: {
  7988. source: "./media/characters/corvin/front-shirt.svg",
  7989. extra: 1803 / 1629
  7990. }
  7991. },
  7992. frontPoncho: {
  7993. height: math.unit(5 + 8 / 12, "feet"),
  7994. weight: math.unit(130, "lbs"),
  7995. name: "Front (Poncho)",
  7996. image: {
  7997. source: "./media/characters/corvin/front-poncho.svg",
  7998. extra: 1803 / 1629
  7999. }
  8000. },
  8001. side: {
  8002. height: math.unit(5 + 8 / 12, "feet"),
  8003. weight: math.unit(130, "lbs"),
  8004. name: "Side",
  8005. image: {
  8006. source: "./media/characters/corvin/side.svg",
  8007. extra: 1012 / 945
  8008. }
  8009. },
  8010. back: {
  8011. height: math.unit(5 + 8 / 12, "feet"),
  8012. weight: math.unit(130, "lbs"),
  8013. name: "Back",
  8014. image: {
  8015. source: "./media/characters/corvin/back.svg",
  8016. extra: 1803 / 1629
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(3, "inches")
  8024. },
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(5 + 8 / 12, "feet")
  8028. },
  8029. {
  8030. name: "Macro",
  8031. height: math.unit(300, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Megamacro",
  8036. height: math.unit(500, "miles")
  8037. }
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(6, "feet"),
  8045. weight: math.unit(135, "lbs"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/q/front.svg",
  8049. extra: 854 / 752,
  8050. bottom: 0.005
  8051. }
  8052. },
  8053. back: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(130, "lbs"),
  8056. name: "Back",
  8057. image: {
  8058. source: "./media/characters/q/back.svg",
  8059. extra: 854 / 752
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Macro",
  8066. height: math.unit(90, "feet"),
  8067. default: true
  8068. },
  8069. {
  8070. name: "Extra Macro",
  8071. height: math.unit(300, "feet"),
  8072. },
  8073. {
  8074. name: "BIG WALF",
  8075. height: math.unit(750, "feet"),
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(150, "lbs"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/carley/front.svg",
  8088. extra: 3927 / 3540,
  8089. bottom: 29.2 / 735
  8090. }
  8091. }
  8092. },
  8093. [
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(6 + 3 / 12, "feet")
  8097. },
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(185, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(8, "miles"),
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(3, "feet"),
  8114. weight: math.unit(28, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/citrine/front.svg"
  8118. }
  8119. }
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(3, "feet"),
  8125. default: true
  8126. }
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8131. {
  8132. front: {
  8133. height: math.unit(14, "feet"),
  8134. weight: math.unit(1450, "kg"),
  8135. capacity: math.unit(15, "people"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/aura-starwind/front.svg",
  8139. extra: 1455 / 1335
  8140. }
  8141. },
  8142. side: {
  8143. height: math.unit(14, "feet"),
  8144. weight: math.unit(1450, "kg"),
  8145. capacity: math.unit(15, "people"),
  8146. name: "Side",
  8147. image: {
  8148. source: "./media/characters/aura-starwind/side.svg",
  8149. extra: 1654 / 1497
  8150. }
  8151. },
  8152. taur: {
  8153. height: math.unit(18, "feet"),
  8154. weight: math.unit(5500, "kg"),
  8155. capacity: math.unit(50, "people"),
  8156. name: "Taur",
  8157. image: {
  8158. source: "./media/characters/aura-starwind/taur.svg",
  8159. extra: 1760 / 1650
  8160. }
  8161. },
  8162. feral: {
  8163. height: math.unit(46, "feet"),
  8164. weight: math.unit(25000, "kg"),
  8165. capacity: math.unit(120, "people"),
  8166. name: "Feral",
  8167. image: {
  8168. source: "./media/characters/aura-starwind/feral.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(14, "feet"),
  8176. default: true
  8177. },
  8178. {
  8179. name: "Macro",
  8180. height: math.unit(50, "meters")
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(5000, "meters")
  8185. },
  8186. {
  8187. name: "Gigamacro",
  8188. height: math.unit(100000, "kilometers")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(2 + 7 / 12, "feet"),
  8197. weight: math.unit(32, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/rivet/front.svg",
  8201. extra: 1716 / 1658,
  8202. bottom: 0.03
  8203. }
  8204. },
  8205. foot: {
  8206. height: math.unit(0.551, "feet"),
  8207. name: "Rivet's Foot",
  8208. image: {
  8209. source: "./media/characters/rivet/foot.svg"
  8210. },
  8211. rename: true
  8212. }
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(1.5, "inches"),
  8218. },
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(2 + 7 / 12, "feet"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(85, "feet")
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(2.2, "km")
  8231. }
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(5 + 9 / 12, "feet"),
  8239. weight: math.unit(150, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/coffee/front.svg",
  8243. extra: 3666 / 3032,
  8244. bottom: 0.04
  8245. }
  8246. },
  8247. foot: {
  8248. height: math.unit(1.29, "feet"),
  8249. name: "Foot",
  8250. image: {
  8251. source: "./media/characters/coffee/foot.svg"
  8252. }
  8253. },
  8254. },
  8255. [
  8256. {
  8257. name: "Micro",
  8258. height: math.unit(2, "inches"),
  8259. },
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(5 + 9 / 12, "feet"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Macro",
  8267. height: math.unit(800, "feet")
  8268. },
  8269. {
  8270. name: "Megamacro",
  8271. height: math.unit(25, "miles")
  8272. }
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(200, "lbs"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/chari-gal/front.svg",
  8284. extra: 1568 / 1385,
  8285. bottom: 0.047
  8286. }
  8287. },
  8288. gigantamax: {
  8289. height: math.unit(6 * 16, "feet"),
  8290. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8291. name: "Gigantamax",
  8292. image: {
  8293. source: "./media/characters/chari-gal/gigantamax.svg",
  8294. extra: 1124 / 888,
  8295. bottom: 0.03
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(5 + 7 / 12, "feet")
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(200, "feet"),
  8307. default: true
  8308. }
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8313. {
  8314. front: {
  8315. height: math.unit(6, "feet"),
  8316. weight: math.unit(150, "lbs"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/nova/front.svg",
  8320. extra: 5000 / 4722,
  8321. bottom: 0.02
  8322. }
  8323. }
  8324. },
  8325. [
  8326. {
  8327. name: "Micro-",
  8328. height: math.unit(0.8, "inches")
  8329. },
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(2, "inches"),
  8333. default: true
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(3 + 1 / 12, "feet"),
  8342. weight: math.unit(21.7, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/argent/front.svg",
  8346. extra: 1471 / 1331,
  8347. bottom: 100.8 / 1575.5
  8348. }
  8349. }
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(2, "inches")
  8355. },
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(3 + 1 / 12, "feet"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(120, "feet")
  8364. },
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8369. {
  8370. lamp: {
  8371. height: math.unit(7 * 1559 / 989, "feet"),
  8372. name: "Magic Lamp",
  8373. image: {
  8374. source: "./media/characters/mira-al-cul/lamp.svg",
  8375. extra: 1617 / 1559
  8376. }
  8377. },
  8378. front: {
  8379. height: math.unit(7, "feet"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/mira-al-cul/front.svg",
  8383. extra: 1044 / 990
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Heavily Restricted",
  8390. height: math.unit(7 * 1559 / 989, "feet")
  8391. },
  8392. {
  8393. name: "Freshly Freed",
  8394. height: math.unit(50 * 1559 / 989, "feet")
  8395. },
  8396. {
  8397. name: "World Encompassing",
  8398. height: math.unit(10000 * 1559 / 989, "miles")
  8399. },
  8400. {
  8401. name: "Galactic",
  8402. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8403. },
  8404. {
  8405. name: "Palmed Universe",
  8406. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Multiversal Matriarch",
  8411. height: math.unit(8.87e10, "yottameters")
  8412. },
  8413. {
  8414. name: "Void Mother",
  8415. height: math.unit(3.14e110, "yottaparsecs")
  8416. },
  8417. {
  8418. name: "Toying with Transcendence",
  8419. height: math.unit(1e307, "meters")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8425. {
  8426. front: {
  8427. height: math.unit(17 + 1 / 12, "feet"),
  8428. weight: math.unit(476.2 * 5, "lbs"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/kuro-shi-uchū/front.svg",
  8432. extra: 2329 / 1835,
  8433. bottom: 0.02
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(2, "inches")
  8441. },
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(12, "meters")
  8445. },
  8446. {
  8447. name: "Planetary",
  8448. height: math.unit(0.00929, "AU"),
  8449. default: true
  8450. },
  8451. {
  8452. name: "Universal",
  8453. height: math.unit(20, "gigaparsecs")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(5 + 2 / 12, "feet"),
  8462. weight: math.unit(120, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/katherine/front.svg",
  8466. extra: 2075 / 1969
  8467. }
  8468. },
  8469. dress: {
  8470. height: math.unit(5 + 2 / 12, "feet"),
  8471. weight: math.unit(120, "lbs"),
  8472. name: "Dress",
  8473. image: {
  8474. source: "./media/characters/katherine/dress.svg",
  8475. extra: 2258 / 2064
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1, "inches"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Normal",
  8487. height: math.unit(5 + 2 / 12, "feet")
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(100, "meters")
  8492. },
  8493. {
  8494. name: "Megamacro",
  8495. height: math.unit(80, "miles")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(7 + 8 / 12, "feet"),
  8504. weight: math.unit(250, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/yevis/front.svg",
  8508. extra: 1938 / 1755
  8509. }
  8510. }
  8511. },
  8512. [
  8513. {
  8514. name: "Mortal",
  8515. height: math.unit(7 + 8 / 12, "feet")
  8516. },
  8517. {
  8518. name: "Battle",
  8519. height: math.unit(25 + 11 / 12, "feet")
  8520. },
  8521. {
  8522. name: "Wrath",
  8523. height: math.unit(1654 + 11 / 12, "feet")
  8524. },
  8525. {
  8526. name: "Planet Destroyer",
  8527. height: math.unit(12000, "miles")
  8528. },
  8529. {
  8530. name: "Galaxy Conqueror",
  8531. height: math.unit(1.45, "zettameters"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Universal War",
  8536. height: math.unit(184, "gigaparsecs")
  8537. },
  8538. {
  8539. name: "Eternity War",
  8540. height: math.unit(1.98e55, "yottaparsecs")
  8541. },
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(5 + 8 / 12, "feet"),
  8549. weight: math.unit(63, "kg"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/xavier/front.svg",
  8553. extra: 944 / 883
  8554. }
  8555. },
  8556. frontStretch: {
  8557. height: math.unit(5 + 8 / 12, "feet"),
  8558. weight: math.unit(63, "kg"),
  8559. name: "Stretching",
  8560. image: {
  8561. source: "./media/characters/xavier/front-stretch.svg",
  8562. extra: 962 / 820
  8563. }
  8564. },
  8565. },
  8566. [
  8567. {
  8568. name: "Normal",
  8569. height: math.unit(5 + 8 / 12, "feet")
  8570. },
  8571. {
  8572. name: "Macro",
  8573. height: math.unit(100, "meters"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "McLargeHuge",
  8578. height: math.unit(10, "miles")
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(5 + 5 / 12, "feet"),
  8587. weight: math.unit(150, "lb"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/joshii/front.svg",
  8591. extra: 765 / 653,
  8592. bottom: 51 / 816
  8593. }
  8594. },
  8595. foot: {
  8596. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8597. name: "Foot",
  8598. image: {
  8599. source: "./media/characters/joshii/foot.svg"
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Micro",
  8606. height: math.unit(2, "inches"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(5 + 5 / 12, "feet")
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(785, "feet")
  8616. },
  8617. {
  8618. name: "Megamacro",
  8619. height: math.unit(24.5, "miles")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(150, "lb"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/goddess-elizabeth/front.svg",
  8632. extra: 1800 / 1525,
  8633. bottom: 0.005
  8634. }
  8635. },
  8636. foot: {
  8637. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8638. name: "Foot",
  8639. image: {
  8640. source: "./media/characters/goddess-elizabeth/foot.svg"
  8641. }
  8642. },
  8643. mouth: {
  8644. height: math.unit(6, "feet"),
  8645. name: "Mouth",
  8646. image: {
  8647. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Micro",
  8654. height: math.unit(12, "feet")
  8655. },
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(80, "miles"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Macro",
  8663. height: math.unit(15000, "parsecs")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(5 + 9 / 12, "feet"),
  8672. weight: math.unit(144, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/kara/front.svg"
  8676. }
  8677. },
  8678. feet: {
  8679. height: math.unit(6 / 6.765, "feet"),
  8680. name: "Kara's Feet",
  8681. rename: true,
  8682. image: {
  8683. source: "./media/characters/kara/feet.svg"
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(5 + 9 / 12, "feet")
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(174, "feet"),
  8695. default: true
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(18, "feet"),
  8704. weight: math.unit(4050, "lb"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/tyrone/front.svg",
  8708. extra: 2405 / 2270,
  8709. bottom: 182 / 2587
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(18, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(300, "feet")
  8722. },
  8723. {
  8724. name: "Megamacro",
  8725. height: math.unit(15, "km")
  8726. },
  8727. {
  8728. name: "Gigamacro",
  8729. height: math.unit(500, "km")
  8730. },
  8731. {
  8732. name: "Teramacro",
  8733. height: math.unit(0.5, "gigameters")
  8734. },
  8735. {
  8736. name: "Omnimacro",
  8737. height: math.unit(1e252, "yottauniverse")
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(7 + 8 / 12, "feet"),
  8746. weight: math.unit(120, "lb"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/danny/front.svg",
  8750. extra: 1490 / 1350
  8751. }
  8752. },
  8753. back: {
  8754. height: math.unit(7 + 8 / 12, "feet"),
  8755. weight: math.unit(120, "lb"),
  8756. name: "Back",
  8757. image: {
  8758. source: "./media/characters/danny/back.svg",
  8759. extra: 1490 / 1350
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(7 + 8 / 12, "feet"),
  8767. default: true
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(3.5, "inches"),
  8776. weight: math.unit(19, "grams"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/mallow/front.svg",
  8780. extra: 471 / 431
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(3.5, "inches"),
  8785. weight: math.unit(19, "grams"),
  8786. name: "Back",
  8787. image: {
  8788. source: "./media/characters/mallow/back.svg",
  8789. extra: 471 / 431
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(3.5, "inches"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(9, "feet"),
  8806. weight: math.unit(230, "kg"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/starry-aqua/front.svg"
  8810. }
  8811. },
  8812. back: {
  8813. height: math.unit(9, "feet"),
  8814. weight: math.unit(230, "kg"),
  8815. name: "Back",
  8816. image: {
  8817. source: "./media/characters/starry-aqua/back.svg"
  8818. }
  8819. },
  8820. hand: {
  8821. height: math.unit(9 * 0.1168, "feet"),
  8822. name: "Hand",
  8823. image: {
  8824. source: "./media/characters/starry-aqua/hand.svg"
  8825. }
  8826. },
  8827. foot: {
  8828. height: math.unit(9 * 0.18, "feet"),
  8829. name: "Foot",
  8830. image: {
  8831. source: "./media/characters/starry-aqua/foot.svg"
  8832. }
  8833. }
  8834. },
  8835. [
  8836. {
  8837. name: "Micro",
  8838. height: math.unit(3, "inches")
  8839. },
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(9, "feet")
  8843. },
  8844. {
  8845. name: "Macro",
  8846. height: math.unit(300, "feet"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Megamacro",
  8851. height: math.unit(3200, "feet")
  8852. }
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(230, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/luka/front.svg",
  8864. extra: 1,
  8865. bottom: 0.025
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(12 + 8 / 12, "feet"),
  8873. default: true
  8874. },
  8875. {
  8876. name: "Minimacro",
  8877. height: math.unit(20, "feet")
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(250, "feet")
  8882. },
  8883. {
  8884. name: "Megamacro",
  8885. height: math.unit(5, "miles")
  8886. },
  8887. {
  8888. name: "Gigamacro",
  8889. height: math.unit(8000, "miles")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(150, "lb"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/natalie-nightring/front.svg",
  8902. extra: 1,
  8903. bottom: 0.06
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Uh Oh",
  8910. height: math.unit(0.1, "mm")
  8911. },
  8912. {
  8913. name: "Small",
  8914. height: math.unit(3, "inches")
  8915. },
  8916. {
  8917. name: "Human Scale",
  8918. height: math.unit(6, "feet")
  8919. },
  8920. {
  8921. name: "Librarian",
  8922. height: math.unit(50, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Immense",
  8927. height: math.unit(200, "miles")
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(180, "lbs"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/danni-rosie/front.svg",
  8940. extra: 1260 / 1128,
  8941. bottom: 0.022
  8942. }
  8943. },
  8944. },
  8945. [
  8946. {
  8947. name: "Micro",
  8948. height: math.unit(2, "inches"),
  8949. default: true
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(5 + 9 / 12, "feet"),
  8958. weight: math.unit(220, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/samantha-kruse/front.svg",
  8962. extra: (985 / 935),
  8963. bottom: 0.03
  8964. }
  8965. },
  8966. frontUndressed: {
  8967. height: math.unit(5 + 9 / 12, "feet"),
  8968. weight: math.unit(220, "lb"),
  8969. name: "Front (Undressed)",
  8970. image: {
  8971. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8972. extra: (973 / 923),
  8973. bottom: 0.025
  8974. }
  8975. },
  8976. fat: {
  8977. height: math.unit(5 + 9 / 12, "feet"),
  8978. weight: math.unit(900, "lb"),
  8979. name: "Front (Fat)",
  8980. image: {
  8981. source: "./media/characters/samantha-kruse/fat.svg",
  8982. extra: 2688 / 2561
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(5 + 9 / 12, "feet"),
  8990. default: true
  8991. }
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8996. {
  8997. back: {
  8998. height: math.unit(5 + 4 / 12, "feet"),
  8999. weight: math.unit(4963, "lb"),
  9000. name: "Back",
  9001. image: {
  9002. source: "./media/characters/amelia-rosie/back.svg",
  9003. extra: 1113 / 963,
  9004. bottom: 0.01
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Level 0",
  9011. height: math.unit(5 + 4 / 12, "feet")
  9012. },
  9013. {
  9014. name: "Level 1",
  9015. height: math.unit(164597, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Level 2",
  9020. height: math.unit(956243, "miles")
  9021. },
  9022. {
  9023. name: "Level 3",
  9024. height: math.unit(29421709423, "miles")
  9025. },
  9026. {
  9027. name: "Level 4",
  9028. height: math.unit(154, "lightyears")
  9029. },
  9030. {
  9031. name: "Level 5",
  9032. height: math.unit(4738272, "lightyears")
  9033. },
  9034. {
  9035. name: "Level 6",
  9036. height: math.unit(145787152896, "lightyears")
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(5 + 11 / 12, "feet"),
  9045. weight: math.unit(65, "kg"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/rook-kitara/front.svg",
  9049. extra: 1347 / 1274,
  9050. bottom: 0.005
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Totally Unfair",
  9057. height: math.unit(1.8, "mm")
  9058. },
  9059. {
  9060. name: "Lap Rookie",
  9061. height: math.unit(1.4, "feet")
  9062. },
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(5 + 11 / 12, "feet"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "How Did This Happen",
  9070. height: math.unit(80, "miles")
  9071. }
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(7, "feet"),
  9079. weight: math.unit(300, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/pisces/front.svg",
  9083. extra: 2255 / 2115,
  9084. bottom: 0.03
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(7, "feet"),
  9089. weight: math.unit(300, "lb"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/pisces/back.svg",
  9093. extra: 2146 / 2055,
  9094. bottom: 0.04
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(7, "feet"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Swimming Pool",
  9106. height: math.unit(12.2, "meters")
  9107. },
  9108. {
  9109. name: "Olympic Swimming Pool",
  9110. height: math.unit(56.3, "meters")
  9111. },
  9112. {
  9113. name: "Lake Superior",
  9114. height: math.unit(93900, "meters")
  9115. },
  9116. {
  9117. name: "Mediterranean Sea",
  9118. height: math.unit(644457, "meters")
  9119. },
  9120. {
  9121. name: "World's Oceans",
  9122. height: math.unit(4567491, "meters")
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(2.3, "meters"),
  9131. weight: math.unit(120, "kg"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/zelas/front.svg"
  9135. }
  9136. },
  9137. side: {
  9138. height: math.unit(2.3, "meters"),
  9139. weight: math.unit(120, "kg"),
  9140. name: "Side",
  9141. image: {
  9142. source: "./media/characters/zelas/side.svg"
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(2.3, "meters"),
  9147. weight: math.unit(120, "kg"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/zelas/back.svg"
  9151. }
  9152. },
  9153. foot: {
  9154. height: math.unit(1.116, "feet"),
  9155. name: "Foot",
  9156. image: {
  9157. source: "./media/characters/zelas/foot.svg"
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(2.3, "meters")
  9165. },
  9166. {
  9167. name: "Macro",
  9168. height: math.unit(30, "meters"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(1, "inch"),
  9178. weight: math.unit(0.21, "grams"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/talbot/front.svg",
  9182. extra: 594 / 544
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Micro",
  9189. height: math.unit(1, "inch"),
  9190. default: true
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9196. {
  9197. front: {
  9198. height: math.unit(3 + 3 / 12, "feet"),
  9199. weight: math.unit(51.8, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/fliss/front.svg",
  9203. extra: 840 / 640
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Teeny Tiny",
  9210. height: math.unit(1, "mm")
  9211. },
  9212. {
  9213. name: "Small",
  9214. height: math.unit(1, "inch"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Standard Sylveon",
  9219. height: math.unit(3 + 3 / 12, "feet")
  9220. },
  9221. {
  9222. name: "Large Nuisance",
  9223. height: math.unit(33, "feet")
  9224. },
  9225. {
  9226. name: "City Filler",
  9227. height: math.unit(3000, "feet")
  9228. },
  9229. {
  9230. name: "New Horizon",
  9231. height: math.unit(6000, "miles")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(5, "cm"),
  9240. weight: math.unit(1.94, "g"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/fleta/front.svg",
  9244. extra: 835 / 803
  9245. }
  9246. },
  9247. back: {
  9248. height: math.unit(5, "cm"),
  9249. weight: math.unit(1.94, "g"),
  9250. name: "Back",
  9251. image: {
  9252. source: "./media/characters/fleta/back.svg",
  9253. extra: 835 / 803
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Micro",
  9260. height: math.unit(5, "cm"),
  9261. default: true
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(6, "feet"),
  9270. weight: math.unit(225, "lb"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/dominic/front.svg",
  9274. extra: 1770 / 1620,
  9275. bottom: 0.025
  9276. }
  9277. },
  9278. back: {
  9279. height: math.unit(6, "feet"),
  9280. weight: math.unit(225, "lb"),
  9281. name: "Back",
  9282. image: {
  9283. source: "./media/characters/dominic/back.svg",
  9284. extra: 1745 / 1620,
  9285. bottom: 0.065
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Nano",
  9292. height: math.unit(0.1, "mm")
  9293. },
  9294. {
  9295. name: "Micro-",
  9296. height: math.unit(1, "mm")
  9297. },
  9298. {
  9299. name: "Micro",
  9300. height: math.unit(4, "inches")
  9301. },
  9302. {
  9303. name: "Normal",
  9304. height: math.unit(6 + 4 / 12, "feet"),
  9305. default: true
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(115, "feet")
  9310. },
  9311. {
  9312. name: "Macro+",
  9313. height: math.unit(955, "feet")
  9314. },
  9315. {
  9316. name: "Megamacro",
  9317. height: math.unit(8990, "feet")
  9318. },
  9319. {
  9320. name: "Gigmacro",
  9321. height: math.unit(9310, "miles")
  9322. },
  9323. {
  9324. name: "Teramacro",
  9325. height: math.unit(1567005010, "miles")
  9326. },
  9327. {
  9328. name: "Examacro",
  9329. height: math.unit(1425, "parsecs")
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(400, "feet"),
  9338. weight: math.unit(44444444, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/major-colonel/front.svg"
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(400, "feet"),
  9346. weight: math.unit(44444444, "lb"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/major-colonel/back.svg"
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Macro",
  9356. height: math.unit(400, "feet"),
  9357. default: true
  9358. },
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9363. {
  9364. catFront: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(120, "lb"),
  9367. name: "Front (Cat Side)",
  9368. image: {
  9369. source: "./media/characters/axel-lycan/cat-front.svg",
  9370. extra: 430 / 402,
  9371. bottom: 43 / 472.35
  9372. }
  9373. },
  9374. catBack: {
  9375. height: math.unit(6, "feet"),
  9376. weight: math.unit(120, "lb"),
  9377. name: "Back (Cat Side)",
  9378. image: {
  9379. source: "./media/characters/axel-lycan/cat-back.svg",
  9380. extra: 447 / 419,
  9381. bottom: 23.3 / 469
  9382. }
  9383. },
  9384. wolfFront: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(120, "lb"),
  9387. name: "Front (Wolf Side)",
  9388. image: {
  9389. source: "./media/characters/axel-lycan/wolf-front.svg",
  9390. extra: 485 / 456,
  9391. bottom: 19 / 504
  9392. }
  9393. },
  9394. wolfBack: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(120, "lb"),
  9397. name: "Back (Wolf Side)",
  9398. image: {
  9399. source: "./media/characters/axel-lycan/wolf-back.svg",
  9400. extra: 475 / 438,
  9401. bottom: 39.2 / 514
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(1, "km"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(5 + 9 / 12, "feet"),
  9418. weight: math.unit(175, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/vanrel-hyena/front.svg",
  9422. extra: 1086 / 1010,
  9423. bottom: 0.04
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(5 + 9 / 12, "feet"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(6, "feet"),
  9440. weight: math.unit(103, "lb"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/abbott-absol/front.svg",
  9444. extra: 2010 / 1842
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Megamicro",
  9451. height: math.unit(0.1, "mm")
  9452. },
  9453. {
  9454. name: "Micro",
  9455. height: math.unit(1, "inch")
  9456. },
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(6, "feet"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(264, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/hector/front.svg",
  9473. extra: 2280 / 2130,
  9474. bottom: 0.07
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(12.25, "foot"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(160, "feet")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/sal/front.svg",
  9499. extra: 1846 / 1699,
  9500. bottom: 0.04
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(10, "miles"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9514. {
  9515. front: {
  9516. height: math.unit(3, "meters"),
  9517. weight: math.unit(450, "kg"),
  9518. name: "front",
  9519. image: {
  9520. source: "./media/characters/ranger/front.svg",
  9521. extra: 2401 / 2243,
  9522. bottom: 0.05
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(3, "meters"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(14, "feet"),
  9539. weight: math.unit(800, "kg"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/theresa/front.svg",
  9543. extra: 3575 / 3346,
  9544. bottom: 0.03
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(14, "feet"),
  9552. default: true
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(3, "kg"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/ine/front.svg",
  9565. extra: 678 / 539,
  9566. bottom: 0.023
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(2.265, "feet"),
  9574. default: true
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(5, "feet"),
  9583. weight: math.unit(30, "kg"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/vial/front.svg",
  9587. extra: 1365 / 1277,
  9588. bottom: 0.04
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(5, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9602. {
  9603. side: {
  9604. height: math.unit(3.4, "meters"),
  9605. weight: math.unit(1000, "lb"),
  9606. name: "Side",
  9607. image: {
  9608. source: "./media/characters/rovoska/side.svg",
  9609. extra: 4403 / 1515
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(3.4, "meters"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(8, "feet"),
  9626. weight: math.unit(315, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/gunner-rotthbauer/front.svg"
  9630. }
  9631. },
  9632. back: {
  9633. height: math.unit(8, "feet"),
  9634. weight: math.unit(315, "lb"),
  9635. name: "Back",
  9636. image: {
  9637. source: "./media/characters/gunner-rotthbauer/back.svg"
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Micro",
  9644. height: math.unit(3.5, "inches")
  9645. },
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(8, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(250, "feet")
  9654. },
  9655. {
  9656. name: "Megamacro",
  9657. height: math.unit(1, "AU")
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(5 + 5 / 12, "feet"),
  9666. weight: math.unit(140, "lb"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/allatia/front.svg",
  9670. extra: 1227 / 1180,
  9671. bottom: 0.027
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(5 + 5 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(250, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Megamacro",
  9687. height: math.unit(8, "miles")
  9688. }
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(120, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/tene/front.svg",
  9700. extra: 1728 / 1578,
  9701. bottom: 0.022
  9702. }
  9703. },
  9704. stomping: {
  9705. height: math.unit(2.025, "meters"),
  9706. weight: math.unit(120, "lb"),
  9707. name: "Stomping",
  9708. image: {
  9709. source: "./media/characters/tene/stomping.svg",
  9710. extra: 938 / 873,
  9711. bottom: 0.01
  9712. }
  9713. },
  9714. sitting: {
  9715. height: math.unit(1, "meter"),
  9716. weight: math.unit(120, "lb"),
  9717. name: "Sitting",
  9718. image: {
  9719. source: "./media/characters/tene/sitting.svg",
  9720. extra: 437 / 415,
  9721. bottom: 0.1
  9722. }
  9723. },
  9724. feral: {
  9725. height: math.unit(3.9, "feet"),
  9726. weight: math.unit(250, "lb"),
  9727. name: "Feral",
  9728. image: {
  9729. source: "./media/characters/tene/feral.svg",
  9730. extra: 717 / 458,
  9731. bottom: 0.179
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(6, "feet")
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(300, "feet"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(5, "miles")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9753. {
  9754. side: {
  9755. height: math.unit(6, "feet"),
  9756. name: "Side",
  9757. image: {
  9758. source: "./media/characters/evander/side.svg",
  9759. extra: 877 / 477
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(0.83, "meters"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(12, "feet"),
  9776. weight: math.unit(1000, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9780. extra: 1762 / 1611
  9781. }
  9782. },
  9783. back: {
  9784. height: math.unit(12, "feet"),
  9785. weight: math.unit(1000, "lb"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9789. extra: 1762 / 1611
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(12, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Kaiju",
  9801. height: math.unit(150, "feet")
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(150, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/zero-alurus/front.svg"
  9814. }
  9815. },
  9816. back: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(150, "lb"),
  9819. name: "Back",
  9820. image: {
  9821. source: "./media/characters/zero-alurus/back.svg"
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 10 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(60, "feet"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Macro+",
  9837. height: math.unit(450, "feet")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(200, "lb"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/mega-shi/front.svg",
  9850. extra: 1279 / 1250,
  9851. bottom: 0.02
  9852. }
  9853. },
  9854. back: {
  9855. height: math.unit(6, "feet"),
  9856. weight: math.unit(200, "lb"),
  9857. name: "Back",
  9858. image: {
  9859. source: "./media/characters/mega-shi/back.svg",
  9860. extra: 1279 / 1250,
  9861. bottom: 0.02
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Micro",
  9868. height: math.unit(16 + 6 / 12, "feet")
  9869. },
  9870. {
  9871. name: "Third Dimension",
  9872. height: math.unit(40, "meters")
  9873. },
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(660, "feet"),
  9877. default: true
  9878. },
  9879. {
  9880. name: "Megamacro",
  9881. height: math.unit(10, "miles")
  9882. },
  9883. {
  9884. name: "Planetary Launch",
  9885. height: math.unit(500, "miles")
  9886. },
  9887. {
  9888. name: "Interstellar",
  9889. height: math.unit(1e9, "miles")
  9890. },
  9891. {
  9892. name: "Leaving the Universe",
  9893. height: math.unit(1, "gigaparsec")
  9894. },
  9895. {
  9896. name: "Travelling Universes",
  9897. height: math.unit(30e15, "parsecs")
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(6, "feet"),
  9906. weight: math.unit(150, "lb"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/odyssey/front.svg",
  9910. extra: 1782 / 1582,
  9911. bottom: 0.01
  9912. }
  9913. },
  9914. side: {
  9915. height: math.unit(5.7, "feet"),
  9916. weight: math.unit(140, "lb"),
  9917. name: "Side",
  9918. image: {
  9919. source: "./media/characters/odyssey/side.svg",
  9920. extra: 6462 / 5700
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(5 + 4 / 12, "feet")
  9928. },
  9929. {
  9930. name: "Macro",
  9931. height: math.unit(1, "km")
  9932. },
  9933. {
  9934. name: "Megamacro",
  9935. height: math.unit(3000, "km")
  9936. },
  9937. {
  9938. name: "Gigamacro",
  9939. height: math.unit(1, "AU"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Omniversal",
  9944. height: math.unit(100e14, "lightyears")
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(300, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/mekuto/front.svg",
  9957. extra: 921 / 832,
  9958. bottom: 0.03
  9959. }
  9960. },
  9961. hand: {
  9962. height: math.unit(6 / 10.24, "feet"),
  9963. name: "Hand",
  9964. image: {
  9965. source: "./media/characters/mekuto/hand.svg"
  9966. }
  9967. },
  9968. foot: {
  9969. height: math.unit(6 / 5.05, "feet"),
  9970. name: "Foot",
  9971. image: {
  9972. source: "./media/characters/mekuto/foot.svg"
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Minimicro",
  9979. height: math.unit(0.2, "inches")
  9980. },
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(1.5, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(5 + 11 / 12, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Minimacro",
  9992. height: math.unit(17 + 9 / 12, "feet")
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(177.5, "feet")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(152, "miles")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6.5, "inches"),
  10009. weight: math.unit(13, "oz"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/dafydd-tomos/front.svg",
  10013. extra: 2990 / 2603,
  10014. bottom: 0.03
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Micro",
  10021. height: math.unit(6.5, "inches"),
  10022. default: true
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/splinter/front.svg",
  10035. extra: 2990 / 2882,
  10036. bottom: 0.04
  10037. }
  10038. },
  10039. back: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/splinter/back.svg",
  10045. extra: 2990 / 2882,
  10046. bottom: 0.04
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(6, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(230, "meters"),
  10058. default: true
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10064. {
  10065. front: {
  10066. height: math.unit(4 + 10 / 12, "feet"),
  10067. weight: math.unit(480, "lb"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/snow-gabumon/front.svg",
  10071. extra: 1140 / 963,
  10072. bottom: 0.058
  10073. }
  10074. },
  10075. back: {
  10076. height: math.unit(4 + 10 / 12, "feet"),
  10077. weight: math.unit(480, "lb"),
  10078. name: "Back",
  10079. image: {
  10080. source: "./media/characters/snow-gabumon/back.svg",
  10081. extra: 1115 / 962,
  10082. bottom: 0.041
  10083. }
  10084. },
  10085. frontUndresed: {
  10086. height: math.unit(4 + 10 / 12, "feet"),
  10087. weight: math.unit(480, "lb"),
  10088. name: "Front (Undressed)",
  10089. image: {
  10090. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10091. extra: 1061 / 960,
  10092. bottom: 0.045
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Micro",
  10099. height: math.unit(1, "inch")
  10100. },
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(4 + 10 / 12, "feet"),
  10104. default: true
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(200, "feet")
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(120, "miles")
  10113. },
  10114. {
  10115. name: "Gigamacro",
  10116. height: math.unit(9800, "miles")
  10117. },
  10118. ]
  10119. ))
  10120. characterMakers.push(() => makeCharacter(
  10121. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10122. {
  10123. front: {
  10124. height: math.unit(1.7, "meters"),
  10125. weight: math.unit(140, "lb"),
  10126. name: "Front",
  10127. image: {
  10128. source: "./media/characters/moody/front.svg",
  10129. extra: 3226 / 3007,
  10130. bottom: 0.087
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(1, "mm")
  10138. },
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(1.7, "meters"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(80, "meters")
  10147. },
  10148. {
  10149. name: "Macro+",
  10150. height: math.unit(500, "meters")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/zyas/front.svg",
  10163. extra: 1180 / 1120,
  10164. bottom: 0.045
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(10, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(500, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(5, "miles")
  10181. },
  10182. {
  10183. name: "Teramacro",
  10184. height: math.unit(150000, "miles")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(150, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/cuon/front.svg",
  10197. extra: 1390 / 1320,
  10198. bottom: 0.008
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(3, "inches")
  10206. },
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(18 + 9 / 12, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(360, "feet")
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(360, "miles")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(2.4, "meters"),
  10227. weight: math.unit(70, "kg"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/nyanuxk/front.svg",
  10231. extra: 1172 / 1084,
  10232. bottom: 0.065
  10233. }
  10234. },
  10235. side: {
  10236. height: math.unit(2.4, "meters"),
  10237. weight: math.unit(70, "kg"),
  10238. name: "Side",
  10239. image: {
  10240. source: "./media/characters/nyanuxk/side.svg",
  10241. extra: 1190 / 1132,
  10242. bottom: 0.007
  10243. }
  10244. },
  10245. back: {
  10246. height: math.unit(2.4, "meters"),
  10247. weight: math.unit(70, "kg"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/nyanuxk/back.svg",
  10251. extra: 1200 / 1141,
  10252. bottom: 0.015
  10253. }
  10254. },
  10255. foot: {
  10256. height: math.unit(0.52, "meters"),
  10257. name: "Foot",
  10258. image: {
  10259. source: "./media/characters/nyanuxk/foot.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(2, "cm")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(2.4, "meters"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Smaller Macro",
  10275. height: math.unit(120, "meters")
  10276. },
  10277. {
  10278. name: "Bigger Macro",
  10279. height: math.unit(1.2, "km")
  10280. },
  10281. {
  10282. name: "Megamacro",
  10283. height: math.unit(15, "kilometers")
  10284. },
  10285. {
  10286. name: "Gigamacro",
  10287. height: math.unit(2000, "km")
  10288. },
  10289. {
  10290. name: "Teramacro",
  10291. height: math.unit(500000, "km")
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10297. {
  10298. side: {
  10299. height: math.unit(6, "feet"),
  10300. name: "Side",
  10301. image: {
  10302. source: "./media/characters/ailbhe/side.svg",
  10303. extra: 757 / 464,
  10304. bottom: 0.041
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Normal",
  10311. height: math.unit(1.07, "meters"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(120, "kg"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/zevulfius/front.svg",
  10325. extra: 965 / 903
  10326. }
  10327. },
  10328. side: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(120, "kg"),
  10331. name: "Side",
  10332. image: {
  10333. source: "./media/characters/zevulfius/side.svg",
  10334. extra: 939 / 900
  10335. }
  10336. },
  10337. back: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(120, "kg"),
  10340. name: "Back",
  10341. image: {
  10342. source: "./media/characters/zevulfius/back.svg",
  10343. extra: 918 / 854,
  10344. bottom: 0.005
  10345. }
  10346. },
  10347. foot: {
  10348. height: math.unit(6 / 3.72, "feet"),
  10349. name: "Foot",
  10350. image: {
  10351. source: "./media/characters/zevulfius/foot.svg"
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(750, "meters")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(20, "km"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Gigamacro",
  10367. height: math.unit(2000, "km")
  10368. },
  10369. {
  10370. name: "Teramacro",
  10371. height: math.unit(250000, "km")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(100, "feet"),
  10380. weight: math.unit(350, "kg"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/rikes/front.svg",
  10384. extra: 1565 / 1483,
  10385. bottom: 0.017
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(100, "feet"),
  10393. default: true
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10399. {
  10400. anthro: {
  10401. height: math.unit(8, "feet"),
  10402. weight: math.unit(120, "kg"),
  10403. name: "Anthro",
  10404. image: {
  10405. source: "./media/characters/adam-silver-mane/anthro.svg",
  10406. extra: 5743 / 5339,
  10407. bottom: 0.07
  10408. }
  10409. },
  10410. taur: {
  10411. height: math.unit(16, "feet"),
  10412. weight: math.unit(1500, "kg"),
  10413. name: "Taur",
  10414. image: {
  10415. source: "./media/characters/adam-silver-mane/taur.svg",
  10416. extra: 1713 / 1571,
  10417. bottom: 0.01
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(8, "feet")
  10425. },
  10426. {
  10427. name: "Minimacro",
  10428. height: math.unit(80, "feet")
  10429. },
  10430. {
  10431. name: "Macro",
  10432. height: math.unit(800, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Megamacro",
  10437. height: math.unit(8000, "feet")
  10438. },
  10439. {
  10440. name: "Gigamacro",
  10441. height: math.unit(800, "miles")
  10442. },
  10443. {
  10444. name: "Teramacro",
  10445. height: math.unit(80000, "miles")
  10446. },
  10447. {
  10448. name: "Celestial",
  10449. height: math.unit(8e6, "miles")
  10450. },
  10451. {
  10452. name: "Star Dragon",
  10453. height: math.unit(800000, "parsecs")
  10454. },
  10455. {
  10456. name: "Godly",
  10457. height: math.unit(800, "teraparsecs")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/ky'owin/front.svg",
  10470. extra: 3888 / 3068,
  10471. bottom: 0.015
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(6 + 8 / 12, "feet")
  10479. },
  10480. {
  10481. name: "Large",
  10482. height: math.unit(68, "feet")
  10483. },
  10484. {
  10485. name: "Macro",
  10486. height: math.unit(132, "feet")
  10487. },
  10488. {
  10489. name: "Macro+",
  10490. height: math.unit(340, "feet")
  10491. },
  10492. {
  10493. name: "Macro++",
  10494. height: math.unit(680, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Megamacro",
  10499. height: math.unit(1, "mile")
  10500. },
  10501. {
  10502. name: "Megamacro+",
  10503. height: math.unit(10, "miles")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(4, "feet"),
  10512. weight: math.unit(50, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/mal/front.svg",
  10516. extra: 785 / 724,
  10517. bottom: 0.07
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(4, "inches")
  10525. },
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(4, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(200, "feet")
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/jordan-deware/front.svg",
  10546. extra: 1191 / 1012
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Nano",
  10553. height: math.unit(0.01, "mm")
  10554. },
  10555. {
  10556. name: "Minimicro",
  10557. height: math.unit(1, "mm")
  10558. },
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(0.5, "inches")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(4, "feet"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Minimacro",
  10570. height: math.unit(40, "meters")
  10571. },
  10572. {
  10573. name: "Small Macro",
  10574. height: math.unit(400, "meters")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(4, "miles")
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(40, "miles")
  10583. },
  10584. {
  10585. name: "Megamacro+",
  10586. height: math.unit(400, "miles")
  10587. },
  10588. {
  10589. name: "Gigamacro",
  10590. height: math.unit(400000, "miles")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10596. {
  10597. side: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(150, "lb"),
  10600. name: "Side",
  10601. image: {
  10602. source: "./media/characters/kimiko/side.svg",
  10603. extra: 600 / 358
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(15, "feet"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(220, "feet")
  10616. },
  10617. {
  10618. name: "Macro+",
  10619. height: math.unit(1450, "feet")
  10620. },
  10621. {
  10622. name: "Megamacro",
  10623. height: math.unit(11500, "feet")
  10624. },
  10625. {
  10626. name: "Gigamacro",
  10627. height: math.unit(9500, "miles")
  10628. },
  10629. {
  10630. name: "Teramacro",
  10631. height: math.unit(2208005005, "miles")
  10632. },
  10633. {
  10634. name: "Examacro",
  10635. height: math.unit(2750, "parsecs")
  10636. },
  10637. {
  10638. name: "Zettamacro",
  10639. height: math.unit(101500, "parsecs")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(70, "kg"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/andrew-sleepy/front.svg"
  10652. }
  10653. },
  10654. side: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(70, "kg"),
  10657. name: "Side",
  10658. image: {
  10659. source: "./media/characters/andrew-sleepy/side.svg"
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Micro",
  10666. height: math.unit(1, "mm"),
  10667. default: true
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(150, "lb"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/judio/front.svg",
  10680. extra: 1258 / 1110
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(5 + 6 / 12, "feet")
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(1000, "feet"),
  10692. default: true
  10693. },
  10694. {
  10695. name: "Megamacro",
  10696. height: math.unit(10, "miles")
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(68, "kg"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/nomaxice/front.svg",
  10709. extra: 1498 / 1073,
  10710. bottom: 0.075
  10711. }
  10712. },
  10713. foot: {
  10714. height: math.unit(1.1, "feet"),
  10715. name: "Foot",
  10716. image: {
  10717. source: "./media/characters/nomaxice/foot.svg"
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Micro",
  10724. height: math.unit(8, "cm")
  10725. },
  10726. {
  10727. name: "Norm",
  10728. height: math.unit(1.82, "m")
  10729. },
  10730. {
  10731. name: "Norm+",
  10732. height: math.unit(8.8, "feet")
  10733. },
  10734. {
  10735. name: "Big",
  10736. height: math.unit(8, "meters"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(18, "meters")
  10742. },
  10743. {
  10744. name: "Macro+",
  10745. height: math.unit(88, "meters")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(12, "feet"),
  10754. weight: math.unit(1.5, "tons"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/dydros/front.svg",
  10758. extra: 863 / 800,
  10759. bottom: 0.015
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(12, "feet"),
  10764. weight: math.unit(1.5, "tons"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/dydros/back.svg",
  10768. extra: 900 / 843,
  10769. bottom: 0.005
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(12, "feet"),
  10777. default: true
  10778. },
  10779. ]
  10780. ))
  10781. characterMakers.push(() => makeCharacter(
  10782. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10783. {
  10784. front: {
  10785. height: math.unit(6, "feet"),
  10786. weight: math.unit(100, "kg"),
  10787. name: "Front",
  10788. image: {
  10789. source: "./media/characters/riggi/front.svg",
  10790. extra: 5787 / 5303
  10791. }
  10792. },
  10793. hyper: {
  10794. height: math.unit(6 * 5 / 3, "feet"),
  10795. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10796. name: "Hyper",
  10797. image: {
  10798. source: "./media/characters/riggi/hyper.svg",
  10799. extra: 3595 / 3485
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Small Macro",
  10806. height: math.unit(50, "feet")
  10807. },
  10808. {
  10809. name: "Default",
  10810. height: math.unit(200, "feet"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Loom",
  10815. height: math.unit(10000, "feet")
  10816. },
  10817. {
  10818. name: "Cruising Altitude",
  10819. height: math.unit(30000, "feet")
  10820. },
  10821. {
  10822. name: "Megamacro",
  10823. height: math.unit(100, "miles")
  10824. },
  10825. {
  10826. name: "Continent Sized",
  10827. height: math.unit(2800, "miles")
  10828. },
  10829. {
  10830. name: "Earth Sized",
  10831. height: math.unit(8000, "miles")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(250, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/alexi/front.svg",
  10844. extra: 3483 / 3291,
  10845. bottom: 0.04
  10846. }
  10847. },
  10848. back: {
  10849. height: math.unit(6, "feet"),
  10850. weight: math.unit(250, "lb"),
  10851. name: "Back",
  10852. image: {
  10853. source: "./media/characters/alexi/back.svg",
  10854. extra: 3533 / 3356,
  10855. bottom: 0.021
  10856. }
  10857. },
  10858. frontTransforming: {
  10859. height: math.unit(8.58, "feet"),
  10860. weight: math.unit(1300, "lb"),
  10861. name: "Transforming",
  10862. image: {
  10863. source: "./media/characters/alexi/front-transforming.svg",
  10864. extra: 437 / 409,
  10865. bottom: 19 / 458.66
  10866. }
  10867. },
  10868. frontTransformed: {
  10869. height: math.unit(12.5, "feet"),
  10870. weight: math.unit(4000, "lb"),
  10871. name: "Transformed",
  10872. image: {
  10873. source: "./media/characters/alexi/front-transformed.svg",
  10874. extra: 639 / 614,
  10875. bottom: 30.55 / 671
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(14, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Minimacro",
  10887. height: math.unit(30, "meters")
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(500, "meters")
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(9000, "km")
  10896. },
  10897. {
  10898. name: "Teramacro",
  10899. height: math.unit(384000, "km")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/kayroo/front.svg",
  10912. extra: 1153 / 1038,
  10913. bottom: 0.06
  10914. }
  10915. },
  10916. foot: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Foot",
  10920. image: {
  10921. source: "./media/characters/kayroo/foot.svg"
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(8, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Minimacro",
  10933. height: math.unit(250, "feet")
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(2800, "feet")
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(5200, "feet")
  10942. },
  10943. {
  10944. name: "Gigamacro",
  10945. height: math.unit(27000, "feet")
  10946. },
  10947. {
  10948. name: "Omega",
  10949. height: math.unit(45000, "feet")
  10950. },
  10951. ]
  10952. ))
  10953. characterMakers.push(() => makeCharacter(
  10954. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10955. {
  10956. front: {
  10957. height: math.unit(18, "feet"),
  10958. weight: math.unit(5800, "lb"),
  10959. name: "Front",
  10960. image: {
  10961. source: "./media/characters/rhys/front.svg",
  10962. extra: 3386 / 3090,
  10963. bottom: 0.07
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(18, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Working Size",
  10975. height: math.unit(200, "feet")
  10976. },
  10977. {
  10978. name: "Demolition Size",
  10979. height: math.unit(2000, "feet")
  10980. },
  10981. {
  10982. name: "Maximum Licensed Size",
  10983. height: math.unit(5, "miles")
  10984. },
  10985. {
  10986. name: "Maximum Observed Size",
  10987. height: math.unit(10, "yottameters")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(6, "feet"),
  10996. weight: math.unit(250, "lb"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/toto/front.svg",
  11000. extra: 527 / 479,
  11001. bottom: 0.05
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Micro",
  11008. height: math.unit(3, "feet")
  11009. },
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(10, "feet")
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(150, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(1200, "feet")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "King", species: ["lion"], tags: ["anthro"] },
  11027. {
  11028. back: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(150, "lb"),
  11031. name: "Back",
  11032. image: {
  11033. source: "./media/characters/king/back.svg"
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Micro",
  11040. height: math.unit(2, "inches")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(8, "feet")
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(200, "feet"),
  11049. default: true
  11050. },
  11051. {
  11052. name: "Megamacro",
  11053. height: math.unit(50, "miles")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11059. {
  11060. anthro: {
  11061. height: math.unit(6 + 5 / 12, "feet"),
  11062. weight: math.unit(280, "lb"),
  11063. name: "Anthro",
  11064. image: {
  11065. source: "./media/characters/cordite/anthro.svg",
  11066. extra: 1986 / 1905,
  11067. bottom: 0.025
  11068. }
  11069. },
  11070. feral: {
  11071. height: math.unit(2, "feet"),
  11072. weight: math.unit(90, "lb"),
  11073. name: "Feral",
  11074. image: {
  11075. source: "./media/characters/cordite/feral.svg",
  11076. extra: 1260 / 755,
  11077. bottom: 0.05
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Normal",
  11084. height: math.unit(6 + 5 / 12, "feet"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(150, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/pianostrong/front.svg",
  11098. extra: 6577 / 6254,
  11099. bottom: 0.02
  11100. }
  11101. },
  11102. side: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Side",
  11106. image: {
  11107. source: "./media/characters/pianostrong/side.svg",
  11108. extra: 6106 / 5730
  11109. }
  11110. },
  11111. back: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Back",
  11115. image: {
  11116. source: "./media/characters/pianostrong/back.svg",
  11117. extra: 6085 / 5733,
  11118. bottom: 0.01
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(100, "feet")
  11126. },
  11127. {
  11128. name: "Macro+",
  11129. height: math.unit(300, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Macro++",
  11134. height: math.unit(1000, "feet")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/kona/front.svg",
  11147. extra: 2960 / 2629,
  11148. bottom: 0.005
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(11 + 8 / 12, "feet")
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(850, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Macro+",
  11164. height: math.unit(1.5, "km"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Megamacro",
  11169. height: math.unit(80, "miles")
  11170. },
  11171. {
  11172. name: "Gigamacro",
  11173. height: math.unit(3500, "miles")
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11179. {
  11180. side: {
  11181. height: math.unit(1.9, "meters"),
  11182. weight: math.unit(326, "kg"),
  11183. name: "Side",
  11184. image: {
  11185. source: "./media/characters/levi/side.svg",
  11186. extra: 1704 / 1334,
  11187. bottom: 0.02
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(1.9, "meters"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(20, "meters")
  11200. },
  11201. {
  11202. name: "Macro+",
  11203. height: math.unit(200, "meters")
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(2, "km")
  11208. },
  11209. {
  11210. name: "Megamacro+",
  11211. height: math.unit(20, "km")
  11212. },
  11213. {
  11214. name: "Gigamacro",
  11215. height: math.unit(2500, "km")
  11216. },
  11217. {
  11218. name: "Gigamacro+",
  11219. height: math.unit(120000, "km")
  11220. },
  11221. {
  11222. name: "Teramacro",
  11223. height: math.unit(7.77e6, "km")
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(6 + 4/12, "feet"),
  11232. weight: math.unit(190, "lb"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/bmc/front.svg",
  11236. extra: 1626/1472,
  11237. bottom: 79/1705
  11238. }
  11239. },
  11240. back: {
  11241. height: math.unit(6 + 4/12, "feet"),
  11242. weight: math.unit(190, "lb"),
  11243. name: "Back",
  11244. image: {
  11245. source: "./media/characters/bmc/back.svg",
  11246. extra: 1640/1479,
  11247. bottom: 45/1685
  11248. }
  11249. },
  11250. frontArmor: {
  11251. height: math.unit(6 + 4/12, "feet"),
  11252. weight: math.unit(190, "lb"),
  11253. name: "Front-armor",
  11254. image: {
  11255. source: "./media/characters/bmc/front-armor.svg",
  11256. extra: 1538/1468,
  11257. bottom: 79/1617
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Human-sized",
  11264. height: math.unit(6 + 4 / 12, "feet")
  11265. },
  11266. {
  11267. name: "Interactive Size",
  11268. height: math.unit(25, "feet")
  11269. },
  11270. {
  11271. name: "Small",
  11272. height: math.unit(250, "feet")
  11273. },
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(1250, "feet"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Good Day",
  11281. height: math.unit(88, "miles")
  11282. },
  11283. {
  11284. name: "Largest Measured Size",
  11285. height: math.unit(105.960, "galaxies")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(20, "feet"),
  11294. weight: math.unit(2016, "kg"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/sven-the-kaiju/front.svg",
  11298. extra: 1277/1250,
  11299. bottom: 35/1312
  11300. }
  11301. },
  11302. mouth: {
  11303. height: math.unit(1.85, "feet"),
  11304. name: "Mouth",
  11305. image: {
  11306. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Fairy",
  11313. height: math.unit(6, "inches")
  11314. },
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(20, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Rampage",
  11322. height: math.unit(200, "feet")
  11323. },
  11324. {
  11325. name: "Archfey Forest Guardian",
  11326. height: math.unit(1, "mile")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(4, "meters"),
  11335. weight: math.unit(2, "tons"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/marik/front.svg",
  11339. extra: 1057 / 1003,
  11340. bottom: 0.08
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Normal",
  11347. height: math.unit(4, "meters"),
  11348. default: true
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(20, "meters")
  11353. },
  11354. {
  11355. name: "Megamacro",
  11356. height: math.unit(50, "km")
  11357. },
  11358. {
  11359. name: "Gigamacro",
  11360. height: math.unit(100, "km")
  11361. },
  11362. {
  11363. name: "Alpha Macro",
  11364. height: math.unit(7.88e7, "yottameters")
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11370. {
  11371. front: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(110, "lb"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/mel/front.svg",
  11377. extra: 736 / 617,
  11378. bottom: 0.017
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Pico",
  11385. height: math.unit(3, "pm")
  11386. },
  11387. {
  11388. name: "Nano",
  11389. height: math.unit(3, "nm")
  11390. },
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(0.3, "mm"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Micro+",
  11398. height: math.unit(3, "mm")
  11399. },
  11400. {
  11401. name: "Normal",
  11402. height: math.unit(5 + 10.5 / 12, "feet")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11408. {
  11409. kaiju: {
  11410. height: math.unit(1.75, "meters"),
  11411. weight: math.unit(55, "kg"),
  11412. name: "Kaiju",
  11413. image: {
  11414. source: "./media/characters/lykonous/kaiju.svg",
  11415. extra: 1055 / 946,
  11416. bottom: 0.135
  11417. }
  11418. },
  11419. },
  11420. [
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(2.5, "meters"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Kaiju Dragon",
  11428. height: math.unit(60, "meters")
  11429. },
  11430. {
  11431. name: "Mega Kaiju",
  11432. height: math.unit(120, "km")
  11433. },
  11434. {
  11435. name: "Giga Kaiju",
  11436. height: math.unit(200, "megameters")
  11437. },
  11438. {
  11439. name: "Terra Kaiju",
  11440. height: math.unit(400, "gigameters")
  11441. },
  11442. {
  11443. name: "Kaiju Dragon God",
  11444. height: math.unit(13000, "exaparsecs")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/blü/front.svg",
  11457. extra: 1883 / 1564,
  11458. bottom: 0.031
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(13, "feet"),
  11466. default: true
  11467. },
  11468. {
  11469. name: "Big Boi",
  11470. height: math.unit(150, "meters")
  11471. },
  11472. {
  11473. name: "Mini Stomper",
  11474. height: math.unit(300, "meters")
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(1000, "meters")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(11000, "meters")
  11483. },
  11484. {
  11485. name: "Gigamacro",
  11486. height: math.unit(11000, "km")
  11487. },
  11488. {
  11489. name: "Teramacro",
  11490. height: math.unit(420000, "km")
  11491. },
  11492. {
  11493. name: "Examacro",
  11494. height: math.unit(120, "parsecs")
  11495. },
  11496. {
  11497. name: "God Tho",
  11498. height: math.unit(98000000000, "parsecs")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11504. {
  11505. taurFront: {
  11506. height: math.unit(6, "feet"),
  11507. weight: math.unit(200, "lb"),
  11508. name: "Taur (Front)",
  11509. image: {
  11510. source: "./media/characters/scales/taur-front.svg",
  11511. extra: 1,
  11512. bottom: 0.05
  11513. }
  11514. },
  11515. taurBack: {
  11516. height: math.unit(6, "feet"),
  11517. weight: math.unit(200, "lb"),
  11518. name: "Taur (Back)",
  11519. image: {
  11520. source: "./media/characters/scales/taur-back.svg",
  11521. extra: 1,
  11522. bottom: 0.08
  11523. }
  11524. },
  11525. anthro: {
  11526. height: math.unit(6 * 7 / 12, "feet"),
  11527. weight: math.unit(100, "lb"),
  11528. name: "Anthro",
  11529. image: {
  11530. source: "./media/characters/scales/anthro.svg",
  11531. extra: 1,
  11532. bottom: 0.06
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(12, "feet"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(150, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/koragos/front.svg",
  11553. extra: 841 / 794,
  11554. bottom: 0.035
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(150, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/koragos/back.svg",
  11563. extra: 841 / 810,
  11564. bottom: 0.022
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(6 + 11 / 12, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(490, "feet")
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(10, "miles")
  11581. },
  11582. {
  11583. name: "Gigamacro",
  11584. height: math.unit(50, "miles")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(250, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/xylrem/front.svg",
  11597. extra: 3323 / 3050,
  11598. bottom: 0.065
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Micro",
  11605. height: math.unit(4, "feet")
  11606. },
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(16, "feet"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Macro",
  11614. height: math.unit(2720, "feet")
  11615. },
  11616. {
  11617. name: "Megamacro",
  11618. height: math.unit(25000, "miles")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(8, "feet"),
  11627. weight: math.unit(250, "kg"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/ikideru/front.svg",
  11631. extra: 930 / 870,
  11632. bottom: 0.087
  11633. }
  11634. },
  11635. back: {
  11636. height: math.unit(8, "feet"),
  11637. weight: math.unit(250, "kg"),
  11638. name: "Back",
  11639. image: {
  11640. source: "./media/characters/ikideru/back.svg",
  11641. extra: 919 / 852,
  11642. bottom: 0.055
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Rare",
  11649. height: math.unit(8, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Playful Loom",
  11654. height: math.unit(80, "feet")
  11655. },
  11656. {
  11657. name: "City Leaner",
  11658. height: math.unit(230, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(2500, "feet")
  11663. },
  11664. {
  11665. name: "Gigamacro",
  11666. height: math.unit(26400, "feet")
  11667. },
  11668. {
  11669. name: "Tectonic Shifter",
  11670. height: math.unit(1.7, "megameters")
  11671. },
  11672. {
  11673. name: "Planet Carer",
  11674. height: math.unit(21, "megameters")
  11675. },
  11676. {
  11677. name: "God",
  11678. height: math.unit(11157.22, "parsecs")
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(120, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/neo/front.svg"
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(2, "inches"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Human Size",
  11702. height: math.unit(5 + 8 / 12, "feet")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(13 + 10 / 12, "feet"),
  11711. weight: math.unit(5320, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/chauncey-chantz/front.svg",
  11715. extra: 1587 / 1435,
  11716. bottom: 0.02
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(13 + 10 / 12, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(45, "feet")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(250, "miles")
  11733. },
  11734. {
  11735. name: "Planetary",
  11736. height: math.unit(10000, "miles")
  11737. },
  11738. {
  11739. name: "Galactic",
  11740. height: math.unit(40000, "parsecs")
  11741. },
  11742. {
  11743. name: "Universal",
  11744. height: math.unit(1, "yottameter")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/epifox/front.svg",
  11757. extra: 1,
  11758. bottom: 0.075
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Micro",
  11765. height: math.unit(6, "inches")
  11766. },
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(12, "feet"),
  11770. default: true
  11771. },
  11772. {
  11773. name: "Macro",
  11774. height: math.unit(3810, "feet")
  11775. },
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(500, "miles")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11784. {
  11785. front: {
  11786. height: math.unit(1.8796, "m"),
  11787. weight: math.unit(230, "lb"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/colin-t/front.svg",
  11791. extra: 1272 / 1193,
  11792. bottom: 0.07
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Micro",
  11799. height: math.unit(0.571, "meters")
  11800. },
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(1.8796, "meters"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Tall",
  11808. height: math.unit(4, "meters")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(67.241, "meters")
  11813. },
  11814. {
  11815. name: "Megamacro",
  11816. height: math.unit(371.856, "meters")
  11817. },
  11818. {
  11819. name: "Planetary",
  11820. height: math.unit(12631.5689, "km")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(1.85, "meters"),
  11829. weight: math.unit(80, "kg"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/matvei/front.svg",
  11833. extra: 614 / 594,
  11834. bottom: 0.01
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(1.85, "meters"),
  11842. default: true
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(5 + 9 / 12, "feet"),
  11851. weight: math.unit(70, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/quincy/front.svg",
  11855. extra: 3041 / 2751
  11856. }
  11857. },
  11858. back: {
  11859. height: math.unit(5 + 9 / 12, "feet"),
  11860. weight: math.unit(70, "lb"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/quincy/back.svg",
  11864. extra: 3041 / 2751
  11865. }
  11866. },
  11867. flying: {
  11868. height: math.unit(5 + 4 / 12, "feet"),
  11869. weight: math.unit(70, "lb"),
  11870. name: "Flying",
  11871. image: {
  11872. source: "./media/characters/quincy/flying.svg",
  11873. extra: 1044 / 930
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Micro",
  11880. height: math.unit(3, "cm")
  11881. },
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(5 + 9 / 12, "feet")
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(200, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(1000, "meters")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(3 + 11/12, "feet"),
  11902. weight: math.unit(50, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/vanrel/front.svg",
  11906. extra: 1104/949,
  11907. bottom: 52/1156
  11908. }
  11909. },
  11910. back: {
  11911. height: math.unit(3 + 11/12, "feet"),
  11912. weight: math.unit(50, "lb"),
  11913. name: "Back",
  11914. image: {
  11915. source: "./media/characters/vanrel/back.svg",
  11916. extra: 1119/976,
  11917. bottom: 37/1156
  11918. }
  11919. },
  11920. tome: {
  11921. height: math.unit(1.35, "feet"),
  11922. weight: math.unit(10, "lb"),
  11923. name: "Vanrel's Tome",
  11924. rename: true,
  11925. image: {
  11926. source: "./media/characters/vanrel/tome.svg"
  11927. }
  11928. },
  11929. beans: {
  11930. height: math.unit(0.89, "feet"),
  11931. name: "Beans",
  11932. image: {
  11933. source: "./media/characters/vanrel/beans.svg"
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(3 + 11/12, "feet"),
  11941. default: true
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(7 + 5 / 12, "feet"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/kuiper-vanrel/front.svg",
  11953. extra: 1219/1169,
  11954. bottom: 69/1288
  11955. }
  11956. },
  11957. back: {
  11958. height: math.unit(7 + 5 / 12, "feet"),
  11959. name: "Back",
  11960. image: {
  11961. source: "./media/characters/kuiper-vanrel/back.svg",
  11962. extra: 1236/1193,
  11963. bottom: 27/1263
  11964. }
  11965. },
  11966. foot: {
  11967. height: math.unit(0.55, "meters"),
  11968. name: "Foot",
  11969. image: {
  11970. source: "./media/characters/kuiper-vanrel/foot.svg",
  11971. }
  11972. },
  11973. battle: {
  11974. height: math.unit(6.824, "feet"),
  11975. name: "Battle",
  11976. image: {
  11977. source: "./media/characters/kuiper-vanrel/battle.svg",
  11978. extra: 1466 / 1327,
  11979. bottom: 29 / 1492.5
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(7 + 5 / 12, "feet"),
  11987. default: true
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(8 + 5 / 12, "feet"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/keset-vanrel/front.svg",
  11999. extra: 1231/1148,
  12000. bottom: 82/1313
  12001. }
  12002. },
  12003. back: {
  12004. height: math.unit(8 + 5 / 12, "feet"),
  12005. name: "Back",
  12006. image: {
  12007. source: "./media/characters/keset-vanrel/back.svg",
  12008. extra: 1240/1174,
  12009. bottom: 33/1273
  12010. }
  12011. },
  12012. hand: {
  12013. height: math.unit(0.6, "meters"),
  12014. name: "Hand",
  12015. image: {
  12016. source: "./media/characters/keset-vanrel/hand.svg"
  12017. }
  12018. },
  12019. foot: {
  12020. height: math.unit(0.94978, "meters"),
  12021. name: "Foot",
  12022. image: {
  12023. source: "./media/characters/keset-vanrel/foot.svg"
  12024. }
  12025. },
  12026. battle: {
  12027. height: math.unit(7.408, "feet"),
  12028. name: "Battle",
  12029. image: {
  12030. source: "./media/characters/keset-vanrel/battle.svg",
  12031. extra: 1890 / 1386,
  12032. bottom: 73.28 / 1970
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(8 + 5 / 12, "feet"),
  12040. default: true
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(150, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/neos/front.svg",
  12053. extra: 1696 / 992,
  12054. bottom: 0.14
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(54, "cm"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(100, "m")
  12067. },
  12068. {
  12069. name: "Megamacro",
  12070. height: math.unit(10, "km")
  12071. },
  12072. {
  12073. name: "Megamacro+",
  12074. height: math.unit(100, "km")
  12075. },
  12076. {
  12077. name: "Gigamacro",
  12078. height: math.unit(100, "Mm")
  12079. },
  12080. {
  12081. name: "Teramacro",
  12082. height: math.unit(100, "Gm")
  12083. },
  12084. {
  12085. name: "Examacro",
  12086. height: math.unit(100, "Em")
  12087. },
  12088. {
  12089. name: "Godly",
  12090. height: math.unit(10000, "Ym")
  12091. },
  12092. {
  12093. name: "Beyond Godly",
  12094. height: math.unit(25, "multiverses")
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12100. {
  12101. feminine: {
  12102. height: math.unit(5, "feet"),
  12103. weight: math.unit(100, "lb"),
  12104. name: "Feminine",
  12105. image: {
  12106. source: "./media/characters/sammy-mouse/feminine.svg",
  12107. extra: 2526 / 2425,
  12108. bottom: 0.123
  12109. }
  12110. },
  12111. masculine: {
  12112. height: math.unit(5, "feet"),
  12113. weight: math.unit(100, "lb"),
  12114. name: "Masculine",
  12115. image: {
  12116. source: "./media/characters/sammy-mouse/masculine.svg",
  12117. extra: 2526 / 2425,
  12118. bottom: 0.123
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Micro",
  12125. height: math.unit(5, "inches")
  12126. },
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(5, "feet"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Macro",
  12134. height: math.unit(60, "feet")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(4, "feet"),
  12143. weight: math.unit(50, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/kole/front.svg",
  12147. extra: 1423 / 1303,
  12148. bottom: 0.025
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(4, "feet"),
  12153. weight: math.unit(50, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/kole/back.svg",
  12157. extra: 1426 / 1280,
  12158. bottom: 0.02
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(4, "feet"),
  12166. default: true
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(2.5, "feet"),
  12175. weight: math.unit(32, "lb"),
  12176. name: "Front",
  12177. image: {
  12178. source: "./media/characters/rufran/front.svg",
  12179. extra: 1313/885,
  12180. bottom: 94/1407
  12181. }
  12182. },
  12183. side: {
  12184. height: math.unit(2.5, "feet"),
  12185. weight: math.unit(32, "lb"),
  12186. name: "Side",
  12187. image: {
  12188. source: "./media/characters/rufran/side.svg",
  12189. extra: 1109/852,
  12190. bottom: 118/1227
  12191. }
  12192. },
  12193. back: {
  12194. height: math.unit(2.5, "feet"),
  12195. weight: math.unit(32, "lb"),
  12196. name: "Back",
  12197. image: {
  12198. source: "./media/characters/rufran/back.svg",
  12199. extra: 1280/878,
  12200. bottom: 131/1411
  12201. }
  12202. },
  12203. mouth: {
  12204. height: math.unit(1.13, "feet"),
  12205. name: "Mouth",
  12206. image: {
  12207. source: "./media/characters/rufran/mouth.svg"
  12208. }
  12209. },
  12210. foot: {
  12211. height: math.unit(1.33, "feet"),
  12212. name: "Foot",
  12213. image: {
  12214. source: "./media/characters/rufran/foot.svg"
  12215. }
  12216. },
  12217. koboldFront: {
  12218. height: math.unit(2 + 6 / 12, "feet"),
  12219. weight: math.unit(20, "lb"),
  12220. name: "Front (Kobold)",
  12221. image: {
  12222. source: "./media/characters/rufran/kobold-front.svg",
  12223. extra: 2041 / 1839,
  12224. bottom: 0.055
  12225. }
  12226. },
  12227. koboldBack: {
  12228. height: math.unit(2 + 6 / 12, "feet"),
  12229. weight: math.unit(20, "lb"),
  12230. name: "Back (Kobold)",
  12231. image: {
  12232. source: "./media/characters/rufran/kobold-back.svg",
  12233. extra: 2054 / 1839,
  12234. bottom: 0.01
  12235. }
  12236. },
  12237. koboldHand: {
  12238. height: math.unit(0.2166, "meters"),
  12239. name: "Hand (Kobold)",
  12240. image: {
  12241. source: "./media/characters/rufran/kobold-hand.svg"
  12242. }
  12243. },
  12244. koboldFoot: {
  12245. height: math.unit(0.185, "meters"),
  12246. name: "Foot (Kobold)",
  12247. image: {
  12248. source: "./media/characters/rufran/kobold-foot.svg"
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(1, "inch")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(2 + 6 / 12, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Big",
  12264. height: math.unit(60, "feet")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(325, "feet")
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12274. {
  12275. front: {
  12276. height: math.unit(0.3, "meters"),
  12277. weight: math.unit(3.5, "kg"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/chip/front.svg",
  12281. extra: 748 / 674
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(1, "inch"),
  12289. default: true
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12295. {
  12296. side: {
  12297. height: math.unit(2.3, "meters"),
  12298. weight: math.unit(3500, "lb"),
  12299. name: "Side",
  12300. image: {
  12301. source: "./media/characters/torvid/side.svg",
  12302. extra: 1972 / 722,
  12303. bottom: 0.035
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(2.3, "meters"),
  12311. default: true
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(2, "meters"),
  12320. weight: math.unit(150.5, "kg"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/susan/front.svg",
  12324. extra: 693 / 635,
  12325. bottom: 0.05
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(505, "miles"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(150, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/raindrops/front.svg",
  12346. extra: 2655 / 2461,
  12347. bottom: 49 / 2705
  12348. }
  12349. },
  12350. back: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Back",
  12354. image: {
  12355. source: "./media/characters/raindrops/back.svg",
  12356. extra: 2574 / 2400,
  12357. bottom: 65 / 2634
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Micro",
  12364. height: math.unit(6, "inches")
  12365. },
  12366. {
  12367. name: "Normal",
  12368. height: math.unit(6 + 2 / 12, "feet")
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(131, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Megamacro",
  12377. height: math.unit(15, "miles")
  12378. },
  12379. {
  12380. name: "Gigamacro",
  12381. height: math.unit(4000, "miles")
  12382. },
  12383. {
  12384. name: "Teramacro",
  12385. height: math.unit(315000, "miles")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(2.794, "meters"),
  12394. weight: math.unit(325, "kg"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/tezwa/front.svg",
  12398. extra: 2083 / 1906,
  12399. bottom: 0.031
  12400. }
  12401. },
  12402. foot: {
  12403. height: math.unit(0.687, "meters"),
  12404. name: "Foot",
  12405. image: {
  12406. source: "./media/characters/tezwa/foot.svg"
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(9 + 2 / 12, "feet"),
  12414. default: true
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(58, "feet"),
  12423. weight: math.unit(89000, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/typhus/front.svg",
  12427. extra: 816 / 800,
  12428. bottom: 0.065
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Macro",
  12435. height: math.unit(58, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(12, "feet"),
  12445. weight: math.unit(6, "tonnes"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/lyra-von-wulf/front.svg",
  12449. extra: 1,
  12450. bottom: 0.10
  12451. }
  12452. },
  12453. frontMecha: {
  12454. height: math.unit(12, "feet"),
  12455. weight: math.unit(12, "tonnes"),
  12456. name: "Front (Mecha)",
  12457. image: {
  12458. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12459. extra: 1,
  12460. bottom: 0.042
  12461. }
  12462. },
  12463. maw: {
  12464. height: math.unit(2.2, "feet"),
  12465. name: "Maw",
  12466. image: {
  12467. source: "./media/characters/lyra-von-wulf/maw.svg"
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Normal",
  12474. height: math.unit(12, "feet"),
  12475. default: true
  12476. },
  12477. {
  12478. name: "Classic",
  12479. height: math.unit(50, "feet")
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(500, "feet")
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(1, "mile")
  12488. },
  12489. {
  12490. name: "Gigamacro",
  12491. height: math.unit(400, "miles")
  12492. },
  12493. {
  12494. name: "Teramacro",
  12495. height: math.unit(22000, "miles")
  12496. },
  12497. {
  12498. name: "Solarmacro",
  12499. height: math.unit(8600000, "miles")
  12500. },
  12501. {
  12502. name: "Galactic",
  12503. height: math.unit(1057000, "lightyears")
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(6 + 10 / 12, "feet"),
  12512. weight: math.unit(150, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/dixon/front.svg",
  12516. extra: 3361 / 3209,
  12517. bottom: 0.01
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(6 + 10 / 12, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Big",
  12529. height: math.unit(12, "meters")
  12530. },
  12531. {
  12532. name: "Macro",
  12533. height: math.unit(500, "meters")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(2, "km")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(185, "cm"),
  12546. weight: math.unit(68, "kg"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/kauko/front.svg",
  12550. extra: 1455 / 1421,
  12551. bottom: 0.03
  12552. }
  12553. },
  12554. back: {
  12555. height: math.unit(185, "cm"),
  12556. weight: math.unit(68, "kg"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/kauko/back.svg",
  12560. extra: 1455 / 1421,
  12561. bottom: 0.004
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(185, "cm"),
  12569. default: true
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(6, "feet"),
  12578. weight: math.unit(150, "kg"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/varg/front.svg",
  12582. extra: 1108 / 1018,
  12583. bottom: 0.0375
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(5, "meters")
  12591. },
  12592. {
  12593. name: "Macro",
  12594. height: math.unit(200, "meters")
  12595. },
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(20, "kilometers")
  12599. },
  12600. {
  12601. name: "True Size",
  12602. height: math.unit(211, "km"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Gigamacro",
  12607. height: math.unit(1000, "km")
  12608. },
  12609. {
  12610. name: "Gigamacro+",
  12611. height: math.unit(8000, "km")
  12612. },
  12613. {
  12614. name: "Teramacro",
  12615. height: math.unit(1000000, "km")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(7 + 7 / 12, "feet"),
  12624. weight: math.unit(267, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/dayza/front.svg",
  12628. extra: 1262 / 1200,
  12629. bottom: 0.035
  12630. }
  12631. },
  12632. side: {
  12633. height: math.unit(7 + 7 / 12, "feet"),
  12634. weight: math.unit(267, "lb"),
  12635. name: "Side",
  12636. image: {
  12637. source: "./media/characters/dayza/side.svg",
  12638. extra: 1295 / 1245,
  12639. bottom: 0.05
  12640. }
  12641. },
  12642. back: {
  12643. height: math.unit(7 + 7 / 12, "feet"),
  12644. weight: math.unit(267, "lb"),
  12645. name: "Back",
  12646. image: {
  12647. source: "./media/characters/dayza/back.svg",
  12648. extra: 1241 / 1170
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(7 + 7 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Macro",
  12660. height: math.unit(155, "feet")
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12666. {
  12667. front: {
  12668. height: math.unit(6 + 5 / 12, "feet"),
  12669. weight: math.unit(160, "lb"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/xanthos/front.svg",
  12673. extra: 1,
  12674. bottom: 0.04
  12675. }
  12676. },
  12677. back: {
  12678. height: math.unit(6 + 5 / 12, "feet"),
  12679. weight: math.unit(160, "lb"),
  12680. name: "Back",
  12681. image: {
  12682. source: "./media/characters/xanthos/back.svg",
  12683. extra: 1,
  12684. bottom: 0.03
  12685. }
  12686. },
  12687. hand: {
  12688. height: math.unit(0.928, "feet"),
  12689. name: "Hand",
  12690. image: {
  12691. source: "./media/characters/xanthos/hand.svg"
  12692. }
  12693. },
  12694. foot: {
  12695. height: math.unit(1.286, "feet"),
  12696. name: "Foot",
  12697. image: {
  12698. source: "./media/characters/xanthos/foot.svg"
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(6 + 5 / 12, "feet"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Normal+",
  12710. height: math.unit(6, "meters")
  12711. },
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(40, "feet")
  12715. },
  12716. {
  12717. name: "Macro+",
  12718. height: math.unit(200, "meters")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(20, "km")
  12723. },
  12724. {
  12725. name: "Megamacro+",
  12726. height: math.unit(100, "km")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6 + 3 / 12, "feet"),
  12735. weight: math.unit(215, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/grynn/front.svg",
  12739. extra: 4627 / 4209,
  12740. bottom: 0.047
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Micro",
  12747. height: math.unit(6, "inches")
  12748. },
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(6 + 3 / 12, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Big",
  12756. height: math.unit(104, "feet")
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(944, "feet")
  12761. },
  12762. {
  12763. name: "Macro+",
  12764. height: math.unit(9480, "feet")
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(78752, "feet")
  12769. },
  12770. {
  12771. name: "Megamacro+",
  12772. height: math.unit(630128, "feet")
  12773. },
  12774. {
  12775. name: "Megamacro++",
  12776. height: math.unit(3150695, "feet")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(7 + 5 / 12, "feet"),
  12785. weight: math.unit(450, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/mocha-aura/front.svg",
  12789. extra: 1907 / 1817,
  12790. bottom: 0.04
  12791. }
  12792. },
  12793. back: {
  12794. height: math.unit(7 + 5 / 12, "feet"),
  12795. weight: math.unit(450, "lb"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/mocha-aura/back.svg",
  12799. extra: 1900 / 1825,
  12800. bottom: 0.045
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Nano",
  12807. height: math.unit(1, "nm")
  12808. },
  12809. {
  12810. name: "Megamicro",
  12811. height: math.unit(1, "mm")
  12812. },
  12813. {
  12814. name: "Micro",
  12815. height: math.unit(3, "inches")
  12816. },
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(7 + 5 / 12, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(30, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(3500, "feet")
  12829. },
  12830. {
  12831. name: "Teramacro",
  12832. height: math.unit(500000, "miles")
  12833. },
  12834. {
  12835. name: "Petamacro",
  12836. height: math.unit(50000000000000000, "parsecs")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/ilisha-devya/front.svg",
  12849. extra: 1,
  12850. bottom: 0.175
  12851. }
  12852. },
  12853. back: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(150, "lb"),
  12856. name: "Back",
  12857. image: {
  12858. source: "./media/characters/ilisha-devya/back.svg",
  12859. extra: 1,
  12860. bottom: 0.015
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Macro",
  12867. height: math.unit(500, "feet"),
  12868. default: true
  12869. },
  12870. {
  12871. name: "Megamacro",
  12872. height: math.unit(10, "miles")
  12873. },
  12874. {
  12875. name: "Gigamacro",
  12876. height: math.unit(100000, "miles")
  12877. },
  12878. {
  12879. name: "Examacro",
  12880. height: math.unit(1e9, "lightyears")
  12881. },
  12882. {
  12883. name: "Omniversal",
  12884. height: math.unit(1e33, "lightyears")
  12885. },
  12886. {
  12887. name: "Beyond Infinite",
  12888. height: math.unit(1e100, "lightyears")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12894. {
  12895. Side: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Side",
  12899. image: {
  12900. source: "./media/characters/mira/side.svg",
  12901. extra: 900 / 799,
  12902. bottom: 0.02
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Human Size",
  12909. height: math.unit(6, "feet")
  12910. },
  12911. {
  12912. name: "Macro",
  12913. height: math.unit(100, "feet"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Megamacro",
  12918. height: math.unit(10, "miles")
  12919. },
  12920. {
  12921. name: "Gigamacro",
  12922. height: math.unit(25000, "miles")
  12923. },
  12924. {
  12925. name: "Teramacro",
  12926. height: math.unit(300, "AU")
  12927. },
  12928. {
  12929. name: "Full Size",
  12930. height: math.unit(4.5e10, "lightyears")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(150, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/holly/front.svg",
  12943. extra: 639 / 606
  12944. }
  12945. },
  12946. back: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Back",
  12950. image: {
  12951. source: "./media/characters/holly/back.svg",
  12952. extra: 623 / 598
  12953. }
  12954. },
  12955. frontWorking: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Front (Working)",
  12959. image: {
  12960. source: "./media/characters/holly/front-working.svg",
  12961. extra: 607 / 577,
  12962. bottom: 0.048
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Normal",
  12969. height: math.unit(12 + 3 / 12, "feet"),
  12970. default: true
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/porter/front.svg",
  12983. extra: 1,
  12984. bottom: 0.01
  12985. }
  12986. },
  12987. frontRobes: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(150, "lb"),
  12990. name: "Front (Robes)",
  12991. image: {
  12992. source: "./media/characters/porter/front-robes.svg",
  12993. extra: 1.01,
  12994. bottom: 0.01
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(11 + 9 / 12, "feet"),
  13002. default: true
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13008. {
  13009. legendary: {
  13010. height: math.unit(6, "feet"),
  13011. weight: math.unit(150, "lb"),
  13012. name: "Legendary",
  13013. image: {
  13014. source: "./media/characters/lucy/legendary.svg",
  13015. extra: 1355 / 1100,
  13016. bottom: 0.045
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Legendary",
  13023. height: math.unit(86882 * 2, "miles"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(150, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/drusilla/front.svg",
  13037. extra: 678 / 635,
  13038. bottom: 0.03
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/drusilla/back.svg",
  13047. extra: 678 / 635,
  13048. bottom: 0.005
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(100, "feet")
  13056. },
  13057. {
  13058. name: "Canon Height",
  13059. height: math.unit(2000, "feet"),
  13060. default: true
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(180, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/renard-thatch/front.svg",
  13073. extra: 2411 / 2275,
  13074. bottom: 0.01
  13075. }
  13076. },
  13077. frontPosing: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(180, "lb"),
  13080. name: "Front (Posing)",
  13081. image: {
  13082. source: "./media/characters/renard-thatch/front-posing.svg",
  13083. extra: 2381 / 2261,
  13084. bottom: 0.01
  13085. }
  13086. },
  13087. back: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(180, "lb"),
  13090. name: "Back",
  13091. image: {
  13092. source: "./media/characters/renard-thatch/back.svg",
  13093. extra: 2428 / 2288
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Micro",
  13100. height: math.unit(3, "inches")
  13101. },
  13102. {
  13103. name: "Default",
  13104. height: math.unit(6, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(75, "feet")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(1450, "feet"),
  13118. weight: math.unit(1.21e6, "tons"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/sekvra/front.svg",
  13122. extra: 1,
  13123. bottom: 0.03
  13124. }
  13125. },
  13126. frontClothed: {
  13127. height: math.unit(1450, "feet"),
  13128. weight: math.unit(1.21e6, "tons"),
  13129. name: "Front (Clothed)",
  13130. image: {
  13131. source: "./media/characters/sekvra/front-clothed.svg",
  13132. extra: 1,
  13133. bottom: 0.03
  13134. }
  13135. },
  13136. side: {
  13137. height: math.unit(1450, "feet"),
  13138. weight: math.unit(1.21e6, "tons"),
  13139. name: "Side",
  13140. image: {
  13141. source: "./media/characters/sekvra/side.svg",
  13142. extra: 1,
  13143. bottom: 0.025
  13144. }
  13145. },
  13146. back: {
  13147. height: math.unit(1450, "feet"),
  13148. weight: math.unit(1.21e6, "tons"),
  13149. name: "Back",
  13150. image: {
  13151. source: "./media/characters/sekvra/back.svg",
  13152. extra: 1,
  13153. bottom: 0.005
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Macro",
  13160. height: math.unit(1450, "feet"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Megamacro",
  13165. height: math.unit(15000, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/carmine/front.svg",
  13178. extra: 1,
  13179. bottom: 0.035
  13180. }
  13181. },
  13182. frontArmor: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(150, "lb"),
  13185. name: "Front (Armor)",
  13186. image: {
  13187. source: "./media/characters/carmine/front-armor.svg",
  13188. extra: 1,
  13189. bottom: 0.035
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Large",
  13196. height: math.unit(1, "mile")
  13197. },
  13198. {
  13199. name: "Huge",
  13200. height: math.unit(40, "miles"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Colossal",
  13205. height: math.unit(2500, "miles")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/elyssia/front.svg",
  13218. extra: 2201 / 2035,
  13219. bottom: 0.05
  13220. }
  13221. },
  13222. frontClothed: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(150, "lb"),
  13225. name: "Front (Clothed)",
  13226. image: {
  13227. source: "./media/characters/elyssia/front-clothed.svg",
  13228. extra: 2201 / 2035,
  13229. bottom: 0.05
  13230. }
  13231. },
  13232. back: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Back",
  13236. image: {
  13237. source: "./media/characters/elyssia/back.svg",
  13238. extra: 2201 / 2035,
  13239. bottom: 0.013
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Smaller",
  13246. height: math.unit(150, "feet")
  13247. },
  13248. {
  13249. name: "Standard",
  13250. height: math.unit(1400, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Distracted",
  13255. height: math.unit(15000, "feet")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(7 + 4 / 12, "feet"),
  13264. weight: math.unit(500, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/geno-maxwell/front.svg",
  13268. extra: 2207 / 2040,
  13269. bottom: 0.015
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Micro",
  13276. height: math.unit(3, "inches")
  13277. },
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(7 + 4 / 12, "feet"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(220, "feet")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(11, "miles")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(7 + 4 / 12, "feet"),
  13298. weight: math.unit(500, "lb"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/regena-maxwell/front.svg",
  13302. extra: 3115 / 2770,
  13303. bottom: 0.02
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(7 + 4 / 12, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(220, "feet")
  13316. },
  13317. {
  13318. name: "Megamacro",
  13319. height: math.unit(11, "miles")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13332. extra: 860 / 690,
  13333. bottom: 0.03
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(1.7, "meters"),
  13341. default: true
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/quilly/front.svg",
  13354. extra: 890 / 776
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(404090, "miles"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(7 + 8 / 12, "feet"),
  13371. weight: math.unit(350, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/tempest/front.svg",
  13375. extra: 1175 / 1086,
  13376. bottom: 0.02
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Normal",
  13383. height: math.unit(7 + 8 / 12, "feet"),
  13384. default: true
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13390. {
  13391. side: {
  13392. height: math.unit(4 + 5 / 12, "feet"),
  13393. weight: math.unit(80, "lb"),
  13394. name: "Side",
  13395. image: {
  13396. source: "./media/characters/rodger/side.svg",
  13397. extra: 1235 / 1118
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Micro",
  13404. height: math.unit(1, "inch")
  13405. },
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(4 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(120, "feet")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/danyel/front.svg",
  13426. extra: 1185 / 1123,
  13427. bottom: 0.05
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Shrunken",
  13434. height: math.unit(0.5, "mm")
  13435. },
  13436. {
  13437. name: "Micro",
  13438. height: math.unit(1, "mm"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Upsized",
  13443. height: math.unit(5 + 5 / 12, "feet")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(5 + 6 / 12, "feet"),
  13452. weight: math.unit(200, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/vivian-bijoux/front.svg",
  13456. extra: 1,
  13457. bottom: 0.072
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 6 / 12, "feet"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Bad Dream",
  13469. height: math.unit(500, "feet")
  13470. },
  13471. {
  13472. name: "Nightmare",
  13473. height: math.unit(500, "miles")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6 + 1 / 12, "feet"),
  13482. weight: math.unit(260, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/zeta/front.svg",
  13486. extra: 1968 / 1889,
  13487. bottom: 0.06
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6 + 1 / 12, "feet"),
  13492. weight: math.unit(260, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/zeta/back.svg",
  13496. extra: 1944 / 1858,
  13497. bottom: 0.03
  13498. }
  13499. },
  13500. hand: {
  13501. height: math.unit(1.112, "feet"),
  13502. name: "Hand",
  13503. image: {
  13504. source: "./media/characters/zeta/hand.svg"
  13505. }
  13506. },
  13507. foot: {
  13508. height: math.unit(1.48, "feet"),
  13509. name: "Foot",
  13510. image: {
  13511. source: "./media/characters/zeta/foot.svg"
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Micro",
  13518. height: math.unit(6, "inches")
  13519. },
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(6 + 1 / 12, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(20, "feet")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/jamie-larsen/front.svg",
  13540. extra: 962 / 933,
  13541. bottom: 0.02
  13542. }
  13543. },
  13544. back: {
  13545. height: math.unit(6, "feet"),
  13546. weight: math.unit(150, "lb"),
  13547. name: "Back",
  13548. image: {
  13549. source: "./media/characters/jamie-larsen/back.svg",
  13550. extra: 997 / 946
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(28 + 7 / 12, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro+",
  13562. height: math.unit(180, "feet")
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(10, "miles")
  13567. },
  13568. {
  13569. name: "Gigamacro",
  13570. height: math.unit(200000, "miles")
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13576. {
  13577. front: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(120, "lb"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/vance/front.svg",
  13583. extra: 1980 / 1890,
  13584. bottom: 0.09
  13585. }
  13586. },
  13587. back: {
  13588. height: math.unit(6, "feet"),
  13589. weight: math.unit(120, "lb"),
  13590. name: "Back",
  13591. image: {
  13592. source: "./media/characters/vance/back.svg",
  13593. extra: 2081 / 1994,
  13594. bottom: 0.014
  13595. }
  13596. },
  13597. hand: {
  13598. height: math.unit(0.88, "feet"),
  13599. name: "Hand",
  13600. image: {
  13601. source: "./media/characters/vance/hand.svg"
  13602. }
  13603. },
  13604. foot: {
  13605. height: math.unit(0.64, "feet"),
  13606. name: "Foot",
  13607. image: {
  13608. source: "./media/characters/vance/foot.svg"
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Small",
  13615. height: math.unit(90, "feet"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(100, "meters")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(15, "miles")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(180, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/xochitl/front.svg",
  13637. extra: 2297 / 2261,
  13638. bottom: 0.065
  13639. }
  13640. },
  13641. back: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(180, "lb"),
  13644. name: "Back",
  13645. image: {
  13646. source: "./media/characters/xochitl/back.svg",
  13647. extra: 2386 / 2354,
  13648. bottom: 0.01
  13649. }
  13650. },
  13651. foot: {
  13652. height: math.unit(6 / 5 * 1.15, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Foot",
  13655. image: {
  13656. source: "./media/characters/xochitl/foot.svg"
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Macro",
  13663. height: math.unit(80, "feet")
  13664. },
  13665. {
  13666. name: "Macro+",
  13667. height: math.unit(400, "feet"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Gigamacro",
  13672. height: math.unit(80000, "miles")
  13673. },
  13674. {
  13675. name: "Gigamacro+",
  13676. height: math.unit(400000, "miles")
  13677. },
  13678. {
  13679. name: "Teramacro",
  13680. height: math.unit(300, "AU")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/vincent/front.svg",
  13693. extra: 1130 / 1080,
  13694. bottom: 0.055
  13695. }
  13696. },
  13697. beak: {
  13698. height: math.unit(6 * 0.1, "feet"),
  13699. name: "Beak",
  13700. image: {
  13701. source: "./media/characters/vincent/beak.svg"
  13702. }
  13703. },
  13704. hand: {
  13705. height: math.unit(6 * 0.85, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Hand",
  13708. image: {
  13709. source: "./media/characters/vincent/hand.svg"
  13710. }
  13711. },
  13712. foot: {
  13713. height: math.unit(6 * 0.19, "feet"),
  13714. weight: math.unit(150, "lb"),
  13715. name: "Foot",
  13716. image: {
  13717. source: "./media/characters/vincent/foot.svg"
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Base",
  13724. height: math.unit(6 + 5 / 12, "feet"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(300, "feet")
  13730. },
  13731. {
  13732. name: "Megamacro",
  13733. height: math.unit(2, "miles")
  13734. },
  13735. {
  13736. name: "Gigamacro",
  13737. height: math.unit(1000, "miles")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(2, "meters"),
  13746. weight: math.unit(500, "kg"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/coatl/front.svg",
  13750. extra: 3948 / 3500,
  13751. bottom: 0.082
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(4, "meters")
  13759. },
  13760. {
  13761. name: "Macro",
  13762. height: math.unit(100, "meters"),
  13763. default: true
  13764. },
  13765. {
  13766. name: "Macro+",
  13767. height: math.unit(300, "meters")
  13768. },
  13769. {
  13770. name: "Megamacro",
  13771. height: math.unit(3, "gigameters")
  13772. },
  13773. {
  13774. name: "Megamacro+",
  13775. height: math.unit(300, "terameters")
  13776. },
  13777. {
  13778. name: "Megamacro++",
  13779. height: math.unit(3, "lightyears")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(50, "kg"),
  13789. name: "front",
  13790. image: {
  13791. source: "./media/characters/shiroryu/front.svg",
  13792. extra: 1990 / 1935
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Mortal Mingling",
  13799. height: math.unit(3, "meters")
  13800. },
  13801. {
  13802. name: "Kaiju-ish",
  13803. height: math.unit(250, "meters")
  13804. },
  13805. {
  13806. name: "Somewhat Godly",
  13807. height: math.unit(400, "km"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Planetary",
  13812. height: math.unit(300, "megameters")
  13813. },
  13814. {
  13815. name: "Galaxy-dwarfing",
  13816. height: math.unit(450, "kiloparsecs")
  13817. },
  13818. {
  13819. name: "Universe Eater",
  13820. height: math.unit(150, "gigaparsecs")
  13821. },
  13822. {
  13823. name: "Almost Immeasurable",
  13824. height: math.unit(1.3e266, "yottaparsecs")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/umeko/front.svg",
  13837. extra: 1,
  13838. bottom: 0.019
  13839. }
  13840. },
  13841. frontArmored: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front (Armored)",
  13845. image: {
  13846. source: "./media/characters/umeko/front-armored.svg",
  13847. extra: 1,
  13848. bottom: 0.021
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(220, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Guardian Dragon",
  13860. height: math.unit(50, "miles")
  13861. },
  13862. {
  13863. name: "Cosmic",
  13864. height: math.unit(800000, "miles")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/cassidy/front.svg",
  13877. extra: 1,
  13878. bottom: 0.043
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Canon Height",
  13885. height: math.unit(120, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Macro+",
  13890. height: math.unit(400, "feet")
  13891. },
  13892. {
  13893. name: "Macro++",
  13894. height: math.unit(4000, "feet")
  13895. },
  13896. {
  13897. name: "Megamacro",
  13898. height: math.unit(3, "miles")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/isaac/front.svg",
  13911. extra: 896 / 815,
  13912. bottom: 0.11
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Human Size",
  13919. height: math.unit(8, "feet"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(400, "feet")
  13925. },
  13926. {
  13927. name: "Megamacro",
  13928. height: math.unit(50, "miles")
  13929. },
  13930. {
  13931. name: "Canon Height",
  13932. height: math.unit(200, "AU")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(72, "kg"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/sleekit/front.svg",
  13945. extra: 4693 / 4487,
  13946. bottom: 0.012
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Minimum Height",
  13953. height: math.unit(10, "meters")
  13954. },
  13955. {
  13956. name: "Smaller",
  13957. height: math.unit(25, "meters")
  13958. },
  13959. {
  13960. name: "Larger",
  13961. height: math.unit(38, "meters"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Maximum height",
  13966. height: math.unit(100, "meters")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/nillia/front.svg",
  13979. extra: 2195 / 2037,
  13980. bottom: 0.005
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/nillia/back.svg",
  13989. extra: 2195 / 2037,
  13990. bottom: 0.005
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Canon Height",
  13997. height: math.unit(489, "feet"),
  13998. default: true
  13999. }
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14004. {
  14005. front: {
  14006. height: math.unit(6, "feet"),
  14007. weight: math.unit(150, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/mesmyriza/front.svg",
  14011. extra: 2067 / 1784,
  14012. bottom: 0.035
  14013. }
  14014. },
  14015. foot: {
  14016. height: math.unit(6 / (250 / 35), "feet"),
  14017. name: "Foot",
  14018. image: {
  14019. source: "./media/characters/mesmyriza/foot.svg"
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(457, "meters"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(8, "megameters")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(250, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/saudade/front.svg",
  14044. extra: 1172 / 1139,
  14045. bottom: 0.035
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Micro",
  14052. height: math.unit(3, "inches")
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(6, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(50, "feet")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(2800, "feet")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(5 + 4 / 12, "feet"),
  14074. weight: math.unit(100, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/keireer/front.svg",
  14078. extra: 716 / 666,
  14079. bottom: 0.05
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(5 + 4 / 12, "feet"),
  14087. default: true
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(90, "kg"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/mirja/front.svg",
  14100. extra: 1789 / 1683,
  14101. bottom: 0.05
  14102. }
  14103. },
  14104. frontDressed: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(90, "lb"),
  14107. name: "Front (Dressed)",
  14108. image: {
  14109. source: "./media/characters/mirja/front-dressed.svg",
  14110. extra: 1789 / 1683,
  14111. bottom: 0.05
  14112. }
  14113. },
  14114. back: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(90, "lb"),
  14117. name: "Back",
  14118. image: {
  14119. source: "./media/characters/mirja/back.svg",
  14120. extra: 953 / 917,
  14121. bottom: 0.017
  14122. }
  14123. },
  14124. },
  14125. [
  14126. {
  14127. name: "\"Incognito\"",
  14128. height: math.unit(3, "meters")
  14129. },
  14130. {
  14131. name: "Strolling Size",
  14132. height: math.unit(15, "km")
  14133. },
  14134. {
  14135. name: "Larger Strolling Size",
  14136. height: math.unit(400, "km")
  14137. },
  14138. {
  14139. name: "Preferred Size",
  14140. height: math.unit(5000, "km")
  14141. },
  14142. {
  14143. name: "True Size",
  14144. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(15, "feet"),
  14154. weight: math.unit(880, "kg"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/nightraver/front.svg",
  14158. extra: 2444 / 2160,
  14159. bottom: 0.027
  14160. }
  14161. },
  14162. back: {
  14163. height: math.unit(15, "feet"),
  14164. weight: math.unit(880, "kg"),
  14165. name: "Back",
  14166. image: {
  14167. source: "./media/characters/nightraver/back.svg",
  14168. extra: 2309 / 2180,
  14169. bottom: 0.005
  14170. }
  14171. },
  14172. sole: {
  14173. height: math.unit(2.878, "feet"),
  14174. name: "Sole",
  14175. image: {
  14176. source: "./media/characters/nightraver/sole.svg"
  14177. }
  14178. },
  14179. foot: {
  14180. height: math.unit(2.285, "feet"),
  14181. name: "Foot",
  14182. image: {
  14183. source: "./media/characters/nightraver/foot.svg"
  14184. }
  14185. },
  14186. maw: {
  14187. height: math.unit(2.67, "feet"),
  14188. name: "Maw",
  14189. image: {
  14190. source: "./media/characters/nightraver/maw.svg"
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(1, "cm")
  14198. },
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(15, "feet"),
  14202. default: true
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(300, "feet")
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(300, "miles")
  14211. },
  14212. {
  14213. name: "Gigamacro",
  14214. height: math.unit(10000, "miles")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14220. {
  14221. side: {
  14222. height: math.unit(2, "inches"),
  14223. weight: math.unit(5, "grams"),
  14224. name: "Side",
  14225. image: {
  14226. source: "./media/characters/arc/side.svg"
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Micro",
  14233. height: math.unit(2, "inches"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(1.1938, "meters"),
  14243. weight: math.unit(54, "kg"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/nebula-shahar/front.svg",
  14247. extra: 1642 / 1436,
  14248. bottom: 0.06
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Megamicro",
  14255. height: math.unit(0.3, "mm")
  14256. },
  14257. {
  14258. name: "Micro",
  14259. height: math.unit(3, "cm")
  14260. },
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(138, "cm"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Macro",
  14268. height: math.unit(30, "m")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(5.24, "feet"),
  14277. weight: math.unit(150, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/shayla/front.svg",
  14281. extra: 1512 / 1414,
  14282. bottom: 0.01
  14283. }
  14284. },
  14285. back: {
  14286. height: math.unit(5.24, "feet"),
  14287. weight: math.unit(150, "lb"),
  14288. name: "Back",
  14289. image: {
  14290. source: "./media/characters/shayla/back.svg",
  14291. extra: 1512 / 1414
  14292. }
  14293. },
  14294. hand: {
  14295. height: math.unit(0.7781496062992126, "feet"),
  14296. name: "Hand",
  14297. image: {
  14298. source: "./media/characters/shayla/hand.svg"
  14299. }
  14300. },
  14301. foot: {
  14302. height: math.unit(1.4206036745406823, "feet"),
  14303. name: "Foot",
  14304. image: {
  14305. source: "./media/characters/shayla/foot.svg"
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Micro",
  14312. height: math.unit(0.32, "feet")
  14313. },
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5.24, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(492.12, "feet")
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(186.41, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(2.2, "m"),
  14334. weight: math.unit(120, "kg"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/pia-jr/front.svg",
  14338. extra: 1000 / 970,
  14339. bottom: 0.035
  14340. }
  14341. },
  14342. hand: {
  14343. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14344. name: "Hand",
  14345. image: {
  14346. source: "./media/characters/pia-jr/hand.svg"
  14347. }
  14348. },
  14349. paw: {
  14350. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14351. name: "Paw",
  14352. image: {
  14353. source: "./media/characters/pia-jr/paw.svg"
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1.2, "cm")
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(2.2, "m"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(180, "m")
  14370. },
  14371. {
  14372. name: "Megamacro",
  14373. height: math.unit(420, "km")
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(2, "m"),
  14382. weight: math.unit(115, "kg"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/pia-sr/front.svg",
  14386. extra: 760 / 730,
  14387. bottom: 0.015
  14388. }
  14389. },
  14390. back: {
  14391. height: math.unit(2, "m"),
  14392. weight: math.unit(115, "kg"),
  14393. name: "Back",
  14394. image: {
  14395. source: "./media/characters/pia-sr/back.svg",
  14396. extra: 760 / 730,
  14397. bottom: 0.01
  14398. }
  14399. },
  14400. hand: {
  14401. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14402. name: "Hand",
  14403. image: {
  14404. source: "./media/characters/pia-sr/hand.svg"
  14405. }
  14406. },
  14407. foot: {
  14408. height: math.unit(1.83, "feet"),
  14409. name: "Foot",
  14410. image: {
  14411. source: "./media/characters/pia-sr/foot.svg"
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Micro",
  14418. height: math.unit(88, "mm")
  14419. },
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(2, "m"),
  14423. default: true
  14424. },
  14425. {
  14426. name: "Macro",
  14427. height: math.unit(200, "m")
  14428. },
  14429. {
  14430. name: "Megamacro",
  14431. height: math.unit(420, "km")
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(8 + 2 / 12, "feet"),
  14440. weight: math.unit(300, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/kibibyte/front.svg",
  14444. extra: 2221 / 2098,
  14445. bottom: 0.04
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(8 + 2 / 12, "feet"),
  14453. default: true
  14454. },
  14455. {
  14456. name: "Socialable Macro",
  14457. height: math.unit(50, "feet")
  14458. },
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(300, "feet")
  14462. },
  14463. {
  14464. name: "Megamacro",
  14465. height: math.unit(500, "miles")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/felix/front.svg",
  14478. extra: 762 / 722,
  14479. bottom: 0.02
  14480. }
  14481. },
  14482. frontClothed: {
  14483. height: math.unit(6, "feet"),
  14484. weight: math.unit(150, "lb"),
  14485. name: "Front (Clothed)",
  14486. image: {
  14487. source: "./media/characters/felix/front-clothed.svg",
  14488. extra: 762 / 722,
  14489. bottom: 0.02
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(6 + 8 / 12, "feet"),
  14497. default: true
  14498. },
  14499. {
  14500. name: "Macro",
  14501. height: math.unit(2600, "feet")
  14502. },
  14503. {
  14504. name: "Megamacro",
  14505. height: math.unit(450, "miles")
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(6 + 1 / 12, "feet"),
  14514. weight: math.unit(250, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/tobo/front.svg",
  14518. extra: 608 / 586,
  14519. bottom: 0.023
  14520. }
  14521. },
  14522. back: {
  14523. height: math.unit(6 + 1 / 12, "feet"),
  14524. weight: math.unit(250, "lb"),
  14525. name: "Back",
  14526. image: {
  14527. source: "./media/characters/tobo/back.svg",
  14528. extra: 608 / 586
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Nano",
  14535. height: math.unit(2, "nm")
  14536. },
  14537. {
  14538. name: "Megamicro",
  14539. height: math.unit(0.1, "mm")
  14540. },
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1, "inch"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Human-sized",
  14548. height: math.unit(6 + 1 / 12, "feet")
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(250, "feet")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(75, "miles")
  14557. },
  14558. {
  14559. name: "Texas-sized",
  14560. height: math.unit(750, "miles")
  14561. },
  14562. {
  14563. name: "Teramacro",
  14564. height: math.unit(50000, "miles")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6, "feet"),
  14573. weight: math.unit(269, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/danny-kapowsky/front.svg",
  14577. extra: 766 / 736,
  14578. bottom: 0.044
  14579. }
  14580. },
  14581. back: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(269, "lb"),
  14584. name: "Back",
  14585. image: {
  14586. source: "./media/characters/danny-kapowsky/back.svg",
  14587. extra: 797 / 760,
  14588. bottom: 0.025
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Macro",
  14595. height: math.unit(150, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Macro+",
  14600. height: math.unit(200, "feet")
  14601. },
  14602. {
  14603. name: "Macro++",
  14604. height: math.unit(300, "feet")
  14605. },
  14606. {
  14607. name: "Macro+++",
  14608. height: math.unit(400, "feet")
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14614. {
  14615. side: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(170, "lb"),
  14618. name: "Side",
  14619. image: {
  14620. source: "./media/characters/finn/side.svg",
  14621. extra: 1953 / 1807,
  14622. bottom: 0.057
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Megamacro",
  14629. height: math.unit(14445, "feet"),
  14630. default: true
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(5 + 6 / 12, "feet"),
  14639. weight: math.unit(125, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/roy/front.svg",
  14643. extra: 1,
  14644. bottom: 0.11
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Micro",
  14651. height: math.unit(3, "inches"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(5 + 6 / 12, "feet")
  14657. },
  14658. {
  14659. name: "Lesser Macro",
  14660. height: math.unit(60, "feet")
  14661. },
  14662. {
  14663. name: "Greater Macro",
  14664. height: math.unit(120, "feet")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(100, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/aevsivs/front.svg",
  14677. extra: 1,
  14678. bottom: 0.03
  14679. }
  14680. },
  14681. back: {
  14682. height: math.unit(6, "feet"),
  14683. weight: math.unit(100, "lb"),
  14684. name: "Back",
  14685. image: {
  14686. source: "./media/characters/aevsivs/back.svg"
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Micro",
  14693. height: math.unit(2, "inches"),
  14694. default: true
  14695. },
  14696. {
  14697. name: "Normal",
  14698. height: math.unit(5, "feet")
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5 + 7 / 12, "feet"),
  14707. weight: math.unit(159, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/hildegard/front.svg",
  14711. extra: 289 / 269,
  14712. bottom: 7.63 / 297.8
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(5 + 7 / 12, "feet"),
  14717. weight: math.unit(159, "lb"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/hildegard/back.svg",
  14721. extra: 280 / 260,
  14722. bottom: 2.3 / 282
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(5 + 7 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14736. {
  14737. bernard: {
  14738. height: math.unit(2 + 7 / 12, "feet"),
  14739. weight: math.unit(66, "lb"),
  14740. name: "Bernard",
  14741. rename: true,
  14742. image: {
  14743. source: "./media/characters/bernard-wilder/bernard.svg",
  14744. extra: 192 / 128,
  14745. bottom: 0.05
  14746. }
  14747. },
  14748. wilder: {
  14749. height: math.unit(5 + 8 / 12, "feet"),
  14750. weight: math.unit(143, "lb"),
  14751. name: "Wilder",
  14752. rename: true,
  14753. image: {
  14754. source: "./media/characters/bernard-wilder/wilder.svg",
  14755. extra: 361 / 312,
  14756. bottom: 0.02
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(2 + 7 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14770. {
  14771. anthro: {
  14772. height: math.unit(6 + 1 / 12, "feet"),
  14773. weight: math.unit(155, "lb"),
  14774. name: "Anthro",
  14775. image: {
  14776. source: "./media/characters/hearth/anthro.svg",
  14777. extra: 260 / 250,
  14778. bottom: 0.02
  14779. }
  14780. },
  14781. feral: {
  14782. height: math.unit(3.78, "feet"),
  14783. weight: math.unit(35, "kg"),
  14784. name: "Feral",
  14785. image: {
  14786. source: "./media/characters/hearth/feral.svg",
  14787. extra: 153 / 135,
  14788. bottom: 0.03
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(6 + 1 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(182, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/ingrid/front.svg",
  14809. extra: 294 / 268,
  14810. bottom: 0.027
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(6, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14824. {
  14825. eevee: {
  14826. height: math.unit(2 + 10 / 12, "feet"),
  14827. weight: math.unit(86, "lb"),
  14828. name: "Malgam",
  14829. image: {
  14830. source: "./media/characters/malgam/eevee.svg",
  14831. extra: 218 / 180,
  14832. bottom: 0.2
  14833. }
  14834. },
  14835. sylveon: {
  14836. height: math.unit(4, "feet"),
  14837. weight: math.unit(101, "lb"),
  14838. name: "Future Malgam",
  14839. rename: true,
  14840. image: {
  14841. source: "./media/characters/malgam/sylveon.svg",
  14842. extra: 371 / 325,
  14843. bottom: 0.015
  14844. }
  14845. },
  14846. gigantamax: {
  14847. height: math.unit(50, "feet"),
  14848. name: "Gigantamax Malgam",
  14849. rename: true,
  14850. image: {
  14851. source: "./media/characters/malgam/gigantamax.svg"
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Normal",
  14858. height: math.unit(2 + 10 / 12, "feet"),
  14859. default: true
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(5 + 11 / 12, "feet"),
  14868. weight: math.unit(188, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/fleur/front.svg",
  14872. extra: 309 / 283,
  14873. bottom: 0.007
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(5 + 11 / 12, "feet"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(5 + 4 / 12, "feet"),
  14890. weight: math.unit(122, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/jude/front.svg",
  14894. extra: 288 / 273,
  14895. bottom: 0.03
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(5 + 4 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(5 + 11 / 12, "feet"),
  14912. weight: math.unit(190, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/seara/front.svg",
  14916. extra: 1,
  14917. bottom: 0.05
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(5 + 11 / 12, "feet"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(16 + 5 / 12, "feet"),
  14934. weight: math.unit(524, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/caspian/front.svg",
  14938. extra: 1,
  14939. bottom: 0.04
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(16 + 5 / 12, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(5 + 7 / 12, "feet"),
  14956. weight: math.unit(170, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/mika/front.svg",
  14960. extra: 1,
  14961. bottom: 0.016
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(5 + 7 / 12, "feet"),
  14969. default: true
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6 + 2 / 12, "feet"),
  14978. weight: math.unit(268, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/sol/front.svg",
  14982. extra: 247 / 231,
  14983. bottom: 0.05
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(6 + 2 / 12, "feet"),
  14991. default: true
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14997. {
  14998. buizel: {
  14999. height: math.unit(2 + 5 / 12, "feet"),
  15000. weight: math.unit(87, "lb"),
  15001. name: "Buizel",
  15002. image: {
  15003. source: "./media/characters/umiko/buizel.svg",
  15004. extra: 172 / 157,
  15005. bottom: 0.01
  15006. }
  15007. },
  15008. floatzel: {
  15009. height: math.unit(5 + 9 / 12, "feet"),
  15010. weight: math.unit(250, "lb"),
  15011. name: "Floatzel",
  15012. image: {
  15013. source: "./media/characters/umiko/floatzel.svg",
  15014. extra: 262 / 248
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(2 + 5 / 12, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(6 + 2 / 12, "feet"),
  15031. weight: math.unit(146, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/iliac/front.svg",
  15035. extra: 389 / 365,
  15036. bottom: 0.035
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(6 + 2 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(6, "feet"),
  15053. weight: math.unit(170, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/topaz/front.svg",
  15057. extra: 317 / 303,
  15058. bottom: 0.055
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(6, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15072. {
  15073. front: {
  15074. height: math.unit(5 + 11 / 12, "feet"),
  15075. weight: math.unit(144, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/gabriel/front.svg",
  15079. extra: 285 / 262,
  15080. bottom: 0.004
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(5 + 11 / 12, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15094. {
  15095. side: {
  15096. height: math.unit(6 + 5 / 12, "feet"),
  15097. weight: math.unit(300, "lb"),
  15098. name: "Side",
  15099. image: {
  15100. source: "./media/characters/tempest-suicune/side.svg",
  15101. extra: 195 / 154,
  15102. bottom: 0.04
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(6 + 5 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15116. {
  15117. front: {
  15118. height: math.unit(7 + 2 / 12, "feet"),
  15119. weight: math.unit(322, "lb"),
  15120. name: "Front",
  15121. image: {
  15122. source: "./media/characters/vulcan/front.svg",
  15123. extra: 154 / 147,
  15124. bottom: 0.04
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Normal",
  15131. height: math.unit(7 + 2 / 12, "feet"),
  15132. default: true
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(5 + 10 / 12, "feet"),
  15141. weight: math.unit(264, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/gault/front.svg",
  15145. extra: 161 / 140,
  15146. bottom: 0.028
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(5 + 10 / 12, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/shard/front.svg",
  15167. extra: 273 / 238,
  15168. bottom: 0.02
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(3 + 6 / 12, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(5 + 11 / 12, "feet"),
  15185. weight: math.unit(146, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/ashe/front.svg",
  15189. extra: 400 / 373,
  15190. bottom: 0.01
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(5 + 11 / 12, "feet"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15204. {
  15205. front: {
  15206. height: math.unit(5 + 5 / 12, "feet"),
  15207. weight: math.unit(135, "lb"),
  15208. name: "Front",
  15209. image: {
  15210. source: "./media/characters/beatrix/front.svg",
  15211. extra: 392 / 379,
  15212. bottom: 0.01
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(6, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/ignatius/front.svg",
  15233. extra: 245 / 222,
  15234. bottom: 0.01
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(5 + 5 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6 + 2 / 12, "feet"),
  15251. weight: math.unit(138, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/mei-li/front.svg",
  15255. extra: 237 / 229,
  15256. bottom: 0.03
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(6 + 2 / 12, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(2 + 4 / 12, "feet"),
  15273. weight: math.unit(62, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/puru/front.svg",
  15277. extra: 206 / 149,
  15278. bottom: 0.06
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(2 + 4 / 12, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15292. {
  15293. anthro: {
  15294. height: math.unit(5 + 8/12, "feet"),
  15295. weight: math.unit(200, "lb"),
  15296. energyNeed: math.unit(2000, "kcal"),
  15297. name: "Anthro",
  15298. image: {
  15299. source: "./media/characters/kee/anthro.svg",
  15300. extra: 3251/3184,
  15301. bottom: 250/3501
  15302. }
  15303. },
  15304. taur: {
  15305. height: math.unit(11, "feet"),
  15306. weight: math.unit(500, "lb"),
  15307. energyNeed: math.unit(5000, "kcal"),
  15308. name: "Taur",
  15309. image: {
  15310. source: "./media/characters/kee/taur.svg",
  15311. extra: 1362/1320,
  15312. bottom: 83/1445
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(5 + 8/12, "feet"),
  15320. default: true
  15321. },
  15322. {
  15323. name: "Macro",
  15324. height: math.unit(35, "feet")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15330. {
  15331. anthro: {
  15332. height: math.unit(7, "feet"),
  15333. weight: math.unit(190, "lb"),
  15334. name: "Anthro",
  15335. image: {
  15336. source: "./media/characters/cobalt-dracha/anthro.svg",
  15337. extra: 231 / 225,
  15338. bottom: 0.04
  15339. }
  15340. },
  15341. feral: {
  15342. height: math.unit(9 + 7 / 12, "feet"),
  15343. weight: math.unit(294, "lb"),
  15344. name: "Feral",
  15345. image: {
  15346. source: "./media/characters/cobalt-dracha/feral.svg",
  15347. extra: 692 / 633,
  15348. bottom: 0.05
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(7, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15362. {
  15363. fallen: {
  15364. height: math.unit(11 + 8 / 12, "feet"),
  15365. weight: math.unit(485, "lb"),
  15366. name: "Java (Fallen)",
  15367. rename: true,
  15368. image: {
  15369. source: "./media/characters/java/fallen.svg",
  15370. extra: 226 / 208,
  15371. bottom: 0.005
  15372. }
  15373. },
  15374. godkin: {
  15375. height: math.unit(10 + 6 / 12, "feet"),
  15376. weight: math.unit(328, "lb"),
  15377. name: "Java (Godkin)",
  15378. rename: true,
  15379. image: {
  15380. source: "./media/characters/java/godkin.svg",
  15381. extra: 270 / 262,
  15382. bottom: 0.02
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(11 + 8 / 12, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(7 + 8 / 12, "feet"),
  15399. weight: math.unit(320, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/skoll/front.svg",
  15403. extra: 232 / 220,
  15404. bottom: 0.02
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(7 + 8 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 9 / 12, "feet"),
  15421. weight: math.unit(170, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/purna/front.svg",
  15425. extra: 239 / 229,
  15426. bottom: 0.01
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 9 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 9 / 12, "feet"),
  15443. weight: math.unit(142, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/kuva/front.svg",
  15447. extra: 281 / 271,
  15448. bottom: 0.006
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 9 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15462. {
  15463. anthro: {
  15464. height: math.unit(9 + 2 / 12, "feet"),
  15465. weight: math.unit(270, "lb"),
  15466. name: "Anthro",
  15467. image: {
  15468. source: "./media/characters/embra/anthro.svg",
  15469. extra: 200 / 187,
  15470. bottom: 0.02
  15471. }
  15472. },
  15473. feral: {
  15474. height: math.unit(18 + 8 / 12, "feet"),
  15475. weight: math.unit(576, "lb"),
  15476. name: "Feral",
  15477. image: {
  15478. source: "./media/characters/embra/feral.svg",
  15479. extra: 152 / 137,
  15480. bottom: 0.037
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(9 + 2 / 12, "feet"),
  15488. default: true
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15494. {
  15495. anthro: {
  15496. height: math.unit(10 + 9 / 12, "feet"),
  15497. weight: math.unit(224, "lb"),
  15498. name: "Anthro",
  15499. image: {
  15500. source: "./media/characters/grottos/anthro.svg",
  15501. extra: 350 / 332,
  15502. bottom: 0.045
  15503. }
  15504. },
  15505. feral: {
  15506. height: math.unit(20 + 7 / 12, "feet"),
  15507. weight: math.unit(629, "lb"),
  15508. name: "Feral",
  15509. image: {
  15510. source: "./media/characters/grottos/feral.svg",
  15511. extra: 207 / 190,
  15512. bottom: 0.05
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(10 + 9 / 12, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15526. {
  15527. anthro: {
  15528. height: math.unit(9 + 6 / 12, "feet"),
  15529. weight: math.unit(298, "lb"),
  15530. name: "Anthro",
  15531. image: {
  15532. source: "./media/characters/frifna/anthro.svg",
  15533. extra: 282 / 269,
  15534. bottom: 0.015
  15535. }
  15536. },
  15537. feral: {
  15538. height: math.unit(16 + 2 / 12, "feet"),
  15539. weight: math.unit(624, "lb"),
  15540. name: "Feral",
  15541. image: {
  15542. source: "./media/characters/frifna/feral.svg"
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(9 + 6 / 12, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(6 + 2 / 12, "feet"),
  15559. weight: math.unit(168, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/elise/front.svg",
  15563. extra: 276 / 271
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(6 + 2 / 12, "feet"),
  15571. default: true
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15577. {
  15578. front: {
  15579. height: math.unit(5 + 10 / 12, "feet"),
  15580. weight: math.unit(210, "lb"),
  15581. name: "Front",
  15582. image: {
  15583. source: "./media/characters/glade/front.svg",
  15584. extra: 258 / 247,
  15585. bottom: 0.008
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(5 + 10 / 12, "feet"),
  15593. default: true
  15594. },
  15595. ]
  15596. ))
  15597. characterMakers.push(() => makeCharacter(
  15598. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15599. {
  15600. front: {
  15601. height: math.unit(5 + 10 / 12, "feet"),
  15602. weight: math.unit(129, "lb"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/rina/front.svg",
  15606. extra: 266 / 255,
  15607. bottom: 0.005
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Normal",
  15614. height: math.unit(5 + 10 / 12, "feet"),
  15615. default: true
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(6 + 1 / 12, "feet"),
  15624. weight: math.unit(192, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/veronica/front.svg",
  15628. extra: 319 / 309,
  15629. bottom: 0.005
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(6 + 1 / 12, "feet"),
  15637. default: true
  15638. },
  15639. ]
  15640. ))
  15641. characterMakers.push(() => makeCharacter(
  15642. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15643. {
  15644. front: {
  15645. height: math.unit(9 + 3 / 12, "feet"),
  15646. weight: math.unit(1100, "lb"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/braxton/front.svg",
  15650. extra: 1057 / 984,
  15651. bottom: 0.05
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(9 + 3 / 12, "feet")
  15659. },
  15660. {
  15661. name: "Giant",
  15662. height: math.unit(300, "feet"),
  15663. default: true
  15664. },
  15665. {
  15666. name: "Macro",
  15667. height: math.unit(700, "feet")
  15668. },
  15669. {
  15670. name: "Megamacro",
  15671. height: math.unit(6000, "feet")
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(6 + 7 / 12, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/blue-feyonics/front.svg",
  15684. extra: 1403 / 1306,
  15685. bottom: 0.047
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(6 + 7 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(1.8, "meters"),
  15702. weight: math.unit(60, "kg"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/maxwell/front.svg",
  15706. extra: 2060 / 1873
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Micro",
  15713. height: math.unit(1, "mm")
  15714. },
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(1.8, "meter"),
  15718. default: true
  15719. },
  15720. {
  15721. name: "Macro",
  15722. height: math.unit(30, "meters")
  15723. },
  15724. {
  15725. name: "Megamacro",
  15726. height: math.unit(10, "km")
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(6, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/jack/front.svg",
  15739. extra: 1754 / 1640,
  15740. bottom: 0.01
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(80000, "feet"),
  15748. default: true
  15749. },
  15750. {
  15751. name: "Max size",
  15752. height: math.unit(10, "lightyears")
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15758. {
  15759. urban: {
  15760. height: math.unit(5, "feet"),
  15761. weight: math.unit(240, "lb"),
  15762. name: "Urban",
  15763. image: {
  15764. source: "./media/characters/cafat/urban.svg",
  15765. extra: 1223/1126,
  15766. bottom: 205/1428
  15767. }
  15768. },
  15769. summer: {
  15770. height: math.unit(5, "feet"),
  15771. weight: math.unit(240, "lb"),
  15772. name: "Summer",
  15773. image: {
  15774. source: "./media/characters/cafat/summer.svg",
  15775. extra: 1223/1126,
  15776. bottom: 205/1428
  15777. }
  15778. },
  15779. winter: {
  15780. height: math.unit(5, "feet"),
  15781. weight: math.unit(240, "lb"),
  15782. name: "Winter",
  15783. image: {
  15784. source: "./media/characters/cafat/winter.svg",
  15785. extra: 1223/1126,
  15786. bottom: 205/1428
  15787. }
  15788. },
  15789. lingerie: {
  15790. height: math.unit(5, "feet"),
  15791. weight: math.unit(240, "lb"),
  15792. name: "Lingerie",
  15793. image: {
  15794. source: "./media/characters/cafat/lingerie.svg",
  15795. extra: 1223/1126,
  15796. bottom: 205/1428
  15797. }
  15798. },
  15799. upright: {
  15800. height: math.unit(6.3, "feet"),
  15801. weight: math.unit(240, "lb"),
  15802. name: "Upright",
  15803. image: {
  15804. source: "./media/characters/cafat/upright.svg",
  15805. bottom: 0.01
  15806. }
  15807. },
  15808. uprightFull: {
  15809. height: math.unit(6.3, "feet"),
  15810. weight: math.unit(240, "lb"),
  15811. name: "Upright (Full)",
  15812. image: {
  15813. source: "./media/characters/cafat/upright-full.svg",
  15814. bottom: 0.01
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Small",
  15821. height: math.unit(5, "feet"),
  15822. default: true
  15823. },
  15824. {
  15825. name: "Large",
  15826. height: math.unit(13, "feet")
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6, "feet"),
  15835. weight: math.unit(150, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/verin-raharra/front.svg",
  15839. extra: 5019 / 4835,
  15840. bottom: 0.023
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(7 + 5 / 12, "feet"),
  15848. default: true
  15849. },
  15850. {
  15851. name: "Upsized",
  15852. height: math.unit(20, "feet")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(7, "feet"),
  15861. weight: math.unit(230, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/nakata/front.svg",
  15865. extra: 1.005,
  15866. bottom: 0.01
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(7, "feet"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Big",
  15878. height: math.unit(14, "feet")
  15879. },
  15880. {
  15881. name: "Macro",
  15882. height: math.unit(400, "feet")
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(4.91, "feet"),
  15891. weight: math.unit(100, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/lily/front.svg",
  15895. extra: 1585 / 1415,
  15896. bottom: 0.02
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(4.91, "feet"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15910. {
  15911. laying: {
  15912. height: math.unit(4 + 4 / 12, "feet"),
  15913. weight: math.unit(600, "lb"),
  15914. name: "Laying",
  15915. image: {
  15916. source: "./media/characters/sheila/laying.svg",
  15917. extra: 1333 / 1265,
  15918. bottom: 0.16
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(4 + 4 / 12, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(190, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/sax/front.svg",
  15939. extra: 1187 / 973,
  15940. bottom: 0.042
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Micro",
  15947. height: math.unit(4, "inches"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(6, "feet"),
  15957. weight: math.unit(150, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/pandora/front.svg",
  15961. extra: 2720 / 2556,
  15962. bottom: 0.015
  15963. }
  15964. },
  15965. back: {
  15966. height: math.unit(6, "feet"),
  15967. weight: math.unit(150, "lb"),
  15968. name: "Back",
  15969. image: {
  15970. source: "./media/characters/pandora/back.svg",
  15971. extra: 2720 / 2556,
  15972. bottom: 0.01
  15973. }
  15974. },
  15975. beans: {
  15976. height: math.unit(6 / 8, "feet"),
  15977. name: "Beans",
  15978. image: {
  15979. source: "./media/characters/pandora/beans.svg"
  15980. }
  15981. },
  15982. collar: {
  15983. height: math.unit(0.31, "feet"),
  15984. name: "Collar",
  15985. image: {
  15986. source: "./media/characters/pandora/collar.svg"
  15987. }
  15988. },
  15989. skirt: {
  15990. height: math.unit(6, "feet"),
  15991. weight: math.unit(150, "lb"),
  15992. name: "Skirt",
  15993. image: {
  15994. source: "./media/characters/pandora/skirt.svg",
  15995. extra: 1622 / 1525,
  15996. bottom: 0.015
  15997. }
  15998. },
  15999. hoodie: {
  16000. height: math.unit(6, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Hoodie",
  16003. image: {
  16004. source: "./media/characters/pandora/hoodie.svg",
  16005. extra: 1622 / 1525,
  16006. bottom: 0.015
  16007. }
  16008. },
  16009. casual: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Casual",
  16013. image: {
  16014. source: "./media/characters/pandora/casual.svg",
  16015. extra: 1622 / 1525,
  16016. bottom: 0.015
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(6, "feet")
  16024. },
  16025. {
  16026. name: "Big Steppy",
  16027. height: math.unit(1, "km"),
  16028. default: true
  16029. },
  16030. {
  16031. name: "Galactic Steppy",
  16032. height: math.unit(2, "gigameters")
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16038. {
  16039. side: {
  16040. height: math.unit(10, "feet"),
  16041. weight: math.unit(800, "kg"),
  16042. name: "Side",
  16043. image: {
  16044. source: "./media/characters/venio-darcony/side.svg",
  16045. extra: 1373 / 1003,
  16046. bottom: 0.037
  16047. }
  16048. },
  16049. front: {
  16050. height: math.unit(19, "feet"),
  16051. weight: math.unit(800, "kg"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/venio-darcony/front.svg"
  16055. }
  16056. },
  16057. back: {
  16058. height: math.unit(19, "feet"),
  16059. weight: math.unit(800, "kg"),
  16060. name: "Back",
  16061. image: {
  16062. source: "./media/characters/venio-darcony/back.svg"
  16063. }
  16064. },
  16065. sideNsfw: {
  16066. height: math.unit(10, "feet"),
  16067. weight: math.unit(800, "kg"),
  16068. name: "Side (NSFW)",
  16069. image: {
  16070. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16071. extra: 1373 / 1003,
  16072. bottom: 0.037
  16073. }
  16074. },
  16075. frontNsfw: {
  16076. height: math.unit(19, "feet"),
  16077. weight: math.unit(800, "kg"),
  16078. name: "Front (NSFW)",
  16079. image: {
  16080. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16081. }
  16082. },
  16083. backNsfw: {
  16084. height: math.unit(19, "feet"),
  16085. weight: math.unit(800, "kg"),
  16086. name: "Back (NSFW)",
  16087. image: {
  16088. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16089. }
  16090. },
  16091. sideArmored: {
  16092. height: math.unit(10, "feet"),
  16093. weight: math.unit(800, "kg"),
  16094. name: "Side (Armored)",
  16095. image: {
  16096. source: "./media/characters/venio-darcony/side-armored.svg",
  16097. extra: 1373 / 1003,
  16098. bottom: 0.037
  16099. }
  16100. },
  16101. frontArmored: {
  16102. height: math.unit(19, "feet"),
  16103. weight: math.unit(900, "kg"),
  16104. name: "Front (Armored)",
  16105. image: {
  16106. source: "./media/characters/venio-darcony/front-armored.svg"
  16107. }
  16108. },
  16109. backArmored: {
  16110. height: math.unit(19, "feet"),
  16111. weight: math.unit(900, "kg"),
  16112. name: "Back (Armored)",
  16113. image: {
  16114. source: "./media/characters/venio-darcony/back-armored.svg"
  16115. }
  16116. },
  16117. sword: {
  16118. height: math.unit(10, "feet"),
  16119. weight: math.unit(50, "lb"),
  16120. name: "Sword",
  16121. image: {
  16122. source: "./media/characters/venio-darcony/sword.svg"
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(10, "feet")
  16130. },
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(130, "feet"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Macro+",
  16138. height: math.unit(240, "feet")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(150, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/veski/front.svg",
  16151. extra: 1299 / 1225,
  16152. bottom: 0.04
  16153. }
  16154. },
  16155. back: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(150, "lb"),
  16158. name: "Back",
  16159. image: {
  16160. source: "./media/characters/veski/back.svg",
  16161. extra: 1299 / 1225,
  16162. bottom: 0.008
  16163. }
  16164. },
  16165. maw: {
  16166. height: math.unit(1.5 * 1.21, "feet"),
  16167. name: "Maw",
  16168. image: {
  16169. source: "./media/characters/veski/maw.svg"
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Macro",
  16176. height: math.unit(2, "km"),
  16177. default: true
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16183. {
  16184. front: {
  16185. height: math.unit(5 + 7 / 12, "feet"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/isabelle/front.svg",
  16189. extra: 2130 / 1976,
  16190. bottom: 0.05
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Supermicro",
  16197. height: math.unit(10, "micrometers")
  16198. },
  16199. {
  16200. name: "Micro",
  16201. height: math.unit(1, "inch")
  16202. },
  16203. {
  16204. name: "Tiny",
  16205. height: math.unit(5, "inches")
  16206. },
  16207. {
  16208. name: "Standard",
  16209. height: math.unit(5 + 7 / 12, "inches")
  16210. },
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(80, "meters"),
  16214. default: true
  16215. },
  16216. {
  16217. name: "Megamacro",
  16218. height: math.unit(250, "meters")
  16219. },
  16220. {
  16221. name: "Gigamacro",
  16222. height: math.unit(5, "km")
  16223. },
  16224. {
  16225. name: "Cosmic",
  16226. height: math.unit(2.5e6, "miles")
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(150, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/hanzo/front.svg",
  16239. extra: 374 / 344,
  16240. bottom: 0.02
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(8, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(7, "feet"),
  16257. weight: math.unit(130, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/anna/front.svg",
  16261. extra: 169 / 145,
  16262. bottom: 0.06
  16263. }
  16264. },
  16265. full: {
  16266. height: math.unit(4.96, "feet"),
  16267. weight: math.unit(220, "lb"),
  16268. name: "Full",
  16269. image: {
  16270. source: "./media/characters/anna/full.svg",
  16271. extra: 138 / 114,
  16272. bottom: 0.15
  16273. }
  16274. },
  16275. tongue: {
  16276. height: math.unit(2.53, "feet"),
  16277. name: "Tongue",
  16278. image: {
  16279. source: "./media/characters/anna/tongue.svg"
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(7, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(7, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/ian-corvid/front.svg",
  16300. extra: 150 / 142,
  16301. bottom: 0.02
  16302. }
  16303. },
  16304. back: {
  16305. height: math.unit(7, "feet"),
  16306. weight: math.unit(150, "lb"),
  16307. name: "Back",
  16308. image: {
  16309. source: "./media/characters/ian-corvid/back.svg",
  16310. extra: 150 / 143,
  16311. bottom: 0.01
  16312. }
  16313. },
  16314. stomping: {
  16315. height: math.unit(7, "feet"),
  16316. weight: math.unit(150, "lb"),
  16317. name: "Stomping",
  16318. image: {
  16319. source: "./media/characters/ian-corvid/stomping.svg",
  16320. extra: 76 / 72
  16321. }
  16322. },
  16323. sitting: {
  16324. height: math.unit(7 / 1.8, "feet"),
  16325. weight: math.unit(150, "lb"),
  16326. name: "Sitting",
  16327. image: {
  16328. source: "./media/characters/ian-corvid/sitting.svg",
  16329. extra: 1400 / 1269,
  16330. bottom: 0.15
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Tiny Microw",
  16337. height: math.unit(1, "inch")
  16338. },
  16339. {
  16340. name: "Microw",
  16341. height: math.unit(6, "inches")
  16342. },
  16343. {
  16344. name: "Crow",
  16345. height: math.unit(7 + 1 / 12, "feet"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Macrow",
  16350. height: math.unit(176, "feet")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 7 / 12, "feet"),
  16359. weight: math.unit(147, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/natalie-kellon/front.svg",
  16363. extra: 1214 / 1141,
  16364. bottom: 0.02
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(1 / 16, "inch")
  16372. },
  16373. {
  16374. name: "Tiny",
  16375. height: math.unit(4, "inches")
  16376. },
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(5 + 7 / 12, "feet"),
  16380. default: true
  16381. },
  16382. {
  16383. name: "Amazon",
  16384. height: math.unit(12, "feet")
  16385. },
  16386. {
  16387. name: "Giantess",
  16388. height: math.unit(160, "meters")
  16389. },
  16390. {
  16391. name: "Titaness",
  16392. height: math.unit(800, "meters")
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16398. {
  16399. front: {
  16400. height: math.unit(6, "feet"),
  16401. weight: math.unit(150, "lb"),
  16402. name: "Front",
  16403. image: {
  16404. source: "./media/characters/alluria/front.svg",
  16405. extra: 806 / 738,
  16406. bottom: 0.01
  16407. }
  16408. },
  16409. side: {
  16410. height: math.unit(6, "feet"),
  16411. weight: math.unit(150, "lb"),
  16412. name: "Side",
  16413. image: {
  16414. source: "./media/characters/alluria/side.svg",
  16415. extra: 800 / 750,
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(150, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/alluria/back.svg",
  16424. extra: 806 / 738,
  16425. }
  16426. },
  16427. frontMaid: {
  16428. height: math.unit(6, "feet"),
  16429. weight: math.unit(150, "lb"),
  16430. name: "Front (Maid)",
  16431. image: {
  16432. source: "./media/characters/alluria/front-maid.svg",
  16433. extra: 806 / 738,
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. sideMaid: {
  16438. height: math.unit(6, "feet"),
  16439. weight: math.unit(150, "lb"),
  16440. name: "Side (Maid)",
  16441. image: {
  16442. source: "./media/characters/alluria/side-maid.svg",
  16443. extra: 800 / 750,
  16444. bottom: 0.005
  16445. }
  16446. },
  16447. backMaid: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Back (Maid)",
  16451. image: {
  16452. source: "./media/characters/alluria/back-maid.svg",
  16453. extra: 806 / 738,
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Micro",
  16460. height: math.unit(6, "inches"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(6, "feet"),
  16470. weight: math.unit(150, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/kyle/front.svg",
  16474. extra: 1069 / 962,
  16475. bottom: 77.228 / 1727.45
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(150, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(300, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/duncan/front.svg",
  16496. extra: 1650 / 1482,
  16497. bottom: 0.05
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(100, "feet"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 4 / 12, "feet"),
  16514. weight: math.unit(220, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/memory/front.svg",
  16518. extra: 3641 / 3545,
  16519. bottom: 0.03
  16520. }
  16521. },
  16522. back: {
  16523. height: math.unit(5 + 4 / 12, "feet"),
  16524. weight: math.unit(220, "lb"),
  16525. name: "Back",
  16526. image: {
  16527. source: "./media/characters/memory/back.svg",
  16528. extra: 3641 / 3545,
  16529. bottom: 0.025
  16530. }
  16531. },
  16532. frontSkirt: {
  16533. height: math.unit(5 + 4 / 12, "feet"),
  16534. weight: math.unit(220, "lb"),
  16535. name: "Front (Skirt)",
  16536. image: {
  16537. source: "./media/characters/memory/front-skirt.svg",
  16538. extra: 3641 / 3545,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. frontDress: {
  16543. height: math.unit(5 + 4 / 12, "feet"),
  16544. weight: math.unit(220, "lb"),
  16545. name: "Front (Dress)",
  16546. image: {
  16547. source: "./media/characters/memory/front-dress.svg",
  16548. extra: 3641 / 3545,
  16549. bottom: 0.03
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Micro",
  16556. height: math.unit(6, "inches"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(5 + 4 / 12, "feet")
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(4 + 11 / 12, "feet"),
  16570. weight: math.unit(100, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/luno/front.svg",
  16574. extra: 1535 / 1487,
  16575. bottom: 0.03
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Micro",
  16582. height: math.unit(3, "inches")
  16583. },
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(4 + 11 / 12, "feet"),
  16587. default: true
  16588. },
  16589. {
  16590. name: "Macro",
  16591. height: math.unit(300, "feet")
  16592. },
  16593. {
  16594. name: "Megamacro",
  16595. height: math.unit(700, "miles")
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(6 + 2 / 12, "feet"),
  16604. weight: math.unit(170, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/jamesy/front.svg",
  16608. extra: 440 / 382,
  16609. bottom: 0.005
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Micro",
  16616. height: math.unit(3, "inches")
  16617. },
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(6 + 2 / 12, "feet"),
  16621. default: true
  16622. },
  16623. {
  16624. name: "Macro",
  16625. height: math.unit(300, "feet")
  16626. },
  16627. {
  16628. name: "Megamacro",
  16629. height: math.unit(700, "miles")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16635. {
  16636. front: {
  16637. height: math.unit(6, "feet"),
  16638. weight: math.unit(160, "lb"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/mark/front.svg",
  16642. extra: 3300 / 3100,
  16643. bottom: 136.42 / 3440.47
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Macro",
  16650. height: math.unit(120, "meters")
  16651. },
  16652. {
  16653. name: "Bigger Macro",
  16654. height: math.unit(350, "meters")
  16655. },
  16656. {
  16657. name: "Megamacro",
  16658. height: math.unit(8, "km"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Continental",
  16663. height: math.unit(4550, "km")
  16664. },
  16665. {
  16666. name: "Planetary",
  16667. height: math.unit(65000, "km")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(400, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/mac/front.svg",
  16680. extra: 1048 / 987.7,
  16681. bottom: 60 / 1107.6,
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Macro",
  16688. height: math.unit(500, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(5 + 2 / 12, "feet"),
  16698. weight: math.unit(190, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/bari/front.svg",
  16702. extra: 3156 / 2880,
  16703. bottom: 0.03
  16704. }
  16705. },
  16706. back: {
  16707. height: math.unit(5 + 2 / 12, "feet"),
  16708. weight: math.unit(190, "lb"),
  16709. name: "Back",
  16710. image: {
  16711. source: "./media/characters/bari/back.svg",
  16712. extra: 3260 / 2834,
  16713. bottom: 0.025
  16714. }
  16715. },
  16716. frontPlush: {
  16717. height: math.unit(5 + 2 / 12, "feet"),
  16718. weight: math.unit(190, "lb"),
  16719. name: "Front (Plush)",
  16720. image: {
  16721. source: "./media/characters/bari/front-plush.svg",
  16722. extra: 1112 / 1061,
  16723. bottom: 0.002
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Micro",
  16730. height: math.unit(3, "inches")
  16731. },
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 2 / 12, "feet"),
  16735. default: true
  16736. },
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(20, "feet")
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(6 + 1 / 12, "feet"),
  16748. weight: math.unit(275, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/hunter-misha-raven/front.svg"
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Mortal",
  16758. height: math.unit(6 + 1 / 12, "feet")
  16759. },
  16760. {
  16761. name: "Divine",
  16762. height: math.unit(1.12134e34, "parsecs"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(6 + 3 / 12, "feet"),
  16772. weight: math.unit(220, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/max-calore/front.svg",
  16776. extra: 1700 / 1648,
  16777. bottom: 0.01
  16778. }
  16779. },
  16780. back: {
  16781. height: math.unit(6 + 3 / 12, "feet"),
  16782. weight: math.unit(220, "lb"),
  16783. name: "Back",
  16784. image: {
  16785. source: "./media/characters/max-calore/back.svg",
  16786. extra: 1700 / 1648,
  16787. bottom: 0.01
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(6 + 3 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16801. {
  16802. side: {
  16803. height: math.unit(2 + 8 / 12, "feet"),
  16804. weight: math.unit(99, "lb"),
  16805. name: "Side",
  16806. image: {
  16807. source: "./media/characters/aspen/side.svg",
  16808. extra: 152 / 138,
  16809. bottom: 0.032
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(2 + 8 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16823. {
  16824. side: {
  16825. height: math.unit(3 + 2 / 12, "feet"),
  16826. weight: math.unit(224, "lb"),
  16827. name: "Side",
  16828. image: {
  16829. source: "./media/characters/sheila-feral-wolf/side.svg",
  16830. extra: 179 / 166,
  16831. bottom: 0.03
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(3 + 2 / 12, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16845. {
  16846. side: {
  16847. height: math.unit(1 + 9 / 12, "feet"),
  16848. weight: math.unit(38, "lb"),
  16849. name: "Side",
  16850. image: {
  16851. source: "./media/characters/michelle/side.svg",
  16852. extra: 147 / 136.7,
  16853. bottom: 0.03
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(1 + 9 / 12, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(1 + 1 / 12, "feet"),
  16870. weight: math.unit(18, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/nino/front.svg"
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(1 + 1 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(1, "feet"),
  16890. weight: math.unit(16, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/viola/front.svg"
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(1, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6 + 5 / 12, "feet"),
  16910. weight: math.unit(580, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/atlas/front.svg",
  16914. extra: 298.5 / 290,
  16915. bottom: 0.015
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(6 + 5 / 12, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16929. {
  16930. side: {
  16931. height: math.unit(1 + 10 / 12, "feet"),
  16932. weight: math.unit(25, "lb"),
  16933. name: "Side",
  16934. image: {
  16935. source: "./media/characters/davy/side.svg",
  16936. extra: 200 / 170,
  16937. bottom: 0.01
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(1 + 10 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16951. {
  16952. side: {
  16953. height: math.unit(4 + 8 / 12, "feet"),
  16954. weight: math.unit(166, "lb"),
  16955. name: "Side",
  16956. image: {
  16957. source: "./media/characters/fiona/side.svg",
  16958. extra: 232 / 220,
  16959. bottom: 0.03
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(4 + 8 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16973. {
  16974. front: {
  16975. height: math.unit(2, "feet"),
  16976. weight: math.unit(62, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/lyla/front.svg",
  16980. bottom: 0.1
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(2, "feet"),
  16988. default: true
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16994. {
  16995. side: {
  16996. height: math.unit(1.8, "feet"),
  16997. weight: math.unit(44, "lb"),
  16998. name: "Side",
  16999. image: {
  17000. source: "./media/characters/perseus/side.svg",
  17001. bottom: 0.21
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(1.8, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17015. {
  17016. side: {
  17017. height: math.unit(4 + 2 / 12, "feet"),
  17018. weight: math.unit(20, "lb"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/remus/side.svg"
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(4 + 2 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(4 + 11 / 12, "feet"),
  17038. weight: math.unit(114, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/raf/front.svg",
  17042. bottom: 20.5 / 1863
  17043. }
  17044. },
  17045. side: {
  17046. height: math.unit(4 + 11 / 12, "feet"),
  17047. weight: math.unit(114, "lb"),
  17048. name: "Side",
  17049. image: {
  17050. source: "./media/characters/raf/side.svg",
  17051. bottom: 22 / 1822
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Micro",
  17058. height: math.unit(2, "inches")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(4 + 11 / 12, "feet"),
  17063. default: true
  17064. },
  17065. {
  17066. name: "Macro",
  17067. height: math.unit(70, "feet")
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(1.5, "meters"),
  17076. weight: math.unit(68, "kg"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/liam-einarr/front.svg",
  17080. extra: 2822 / 2666
  17081. }
  17082. },
  17083. back: {
  17084. height: math.unit(1.5, "meters"),
  17085. weight: math.unit(68, "kg"),
  17086. name: "Back",
  17087. image: {
  17088. source: "./media/characters/liam-einarr/back.svg",
  17089. extra: 2822 / 2666,
  17090. bottom: 0.015
  17091. }
  17092. },
  17093. },
  17094. [
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(1.5, "meters"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Macro",
  17102. height: math.unit(150, "meters")
  17103. },
  17104. {
  17105. name: "Megamacro",
  17106. height: math.unit(35, "km")
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(75, "kg"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/linda/front.svg",
  17119. extra: 930 / 874,
  17120. bottom: 0.004
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(6 + 8 / 12, "feet"),
  17137. weight: math.unit(220, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/caylex/front.svg",
  17141. extra: 821 / 772,
  17142. bottom: 0.07
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(6 + 8 / 12, "feet"),
  17147. weight: math.unit(220, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/caylex/back.svg",
  17151. extra: 821 / 772,
  17152. bottom: 0.022
  17153. }
  17154. },
  17155. hand: {
  17156. height: math.unit(1.25, "feet"),
  17157. name: "Hand",
  17158. image: {
  17159. source: "./media/characters/caylex/hand.svg"
  17160. }
  17161. },
  17162. foot: {
  17163. height: math.unit(1.6, "feet"),
  17164. name: "Foot",
  17165. image: {
  17166. source: "./media/characters/caylex/foot.svg"
  17167. }
  17168. },
  17169. armored: {
  17170. height: math.unit(6 + 8 / 12, "feet"),
  17171. weight: math.unit(250, "lb"),
  17172. name: "Armored",
  17173. image: {
  17174. source: "./media/characters/caylex/armored.svg",
  17175. extra: 1420 / 1310,
  17176. bottom: 0.045
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(6 + 8 / 12, "feet"),
  17184. default: true
  17185. },
  17186. {
  17187. name: "Normal+",
  17188. height: math.unit(12, "feet")
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(7 + 6 / 12, "feet"),
  17197. weight: math.unit(288, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/alana/front.svg",
  17201. extra: 679 / 653,
  17202. bottom: 22.5 / 701
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(7 + 6 / 12, "feet")
  17210. },
  17211. {
  17212. name: "Large",
  17213. height: math.unit(50, "feet")
  17214. },
  17215. {
  17216. name: "Macro",
  17217. height: math.unit(100, "feet"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "Macro+",
  17222. height: math.unit(200, "feet")
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6 + 1 / 12, "feet"),
  17231. weight: math.unit(210, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/hasani/front.svg",
  17235. extra: 244 / 232,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. back: {
  17240. height: math.unit(6 + 1 / 12, "feet"),
  17241. weight: math.unit(210, "lb"),
  17242. name: "Back",
  17243. image: {
  17244. source: "./media/characters/hasani/back.svg",
  17245. extra: 244 / 232,
  17246. bottom: 0.01
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(6 + 1 / 12, "feet")
  17254. },
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(175, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(1.82, "meters"),
  17267. weight: math.unit(140, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/nita/front.svg",
  17271. extra: 2473 / 2363,
  17272. bottom: 0.01
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(1.82, "m")
  17280. },
  17281. {
  17282. name: "Macro",
  17283. height: math.unit(300, "m")
  17284. },
  17285. {
  17286. name: "Mistake Canon",
  17287. height: math.unit(0.5, "miles"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Big Mistake",
  17292. height: math.unit(13, "miles")
  17293. },
  17294. {
  17295. name: "Playing God",
  17296. height: math.unit(2450, "miles")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(4, "feet"),
  17305. weight: math.unit(120, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/shiriko/front.svg",
  17309. extra: 970/934,
  17310. bottom: 5/975
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(4, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(6, "feet"),
  17327. name: "front",
  17328. image: {
  17329. source: "./media/characters/deja/front.svg",
  17330. extra: 926 / 840,
  17331. bottom: 0.07
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Planck Length",
  17338. height: math.unit(1.6e-35, "meters")
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(30.48, "meters"),
  17343. default: true
  17344. },
  17345. {
  17346. name: "Universal",
  17347. height: math.unit(8.8e26, "meters")
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17353. {
  17354. side: {
  17355. height: math.unit(8, "feet"),
  17356. weight: math.unit(6300, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/anima/side.svg",
  17360. bottom: 0.035
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(8, "feet"),
  17368. default: true
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(8, "feet"),
  17377. weight: math.unit(350, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/bianca/front.svg",
  17381. extra: 234 / 225,
  17382. bottom: 0.03
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(8, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(6, "feet"),
  17399. weight: math.unit(150, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/adinia/front.svg",
  17403. extra: 1845 / 1672,
  17404. bottom: 0.02
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(150, "lb"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/adinia/back.svg",
  17413. extra: 1845 / 1672,
  17414. bottom: 0.002
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(11 + 5 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(3, "meters"),
  17431. weight: math.unit(200, "kg"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/lykasa/front.svg",
  17435. extra: 1076 / 976,
  17436. bottom: 0.06
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(3, "meters")
  17444. },
  17445. {
  17446. name: "Kaiju",
  17447. height: math.unit(120, "meters"),
  17448. default: true
  17449. },
  17450. {
  17451. name: "Mega Kaiju",
  17452. height: math.unit(240, "km")
  17453. },
  17454. {
  17455. name: "Giga Kaiju",
  17456. height: math.unit(400, "megameters")
  17457. },
  17458. {
  17459. name: "Tera Kaiju",
  17460. height: math.unit(800, "gigameters")
  17461. },
  17462. {
  17463. name: "Kaiju Dragon Goddess",
  17464. height: math.unit(26, "zettaparsecs")
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17470. {
  17471. side: {
  17472. height: math.unit(283 / 124 * 6, "feet"),
  17473. weight: math.unit(35000, "lb"),
  17474. name: "Side",
  17475. image: {
  17476. source: "./media/characters/malfaren/side.svg",
  17477. extra: 2500 / 1010,
  17478. bottom: 0.01
  17479. }
  17480. },
  17481. front: {
  17482. height: math.unit(22.36, "feet"),
  17483. weight: math.unit(35000, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/malfaren/front.svg",
  17487. extra: 1631 / 1476,
  17488. bottom: 0.01
  17489. }
  17490. },
  17491. maw: {
  17492. height: math.unit(6.9, "feet"),
  17493. name: "Maw",
  17494. image: {
  17495. source: "./media/characters/malfaren/maw.svg"
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Big",
  17502. height: math.unit(283 / 162 * 6, "feet"),
  17503. },
  17504. {
  17505. name: "Bigger",
  17506. height: math.unit(283 / 124 * 6, "feet")
  17507. },
  17508. {
  17509. name: "Massive",
  17510. height: math.unit(283 / 92 * 6, "feet"),
  17511. default: true
  17512. },
  17513. {
  17514. name: "👀💦",
  17515. height: math.unit(283 / 73 * 6, "feet"),
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(1.7, "m"),
  17524. weight: math.unit(70, "kg"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/kernel/front.svg",
  17528. extra: 222 / 210,
  17529. bottom: 0.007
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Nano",
  17536. height: math.unit(17, "micrometers")
  17537. },
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(1.7, "mm")
  17541. },
  17542. {
  17543. name: "Small",
  17544. height: math.unit(1.7, "cm")
  17545. },
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(1.7, "m"),
  17549. default: true
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(1.75, "meters"),
  17558. weight: math.unit(65, "kg"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/jayne-folest/front.svg",
  17562. extra: 2115 / 2007,
  17563. bottom: 0.02
  17564. }
  17565. },
  17566. back: {
  17567. height: math.unit(1.75, "meters"),
  17568. weight: math.unit(65, "kg"),
  17569. name: "Back",
  17570. image: {
  17571. source: "./media/characters/jayne-folest/back.svg",
  17572. extra: 2115 / 2007,
  17573. bottom: 0.005
  17574. }
  17575. },
  17576. frontClothed: {
  17577. height: math.unit(1.75, "meters"),
  17578. weight: math.unit(65, "kg"),
  17579. name: "Front (Clothed)",
  17580. image: {
  17581. source: "./media/characters/jayne-folest/front-clothed.svg",
  17582. extra: 2115 / 2007,
  17583. bottom: 0.035
  17584. }
  17585. },
  17586. hand: {
  17587. height: math.unit(1 / 1.260, "feet"),
  17588. name: "Hand",
  17589. image: {
  17590. source: "./media/characters/jayne-folest/hand.svg"
  17591. }
  17592. },
  17593. foot: {
  17594. height: math.unit(1 / 0.918, "feet"),
  17595. name: "Foot",
  17596. image: {
  17597. source: "./media/characters/jayne-folest/foot.svg"
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(4, "cm")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(1.75, "meters")
  17609. },
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(47.5, "meters"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(180, "cm"),
  17622. weight: math.unit(70, "kg"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/algier/front.svg",
  17626. extra: 596 / 572,
  17627. bottom: 0.04
  17628. }
  17629. },
  17630. back: {
  17631. height: math.unit(180, "cm"),
  17632. weight: math.unit(70, "kg"),
  17633. name: "Back",
  17634. image: {
  17635. source: "./media/characters/algier/back.svg",
  17636. extra: 596 / 572,
  17637. bottom: 0.025
  17638. }
  17639. },
  17640. frontdressed: {
  17641. height: math.unit(180, "cm"),
  17642. weight: math.unit(150, "kg"),
  17643. name: "Front-dressed",
  17644. image: {
  17645. source: "./media/characters/algier/front-dressed.svg",
  17646. extra: 596 / 572,
  17647. bottom: 0.038
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Micro",
  17654. height: math.unit(5, "cm")
  17655. },
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(180, "cm"),
  17659. default: true
  17660. },
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(64, "m")
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17669. {
  17670. upright: {
  17671. height: math.unit(7, "feet"),
  17672. weight: math.unit(300, "lb"),
  17673. name: "Upright",
  17674. image: {
  17675. source: "./media/characters/pretzel/upright.svg",
  17676. extra: 534 / 522,
  17677. bottom: 0.065
  17678. }
  17679. },
  17680. sprawling: {
  17681. height: math.unit(3.75, "feet"),
  17682. weight: math.unit(300, "lb"),
  17683. name: "Sprawling",
  17684. image: {
  17685. source: "./media/characters/pretzel/sprawling.svg",
  17686. extra: 314 / 281,
  17687. bottom: 0.1
  17688. }
  17689. },
  17690. tongue: {
  17691. height: math.unit(2, "feet"),
  17692. name: "Tongue",
  17693. image: {
  17694. source: "./media/characters/pretzel/tongue.svg"
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(7, "feet"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Oversized",
  17706. height: math.unit(15, "feet")
  17707. },
  17708. {
  17709. name: "Huge",
  17710. height: math.unit(30, "feet")
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(250, "feet")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17720. {
  17721. sideFront: {
  17722. height: math.unit(5 + 2 / 12, "feet"),
  17723. weight: math.unit(120, "lb"),
  17724. name: "Front Side",
  17725. image: {
  17726. source: "./media/characters/roxi/side-front.svg",
  17727. extra: 2924 / 2717,
  17728. bottom: 0.08
  17729. }
  17730. },
  17731. sideBack: {
  17732. height: math.unit(5 + 2 / 12, "feet"),
  17733. weight: math.unit(120, "lb"),
  17734. name: "Back Side",
  17735. image: {
  17736. source: "./media/characters/roxi/side-back.svg",
  17737. extra: 2904 / 2693,
  17738. bottom: 0.06
  17739. }
  17740. },
  17741. front: {
  17742. height: math.unit(5 + 2 / 12, "feet"),
  17743. weight: math.unit(120, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/roxi/front.svg",
  17747. extra: 2028 / 1907,
  17748. bottom: 0.01
  17749. }
  17750. },
  17751. frontAlt: {
  17752. height: math.unit(5 + 2 / 12, "feet"),
  17753. weight: math.unit(120, "lb"),
  17754. name: "Front (Alt)",
  17755. image: {
  17756. source: "./media/characters/roxi/front-alt.svg",
  17757. extra: 1828 / 1798,
  17758. bottom: 0.01
  17759. }
  17760. },
  17761. sitting: {
  17762. height: math.unit(2.8, "feet"),
  17763. weight: math.unit(120, "lb"),
  17764. name: "Sitting",
  17765. image: {
  17766. source: "./media/characters/roxi/sitting.svg",
  17767. extra: 2660 / 2462,
  17768. bottom: 0.1
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(5 + 2 / 12, "feet"),
  17776. default: true
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17782. {
  17783. side: {
  17784. height: math.unit(55, "feet"),
  17785. weight: math.unit(153, "tons"),
  17786. name: "Side",
  17787. image: {
  17788. source: "./media/characters/shadow/side.svg",
  17789. extra: 701 / 628,
  17790. bottom: 0.02
  17791. }
  17792. },
  17793. flying: {
  17794. height: math.unit(145, "feet"),
  17795. weight: math.unit(153, "tons"),
  17796. name: "Flying",
  17797. image: {
  17798. source: "./media/characters/shadow/flying.svg"
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(55, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(6, "feet"),
  17815. weight: math.unit(200, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/marcie/front.svg",
  17819. extra: 960 / 876,
  17820. bottom: 58 / 1017.87
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Macro",
  17827. height: math.unit(1, "mile"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(7, "feet"),
  17837. weight: math.unit(200, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/kachina/front.svg",
  17841. extra: 1290.68 / 1119,
  17842. bottom: 36.5 / 1327.18
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(7, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17856. {
  17857. looking: {
  17858. height: math.unit(2, "meters"),
  17859. weight: math.unit(300, "kg"),
  17860. name: "Looking",
  17861. image: {
  17862. source: "./media/characters/kash/looking.svg",
  17863. extra: 474 / 344,
  17864. bottom: 0.03
  17865. }
  17866. },
  17867. side: {
  17868. height: math.unit(2, "meters"),
  17869. weight: math.unit(300, "kg"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/kash/side.svg",
  17873. extra: 302 / 251,
  17874. bottom: 0.03
  17875. }
  17876. },
  17877. front: {
  17878. height: math.unit(2, "meters"),
  17879. weight: math.unit(300, "kg"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/kash/front.svg",
  17883. extra: 495 / 360,
  17884. bottom: 0.015
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(2, "meters"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Big",
  17896. height: math.unit(3, "meters")
  17897. },
  17898. {
  17899. name: "Large",
  17900. height: math.unit(5, "meters")
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17906. {
  17907. feeding: {
  17908. height: math.unit(6.7, "feet"),
  17909. weight: math.unit(350, "lb"),
  17910. name: "Feeding",
  17911. image: {
  17912. source: "./media/characters/lalim/feeding.svg",
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(6.7, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(9.5, "feet"),
  17929. weight: math.unit(600, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/de'vout/front.svg",
  17933. extra: 1443 / 1328,
  17934. bottom: 0.025
  17935. }
  17936. },
  17937. back: {
  17938. height: math.unit(9.5, "feet"),
  17939. weight: math.unit(600, "lb"),
  17940. name: "Back",
  17941. image: {
  17942. source: "./media/characters/de'vout/back.svg",
  17943. extra: 1443 / 1328
  17944. }
  17945. },
  17946. frontDressed: {
  17947. height: math.unit(9.5, "feet"),
  17948. weight: math.unit(600, "lb"),
  17949. name: "Front (Dressed",
  17950. image: {
  17951. source: "./media/characters/de'vout/front-dressed.svg",
  17952. extra: 1443 / 1328,
  17953. bottom: 0.025
  17954. }
  17955. },
  17956. backDressed: {
  17957. height: math.unit(9.5, "feet"),
  17958. weight: math.unit(600, "lb"),
  17959. name: "Back (Dressed",
  17960. image: {
  17961. source: "./media/characters/de'vout/back-dressed.svg",
  17962. extra: 1443 / 1328
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(9.5, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17976. {
  17977. front: {
  17978. height: math.unit(8, "feet"),
  17979. weight: math.unit(225, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/talana/front.svg",
  17983. extra: 1410 / 1300,
  17984. bottom: 0.015
  17985. }
  17986. },
  17987. frontDressed: {
  17988. height: math.unit(8, "feet"),
  17989. weight: math.unit(225, "lb"),
  17990. name: "Front (Dressed",
  17991. image: {
  17992. source: "./media/characters/talana/front-dressed.svg",
  17993. extra: 1410 / 1300,
  17994. bottom: 0.015
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(8, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18008. {
  18009. side: {
  18010. height: math.unit(7.2, "feet"),
  18011. weight: math.unit(150, "lb"),
  18012. name: "Side",
  18013. image: {
  18014. source: "./media/characters/xeauvok/side.svg",
  18015. extra: 1975 / 1523,
  18016. bottom: 0.07
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(7.2, "feet"),
  18024. default: true
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18030. {
  18031. side: {
  18032. height: math.unit(10, "feet"),
  18033. weight: math.unit(900, "kg"),
  18034. name: "Side",
  18035. image: {
  18036. source: "./media/characters/zara/side.svg",
  18037. extra: 504 / 498
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(10, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18051. {
  18052. side: {
  18053. height: math.unit(6, "feet"),
  18054. weight: math.unit(150, "lb"),
  18055. name: "Side",
  18056. image: {
  18057. source: "./media/characters/richard-dragon/side.svg",
  18058. extra: 845 / 340,
  18059. bottom: 0.017
  18060. }
  18061. },
  18062. maw: {
  18063. height: math.unit(2.97, "feet"),
  18064. name: "Maw",
  18065. image: {
  18066. source: "./media/characters/richard-dragon/maw.svg"
  18067. }
  18068. },
  18069. },
  18070. [
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18075. {
  18076. front: {
  18077. height: math.unit(4, "feet"),
  18078. weight: math.unit(100, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/richard-smeargle/front.svg",
  18082. extra: 2952 / 2820,
  18083. bottom: 0.028
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(4, "feet"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Dynamax",
  18095. height: math.unit(20, "meters")
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(6, "feet"),
  18104. weight: math.unit(110, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/klay/front.svg",
  18108. extra: 962 / 883,
  18109. bottom: 0.04
  18110. }
  18111. },
  18112. back: {
  18113. height: math.unit(6, "feet"),
  18114. weight: math.unit(110, "lb"),
  18115. name: "Back",
  18116. image: {
  18117. source: "./media/characters/klay/back.svg",
  18118. extra: 962 / 883
  18119. }
  18120. },
  18121. beans: {
  18122. height: math.unit(1.15, "feet"),
  18123. name: "Beans",
  18124. image: {
  18125. source: "./media/characters/klay/beans.svg"
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Micro",
  18132. height: math.unit(6, "inches")
  18133. },
  18134. {
  18135. name: "Mini",
  18136. height: math.unit(3, "feet")
  18137. },
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(6, "feet"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Big",
  18145. height: math.unit(25, "feet")
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(100, "feet")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(400, "feet")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6, "feet"),
  18162. weight: math.unit(160, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/marcus/front.svg",
  18166. extra: 734 / 676,
  18167. bottom: 0.03
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Little",
  18174. height: math.unit(6, "feet")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(110, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(250, "feet")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(1000, "feet")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(7, "feet"),
  18196. weight: math.unit(275, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/claude-delroute/front.svg",
  18200. extra: 230 / 214,
  18201. bottom: 0.007
  18202. }
  18203. },
  18204. side: {
  18205. height: math.unit(7, "feet"),
  18206. weight: math.unit(275, "lb"),
  18207. name: "Side",
  18208. image: {
  18209. source: "./media/characters/claude-delroute/side.svg",
  18210. extra: 222 / 214,
  18211. bottom: 0.01
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(7, "feet"),
  18216. weight: math.unit(275, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/claude-delroute/back.svg",
  18220. extra: 230 / 214,
  18221. bottom: 0.015
  18222. }
  18223. },
  18224. maw: {
  18225. height: math.unit(0.6407, "meters"),
  18226. name: "Maw",
  18227. image: {
  18228. source: "./media/characters/claude-delroute/maw.svg"
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(7, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Lorge",
  18240. height: math.unit(20, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(8 + 4 / 12, "feet"),
  18249. weight: math.unit(600, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/dragonien/front.svg",
  18253. extra: 100 / 94,
  18254. bottom: 3.3 / 103.3445
  18255. }
  18256. },
  18257. back: {
  18258. height: math.unit(8 + 4 / 12, "feet"),
  18259. weight: math.unit(600, "lb"),
  18260. name: "Back",
  18261. image: {
  18262. source: "./media/characters/dragonien/back.svg",
  18263. extra: 776 / 746,
  18264. bottom: 6.4 / 782.0616
  18265. }
  18266. },
  18267. foot: {
  18268. height: math.unit(1.54, "feet"),
  18269. name: "Foot",
  18270. image: {
  18271. source: "./media/characters/dragonien/foot.svg",
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(8 + 4 / 12, "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(200, "feet")
  18284. },
  18285. {
  18286. name: "Megamacro",
  18287. height: math.unit(1, "mile")
  18288. },
  18289. {
  18290. name: "Gigamacro",
  18291. height: math.unit(1000, "miles")
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18297. {
  18298. front: {
  18299. height: math.unit(5 + 2 / 12, "feet"),
  18300. weight: math.unit(110, "lb"),
  18301. name: "Front",
  18302. image: {
  18303. source: "./media/characters/desta/front.svg",
  18304. extra: 767 / 726,
  18305. bottom: 11.7 / 779
  18306. }
  18307. },
  18308. back: {
  18309. height: math.unit(5 + 2 / 12, "feet"),
  18310. weight: math.unit(110, "lb"),
  18311. name: "Back",
  18312. image: {
  18313. source: "./media/characters/desta/back.svg",
  18314. extra: 777 / 728,
  18315. bottom: 6 / 784
  18316. }
  18317. },
  18318. frontAlt: {
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. weight: math.unit(110, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/desta/front-alt.svg",
  18324. extra: 1482 / 1417
  18325. }
  18326. },
  18327. side: {
  18328. height: math.unit(5 + 2 / 12, "feet"),
  18329. weight: math.unit(110, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/desta/side.svg",
  18333. extra: 2579 / 2491,
  18334. bottom: 0.053
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Micro",
  18341. height: math.unit(6, "inches")
  18342. },
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(5 + 2 / 12, "feet"),
  18346. default: true
  18347. },
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(62, "feet")
  18351. },
  18352. {
  18353. name: "Megamacro",
  18354. height: math.unit(1800, "feet")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(10, "feet"),
  18363. weight: math.unit(700, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/storm-alystar/front.svg",
  18367. extra: 2112 / 1898,
  18368. bottom: 0.034
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Micro",
  18375. height: math.unit(3.5, "inches")
  18376. },
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(10, "feet"),
  18380. default: true
  18381. },
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(400, "feet")
  18385. },
  18386. {
  18387. name: "Deific",
  18388. height: math.unit(60, "miles")
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(2.35, "meters"),
  18397. weight: math.unit(119, "kg"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/ilia/front.svg",
  18401. extra: 1285 / 1255,
  18402. bottom: 0.06
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(2.35, "meters")
  18410. },
  18411. {
  18412. name: "Macro",
  18413. height: math.unit(140, "meters"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Megamacro",
  18418. height: math.unit(100, "miles")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(6 + 5 / 12, "feet"),
  18427. weight: math.unit(190, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/kingdead/front.svg",
  18431. extra: 1228 / 1177
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Micro",
  18438. height: math.unit(7, "inches")
  18439. },
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(6 + 5 / 12, "feet")
  18443. },
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(150, "feet"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Megamacro",
  18451. height: math.unit(200, "miles")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(8, "feet"),
  18460. weight: math.unit(600, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/kyrehx/front.svg",
  18464. extra: 1195 / 1095,
  18465. bottom: 0.034
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(2, "inches")
  18473. },
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(8, "feet"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(255, "feet")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18490. weight: math.unit(184, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/xang/front.svg",
  18494. extra: 845 / 755
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18502. default: true
  18503. },
  18504. {
  18505. name: "Macro",
  18506. height: math.unit(0.935 * 146, "feet")
  18507. },
  18508. {
  18509. name: "Megamacro",
  18510. height: math.unit(0.935 * 3, "miles")
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18516. {
  18517. frontDressed: {
  18518. height: math.unit(5 + 7 / 12, "feet"),
  18519. weight: math.unit(140, "lb"),
  18520. name: "Front (Dressed)",
  18521. image: {
  18522. source: "./media/characters/doc-weardno/front-dressed.svg",
  18523. extra: 263 / 234
  18524. }
  18525. },
  18526. backDressed: {
  18527. height: math.unit(5 + 7 / 12, "feet"),
  18528. weight: math.unit(140, "lb"),
  18529. name: "Back (Dressed)",
  18530. image: {
  18531. source: "./media/characters/doc-weardno/back-dressed.svg",
  18532. extra: 266 / 238
  18533. }
  18534. },
  18535. front: {
  18536. height: math.unit(5 + 7 / 12, "feet"),
  18537. weight: math.unit(140, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/doc-weardno/front.svg",
  18541. extra: 254 / 233
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Micro",
  18548. height: math.unit(3, "inches")
  18549. },
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(5 + 7 / 12, "feet"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(25, "feet")
  18558. },
  18559. {
  18560. name: "Megamacro",
  18561. height: math.unit(2, "miles")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6 + 2 / 12, "feet"),
  18570. weight: math.unit(153, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/seth-whilst/front.svg",
  18574. bottom: 0.07
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Micro",
  18581. height: math.unit(5, "inches")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(6 + 2 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(3, "inches"),
  18595. weight: math.unit(8, "grams"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/pocket-jabari/front.svg",
  18599. extra: 1024 / 974,
  18600. bottom: 0.039
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Minimicro",
  18607. height: math.unit(8, "mm")
  18608. },
  18609. {
  18610. name: "Micro",
  18611. height: math.unit(3, "inches"),
  18612. default: true
  18613. },
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(3, "feet")
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(15, "feet"),
  18625. weight: math.unit(3280, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/sapphy/front.svg",
  18629. extra: 671 / 577,
  18630. bottom: 0.085
  18631. }
  18632. },
  18633. back: {
  18634. height: math.unit(15, "feet"),
  18635. weight: math.unit(3280, "lb"),
  18636. name: "Back",
  18637. image: {
  18638. source: "./media/characters/sapphy/back.svg",
  18639. extra: 631 / 607,
  18640. bottom: 0.045
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(15, "feet")
  18648. },
  18649. {
  18650. name: "Casual Macro",
  18651. height: math.unit(120, "feet")
  18652. },
  18653. {
  18654. name: "Macro",
  18655. height: math.unit(2150, "feet"),
  18656. default: true
  18657. },
  18658. {
  18659. name: "Megamacro",
  18660. height: math.unit(8, "miles")
  18661. },
  18662. {
  18663. name: "Galaxy Mom",
  18664. height: math.unit(6, "megalightyears")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(6, "feet"),
  18673. weight: math.unit(170, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/kiro/front.svg",
  18677. extra: 1064 / 1012,
  18678. bottom: 0.052
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Micro",
  18685. height: math.unit(6, "inches")
  18686. },
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(6, "feet"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Macro",
  18694. height: math.unit(72, "feet")
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(5 + 9 / 12, "feet"),
  18703. weight: math.unit(175, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/irishfox/front.svg",
  18707. extra: 1912 / 1680,
  18708. bottom: 0.02
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Nano",
  18715. height: math.unit(1, "mm")
  18716. },
  18717. {
  18718. name: "Micro",
  18719. height: math.unit(2, "inches")
  18720. },
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(5 + 9 / 12, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(45, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6 + 1 / 12, "feet"),
  18737. weight: math.unit(75, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/aronai-sieyes/front.svg",
  18741. extra: 1556 / 1480,
  18742. bottom: 0.015
  18743. }
  18744. },
  18745. side: {
  18746. height: math.unit(6 + 1 / 12, "feet"),
  18747. weight: math.unit(75, "lb"),
  18748. name: "Side",
  18749. image: {
  18750. source: "./media/characters/aronai-sieyes/side.svg",
  18751. extra: 1433 / 1390,
  18752. bottom: 0.0393
  18753. }
  18754. },
  18755. back: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(75, "lb"),
  18758. name: "Back",
  18759. image: {
  18760. source: "./media/characters/aronai-sieyes/back.svg",
  18761. extra: 1544 / 1494,
  18762. bottom: 0.02
  18763. }
  18764. },
  18765. frontClothed: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(75, "lb"),
  18768. name: "Front (Clothed)",
  18769. image: {
  18770. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18771. extra: 1582 / 1527
  18772. }
  18773. },
  18774. feral: {
  18775. height: math.unit(18, "feet"),
  18776. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18777. name: "Feral",
  18778. image: {
  18779. source: "./media/characters/aronai-sieyes/feral.svg",
  18780. extra: 1530 / 1240,
  18781. bottom: 0.035
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Micro",
  18788. height: math.unit(2, "inches")
  18789. },
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. default: true
  18794. }
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(12, "feet"),
  18802. weight: math.unit(410, "kg"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/xuna/front.svg",
  18806. extra: 2184 / 1980
  18807. }
  18808. },
  18809. side: {
  18810. height: math.unit(12, "feet"),
  18811. weight: math.unit(410, "kg"),
  18812. name: "Side",
  18813. image: {
  18814. source: "./media/characters/xuna/side.svg",
  18815. extra: 2184 / 1980
  18816. }
  18817. },
  18818. back: {
  18819. height: math.unit(12, "feet"),
  18820. weight: math.unit(410, "kg"),
  18821. name: "Back",
  18822. image: {
  18823. source: "./media/characters/xuna/back.svg",
  18824. extra: 2184 / 1980
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Nano glow",
  18831. height: math.unit(10, "nm")
  18832. },
  18833. {
  18834. name: "Micro floof",
  18835. height: math.unit(0.3, "m")
  18836. },
  18837. {
  18838. name: "Huggable softy boi",
  18839. height: math.unit(3.6576, "m"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Admirable floof",
  18844. height: math.unit(80, "meters")
  18845. },
  18846. {
  18847. name: "Gentle macro",
  18848. height: math.unit(300, "meters")
  18849. },
  18850. {
  18851. name: "Very careful floof",
  18852. height: math.unit(3200, "meters")
  18853. },
  18854. {
  18855. name: "The mega floof",
  18856. height: math.unit(36000, "meters")
  18857. },
  18858. {
  18859. name: "Giga-fur-Wicker",
  18860. height: math.unit(4800000, "meters")
  18861. },
  18862. {
  18863. name: "Licky world",
  18864. height: math.unit(20000000, "meters")
  18865. },
  18866. {
  18867. name: "Floofy cyan sun",
  18868. height: math.unit(1500000000, "meters")
  18869. },
  18870. {
  18871. name: "Milky Wicker",
  18872. height: math.unit(1000000000000000000000, "meters")
  18873. },
  18874. {
  18875. name: "The observing Wicker",
  18876. height: math.unit(999999999999999999999999999, "meters")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(5 + 9 / 12, "feet"),
  18885. weight: math.unit(150, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/arokha-sieyes/front.svg",
  18889. extra: 1425 / 1284,
  18890. bottom: 0.05
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(5 + 9 / 12, "feet")
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(30, "meters"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(6, "feet"),
  18911. weight: math.unit(180, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/arokh-sieyes/front.svg",
  18915. extra: 1830 / 1769,
  18916. bottom: 0.01
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(6, "feet")
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(30, "meters"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18934. {
  18935. side: {
  18936. height: math.unit(13 + 1 / 12, "feet"),
  18937. weight: math.unit(8.5, "tonnes"),
  18938. name: "Side",
  18939. image: {
  18940. source: "./media/characters/goldeneye/side.svg",
  18941. extra: 1182 / 778,
  18942. bottom: 0.067
  18943. }
  18944. },
  18945. paw: {
  18946. height: math.unit(3.4, "feet"),
  18947. name: "Paw",
  18948. image: {
  18949. source: "./media/characters/goldeneye/paw.svg"
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(13 + 1 / 12, "feet"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18963. {
  18964. front: {
  18965. height: math.unit(6 + 1 / 12, "feet"),
  18966. weight: math.unit(210, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/leonardo-lycheborne/front.svg",
  18970. extra: 390 / 365,
  18971. bottom: 0.032
  18972. }
  18973. },
  18974. side: {
  18975. height: math.unit(6 + 1 / 12, "feet"),
  18976. weight: math.unit(210, "lb"),
  18977. name: "Side",
  18978. image: {
  18979. source: "./media/characters/leonardo-lycheborne/side.svg",
  18980. extra: 390 / 365,
  18981. bottom: 0.005
  18982. }
  18983. },
  18984. back: {
  18985. height: math.unit(6 + 1 / 12, "feet"),
  18986. weight: math.unit(210, "lb"),
  18987. name: "Back",
  18988. image: {
  18989. source: "./media/characters/leonardo-lycheborne/back.svg",
  18990. extra: 392 / 366,
  18991. bottom: 0.01
  18992. }
  18993. },
  18994. hand: {
  18995. height: math.unit(1.08, "feet"),
  18996. name: "Hand",
  18997. image: {
  18998. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18999. }
  19000. },
  19001. foot: {
  19002. height: math.unit(1.32, "feet"),
  19003. name: "Foot",
  19004. image: {
  19005. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19006. }
  19007. },
  19008. were: {
  19009. height: math.unit(20, "feet"),
  19010. weight: math.unit(7800, "lb"),
  19011. name: "Were",
  19012. image: {
  19013. source: "./media/characters/leonardo-lycheborne/were.svg",
  19014. extra: 308 / 294,
  19015. bottom: 0.048
  19016. }
  19017. },
  19018. feral: {
  19019. height: math.unit(7.5, "feet"),
  19020. weight: math.unit(600, "lb"),
  19021. name: "Feral",
  19022. image: {
  19023. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19024. extra: 210 / 186,
  19025. bottom: 0.108
  19026. }
  19027. },
  19028. taur: {
  19029. height: math.unit(11, "feet"),
  19030. weight: math.unit(3300, "lb"),
  19031. name: "Taur",
  19032. image: {
  19033. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19034. extra: 320 / 303,
  19035. bottom: 0.025
  19036. }
  19037. },
  19038. barghest: {
  19039. height: math.unit(11, "feet"),
  19040. weight: math.unit(1300, "lb"),
  19041. name: "Barghest",
  19042. image: {
  19043. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19044. extra: 323 / 302,
  19045. bottom: 0.027
  19046. }
  19047. },
  19048. dick: {
  19049. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19050. name: "Dick",
  19051. image: {
  19052. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19053. }
  19054. },
  19055. dickWere: {
  19056. height: math.unit((20) / 3.8, "feet"),
  19057. name: "Dick (Were)",
  19058. image: {
  19059. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(6 + 1 / 12, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(10, "feet"),
  19076. weight: math.unit(350, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/jet/front.svg",
  19080. extra: 2050 / 1980,
  19081. bottom: 0.013
  19082. }
  19083. },
  19084. back: {
  19085. height: math.unit(10, "feet"),
  19086. weight: math.unit(350, "lb"),
  19087. name: "Back",
  19088. image: {
  19089. source: "./media/characters/jet/back.svg",
  19090. extra: 2050 / 1980,
  19091. bottom: 0.013
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Micro",
  19098. height: math.unit(6, "inches")
  19099. },
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(10, "feet"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Macro",
  19107. height: math.unit(100, "feet")
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(15, "feet"),
  19116. weight: math.unit(2800, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/tanarath/front.svg",
  19120. extra: 2392 / 2220,
  19121. bottom: 0.03
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(15, "feet"),
  19126. weight: math.unit(2800, "lb"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/tanarath/back.svg",
  19130. extra: 2392 / 2220,
  19131. bottom: 0.03
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(15, "feet"),
  19139. default: true
  19140. },
  19141. ]
  19142. ))
  19143. characterMakers.push(() => makeCharacter(
  19144. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19145. {
  19146. front: {
  19147. height: math.unit(7 + 1 / 12, "feet"),
  19148. weight: math.unit(175, "lb"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/patty-cattybatty/front.svg",
  19152. extra: 908 / 874,
  19153. bottom: 0.025
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Micro",
  19160. height: math.unit(1, "inch")
  19161. },
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(7 + 1 / 12, "feet")
  19165. },
  19166. {
  19167. name: "Mini Macro",
  19168. height: math.unit(155, "feet")
  19169. },
  19170. {
  19171. name: "Macro",
  19172. height: math.unit(1077, "feet")
  19173. },
  19174. {
  19175. name: "Mega Macro",
  19176. height: math.unit(47650, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Giga Macro",
  19181. height: math.unit(440, "miles")
  19182. },
  19183. {
  19184. name: "Tera Macro",
  19185. height: math.unit(8700, "miles")
  19186. },
  19187. {
  19188. name: "Planetary Macro",
  19189. height: math.unit(32700, "miles")
  19190. },
  19191. {
  19192. name: "Solar Macro",
  19193. height: math.unit(550000, "miles")
  19194. },
  19195. {
  19196. name: "Celestial Macro",
  19197. height: math.unit(2.5, "AU")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(4 + 5 / 12, "feet"),
  19206. weight: math.unit(90, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/cappu/front.svg",
  19210. extra: 1247 / 1152,
  19211. bottom: 0.012
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(4 + 5 / 12, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19225. {
  19226. frontDressed: {
  19227. height: math.unit(70, "cm"),
  19228. weight: math.unit(6, "kg"),
  19229. name: "Front (Dressed)",
  19230. image: {
  19231. source: "./media/characters/sebi/front-dressed.svg",
  19232. extra: 713.5 / 686.5,
  19233. bottom: 0.003
  19234. }
  19235. },
  19236. front: {
  19237. height: math.unit(70, "cm"),
  19238. weight: math.unit(5, "kg"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/sebi/front.svg",
  19242. extra: 713.5 / 686.5,
  19243. bottom: 0.003
  19244. }
  19245. }
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(70, "cm"),
  19251. default: true
  19252. },
  19253. {
  19254. name: "Macro",
  19255. height: math.unit(8, "meters")
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(6, "feet"),
  19264. weight: math.unit(150, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/typhek/front.svg",
  19268. extra: 1948 / 1929,
  19269. bottom: 0.025
  19270. }
  19271. },
  19272. side: {
  19273. height: math.unit(6, "feet"),
  19274. weight: math.unit(150, "lb"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/typhek/side.svg",
  19278. extra: 2034 / 2010,
  19279. bottom: 0.003
  19280. }
  19281. },
  19282. back: {
  19283. height: math.unit(6, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Back",
  19286. image: {
  19287. source: "./media/characters/typhek/back.svg",
  19288. extra: 2005 / 1978,
  19289. bottom: 0.004
  19290. }
  19291. },
  19292. palm: {
  19293. height: math.unit(1.2, "feet"),
  19294. name: "Palm",
  19295. image: {
  19296. source: "./media/characters/typhek/palm.svg"
  19297. }
  19298. },
  19299. fist: {
  19300. height: math.unit(1.1, "feet"),
  19301. name: "Fist",
  19302. image: {
  19303. source: "./media/characters/typhek/fist.svg"
  19304. }
  19305. },
  19306. foot: {
  19307. height: math.unit(1.57, "feet"),
  19308. name: "Foot",
  19309. image: {
  19310. source: "./media/characters/typhek/foot.svg"
  19311. }
  19312. },
  19313. sole: {
  19314. height: math.unit(2.05, "feet"),
  19315. name: "Sole",
  19316. image: {
  19317. source: "./media/characters/typhek/sole.svg"
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(40, "stories"),
  19325. default: true
  19326. },
  19327. {
  19328. name: "Megamacro",
  19329. height: math.unit(1, "mile")
  19330. },
  19331. {
  19332. name: "Gigamacro",
  19333. height: math.unit(4000, "solarradii")
  19334. },
  19335. {
  19336. name: "Universal",
  19337. height: math.unit(1.1, "universes")
  19338. }
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19343. {
  19344. side: {
  19345. height: math.unit(5 + 7 / 12, "feet"),
  19346. weight: math.unit(150, "lb"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/kassy/side.svg",
  19350. extra: 1280 / 1225,
  19351. bottom: 0.002
  19352. }
  19353. },
  19354. front: {
  19355. height: math.unit(5 + 7 / 12, "feet"),
  19356. weight: math.unit(150, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/kassy/front.svg",
  19360. extra: 1280 / 1225,
  19361. bottom: 0.025
  19362. }
  19363. },
  19364. back: {
  19365. height: math.unit(5 + 7 / 12, "feet"),
  19366. weight: math.unit(150, "lb"),
  19367. name: "Back",
  19368. image: {
  19369. source: "./media/characters/kassy/back.svg",
  19370. extra: 1280 / 1225,
  19371. bottom: 0.002
  19372. }
  19373. },
  19374. foot: {
  19375. height: math.unit(1.266, "feet"),
  19376. name: "Foot",
  19377. image: {
  19378. source: "./media/characters/kassy/foot.svg"
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(5 + 7 / 12, "feet")
  19386. },
  19387. {
  19388. name: "Macro",
  19389. height: math.unit(137, "feet"),
  19390. default: true
  19391. },
  19392. {
  19393. name: "Megamacro",
  19394. height: math.unit(1, "mile")
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6 + 1 / 12, "feet"),
  19403. weight: math.unit(200, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/neil/front.svg",
  19407. extra: 1326 / 1250,
  19408. bottom: 0.023
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(6 + 1 / 12, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(200, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(5 + 9 / 12, "feet"),
  19429. weight: math.unit(190, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/atticus/front.svg",
  19433. extra: 2934 / 2785,
  19434. bottom: 0.025
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 9 / 12, "feet"),
  19442. default: true
  19443. },
  19444. {
  19445. name: "Macro",
  19446. height: math.unit(180, "feet")
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19452. {
  19453. side: {
  19454. height: math.unit(9, "feet"),
  19455. weight: math.unit(650, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/milo/side.svg",
  19459. extra: 2644 / 2310,
  19460. bottom: 0.032
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(9, "feet"),
  19468. default: true
  19469. },
  19470. {
  19471. name: "Macro",
  19472. height: math.unit(300, "feet")
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19478. {
  19479. side: {
  19480. height: math.unit(8, "meters"),
  19481. weight: math.unit(90000, "kg"),
  19482. name: "Side",
  19483. image: {
  19484. source: "./media/characters/ijzer/side.svg",
  19485. extra: 2756 / 1600,
  19486. bottom: 0.01
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Small",
  19493. height: math.unit(3, "meters")
  19494. },
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(8, "meters"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Normal+",
  19502. height: math.unit(10, "meters")
  19503. },
  19504. {
  19505. name: "Bigger",
  19506. height: math.unit(24, "meters")
  19507. },
  19508. {
  19509. name: "Huge",
  19510. height: math.unit(80, "meters")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(6 + 2 / 12, "feet"),
  19519. weight: math.unit(153, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/luca-cervicum/front.svg",
  19523. extra: 370 / 327,
  19524. bottom: 0.015
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(6 + 2 / 12, "feet"),
  19529. weight: math.unit(153, "lb"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/luca-cervicum/back.svg",
  19533. extra: 367 / 333,
  19534. bottom: 0.005
  19535. }
  19536. },
  19537. frontGear: {
  19538. height: math.unit(6 + 2 / 12, "feet"),
  19539. weight: math.unit(173, "lb"),
  19540. name: "Front (Gear)",
  19541. image: {
  19542. source: "./media/characters/luca-cervicum/front-gear.svg",
  19543. extra: 377 / 333,
  19544. bottom: 0.006
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(6 + 2 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6 + 1 / 12, "feet"),
  19561. weight: math.unit(304, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/oliver/front.svg",
  19565. extra: 157 / 143,
  19566. bottom: 0.08
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(6 + 1 / 12, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(5 + 7 / 12, "feet"),
  19583. weight: math.unit(140, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/shane/front.svg",
  19587. extra: 304 / 289,
  19588. bottom: 0.005
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(5 + 7 / 12, "feet"),
  19596. default: true
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19602. {
  19603. front: {
  19604. height: math.unit(5 + 9 / 12, "feet"),
  19605. weight: math.unit(178, "lb"),
  19606. name: "Front",
  19607. image: {
  19608. source: "./media/characters/shin/front.svg",
  19609. extra: 159 / 151,
  19610. bottom: 0.015
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(5 + 9 / 12, "feet"),
  19618. default: true
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19624. {
  19625. front: {
  19626. height: math.unit(5 + 10 / 12, "feet"),
  19627. weight: math.unit(168, "lb"),
  19628. name: "Front",
  19629. image: {
  19630. source: "./media/characters/xerxes/front.svg",
  19631. extra: 282 / 260,
  19632. bottom: 0.045
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(5 + 10 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(6 + 7 / 12, "feet"),
  19649. weight: math.unit(208, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/chaska/front.svg",
  19653. extra: 332 / 319,
  19654. bottom: 0.015
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(6 + 7 / 12, "feet"),
  19662. default: true
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19668. {
  19669. front: {
  19670. height: math.unit(5 + 8 / 12, "feet"),
  19671. weight: math.unit(208, "lb"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/enuk/front.svg",
  19675. extra: 437 / 406,
  19676. bottom: 0.02
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(5 + 8 / 12, "feet"),
  19684. default: true
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19690. {
  19691. front: {
  19692. height: math.unit(5 + 10 / 12, "feet"),
  19693. weight: math.unit(252, "lb"),
  19694. name: "Front",
  19695. image: {
  19696. source: "./media/characters/bruun/front.svg",
  19697. extra: 197 / 187,
  19698. bottom: 0.012
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(5 + 10 / 12, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(6 + 10 / 12, "feet"),
  19715. weight: math.unit(255, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/alexeev/front.svg",
  19719. extra: 213 / 200,
  19720. bottom: 0.05
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(6 + 10 / 12, "feet"),
  19728. default: true
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(2 + 8 / 12, "feet"),
  19737. weight: math.unit(22, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/evelyn/front.svg",
  19741. extra: 208 / 180
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(2 + 8 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(5 + 9 / 12, "feet"),
  19758. weight: math.unit(139, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/inca/front.svg",
  19762. extra: 294 / 291,
  19763. bottom: 0.03
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(5 + 9 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19777. {
  19778. front: {
  19779. height: math.unit(5 + 1 / 12, "feet"),
  19780. weight: math.unit(84, "lb"),
  19781. name: "Front",
  19782. image: {
  19783. source: "./media/characters/magdalene/front.svg",
  19784. extra: 293 / 273
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(5 + 1 / 12, "feet"),
  19792. default: true
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(6 + 3 / 12, "feet"),
  19801. weight: math.unit(185, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/mera/front.svg",
  19805. extra: 291 / 277,
  19806. bottom: 0.03
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(6 + 3 / 12, "feet"),
  19814. default: true
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19820. {
  19821. front: {
  19822. height: math.unit(6 + 7 / 12, "feet"),
  19823. weight: math.unit(160, "lb"),
  19824. name: "Front",
  19825. image: {
  19826. source: "./media/characters/ceres/front.svg",
  19827. extra: 1023 / 950,
  19828. bottom: 0.027
  19829. }
  19830. },
  19831. back: {
  19832. height: math.unit(6 + 7 / 12, "feet"),
  19833. weight: math.unit(160, "lb"),
  19834. name: "Back",
  19835. image: {
  19836. source: "./media/characters/ceres/back.svg",
  19837. extra: 1023 / 950
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(6 + 7 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(5 + 10 / 12, "feet"),
  19854. weight: math.unit(150, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/kris/front.svg",
  19858. extra: 885 / 803,
  19859. bottom: 0.03
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(5 + 10 / 12, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(7, "feet"),
  19876. weight: math.unit(120, "kg"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/taluthus/front.svg",
  19880. extra: 903 / 833,
  19881. bottom: 0.015
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(7, "feet"),
  19889. default: true
  19890. },
  19891. {
  19892. name: "Macro",
  19893. height: math.unit(300, "feet")
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19899. {
  19900. front: {
  19901. height: math.unit(5 + 9 / 12, "feet"),
  19902. weight: math.unit(145, "lb"),
  19903. name: "Front",
  19904. image: {
  19905. source: "./media/characters/dawn/front.svg",
  19906. extra: 2094 / 2016,
  19907. bottom: 0.025
  19908. }
  19909. },
  19910. back: {
  19911. height: math.unit(5 + 9 / 12, "feet"),
  19912. weight: math.unit(160, "lb"),
  19913. name: "Back",
  19914. image: {
  19915. source: "./media/characters/dawn/back.svg",
  19916. extra: 2112 / 2080,
  19917. bottom: 0.005
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(6 + 7 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19931. {
  19932. anthro: {
  19933. height: math.unit(8 + 3 / 12, "feet"),
  19934. weight: math.unit(450, "lb"),
  19935. name: "Anthro",
  19936. image: {
  19937. source: "./media/characters/arador/anthro.svg",
  19938. extra: 1835 / 1718,
  19939. bottom: 0.025
  19940. }
  19941. },
  19942. feral: {
  19943. height: math.unit(4, "feet"),
  19944. weight: math.unit(200, "lb"),
  19945. name: "Feral",
  19946. image: {
  19947. source: "./media/characters/arador/feral.svg",
  19948. extra: 1683 / 1514,
  19949. bottom: 0.07
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(8 + 3 / 12, "feet")
  19957. },
  19958. {
  19959. name: "Macro",
  19960. height: math.unit(82.5, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(5 + 10 / 12, "feet"),
  19970. weight: math.unit(125, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/dharsi/front.svg",
  19974. extra: 716 / 630,
  19975. bottom: 0.035
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Nano",
  19982. height: math.unit(100, "nm")
  19983. },
  19984. {
  19985. name: "Micro",
  19986. height: math.unit(2, "inches")
  19987. },
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(5 + 10 / 12, "feet"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Macro",
  19995. height: math.unit(1000, "feet")
  19996. },
  19997. {
  19998. name: "Megamacro",
  19999. height: math.unit(10, "miles")
  20000. },
  20001. {
  20002. name: "Gigamacro",
  20003. height: math.unit(3000, "miles")
  20004. },
  20005. {
  20006. name: "Teramacro",
  20007. height: math.unit(500000, "miles")
  20008. },
  20009. {
  20010. name: "Teramacro+",
  20011. height: math.unit(30, "galaxies")
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6, "feet"),
  20020. weight: math.unit(150, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/deathy/front.svg",
  20024. extra: 1552 / 1463,
  20025. bottom: 0.025
  20026. }
  20027. },
  20028. side: {
  20029. height: math.unit(6, "feet"),
  20030. weight: math.unit(150, "lb"),
  20031. name: "Side",
  20032. image: {
  20033. source: "./media/characters/deathy/side.svg",
  20034. extra: 1604 / 1455,
  20035. bottom: 0.025
  20036. }
  20037. },
  20038. back: {
  20039. height: math.unit(6, "feet"),
  20040. weight: math.unit(150, "lb"),
  20041. name: "Back",
  20042. image: {
  20043. source: "./media/characters/deathy/back.svg",
  20044. extra: 1580 / 1463,
  20045. bottom: 0.005
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Micro",
  20052. height: math.unit(5, "millimeters")
  20053. },
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(6 + 5 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20063. {
  20064. front: {
  20065. height: math.unit(16, "feet"),
  20066. weight: math.unit(4000, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/juniper/front.svg",
  20070. bottom: 0.04
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(16, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(6, "feet"),
  20087. weight: math.unit(150, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/hipster/front.svg",
  20091. extra: 1312 / 1209,
  20092. bottom: 0.025
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(6, "feet"),
  20097. weight: math.unit(150, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/hipster/back.svg",
  20101. extra: 1281 / 1196,
  20102. bottom: 0.01
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Micro",
  20109. height: math.unit(1, "mm")
  20110. },
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(4, "inches"),
  20114. default: true
  20115. },
  20116. {
  20117. name: "Macro",
  20118. height: math.unit(500, "feet")
  20119. },
  20120. {
  20121. name: "Megamacro",
  20122. height: math.unit(1000, "miles")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(6, "feet"),
  20131. weight: math.unit(150, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/tendirmuldr/front.svg",
  20135. extra: 1878 / 1772,
  20136. bottom: 0.015
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Megamacro",
  20143. height: math.unit(1500, "miles"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20150. {
  20151. front: {
  20152. height: math.unit(14, "feet"),
  20153. weight: math.unit(12000, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/mort/front.svg",
  20157. extra: 365 / 318,
  20158. bottom: 0.01
  20159. }
  20160. },
  20161. side: {
  20162. height: math.unit(14, "feet"),
  20163. weight: math.unit(12000, "lb"),
  20164. name: "Side",
  20165. image: {
  20166. source: "./media/characters/mort/side.svg",
  20167. extra: 365 / 318,
  20168. bottom: 0.052
  20169. },
  20170. default: true
  20171. },
  20172. back: {
  20173. height: math.unit(14, "feet"),
  20174. weight: math.unit(12000, "lb"),
  20175. name: "Back",
  20176. image: {
  20177. source: "./media/characters/mort/back.svg",
  20178. extra: 371 / 332,
  20179. bottom: 0.18
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(14, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20193. {
  20194. front: {
  20195. height: math.unit(8, "feet"),
  20196. weight: math.unit(1, "ton"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/lycoa/front.svg",
  20200. extra: 1875 / 1789,
  20201. bottom: 0.022
  20202. }
  20203. },
  20204. back: {
  20205. height: math.unit(8, "feet"),
  20206. weight: math.unit(1, "ton"),
  20207. name: "Back",
  20208. image: {
  20209. source: "./media/characters/lycoa/back.svg",
  20210. extra: 1835 / 1781,
  20211. bottom: 0.03
  20212. }
  20213. },
  20214. head: {
  20215. height: math.unit(2.1, "feet"),
  20216. name: "Head",
  20217. image: {
  20218. source: "./media/characters/lycoa/head.svg"
  20219. }
  20220. },
  20221. tailmaw: {
  20222. height: math.unit(1.9, "feet"),
  20223. name: "Tailmaw",
  20224. image: {
  20225. source: "./media/characters/lycoa/tailmaw.svg"
  20226. }
  20227. },
  20228. tentacles: {
  20229. height: math.unit(2.1, "feet"),
  20230. name: "Tentacles",
  20231. image: {
  20232. source: "./media/characters/lycoa/tentacles.svg"
  20233. }
  20234. },
  20235. dick: {
  20236. height: math.unit(1.73, "feet"),
  20237. name: "Dick",
  20238. image: {
  20239. source: "./media/characters/lycoa/dick.svg"
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(8, "feet"),
  20247. default: true
  20248. },
  20249. {
  20250. name: "Macro",
  20251. height: math.unit(30, "feet")
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20257. {
  20258. front: {
  20259. height: math.unit(4 + 2 / 12, "feet"),
  20260. weight: math.unit(70, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/naldara/front.svg",
  20264. extra: 841 / 720,
  20265. bottom: 0.04
  20266. }
  20267. },
  20268. naga: {
  20269. height: math.unit(23, "feet"),
  20270. weight: math.unit(15000, "kg"),
  20271. name: "Naga",
  20272. image: {
  20273. source: "./media/characters/naldara/naga.svg",
  20274. extra: 3290 / 2959,
  20275. bottom: 124 / 3432
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(4 + 2 / 12, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(13 + 7 / 12, "feet"),
  20292. weight: math.unit(1500, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/briar/front.svg",
  20296. extra: 626 / 596,
  20297. bottom: 0.08
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(13 + 7 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20311. {
  20312. side: {
  20313. height: math.unit(10, "feet"),
  20314. weight: math.unit(500, "lb"),
  20315. name: "Side",
  20316. image: {
  20317. source: "./media/characters/vanguard/side.svg",
  20318. extra: 502 / 425,
  20319. bottom: 0.087
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(10, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(7.5, "feet"),
  20336. weight: math.unit(2, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/artemis/front.svg",
  20340. extra: 1192 / 1075,
  20341. bottom: 0.07
  20342. }
  20343. },
  20344. frontNsfw: {
  20345. height: math.unit(7.5, "feet"),
  20346. weight: math.unit(2, "lb"),
  20347. name: "Front (NSFW)",
  20348. image: {
  20349. source: "./media/characters/artemis/front-nsfw.svg",
  20350. extra: 1192 / 1075,
  20351. bottom: 0.07
  20352. }
  20353. },
  20354. frontNsfwer: {
  20355. height: math.unit(7.5, "feet"),
  20356. weight: math.unit(2, "lb"),
  20357. name: "Front (NSFW-er)",
  20358. image: {
  20359. source: "./media/characters/artemis/front-nsfwer.svg",
  20360. extra: 1192 / 1075,
  20361. bottom: 0.07
  20362. }
  20363. },
  20364. side: {
  20365. height: math.unit(7.5, "feet"),
  20366. weight: math.unit(2, "lb"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/artemis/side.svg",
  20370. extra: 1192 / 1075,
  20371. bottom: 0.07
  20372. }
  20373. },
  20374. sideNsfw: {
  20375. height: math.unit(7.5, "feet"),
  20376. weight: math.unit(2, "lb"),
  20377. name: "Side (NSFW)",
  20378. image: {
  20379. source: "./media/characters/artemis/side-nsfw.svg",
  20380. extra: 1192 / 1075,
  20381. bottom: 0.07
  20382. }
  20383. },
  20384. sideNsfwer: {
  20385. height: math.unit(7.5, "feet"),
  20386. weight: math.unit(2, "lb"),
  20387. name: "Side (NSFW-er)",
  20388. image: {
  20389. source: "./media/characters/artemis/side-nsfwer.svg",
  20390. extra: 1192 / 1075,
  20391. bottom: 0.07
  20392. }
  20393. },
  20394. maw: {
  20395. height: math.unit(1.1, "feet"),
  20396. name: "Maw",
  20397. image: {
  20398. source: "./media/characters/artemis/maw.svg"
  20399. }
  20400. },
  20401. stomach: {
  20402. height: math.unit(0.95, "feet"),
  20403. name: "Stomach",
  20404. image: {
  20405. source: "./media/characters/artemis/stomach.svg"
  20406. }
  20407. },
  20408. dickCanine: {
  20409. height: math.unit(1, "feet"),
  20410. name: "Dick (Canine)",
  20411. image: {
  20412. source: "./media/characters/artemis/dick-canine.svg"
  20413. }
  20414. },
  20415. dickEquine: {
  20416. height: math.unit(0.85, "feet"),
  20417. name: "Dick (Equine)",
  20418. image: {
  20419. source: "./media/characters/artemis/dick-equine.svg"
  20420. }
  20421. },
  20422. dickExotic: {
  20423. height: math.unit(0.85, "feet"),
  20424. name: "Dick (Exotic)",
  20425. image: {
  20426. source: "./media/characters/artemis/dick-exotic.svg"
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(7.5, "feet"),
  20434. default: true
  20435. },
  20436. {
  20437. name: "Enlarged",
  20438. height: math.unit(12, "feet")
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20444. {
  20445. front: {
  20446. height: math.unit(5 + 3 / 12, "feet"),
  20447. weight: math.unit(160, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/kira/front.svg",
  20451. extra: 906 / 786,
  20452. bottom: 0.01
  20453. }
  20454. },
  20455. back: {
  20456. height: math.unit(5 + 3 / 12, "feet"),
  20457. weight: math.unit(160, "lb"),
  20458. name: "Back",
  20459. image: {
  20460. source: "./media/characters/kira/back.svg",
  20461. extra: 882 / 757,
  20462. bottom: 0.005
  20463. }
  20464. },
  20465. frontDressed: {
  20466. height: math.unit(5 + 3 / 12, "feet"),
  20467. weight: math.unit(160, "lb"),
  20468. name: "Front (Dressed)",
  20469. image: {
  20470. source: "./media/characters/kira/front-dressed.svg",
  20471. extra: 906 / 786,
  20472. bottom: 0.01
  20473. }
  20474. },
  20475. beans: {
  20476. height: math.unit(0.92, "feet"),
  20477. name: "Beans",
  20478. image: {
  20479. source: "./media/characters/kira/beans.svg"
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(5 + 3 / 12, "feet"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20493. {
  20494. front: {
  20495. height: math.unit(5 + 4 / 12, "feet"),
  20496. weight: math.unit(145, "lb"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/scramble/front.svg",
  20500. extra: 763 / 727,
  20501. bottom: 0.05
  20502. }
  20503. },
  20504. back: {
  20505. height: math.unit(5 + 4 / 12, "feet"),
  20506. weight: math.unit(145, "lb"),
  20507. name: "Back",
  20508. image: {
  20509. source: "./media/characters/scramble/back.svg",
  20510. extra: 826 / 737,
  20511. bottom: 0.002
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(5 + 4 / 12, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20525. {
  20526. side: {
  20527. height: math.unit(6 + 2 / 12, "feet"),
  20528. weight: math.unit(190, "lb"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/biscuit/side.svg",
  20532. extra: 858 / 791,
  20533. bottom: 0.044
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(6 + 2 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(5 + 2 / 12, "feet"),
  20550. weight: math.unit(120, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/poffin/front.svg",
  20554. extra: 786 / 680,
  20555. bottom: 0.005
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(5 + 2 / 12, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6 + 3 / 12, "feet"),
  20572. weight: math.unit(519, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/dhari/front.svg",
  20576. extra: 1048 / 946,
  20577. bottom: 0.015
  20578. }
  20579. },
  20580. back: {
  20581. height: math.unit(6 + 3 / 12, "feet"),
  20582. weight: math.unit(519, "lb"),
  20583. name: "Back",
  20584. image: {
  20585. source: "./media/characters/dhari/back.svg",
  20586. extra: 1048 / 931,
  20587. bottom: 0.005
  20588. }
  20589. },
  20590. frontDressed: {
  20591. height: math.unit(6 + 3 / 12, "feet"),
  20592. weight: math.unit(519, "lb"),
  20593. name: "Front (Dressed)",
  20594. image: {
  20595. source: "./media/characters/dhari/front-dressed.svg",
  20596. extra: 1713 / 1546,
  20597. bottom: 0.02
  20598. }
  20599. },
  20600. backDressed: {
  20601. height: math.unit(6 + 3 / 12, "feet"),
  20602. weight: math.unit(519, "lb"),
  20603. name: "Back (Dressed)",
  20604. image: {
  20605. source: "./media/characters/dhari/back-dressed.svg",
  20606. extra: 1699 / 1537,
  20607. bottom: 0.01
  20608. }
  20609. },
  20610. maw: {
  20611. height: math.unit(0.95, "feet"),
  20612. name: "Maw",
  20613. image: {
  20614. source: "./media/characters/dhari/maw.svg"
  20615. }
  20616. },
  20617. wereFront: {
  20618. height: math.unit(12 + 8 / 12, "feet"),
  20619. weight: math.unit(4000, "lb"),
  20620. name: "Front (Were)",
  20621. image: {
  20622. source: "./media/characters/dhari/were-front.svg",
  20623. extra: 1065 / 969,
  20624. bottom: 0.015
  20625. }
  20626. },
  20627. wereBack: {
  20628. height: math.unit(12 + 8 / 12, "feet"),
  20629. weight: math.unit(4000, "lb"),
  20630. name: "Back (Were)",
  20631. image: {
  20632. source: "./media/characters/dhari/were-back.svg",
  20633. extra: 1065 / 969,
  20634. bottom: 0.012
  20635. }
  20636. },
  20637. wereMaw: {
  20638. height: math.unit(0.625, "meters"),
  20639. name: "Maw (Were)",
  20640. image: {
  20641. source: "./media/characters/dhari/were-maw.svg"
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(6 + 3 / 12, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20655. {
  20656. anthro: {
  20657. height: math.unit(5 + 7 / 12, "feet"),
  20658. weight: math.unit(175, "lb"),
  20659. name: "Anthro",
  20660. image: {
  20661. source: "./media/characters/rena-dyne/anthro.svg",
  20662. extra: 1849 / 1785,
  20663. bottom: 0.005
  20664. }
  20665. },
  20666. taur: {
  20667. height: math.unit(15 + 6 / 12, "feet"),
  20668. weight: math.unit(8000, "lb"),
  20669. name: "Taur",
  20670. image: {
  20671. source: "./media/characters/rena-dyne/taur.svg",
  20672. extra: 2315 / 2234,
  20673. bottom: 0.033
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(5 + 7 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(8, "feet"),
  20690. weight: math.unit(600, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/weremeep/front.svg",
  20694. extra: 967 / 862,
  20695. bottom: 0.01
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(8, "feet"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Lorg",
  20707. height: math.unit(12, "feet")
  20708. },
  20709. {
  20710. name: "Oh Lawd She Comin'",
  20711. height: math.unit(20, "feet")
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20717. {
  20718. front: {
  20719. height: math.unit(4, "feet"),
  20720. weight: math.unit(90, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/reza/front.svg",
  20724. extra: 1183 / 1111,
  20725. bottom: 0.017
  20726. }
  20727. },
  20728. back: {
  20729. height: math.unit(4, "feet"),
  20730. weight: math.unit(90, "lb"),
  20731. name: "Back",
  20732. image: {
  20733. source: "./media/characters/reza/back.svg",
  20734. extra: 1183 / 1111,
  20735. bottom: 0.01
  20736. }
  20737. },
  20738. drake: {
  20739. height: math.unit(30, "feet"),
  20740. weight: math.unit(246960, "lb"),
  20741. name: "Drake",
  20742. image: {
  20743. source: "./media/characters/reza/drake.svg",
  20744. extra: 2350 / 2024,
  20745. bottom: 60.7 / 2403
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(4, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20759. {
  20760. side: {
  20761. height: math.unit(15, "feet"),
  20762. weight: math.unit(14, "tons"),
  20763. name: "Side",
  20764. image: {
  20765. source: "./media/characters/athea/side.svg",
  20766. extra: 960 / 540,
  20767. bottom: 0.003
  20768. }
  20769. },
  20770. sitting: {
  20771. height: math.unit(6 * 2.85, "feet"),
  20772. weight: math.unit(14, "tons"),
  20773. name: "Sitting",
  20774. image: {
  20775. source: "./media/characters/athea/sitting.svg",
  20776. extra: 621 / 581,
  20777. bottom: 0.075
  20778. }
  20779. },
  20780. maw: {
  20781. height: math.unit(7.59498031496063, "feet"),
  20782. name: "Maw",
  20783. image: {
  20784. source: "./media/characters/athea/maw.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Lap Cat",
  20791. height: math.unit(2.5, "feet")
  20792. },
  20793. {
  20794. name: "Minimacro",
  20795. height: math.unit(15, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Macro",
  20800. height: math.unit(120, "feet")
  20801. },
  20802. {
  20803. name: "Macro+",
  20804. height: math.unit(640, "feet")
  20805. },
  20806. {
  20807. name: "Colossus",
  20808. height: math.unit(2.2, "miles")
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(8 + 8 / 12, "feet"),
  20817. weight: math.unit(130, "kg"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/seroko/front.svg",
  20821. extra: 1385 / 1280,
  20822. bottom: 0.025
  20823. }
  20824. },
  20825. back: {
  20826. height: math.unit(8 + 8 / 12, "feet"),
  20827. weight: math.unit(130, "kg"),
  20828. name: "Back",
  20829. image: {
  20830. source: "./media/characters/seroko/back.svg",
  20831. extra: 1369 / 1238,
  20832. bottom: 0.018
  20833. }
  20834. },
  20835. frontDressed: {
  20836. height: math.unit(8 + 8 / 12, "feet"),
  20837. weight: math.unit(130, "kg"),
  20838. name: "Front (Dressed)",
  20839. image: {
  20840. source: "./media/characters/seroko/front-dressed.svg",
  20841. extra: 1366 / 1275,
  20842. bottom: 0.03
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(8 + 8 / 12, "feet"),
  20850. default: true
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(5.5, "feet"),
  20859. weight: math.unit(160, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/quatzi/front.svg",
  20863. extra: 2346 / 2242,
  20864. bottom: 0.015
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(5.5, "feet"),
  20872. default: true
  20873. },
  20874. {
  20875. name: "Big",
  20876. height: math.unit(7.7, "feet")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(5 + 11 / 12, "feet"),
  20885. weight: math.unit(180, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/sen/front.svg",
  20889. extra: 1321 / 1254,
  20890. bottom: 0.015
  20891. }
  20892. },
  20893. side: {
  20894. height: math.unit(5 + 11 / 12, "feet"),
  20895. weight: math.unit(180, "lb"),
  20896. name: "Side",
  20897. image: {
  20898. source: "./media/characters/sen/side.svg",
  20899. extra: 1321 / 1254,
  20900. bottom: 0.007
  20901. }
  20902. },
  20903. back: {
  20904. height: math.unit(5 + 11 / 12, "feet"),
  20905. weight: math.unit(180, "lb"),
  20906. name: "Back",
  20907. image: {
  20908. source: "./media/characters/sen/back.svg",
  20909. extra: 1321 / 1254
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(5 + 11 / 12, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(166.6, "cm"),
  20926. weight: math.unit(66.6, "kg"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/fruity/front.svg",
  20930. extra: 1510 / 1386,
  20931. bottom: 0.04
  20932. }
  20933. },
  20934. back: {
  20935. height: math.unit(166.6, "cm"),
  20936. weight: math.unit(66.6, "lb"),
  20937. name: "Back",
  20938. image: {
  20939. source: "./media/characters/fruity/back.svg",
  20940. extra: 1563 / 1435,
  20941. bottom: 0.005
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(166.6, "cm"),
  20949. default: true
  20950. },
  20951. {
  20952. name: "Demonic",
  20953. height: math.unit(166.6, "feet")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20959. {
  20960. side: {
  20961. height: math.unit(10, "feet"),
  20962. weight: math.unit(500, "lb"),
  20963. name: "Side",
  20964. image: {
  20965. source: "./media/characters/zost/side.svg",
  20966. extra: 966 / 880,
  20967. bottom: 0.075
  20968. }
  20969. },
  20970. mawFront: {
  20971. height: math.unit(1.08, "meters"),
  20972. name: "Maw (Front)",
  20973. image: {
  20974. source: "./media/characters/zost/maw-front.svg"
  20975. }
  20976. },
  20977. mawSide: {
  20978. height: math.unit(2.66, "feet"),
  20979. name: "Maw (Side)",
  20980. image: {
  20981. source: "./media/characters/zost/maw-side.svg"
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(10, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(5 + 4 / 12, "feet"),
  20998. weight: math.unit(120, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/luci/front.svg",
  21002. extra: 1985 / 1884,
  21003. bottom: 0.04
  21004. }
  21005. },
  21006. back: {
  21007. height: math.unit(5 + 4 / 12, "feet"),
  21008. weight: math.unit(120, "lb"),
  21009. name: "Back",
  21010. image: {
  21011. source: "./media/characters/luci/back.svg",
  21012. extra: 1892 / 1791,
  21013. bottom: 0.002
  21014. }
  21015. },
  21016. },
  21017. [
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(5 + 4 / 12, "feet"),
  21021. default: true
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(1500, "feet"),
  21030. weight: math.unit(3.8e6, "tons"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/2th/front.svg",
  21034. extra: 3489 / 3350,
  21035. bottom: 0.1
  21036. }
  21037. },
  21038. foot: {
  21039. height: math.unit(461, "feet"),
  21040. name: "Foot",
  21041. image: {
  21042. source: "./media/characters/2th/foot.svg"
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "\"Micro\"",
  21049. height: math.unit(15 + 7 / 12, "feet")
  21050. },
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(1500, "feet"),
  21054. default: true
  21055. },
  21056. {
  21057. name: "Macro",
  21058. height: math.unit(5000, "feet")
  21059. },
  21060. {
  21061. name: "Megamacro",
  21062. height: math.unit(15, "miles")
  21063. },
  21064. {
  21065. name: "Gigamacro",
  21066. height: math.unit(4000, "miles")
  21067. },
  21068. {
  21069. name: "Galactic",
  21070. height: math.unit(50, "AU")
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(5 + 6 / 12, "feet"),
  21079. weight: math.unit(220, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/amethyst/front.svg",
  21083. extra: 2078 / 2040,
  21084. bottom: 0.045
  21085. }
  21086. },
  21087. back: {
  21088. height: math.unit(5 + 6 / 12, "feet"),
  21089. weight: math.unit(220, "lb"),
  21090. name: "Back",
  21091. image: {
  21092. source: "./media/characters/amethyst/back.svg",
  21093. extra: 2021 / 1989,
  21094. bottom: 0.02
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(5 + 6 / 12, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(4 + 11 / 12, "feet"),
  21111. weight: math.unit(120, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/yumi-akiyama/front.svg",
  21115. extra: 1327 / 1235,
  21116. bottom: 0.02
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(4 + 11 / 12, "feet"),
  21121. weight: math.unit(120, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/yumi-akiyama/back.svg",
  21125. extra: 1287 / 1245,
  21126. bottom: 0.002
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Galactic",
  21133. height: math.unit(50, "galaxies"),
  21134. default: true
  21135. },
  21136. {
  21137. name: "Universal",
  21138. height: math.unit(100, "universes")
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(8, "feet"),
  21147. weight: math.unit(500, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/rifter-yrmori/front.svg",
  21151. extra: 1180 / 1125,
  21152. bottom: 0.02
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(8, "feet"),
  21157. weight: math.unit(500, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/rifter-yrmori/back.svg",
  21161. extra: 1190 / 1145,
  21162. bottom: 0.001
  21163. }
  21164. },
  21165. wings: {
  21166. height: math.unit(7.75, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Wings",
  21169. image: {
  21170. source: "./media/characters/rifter-yrmori/wings.svg",
  21171. extra: 1357 / 1285
  21172. }
  21173. },
  21174. maw: {
  21175. height: math.unit(0.8, "feet"),
  21176. name: "Maw",
  21177. image: {
  21178. source: "./media/characters/rifter-yrmori/maw.svg"
  21179. }
  21180. },
  21181. mawfront: {
  21182. height: math.unit(1.45, "feet"),
  21183. name: "Maw (Front)",
  21184. image: {
  21185. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(8, "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Macro",
  21197. height: math.unit(42, "meters")
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21203. {
  21204. were: {
  21205. height: math.unit(25 + 6 / 12, "feet"),
  21206. weight: math.unit(10000, "lb"),
  21207. name: "Were",
  21208. image: {
  21209. source: "./media/characters/tahajin/were.svg",
  21210. extra: 801 / 770,
  21211. bottom: 0.042
  21212. }
  21213. },
  21214. aquatic: {
  21215. height: math.unit(6 + 4 / 12, "feet"),
  21216. weight: math.unit(160, "lb"),
  21217. name: "Aquatic",
  21218. image: {
  21219. source: "./media/characters/tahajin/aquatic.svg",
  21220. extra: 572 / 542,
  21221. bottom: 0.04
  21222. }
  21223. },
  21224. chow: {
  21225. height: math.unit(8 + 11 / 12, "feet"),
  21226. weight: math.unit(450, "lb"),
  21227. name: "Chow",
  21228. image: {
  21229. source: "./media/characters/tahajin/chow.svg",
  21230. extra: 660 / 640,
  21231. bottom: 0.015
  21232. }
  21233. },
  21234. demiNaga: {
  21235. height: math.unit(6 + 8 / 12, "feet"),
  21236. weight: math.unit(300, "lb"),
  21237. name: "Demi Naga",
  21238. image: {
  21239. source: "./media/characters/tahajin/demi-naga.svg",
  21240. extra: 643 / 615,
  21241. bottom: 0.1
  21242. }
  21243. },
  21244. data: {
  21245. height: math.unit(5, "inches"),
  21246. weight: math.unit(0.1, "lb"),
  21247. name: "Data",
  21248. image: {
  21249. source: "./media/characters/tahajin/data.svg"
  21250. }
  21251. },
  21252. fluu: {
  21253. height: math.unit(5 + 7 / 12, "feet"),
  21254. weight: math.unit(140, "lb"),
  21255. name: "Fluu",
  21256. image: {
  21257. source: "./media/characters/tahajin/fluu.svg",
  21258. extra: 628 / 592,
  21259. bottom: 0.02
  21260. }
  21261. },
  21262. starWarrior: {
  21263. height: math.unit(4 + 5 / 12, "feet"),
  21264. weight: math.unit(50, "lb"),
  21265. name: "Star Warrior",
  21266. image: {
  21267. source: "./media/characters/tahajin/star-warrior.svg"
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(25 + 6 / 12, "feet"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(8, "feet"),
  21284. weight: math.unit(350, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/gabira/front.svg",
  21288. extra: 608 / 580,
  21289. bottom: 0.03
  21290. }
  21291. },
  21292. back: {
  21293. height: math.unit(8, "feet"),
  21294. weight: math.unit(350, "lb"),
  21295. name: "Back",
  21296. image: {
  21297. source: "./media/characters/gabira/back.svg",
  21298. extra: 608 / 580,
  21299. bottom: 0.03
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(8, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(5 + 3 / 12, "feet"),
  21316. weight: math.unit(137, "lb"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/sasha-katraine/front.svg",
  21320. bottom: 0.045
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Micro",
  21327. height: math.unit(5, "inches")
  21328. },
  21329. {
  21330. name: "Normal",
  21331. height: math.unit(5 + 3 / 12, "feet"),
  21332. default: true
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21338. {
  21339. side: {
  21340. height: math.unit(4, "inches"),
  21341. weight: math.unit(200, "grams"),
  21342. name: "Side",
  21343. image: {
  21344. source: "./media/characters/der/side.svg",
  21345. extra: 719 / 400,
  21346. bottom: 30.6 / 749.9187
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Micro",
  21353. height: math.unit(4, "inches"),
  21354. default: true
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21360. {
  21361. side: {
  21362. height: math.unit(30, "meters"),
  21363. weight: math.unit(700, "tonnes"),
  21364. name: "Side",
  21365. image: {
  21366. source: "./media/characters/fixerdragon/side.svg",
  21367. extra: (1293.0514 - 116.03) / 1106.86,
  21368. bottom: 116.03 / 1293.0514
  21369. }
  21370. },
  21371. },
  21372. [
  21373. {
  21374. name: "Planck",
  21375. height: math.unit(1.6e-35, "meters")
  21376. },
  21377. {
  21378. name: "Micro",
  21379. height: math.unit(0.4, "meters")
  21380. },
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(30, "meters"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Megamacro",
  21388. height: math.unit(1.2, "megameters")
  21389. },
  21390. {
  21391. name: "Teramacro",
  21392. height: math.unit(130, "terameters")
  21393. },
  21394. {
  21395. name: "Yottamacro",
  21396. height: math.unit(6200, "yottameters")
  21397. },
  21398. ]
  21399. ));
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(8, "feet"),
  21405. weight: math.unit(250, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/kite/front.svg",
  21409. extra: 2796 / 2659,
  21410. bottom: 0.002
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(8, "feet"),
  21418. default: true
  21419. },
  21420. {
  21421. name: "Macro",
  21422. height: math.unit(360, "feet")
  21423. },
  21424. {
  21425. name: "Megamacro",
  21426. height: math.unit(1500, "feet")
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(5 + 10 / 12, "feet"),
  21435. weight: math.unit(150, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/poojawa-vynar/front.svg",
  21439. extra: (1506.1547 - 55) / 1356.6,
  21440. bottom: 55 / 1506.1547
  21441. }
  21442. },
  21443. frontTailless: {
  21444. height: math.unit(5 + 10 / 12, "feet"),
  21445. weight: math.unit(150, "lb"),
  21446. name: "Front (Tailless)",
  21447. image: {
  21448. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21449. extra: (1506.1547 - 55) / 1356.6,
  21450. bottom: 55 / 1506.1547
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(5 + 10 / 12, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21464. {
  21465. front: {
  21466. height: math.unit(293, "meters"),
  21467. weight: math.unit(70400, "tons"),
  21468. name: "Front",
  21469. image: {
  21470. source: "./media/characters/violette/front.svg",
  21471. extra: 1227 / 1180,
  21472. bottom: 0.005
  21473. }
  21474. },
  21475. back: {
  21476. height: math.unit(293, "meters"),
  21477. weight: math.unit(70400, "tons"),
  21478. name: "Back",
  21479. image: {
  21480. source: "./media/characters/violette/back.svg",
  21481. extra: 1227 / 1180,
  21482. bottom: 0.005
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(293, "meters"),
  21490. default: true
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(1050, "feet"),
  21499. weight: math.unit(200000, "tons"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/alessandra/front.svg",
  21503. extra: 960 / 912,
  21504. bottom: 0.06
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Macro",
  21511. height: math.unit(1050, "feet")
  21512. },
  21513. {
  21514. name: "Macro+",
  21515. height: math.unit(900, "meters"),
  21516. default: true
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21522. {
  21523. front: {
  21524. height: math.unit(5, "feet"),
  21525. weight: math.unit(187, "lb"),
  21526. name: "Front",
  21527. image: {
  21528. source: "./media/characters/person/front.svg",
  21529. extra: 3087 / 2945,
  21530. bottom: 91 / 3181
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Micro",
  21537. height: math.unit(3, "inches")
  21538. },
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(5, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Macro",
  21546. height: math.unit(90, "feet")
  21547. },
  21548. {
  21549. name: "Max Size",
  21550. height: math.unit(280, "feet")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(4.5, "meters"),
  21559. weight: math.unit(3200, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/ty/front.svg",
  21563. extra: 1038 / 960,
  21564. bottom: 31.156 / 1068
  21565. }
  21566. },
  21567. back: {
  21568. height: math.unit(4.5, "meters"),
  21569. weight: math.unit(3200, "lb"),
  21570. name: "Back",
  21571. image: {
  21572. source: "./media/characters/ty/back.svg",
  21573. extra: 1044 / 966,
  21574. bottom: 7.48 / 1049
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(4.5, "meters"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21588. {
  21589. front: {
  21590. height: math.unit(5 + 4 / 12, "feet"),
  21591. weight: math.unit(115, "lb"),
  21592. name: "Front",
  21593. image: {
  21594. source: "./media/characters/rocky/front.svg",
  21595. extra: 1012 / 975,
  21596. bottom: 54 / 1066
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(5 + 4 / 12, "feet"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21610. {
  21611. upright: {
  21612. height: math.unit(6, "meters"),
  21613. weight: math.unit(4000, "kg"),
  21614. name: "Upright",
  21615. image: {
  21616. source: "./media/characters/ruin/upright.svg",
  21617. extra: 668 / 661,
  21618. bottom: 42 / 799.8396
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(6, "meters"),
  21626. default: true
  21627. },
  21628. ]
  21629. ))
  21630. characterMakers.push(() => makeCharacter(
  21631. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21632. {
  21633. front: {
  21634. height: math.unit(5, "feet"),
  21635. weight: math.unit(106, "lb"),
  21636. name: "Front",
  21637. image: {
  21638. source: "./media/characters/robin/front.svg",
  21639. extra: 862 / 799,
  21640. bottom: 42.4 / 914.8856
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(5, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21654. {
  21655. side: {
  21656. height: math.unit(3, "feet"),
  21657. weight: math.unit(225, "lb"),
  21658. name: "Side",
  21659. image: {
  21660. source: "./media/characters/saian/side.svg",
  21661. extra: 566 / 356,
  21662. bottom: 79.7 / 643
  21663. }
  21664. },
  21665. maw: {
  21666. height: math.unit(2.85, "feet"),
  21667. name: "Maw",
  21668. image: {
  21669. source: "./media/characters/saian/maw.svg"
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(3, "feet"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21683. {
  21684. side: {
  21685. height: math.unit(8, "feet"),
  21686. weight: math.unit(300, "lb"),
  21687. name: "Side",
  21688. image: {
  21689. source: "./media/characters/equus-silvermane/side.svg",
  21690. extra: 2176 / 2050,
  21691. bottom: 65.7 / 2245
  21692. }
  21693. },
  21694. front: {
  21695. height: math.unit(8, "feet"),
  21696. weight: math.unit(300, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/equus-silvermane/front.svg",
  21700. extra: 4633 / 4400,
  21701. bottom: 71.3 / 4706.915
  21702. }
  21703. },
  21704. sideStepping: {
  21705. height: math.unit(8, "feet"),
  21706. weight: math.unit(300, "lb"),
  21707. name: "Side (Stepping)",
  21708. image: {
  21709. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21710. extra: 1968 / 1860,
  21711. bottom: 16.4 / 1989
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(8, "feet")
  21719. },
  21720. {
  21721. name: "Minimacro",
  21722. height: math.unit(75, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(150, "feet")
  21728. },
  21729. {
  21730. name: "Macro+",
  21731. height: math.unit(1000, "feet")
  21732. },
  21733. {
  21734. name: "Megamacro",
  21735. height: math.unit(1, "mile")
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21741. {
  21742. side: {
  21743. height: math.unit(20, "feet"),
  21744. weight: math.unit(30000, "kg"),
  21745. name: "Side",
  21746. image: {
  21747. source: "./media/characters/windar/side.svg",
  21748. extra: 1491 / 1248,
  21749. bottom: 82.56 / 1568
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(20, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21763. {
  21764. side: {
  21765. height: math.unit(15.66, "feet"),
  21766. weight: math.unit(150, "lb"),
  21767. name: "Side",
  21768. image: {
  21769. source: "./media/characters/melody/side.svg",
  21770. extra: 1097 / 944,
  21771. bottom: 11.8 / 1109
  21772. }
  21773. },
  21774. sideOutfit: {
  21775. height: math.unit(15.66, "feet"),
  21776. weight: math.unit(150, "lb"),
  21777. name: "Side (Outfit)",
  21778. image: {
  21779. source: "./media/characters/melody/side-outfit.svg",
  21780. extra: 1097 / 944,
  21781. bottom: 11.8 / 1109
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(15.66, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(8, "feet"),
  21798. weight: math.unit(325, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/windera/front.svg",
  21802. extra: 3180 / 2845,
  21803. bottom: 178 / 3365
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(8, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21817. {
  21818. front: {
  21819. height: math.unit(28.75, "feet"),
  21820. weight: math.unit(2000, "kg"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/sonear/front.svg",
  21824. extra: 1041.1 / 964.9,
  21825. bottom: 53.7 / 1096.6
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(28.75, "feet"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21839. {
  21840. side: {
  21841. height: math.unit(25.5, "feet"),
  21842. weight: math.unit(23000, "kg"),
  21843. name: "Side",
  21844. image: {
  21845. source: "./media/characters/kanara/side.svg"
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(25.5, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21859. {
  21860. side: {
  21861. height: math.unit(10, "feet"),
  21862. weight: math.unit(1000, "kg"),
  21863. name: "Side",
  21864. image: {
  21865. source: "./media/characters/ereus/side.svg",
  21866. extra: 1157 / 959,
  21867. bottom: 153 / 1312.5
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(10, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21881. {
  21882. side: {
  21883. height: math.unit(4.5, "feet"),
  21884. weight: math.unit(500, "lb"),
  21885. name: "Side",
  21886. image: {
  21887. source: "./media/characters/e-ter/side.svg",
  21888. extra: 1550 / 1248,
  21889. bottom: 146 / 1694
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(4.5, "feet"),
  21897. default: true
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21903. {
  21904. side: {
  21905. height: math.unit(9.7, "feet"),
  21906. weight: math.unit(4000, "kg"),
  21907. name: "Side",
  21908. image: {
  21909. source: "./media/characters/yamie/side.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(9.7, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(50, "feet"),
  21926. weight: math.unit(50000, "kg"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/anders/front.svg",
  21930. extra: 570 / 539,
  21931. bottom: 14.7 / 586.7
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Large",
  21938. height: math.unit(50, "feet")
  21939. },
  21940. {
  21941. name: "Macro",
  21942. height: math.unit(2000, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Megamacro",
  21947. height: math.unit(12, "miles")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(7 + 2 / 12, "feet"),
  21956. weight: math.unit(300, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/reban/front.svg",
  21960. extra: 516 / 487,
  21961. bottom: 42.82 / 558.356
  21962. }
  21963. },
  21964. dick: {
  21965. height: math.unit(7 / 5, "feet"),
  21966. name: "Dick",
  21967. image: {
  21968. source: "./media/characters/reban/dick.svg"
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Natural Height",
  21975. height: math.unit(7 + 2 / 12, "feet")
  21976. },
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(500, "feet"),
  21980. default: true
  21981. },
  21982. {
  21983. name: "Canon Height",
  21984. height: math.unit(50, "AU")
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(6, "feet"),
  21993. weight: math.unit(150, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/terrance-keayes/front.svg",
  21997. extra: 1.005,
  21998. bottom: 151 / 1615
  21999. }
  22000. },
  22001. side: {
  22002. height: math.unit(6, "feet"),
  22003. weight: math.unit(150, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/terrance-keayes/side.svg",
  22007. extra: 1.005,
  22008. bottom: 129.4 / 1544
  22009. }
  22010. },
  22011. back: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(150, "lb"),
  22014. name: "Back",
  22015. image: {
  22016. source: "./media/characters/terrance-keayes/back.svg",
  22017. extra: 1.005,
  22018. bottom: 58.4 / 1557.3
  22019. }
  22020. },
  22021. dick: {
  22022. height: math.unit(6 * 0.208, "feet"),
  22023. name: "Dick",
  22024. image: {
  22025. source: "./media/characters/terrance-keayes/dick.svg"
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Canon Height",
  22032. height: math.unit(35, "miles"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Ofelia", species: ["gigantosaurus"], 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/ofelia/front.svg",
  22046. extra: 546 / 541,
  22047. bottom: 39 / 583
  22048. }
  22049. },
  22050. back: {
  22051. height: math.unit(6, "feet"),
  22052. weight: math.unit(150, "lb"),
  22053. name: "Back",
  22054. image: {
  22055. source: "./media/characters/ofelia/back.svg",
  22056. extra: 564 / 559.5,
  22057. bottom: 8.69 / 573.02
  22058. }
  22059. },
  22060. maw: {
  22061. height: math.unit(1, "feet"),
  22062. name: "Maw",
  22063. image: {
  22064. source: "./media/characters/ofelia/maw.svg"
  22065. }
  22066. },
  22067. foot: {
  22068. height: math.unit(1.949, "feet"),
  22069. name: "Foot",
  22070. image: {
  22071. source: "./media/characters/ofelia/foot.svg"
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Canon Height",
  22078. height: math.unit(2000, "miles"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(6, "feet"),
  22088. weight: math.unit(150, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/samuel/front.svg",
  22092. extra: 265 / 258,
  22093. bottom: 2 / 266.1566
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Macro",
  22100. height: math.unit(100, "feet"),
  22101. default: true
  22102. },
  22103. {
  22104. name: "Full Size",
  22105. height: math.unit(1000, "miles")
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(6, "feet"),
  22114. weight: math.unit(300, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/beishir-kiel/front.svg",
  22118. extra: 569 / 547,
  22119. bottom: 41.9 / 609
  22120. }
  22121. },
  22122. maw: {
  22123. height: math.unit(6 * 0.202, "feet"),
  22124. name: "Maw",
  22125. image: {
  22126. source: "./media/characters/beishir-kiel/maw.svg"
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(300, "feet"),
  22134. default: true
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(5 + 7/12, "feet"),
  22143. weight: math.unit(120, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/logan-grey/front.svg",
  22147. extra: 1836/1738,
  22148. bottom: 108/1944
  22149. }
  22150. },
  22151. back: {
  22152. height: math.unit(5 + 7/12, "feet"),
  22153. weight: math.unit(120, "lb"),
  22154. name: "Back",
  22155. image: {
  22156. source: "./media/characters/logan-grey/back.svg",
  22157. extra: 1880/1794,
  22158. bottom: 24/1904
  22159. }
  22160. },
  22161. frontSfw: {
  22162. height: math.unit(5 + 7/12, "feet"),
  22163. weight: math.unit(120, "lb"),
  22164. name: "Front (SFW)",
  22165. image: {
  22166. source: "./media/characters/logan-grey/front-sfw.svg",
  22167. extra: 1836/1738,
  22168. bottom: 108/1944
  22169. }
  22170. },
  22171. backSfw: {
  22172. height: math.unit(5 + 7/12, "feet"),
  22173. weight: math.unit(120, "lb"),
  22174. name: "Back (SFW)",
  22175. image: {
  22176. source: "./media/characters/logan-grey/back-sfw.svg",
  22177. extra: 1880/1794,
  22178. bottom: 24/1904
  22179. }
  22180. },
  22181. hands: {
  22182. height: math.unit(0.84, "feet"),
  22183. name: "Hands",
  22184. image: {
  22185. source: "./media/characters/logan-grey/hands.svg"
  22186. }
  22187. },
  22188. paws: {
  22189. height: math.unit(0.72, "feet"),
  22190. name: "Paws",
  22191. image: {
  22192. source: "./media/characters/logan-grey/paws.svg"
  22193. }
  22194. },
  22195. cock: {
  22196. height: math.unit(1.45, "feet"),
  22197. name: "Cock",
  22198. image: {
  22199. source: "./media/characters/logan-grey/cock.svg"
  22200. }
  22201. },
  22202. cockAlt: {
  22203. height: math.unit(1.437, "feet"),
  22204. name: "Cock (alt)",
  22205. image: {
  22206. source: "./media/characters/logan-grey/cock-alt.svg"
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(5 + 8 / 12, "feet")
  22214. },
  22215. {
  22216. name: "The 500 Foot Femboy",
  22217. height: math.unit(500, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Megmacro",
  22222. height: math.unit(20, "miles")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(8 + 2 / 12, "feet"),
  22231. weight: math.unit(275, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/draganta/front.svg",
  22235. extra: 1177 / 1135,
  22236. bottom: 33.46 / 1212.1
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(8 + 6 / 12, "feet"),
  22244. default: true
  22245. },
  22246. {
  22247. name: "Macro",
  22248. height: math.unit(150, "feet")
  22249. },
  22250. {
  22251. name: "Megamacro",
  22252. height: math.unit(1000, "miles")
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(1.72, "m"),
  22261. weight: math.unit(80, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/voski/front.svg",
  22265. extra: 2076.22 / 2022.4,
  22266. bottom: 102.7 / 2177.3866
  22267. }
  22268. },
  22269. frontNsfw: {
  22270. height: math.unit(1.72, "m"),
  22271. weight: math.unit(80, "lb"),
  22272. name: "Front (NSFW)",
  22273. image: {
  22274. source: "./media/characters/voski/front-nsfw.svg",
  22275. extra: 2076.22 / 2022.4,
  22276. bottom: 102.7 / 2177.3866
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(1.72, "m"),
  22281. weight: math.unit(80, "lb"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/voski/back.svg",
  22285. extra: 2104 / 2051,
  22286. bottom: 10.45 / 2113.63
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(1.72, "m")
  22294. },
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(55, "m"),
  22298. default: true
  22299. },
  22300. {
  22301. name: "Macro+",
  22302. height: math.unit(300, "m")
  22303. },
  22304. {
  22305. name: "Macro++",
  22306. height: math.unit(700, "m")
  22307. },
  22308. {
  22309. name: "Macro+++",
  22310. height: math.unit(4500, "m")
  22311. },
  22312. {
  22313. name: "Macro++++",
  22314. height: math.unit(45, "km")
  22315. },
  22316. {
  22317. name: "Macro+++++",
  22318. height: math.unit(1220, "km")
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(2.3, "m"),
  22327. weight: math.unit(304, "kg"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/icowom-lee/front.svg",
  22331. extra: 985 / 955,
  22332. bottom: 25.4 / 1012
  22333. }
  22334. },
  22335. fronttentacles: {
  22336. height: math.unit(2.3, "m"),
  22337. weight: math.unit(304, "kg"),
  22338. name: "Front-tentacles",
  22339. image: {
  22340. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22341. extra: 985 / 955,
  22342. bottom: 25.4 / 1012
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(2.3, "m"),
  22347. weight: math.unit(304, "kg"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/icowom-lee/back.svg",
  22351. extra: 975 / 954,
  22352. bottom: 9.5 / 985
  22353. }
  22354. },
  22355. backtentacles: {
  22356. height: math.unit(2.3, "m"),
  22357. weight: math.unit(304, "kg"),
  22358. name: "Back-tentacles",
  22359. image: {
  22360. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22361. extra: 975 / 954,
  22362. bottom: 9.5 / 985
  22363. }
  22364. },
  22365. frontDressed: {
  22366. height: math.unit(2.3, "m"),
  22367. weight: math.unit(304, "kg"),
  22368. name: "Front (Dressed)",
  22369. image: {
  22370. source: "./media/characters/icowom-lee/front-dressed.svg",
  22371. extra: 3076 / 2933,
  22372. bottom: 51.4 / 3125.1889
  22373. }
  22374. },
  22375. rump: {
  22376. height: math.unit(0.776, "meters"),
  22377. name: "Rump",
  22378. image: {
  22379. source: "./media/characters/icowom-lee/rump.svg"
  22380. }
  22381. },
  22382. genitals: {
  22383. height: math.unit(0.78, "meters"),
  22384. name: "Genitals",
  22385. image: {
  22386. source: "./media/characters/icowom-lee/genitals.svg"
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(2.3, "meters"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(94, "meters"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(22, "meters"),
  22408. weight: math.unit(21000, "kg"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/shock-diamond/front.svg",
  22412. extra: 2204 / 2053,
  22413. bottom: 65 / 2239.47
  22414. }
  22415. },
  22416. frontNude: {
  22417. height: math.unit(22, "meters"),
  22418. weight: math.unit(21000, "kg"),
  22419. name: "Front (Nude)",
  22420. image: {
  22421. source: "./media/characters/shock-diamond/front-nude.svg",
  22422. extra: 2514 / 2285,
  22423. bottom: 13 / 2527.56
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(3, "meters")
  22431. },
  22432. {
  22433. name: "Macro",
  22434. height: math.unit(22, "meters"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(5 + 4 / 12, "feet"),
  22444. weight: math.unit(120, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/rory/front.svg",
  22448. extra: 1318/1241,
  22449. bottom: 42/1360
  22450. }
  22451. },
  22452. back: {
  22453. height: math.unit(5 + 4 / 12, "feet"),
  22454. weight: math.unit(120, "lb"),
  22455. name: "Back",
  22456. image: {
  22457. source: "./media/characters/rory/back.svg",
  22458. extra: 1318/1241,
  22459. bottom: 42/1360
  22460. }
  22461. },
  22462. butt: {
  22463. height: math.unit(1.74, "feet"),
  22464. name: "Butt",
  22465. image: {
  22466. source: "./media/characters/rory/butt.svg"
  22467. }
  22468. },
  22469. dick: {
  22470. height: math.unit(1.02, "feet"),
  22471. name: "Dick",
  22472. image: {
  22473. source: "./media/characters/rory/dick.svg"
  22474. }
  22475. },
  22476. paws: {
  22477. height: math.unit(1, "feet"),
  22478. name: "Paws",
  22479. image: {
  22480. source: "./media/characters/rory/paws.svg"
  22481. }
  22482. },
  22483. frontAlt: {
  22484. height: math.unit(5 + 4 / 12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front (Alt)",
  22487. image: {
  22488. source: "./media/characters/rory/front-alt.svg",
  22489. extra: 589 / 556,
  22490. bottom: 45.7 / 635.76
  22491. }
  22492. },
  22493. frontAltNude: {
  22494. height: math.unit(5 + 4 / 12, "feet"),
  22495. weight: math.unit(120, "lb"),
  22496. name: "Front (Alt, Nude)",
  22497. image: {
  22498. source: "./media/characters/rory/front-alt-nude.svg",
  22499. extra: 589 / 556,
  22500. bottom: 45.7 / 635.76
  22501. }
  22502. },
  22503. side: {
  22504. height: math.unit(5 + 4 / 12, "feet"),
  22505. weight: math.unit(120, "lb"),
  22506. name: "Side",
  22507. image: {
  22508. source: "./media/characters/rory/side.svg",
  22509. extra: 597 / 564,
  22510. bottom: 55 / 653
  22511. }
  22512. },
  22513. backAlt: {
  22514. height: math.unit(5 + 4 / 12, "feet"),
  22515. weight: math.unit(120, "lb"),
  22516. name: "Back (Alt)",
  22517. image: {
  22518. source: "./media/characters/rory/back-alt.svg",
  22519. extra: 620 / 585,
  22520. bottom: 8.86 / 630.43
  22521. }
  22522. },
  22523. dickAlt: {
  22524. height: math.unit(0.86, "feet"),
  22525. name: "Dick (Alt)",
  22526. image: {
  22527. source: "./media/characters/rory/dick-alt.svg"
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(5 + 4 / 12, "feet"),
  22535. default: true
  22536. },
  22537. {
  22538. name: "Macro",
  22539. height: math.unit(100, "feet")
  22540. },
  22541. {
  22542. name: "Macro+",
  22543. height: math.unit(140, "feet")
  22544. },
  22545. {
  22546. name: "Macro++",
  22547. height: math.unit(300, "feet")
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(5 + 9 / 12, "feet"),
  22556. weight: math.unit(190, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/sprisk/front.svg",
  22560. extra: 1225 / 1180,
  22561. bottom: 42.7 / 1266.4
  22562. }
  22563. },
  22564. frontNsfw: {
  22565. height: math.unit(5 + 9 / 12, "feet"),
  22566. weight: math.unit(190, "lb"),
  22567. name: "Front (NSFW)",
  22568. image: {
  22569. source: "./media/characters/sprisk/front-nsfw.svg",
  22570. extra: 1225 / 1180,
  22571. bottom: 42.7 / 1266.4
  22572. }
  22573. },
  22574. back: {
  22575. height: math.unit(5 + 9 / 12, "feet"),
  22576. weight: math.unit(190, "lb"),
  22577. name: "Back",
  22578. image: {
  22579. source: "./media/characters/sprisk/back.svg",
  22580. extra: 1247 / 1200,
  22581. bottom: 5.6 / 1253.04
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Tiny",
  22588. height: math.unit(2, "inches")
  22589. },
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(5 + 9 / 12, "feet"),
  22593. default: true
  22594. },
  22595. {
  22596. name: "Mini Macro",
  22597. height: math.unit(18, "feet")
  22598. },
  22599. {
  22600. name: "Macro",
  22601. height: math.unit(100, "feet")
  22602. },
  22603. {
  22604. name: "MACRO",
  22605. height: math.unit(50, "miles")
  22606. },
  22607. {
  22608. name: "M A C R O",
  22609. height: math.unit(300, "miles")
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22615. {
  22616. side: {
  22617. height: math.unit(15.6, "meters"),
  22618. weight: math.unit(700000, "kg"),
  22619. name: "Side",
  22620. image: {
  22621. source: "./media/characters/bunsen/side.svg",
  22622. extra: 1644 / 358
  22623. }
  22624. },
  22625. foot: {
  22626. height: math.unit(1.611 * 1644 / 358, "meter"),
  22627. name: "Foot",
  22628. image: {
  22629. source: "./media/characters/bunsen/foot.svg"
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Small",
  22636. height: math.unit(10, "feet")
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(15.6, "meters"),
  22641. default: true
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22647. {
  22648. front: {
  22649. height: math.unit(4 + 11 / 12, "feet"),
  22650. weight: math.unit(140, "lb"),
  22651. name: "Front",
  22652. image: {
  22653. source: "./media/characters/sesh/front.svg",
  22654. extra: 3420 / 3231,
  22655. bottom: 72 / 3949.5
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(4 + 11 / 12, "feet")
  22663. },
  22664. {
  22665. name: "Grown",
  22666. height: math.unit(15, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Macro",
  22671. height: math.unit(1500, "feet")
  22672. },
  22673. {
  22674. name: "Megamacro",
  22675. height: math.unit(30, "miles")
  22676. },
  22677. {
  22678. name: "Continental",
  22679. height: math.unit(3000, "miles")
  22680. },
  22681. {
  22682. name: "Gravity Mass",
  22683. height: math.unit(300000, "miles")
  22684. },
  22685. {
  22686. name: "Planet Buster",
  22687. height: math.unit(30000000, "miles")
  22688. },
  22689. {
  22690. name: "Big",
  22691. height: math.unit(3000000000, "miles")
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(9, "feet"),
  22700. weight: math.unit(350, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/pepper/front.svg",
  22704. extra: 1448 / 1312,
  22705. bottom: 9.4 / 1457.88
  22706. }
  22707. },
  22708. back: {
  22709. height: math.unit(9, "feet"),
  22710. weight: math.unit(350, "lb"),
  22711. name: "Back",
  22712. image: {
  22713. source: "./media/characters/pepper/back.svg",
  22714. extra: 1423 / 1300,
  22715. bottom: 4.6 / 1429
  22716. }
  22717. },
  22718. maw: {
  22719. height: math.unit(0.932, "feet"),
  22720. name: "Maw",
  22721. image: {
  22722. source: "./media/characters/pepper/maw.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(9, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(6, "feet"),
  22739. weight: math.unit(150, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/maelstrom/front.svg",
  22743. extra: 2100 / 1883,
  22744. bottom: 94 / 2196.7
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Less Kaiju",
  22751. height: math.unit(200, "feet")
  22752. },
  22753. {
  22754. name: "Kaiju",
  22755. height: math.unit(400, "feet"),
  22756. default: true
  22757. },
  22758. {
  22759. name: "Kaiju-er",
  22760. height: math.unit(600, "feet")
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(6 + 5 / 12, "feet"),
  22769. weight: math.unit(180, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/lexir/front.svg",
  22773. extra: 180 / 172,
  22774. bottom: 12 / 192
  22775. }
  22776. },
  22777. back: {
  22778. height: math.unit(6 + 5 / 12, "feet"),
  22779. weight: math.unit(180, "lb"),
  22780. name: "Back",
  22781. image: {
  22782. source: "./media/characters/lexir/back.svg",
  22783. extra: 183.84 / 175.5,
  22784. bottom: 3.1 / 187
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Very Smal",
  22791. height: math.unit(1, "nm")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(6 + 5 / 12, "feet"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(1, "mile")
  22801. },
  22802. {
  22803. name: "Megamacro",
  22804. height: math.unit(50, "miles")
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22810. {
  22811. front: {
  22812. height: math.unit(1.5, "meters"),
  22813. weight: math.unit(100, "lb"),
  22814. name: "Front",
  22815. image: {
  22816. source: "./media/characters/maksio/front.svg",
  22817. extra: 1549 / 1531,
  22818. bottom: 123.7 / 1674.5429
  22819. }
  22820. },
  22821. back: {
  22822. height: math.unit(1.5, "meters"),
  22823. weight: math.unit(100, "lb"),
  22824. name: "Back",
  22825. image: {
  22826. source: "./media/characters/maksio/back.svg",
  22827. extra: 1541 / 1509,
  22828. bottom: 97 / 1639
  22829. }
  22830. },
  22831. hand: {
  22832. height: math.unit(0.621, "feet"),
  22833. name: "Hand",
  22834. image: {
  22835. source: "./media/characters/maksio/hand.svg"
  22836. }
  22837. },
  22838. foot: {
  22839. height: math.unit(1.611, "feet"),
  22840. name: "Foot",
  22841. image: {
  22842. source: "./media/characters/maksio/foot.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Shrunken",
  22849. height: math.unit(10, "cm")
  22850. },
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(150, "cm"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(100, "feet"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/erza-bear/front.svg",
  22866. extra: 2449 / 2390,
  22867. bottom: 46 / 2494
  22868. }
  22869. },
  22870. back: {
  22871. height: math.unit(100, "feet"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/erza-bear/back.svg",
  22875. extra: 2489 / 2430,
  22876. bottom: 85.4 / 2480
  22877. }
  22878. },
  22879. tail: {
  22880. height: math.unit(42, "feet"),
  22881. name: "Tail",
  22882. image: {
  22883. source: "./media/characters/erza-bear/tail.svg"
  22884. }
  22885. },
  22886. tongue: {
  22887. height: math.unit(8, "feet"),
  22888. name: "Tongue",
  22889. image: {
  22890. source: "./media/characters/erza-bear/tongue.svg"
  22891. }
  22892. },
  22893. dick: {
  22894. height: math.unit(10.5, "feet"),
  22895. name: "Dick",
  22896. image: {
  22897. source: "./media/characters/erza-bear/dick.svg"
  22898. }
  22899. },
  22900. dickVertical: {
  22901. height: math.unit(16.9, "feet"),
  22902. name: "Dick (Vertical)",
  22903. image: {
  22904. source: "./media/characters/erza-bear/dick-vertical.svg"
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Macro",
  22911. height: math.unit(100, "feet"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(172, "cm"),
  22921. weight: math.unit(73, "kg"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/violet-flor/front.svg",
  22925. extra: 1530 / 1442,
  22926. bottom: 61.9 / 1588.8
  22927. }
  22928. },
  22929. back: {
  22930. height: math.unit(180, "cm"),
  22931. weight: math.unit(73, "kg"),
  22932. name: "Back",
  22933. image: {
  22934. source: "./media/characters/violet-flor/back.svg",
  22935. extra: 1692 / 1630,
  22936. bottom: 20 / 1712
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Normal",
  22943. height: math.unit(172, "cm"),
  22944. default: true
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(6, "feet"),
  22953. weight: math.unit(220, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/lynn-rhea/front.svg",
  22957. extra: 310 / 273
  22958. }
  22959. },
  22960. back: {
  22961. height: math.unit(6, "feet"),
  22962. weight: math.unit(220, "lb"),
  22963. name: "Back",
  22964. image: {
  22965. source: "./media/characters/lynn-rhea/back.svg",
  22966. extra: 310 / 273
  22967. }
  22968. },
  22969. dicks: {
  22970. height: math.unit(0.9, "feet"),
  22971. name: "Dicks",
  22972. image: {
  22973. source: "./media/characters/lynn-rhea/dicks.svg"
  22974. }
  22975. },
  22976. slit: {
  22977. height: math.unit(0.4, "feet"),
  22978. name: "Slit",
  22979. image: {
  22980. source: "./media/characters/lynn-rhea/slit.svg"
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Micro",
  22987. height: math.unit(1, "inch")
  22988. },
  22989. {
  22990. name: "Macro",
  22991. height: math.unit(60, "feet"),
  22992. default: true
  22993. },
  22994. {
  22995. name: "Megamacro",
  22996. height: math.unit(2, "miles")
  22997. },
  22998. {
  22999. name: "Gigamacro",
  23000. height: math.unit(3, "earths")
  23001. },
  23002. {
  23003. name: "Galactic",
  23004. height: math.unit(0.8, "galaxies")
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23010. {
  23011. front: {
  23012. height: math.unit(1600, "feet"),
  23013. weight: math.unit(85758785169, "kg"),
  23014. name: "Front",
  23015. image: {
  23016. source: "./media/characters/valathos/front.svg",
  23017. extra: 1451 / 1339
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(1600, "feet"),
  23025. default: true
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(7 + 5 / 12, "feet"),
  23034. weight: math.unit(300, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/azula/front.svg",
  23038. extra: 3208 / 2880,
  23039. bottom: 80.2 / 3277
  23040. }
  23041. },
  23042. back: {
  23043. height: math.unit(7 + 5 / 12, "feet"),
  23044. weight: math.unit(300, "lb"),
  23045. name: "Back",
  23046. image: {
  23047. source: "./media/characters/azula/back.svg",
  23048. extra: 3169 / 2822,
  23049. bottom: 150.6 / 3321
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(7 + 5 / 12, "feet"),
  23057. default: true
  23058. },
  23059. {
  23060. name: "Big",
  23061. height: math.unit(20, "feet")
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(5 + 1 / 12, "feet"),
  23070. weight: math.unit(110, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/rupert/front.svg",
  23074. extra: 1549 / 1495,
  23075. bottom: 54.2 / 1604.4
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(5 + 1 / 12, "feet"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23089. {
  23090. front: {
  23091. height: math.unit(8 + 4 / 12, "feet"),
  23092. weight: math.unit(350, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/sheera-castellar/front.svg",
  23096. extra: 1957 / 1894,
  23097. bottom: 26.97 / 1975.017
  23098. }
  23099. },
  23100. side: {
  23101. height: math.unit(8 + 4 / 12, "feet"),
  23102. weight: math.unit(350, "lb"),
  23103. name: "Side",
  23104. image: {
  23105. source: "./media/characters/sheera-castellar/side.svg",
  23106. extra: 1957 / 1894
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(8 + 4 / 12, "feet"),
  23111. weight: math.unit(350, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/sheera-castellar/back.svg",
  23115. extra: 1957 / 1894
  23116. }
  23117. },
  23118. angled: {
  23119. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23120. weight: math.unit(350, "lb"),
  23121. name: "Angled",
  23122. image: {
  23123. source: "./media/characters/sheera-castellar/angled.svg",
  23124. extra: 1807 / 1707,
  23125. bottom: 68 / 1875
  23126. }
  23127. },
  23128. genitals: {
  23129. height: math.unit(2.2, "feet"),
  23130. name: "Genitals",
  23131. image: {
  23132. source: "./media/characters/sheera-castellar/genitals.svg"
  23133. }
  23134. },
  23135. taur: {
  23136. height: math.unit(10 + 6/12, "feet"),
  23137. name: "Taur",
  23138. image: {
  23139. source: "./media/characters/sheera-castellar/taur.svg",
  23140. extra: 2017/1909,
  23141. bottom: 185/2202
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(8 + 4 / 12, "feet")
  23149. },
  23150. {
  23151. name: "Macro",
  23152. height: math.unit(150, "feet"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro+",
  23157. height: math.unit(800, "feet")
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(6, "feet"),
  23166. weight: math.unit(150, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/jaipur/front.svg",
  23170. extra: 3860 / 3731,
  23171. bottom: 287 / 4140
  23172. }
  23173. },
  23174. back: {
  23175. height: math.unit(6, "feet"),
  23176. weight: math.unit(150, "lb"),
  23177. name: "Back",
  23178. image: {
  23179. source: "./media/characters/jaipur/back.svg",
  23180. extra: 4060 / 3930,
  23181. bottom: 151 / 4200
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(1.85, "meters"),
  23189. default: true
  23190. },
  23191. {
  23192. name: "Macro",
  23193. height: math.unit(150, "meters")
  23194. },
  23195. {
  23196. name: "Macro+",
  23197. height: math.unit(0.5, "miles")
  23198. },
  23199. {
  23200. name: "Macro++",
  23201. height: math.unit(2.5, "miles")
  23202. },
  23203. {
  23204. name: "Macro+++",
  23205. height: math.unit(12, "miles")
  23206. },
  23207. {
  23208. name: "Macro++++",
  23209. height: math.unit(120, "miles")
  23210. },
  23211. {
  23212. name: "Macro+++++",
  23213. height: math.unit(1200, "miles")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(6, "feet"),
  23222. weight: math.unit(150, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/sheila-wolf/front.svg",
  23226. extra: 1931 / 1808,
  23227. bottom: 29.5 / 1960
  23228. }
  23229. },
  23230. dick: {
  23231. height: math.unit(1.464, "feet"),
  23232. name: "Dick",
  23233. image: {
  23234. source: "./media/characters/sheila-wolf/dick.svg"
  23235. }
  23236. },
  23237. muzzle: {
  23238. height: math.unit(0.513, "feet"),
  23239. name: "Muzzle",
  23240. image: {
  23241. source: "./media/characters/sheila-wolf/muzzle.svg"
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Macro",
  23248. height: math.unit(70, "feet"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(32, "meters"),
  23258. weight: math.unit(300000, "kg"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/almor/front.svg",
  23262. extra: 1408 / 1322,
  23263. bottom: 94.6 / 1506.5
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Macro",
  23270. height: math.unit(32, "meters"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(7, "feet"),
  23280. weight: math.unit(200, "lb"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/silver/front.svg",
  23284. extra: 472.1 / 450.5,
  23285. bottom: 26.5 / 499.424
  23286. }
  23287. },
  23288. },
  23289. [
  23290. {
  23291. name: "Normal",
  23292. height: math.unit(7, "feet"),
  23293. default: true
  23294. },
  23295. {
  23296. name: "Macro",
  23297. height: math.unit(800, "feet")
  23298. },
  23299. {
  23300. name: "Megamacro",
  23301. height: math.unit(250, "miles")
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(6, "feet"),
  23310. weight: math.unit(150, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/pliskin/front.svg",
  23314. extra: 1469 / 1359,
  23315. bottom: 70 / 1540
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Micro",
  23322. height: math.unit(3, "inches")
  23323. },
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(5 + 11 / 12, "feet"),
  23327. default: true
  23328. },
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(120, "feet")
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(6, "feet"),
  23340. weight: math.unit(150, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/sammy/front.svg",
  23344. extra: 1193 / 1089,
  23345. bottom: 30.5 / 1226
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Macro",
  23352. height: math.unit(1700, "feet"),
  23353. default: true
  23354. },
  23355. {
  23356. name: "Examacro",
  23357. height: math.unit(2.5e9, "lightyears")
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(21, "meters"),
  23366. weight: math.unit(12, "tonnes"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/kuru/front.svg",
  23370. extra: 4301 / 3785,
  23371. bottom: 371.3 / 4691
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Macro",
  23378. height: math.unit(21, "meters"),
  23379. default: true
  23380. },
  23381. ]
  23382. ))
  23383. characterMakers.push(() => makeCharacter(
  23384. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23385. {
  23386. front: {
  23387. height: math.unit(23, "meters"),
  23388. weight: math.unit(12.2, "tonnes"),
  23389. name: "Front",
  23390. image: {
  23391. source: "./media/characters/rakka/front.svg",
  23392. extra: 4670 / 4169,
  23393. bottom: 301 / 4968.7
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(23, "meters"),
  23401. default: true
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(6, "feet"),
  23410. weight: math.unit(150, "lb"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/rhys-feline/front.svg",
  23414. extra: 2488 / 2308,
  23415. bottom: 35.67 / 2519.19
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Really Small",
  23422. height: math.unit(1, "nm")
  23423. },
  23424. {
  23425. name: "Micro",
  23426. height: math.unit(4, "inches")
  23427. },
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(4 + 10 / 12, "feet"),
  23431. default: true
  23432. },
  23433. {
  23434. name: "Macro",
  23435. height: math.unit(100, "feet")
  23436. },
  23437. {
  23438. name: "Megamacto",
  23439. height: math.unit(50, "miles")
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23445. {
  23446. side: {
  23447. height: math.unit(30, "feet"),
  23448. weight: math.unit(35000, "kg"),
  23449. name: "Side",
  23450. image: {
  23451. source: "./media/characters/alydar/side.svg",
  23452. extra: 234 / 222,
  23453. bottom: 6.5 / 241
  23454. }
  23455. },
  23456. front: {
  23457. height: math.unit(30, "feet"),
  23458. weight: math.unit(35000, "kg"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/alydar/front.svg",
  23462. extra: 223.37 / 210.2,
  23463. bottom: 22.3 / 246.76
  23464. }
  23465. },
  23466. top: {
  23467. height: math.unit(64.54, "feet"),
  23468. weight: math.unit(35000, "kg"),
  23469. name: "Top",
  23470. image: {
  23471. source: "./media/characters/alydar/top.svg"
  23472. }
  23473. },
  23474. anthro: {
  23475. height: math.unit(30, "feet"),
  23476. weight: math.unit(9000, "kg"),
  23477. name: "Anthro",
  23478. image: {
  23479. source: "./media/characters/alydar/anthro.svg",
  23480. extra: 432 / 421,
  23481. bottom: 7.18 / 440
  23482. }
  23483. },
  23484. maw: {
  23485. height: math.unit(11.693, "feet"),
  23486. name: "Maw",
  23487. image: {
  23488. source: "./media/characters/alydar/maw.svg"
  23489. }
  23490. },
  23491. head: {
  23492. height: math.unit(11.693, "feet"),
  23493. name: "Head",
  23494. image: {
  23495. source: "./media/characters/alydar/head.svg"
  23496. }
  23497. },
  23498. headAlt: {
  23499. height: math.unit(12.861, "feet"),
  23500. name: "Head (Alt)",
  23501. image: {
  23502. source: "./media/characters/alydar/head-alt.svg"
  23503. }
  23504. },
  23505. wing: {
  23506. height: math.unit(20.712, "feet"),
  23507. name: "Wing",
  23508. image: {
  23509. source: "./media/characters/alydar/wing.svg"
  23510. }
  23511. },
  23512. wingFeather: {
  23513. height: math.unit(9.662, "feet"),
  23514. name: "Wing Feather",
  23515. image: {
  23516. source: "./media/characters/alydar/wing-feather.svg"
  23517. }
  23518. },
  23519. countourFeather: {
  23520. height: math.unit(4.154, "feet"),
  23521. name: "Contour Feather",
  23522. image: {
  23523. source: "./media/characters/alydar/contour-feather.svg"
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Diplomatic",
  23530. height: math.unit(13, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Small",
  23535. height: math.unit(30, "feet")
  23536. },
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(95, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Large",
  23544. height: math.unit(285, "feet")
  23545. },
  23546. {
  23547. name: "Incomprehensible",
  23548. height: math.unit(450, "megameters")
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23554. {
  23555. side: {
  23556. height: math.unit(11, "feet"),
  23557. weight: math.unit(1750, "kg"),
  23558. name: "Side",
  23559. image: {
  23560. source: "./media/characters/selicia/side.svg",
  23561. extra: 440 / 396,
  23562. bottom: 24.8 / 465.979
  23563. }
  23564. },
  23565. maw: {
  23566. height: math.unit(4.665, "feet"),
  23567. name: "Maw",
  23568. image: {
  23569. source: "./media/characters/selicia/maw.svg"
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(11, "feet"),
  23577. default: true
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23583. {
  23584. side: {
  23585. height: math.unit(2 + 6 / 12, "feet"),
  23586. weight: math.unit(30, "lb"),
  23587. name: "Side",
  23588. image: {
  23589. source: "./media/characters/layla/side.svg",
  23590. extra: 244 / 188,
  23591. bottom: 18.2 / 262.1
  23592. }
  23593. },
  23594. back: {
  23595. height: math.unit(2 + 6 / 12, "feet"),
  23596. weight: math.unit(30, "lb"),
  23597. name: "Back",
  23598. image: {
  23599. source: "./media/characters/layla/back.svg",
  23600. extra: 308 / 241.5,
  23601. bottom: 8.9 / 316.8
  23602. }
  23603. },
  23604. cumming: {
  23605. height: math.unit(2 + 6 / 12, "feet"),
  23606. weight: math.unit(30, "lb"),
  23607. name: "Cumming",
  23608. image: {
  23609. source: "./media/characters/layla/cumming.svg",
  23610. extra: 342 / 279,
  23611. bottom: 595 / 938
  23612. }
  23613. },
  23614. dickFlaccid: {
  23615. height: math.unit(2.595, "feet"),
  23616. name: "Flaccid Genitals",
  23617. image: {
  23618. source: "./media/characters/layla/dick-flaccid.svg"
  23619. }
  23620. },
  23621. dickErect: {
  23622. height: math.unit(2.359, "feet"),
  23623. name: "Erect Genitals",
  23624. image: {
  23625. source: "./media/characters/layla/dick-erect.svg"
  23626. }
  23627. },
  23628. dragon: {
  23629. height: math.unit(40, "feet"),
  23630. name: "Dragon",
  23631. image: {
  23632. source: "./media/characters/layla/dragon.svg",
  23633. extra: 610/535,
  23634. bottom: 367/977
  23635. }
  23636. },
  23637. taur: {
  23638. height: math.unit(30, "feet"),
  23639. name: "Taur",
  23640. image: {
  23641. source: "./media/characters/layla/taur.svg",
  23642. extra: 1268/1199,
  23643. bottom: 112/1380
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Micro",
  23650. height: math.unit(1, "inch")
  23651. },
  23652. {
  23653. name: "Small",
  23654. height: math.unit(1, "foot")
  23655. },
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(2 + 6 / 12, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Macro",
  23663. height: math.unit(200, "feet")
  23664. },
  23665. {
  23666. name: "Megamacro",
  23667. height: math.unit(1000, "miles")
  23668. },
  23669. {
  23670. name: "Planetary",
  23671. height: math.unit(8000, "miles")
  23672. },
  23673. {
  23674. name: "True Layla",
  23675. height: math.unit(200000 * 7, "multiverses")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23681. {
  23682. back: {
  23683. height: math.unit(10.5, "feet"),
  23684. weight: math.unit(800, "lb"),
  23685. name: "Back",
  23686. image: {
  23687. source: "./media/characters/knox/back.svg",
  23688. extra: 1486 / 1089,
  23689. bottom: 107 / 1601.4
  23690. }
  23691. },
  23692. side: {
  23693. height: math.unit(10.5, "feet"),
  23694. weight: math.unit(800, "lb"),
  23695. name: "Side",
  23696. image: {
  23697. source: "./media/characters/knox/side.svg",
  23698. extra: 244 / 218,
  23699. bottom: 14 / 260
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Compact",
  23706. height: math.unit(10.5, "feet"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Dynamax",
  23711. height: math.unit(210, "feet")
  23712. },
  23713. {
  23714. name: "Full Macro",
  23715. height: math.unit(850, "feet")
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(28, "feet"),
  23724. weight: math.unit(10500, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/kayda/front.svg",
  23728. extra: 1536 / 1428,
  23729. bottom: 68.7 / 1603
  23730. }
  23731. },
  23732. back: {
  23733. height: math.unit(28, "feet"),
  23734. weight: math.unit(10500, "lb"),
  23735. name: "Back",
  23736. image: {
  23737. source: "./media/characters/kayda/back.svg",
  23738. extra: 1557 / 1464,
  23739. bottom: 39.5 / 1597.49
  23740. }
  23741. },
  23742. dick: {
  23743. height: math.unit(3.858, "feet"),
  23744. name: "Dick",
  23745. image: {
  23746. source: "./media/characters/kayda/dick.svg"
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Macro",
  23753. height: math.unit(28, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(10 + 11 / 12, "feet"),
  23763. weight: math.unit(1400, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/brian/front.svg",
  23767. extra: 737 / 692,
  23768. bottom: 55.4 / 785
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(10 + 11 / 12, "feet"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(5 + 8 / 12, "feet"),
  23785. weight: math.unit(140, "lb"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/khemri/front.svg",
  23789. extra: 4780 / 4059,
  23790. bottom: 80.1 / 4859.25
  23791. }
  23792. },
  23793. },
  23794. [
  23795. {
  23796. name: "Micro",
  23797. height: math.unit(6, "inches")
  23798. },
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(5 + 8 / 12, "feet"),
  23802. default: true
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23808. {
  23809. front: {
  23810. height: math.unit(13, "feet"),
  23811. weight: math.unit(1700, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/felix-braveheart/front.svg",
  23815. extra: 1222 / 1157,
  23816. bottom: 53.2 / 1280
  23817. }
  23818. },
  23819. back: {
  23820. height: math.unit(13, "feet"),
  23821. weight: math.unit(1700, "lb"),
  23822. name: "Back",
  23823. image: {
  23824. source: "./media/characters/felix-braveheart/back.svg",
  23825. extra: 1277 / 1203,
  23826. bottom: 50.2 / 1327
  23827. }
  23828. },
  23829. feral: {
  23830. height: math.unit(6, "feet"),
  23831. weight: math.unit(400, "lb"),
  23832. name: "Feral",
  23833. image: {
  23834. source: "./media/characters/felix-braveheart/feral.svg",
  23835. extra: 682 / 625,
  23836. bottom: 6.9 / 688
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Normal",
  23843. height: math.unit(13, "feet"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23850. {
  23851. side: {
  23852. height: math.unit(5 + 11 / 12, "feet"),
  23853. weight: math.unit(1400, "lb"),
  23854. name: "Side",
  23855. image: {
  23856. source: "./media/characters/shadow-blade/side.svg",
  23857. extra: 1726 / 1267,
  23858. bottom: 58.4 / 1785
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(5 + 11 / 12, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(1 + 6 / 12, "feet"),
  23875. weight: math.unit(25, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/karla-halldor/front.svg",
  23879. extra: 1459 / 1383,
  23880. bottom: 12 / 1472
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(1 + 6 / 12, "feet"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23894. {
  23895. front: {
  23896. height: math.unit(6 + 2 / 12, "feet"),
  23897. weight: math.unit(160, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/ariam/front.svg",
  23901. extra: 714 / 617,
  23902. bottom: 23.4 / 737,
  23903. }
  23904. },
  23905. squatting: {
  23906. height: math.unit(4.1, "feet"),
  23907. weight: math.unit(160, "lb"),
  23908. name: "Squatting",
  23909. image: {
  23910. source: "./media/characters/ariam/squatting.svg",
  23911. extra: 2617 / 2112,
  23912. bottom: 61.2 / 2681,
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(6 + 2 / 12, "feet"),
  23920. default: true
  23921. },
  23922. {
  23923. name: "Normal+",
  23924. height: math.unit(4, "meters")
  23925. },
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(50, "meters")
  23929. },
  23930. {
  23931. name: "Macro+",
  23932. height: math.unit(100, "meters")
  23933. },
  23934. {
  23935. name: "Megamacro",
  23936. height: math.unit(20, "km")
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(1.67, "meters"),
  23945. weight: math.unit(140, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23949. extra: 438 / 410,
  23950. bottom: 0.75 / 439
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Shrunken",
  23957. height: math.unit(7.6, "cm")
  23958. },
  23959. {
  23960. name: "Human Scale",
  23961. height: math.unit(1.67, "meters")
  23962. },
  23963. {
  23964. name: "Wolxi Scale",
  23965. height: math.unit(36.7, "meters"),
  23966. default: true
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(1.73, "meters"),
  23975. weight: math.unit(240, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/izue-two-mothers/front.svg",
  23979. extra: 469 / 437,
  23980. bottom: 1.24 / 470.6
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Shrunken",
  23987. height: math.unit(7.86, "cm")
  23988. },
  23989. {
  23990. name: "Human Scale",
  23991. height: math.unit(1.73, "meters")
  23992. },
  23993. {
  23994. name: "Wolxi Scale",
  23995. height: math.unit(38, "meters"),
  23996. default: true
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(1.55, "meters"),
  24005. weight: math.unit(120, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/teeku-love-shack/front.svg",
  24009. extra: 387 / 362,
  24010. bottom: 1.51 / 388
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Shrunken",
  24017. height: math.unit(7, "cm")
  24018. },
  24019. {
  24020. name: "Human Scale",
  24021. height: math.unit(1.55, "meters")
  24022. },
  24023. {
  24024. name: "Wolxi Scale",
  24025. height: math.unit(34.1, "meters"),
  24026. default: true
  24027. },
  24028. ]
  24029. ))
  24030. characterMakers.push(() => makeCharacter(
  24031. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24032. {
  24033. front: {
  24034. height: math.unit(1.83, "meters"),
  24035. weight: math.unit(135, "lb"),
  24036. name: "Front",
  24037. image: {
  24038. source: "./media/characters/dejma-the-red/front.svg",
  24039. extra: 480 / 458,
  24040. bottom: 1.8 / 482
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Shrunken",
  24047. height: math.unit(8.3, "cm")
  24048. },
  24049. {
  24050. name: "Human Scale",
  24051. height: math.unit(1.83, "meters")
  24052. },
  24053. {
  24054. name: "Wolxi Scale",
  24055. height: math.unit(40, "meters"),
  24056. default: true
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24062. {
  24063. front: {
  24064. height: math.unit(1.78, "meters"),
  24065. weight: math.unit(65, "kg"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/aki/front.svg",
  24069. extra: 452 / 415
  24070. }
  24071. },
  24072. frontNsfw: {
  24073. height: math.unit(1.78, "meters"),
  24074. weight: math.unit(65, "kg"),
  24075. name: "Front (NSFW)",
  24076. image: {
  24077. source: "./media/characters/aki/front-nsfw.svg",
  24078. extra: 452 / 415
  24079. }
  24080. },
  24081. back: {
  24082. height: math.unit(1.78, "meters"),
  24083. weight: math.unit(65, "kg"),
  24084. name: "Back",
  24085. image: {
  24086. source: "./media/characters/aki/back.svg",
  24087. extra: 452 / 415
  24088. }
  24089. },
  24090. rump: {
  24091. height: math.unit(2.05, "feet"),
  24092. name: "Rump",
  24093. image: {
  24094. source: "./media/characters/aki/rump.svg"
  24095. }
  24096. },
  24097. dick: {
  24098. height: math.unit(0.95, "feet"),
  24099. name: "Dick",
  24100. image: {
  24101. source: "./media/characters/aki/dick.svg"
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Micro",
  24108. height: math.unit(15, "cm")
  24109. },
  24110. {
  24111. name: "Normal",
  24112. height: math.unit(178, "cm"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(214, "m")
  24118. },
  24119. {
  24120. name: "Macro+",
  24121. height: math.unit(534, "m")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(5 + 5 / 12, "feet"),
  24130. weight: math.unit(120, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/ari/front.svg",
  24134. extra: 714.5 / 682,
  24135. bottom: 8 / 722.5
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(5 + 5 / 12, "feet")
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(100, "feet"),
  24147. default: true
  24148. },
  24149. {
  24150. name: "Megamacro",
  24151. height: math.unit(100, "miles")
  24152. },
  24153. {
  24154. name: "Gigamacro",
  24155. height: math.unit(80000, "miles")
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24161. {
  24162. side: {
  24163. height: math.unit(9, "feet"),
  24164. weight: math.unit(400, "kg"),
  24165. name: "Side",
  24166. image: {
  24167. source: "./media/characters/bolt/side.svg",
  24168. extra: 1126 / 896,
  24169. bottom: 60 / 1187.3,
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Micro",
  24176. height: math.unit(5, "inches")
  24177. },
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(9, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(700, "feet")
  24186. },
  24187. {
  24188. name: "Max Size",
  24189. height: math.unit(1.52e22, "yottameters")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(4.53, "meters"),
  24198. weight: math.unit(3, "tons"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/draekon-sylviar/front.svg",
  24202. extra: 1228 / 1068,
  24203. bottom: 41 / 1270
  24204. }
  24205. },
  24206. tail: {
  24207. height: math.unit(1.772, "meter"),
  24208. name: "Tail",
  24209. image: {
  24210. source: "./media/characters/draekon-sylviar/tail.svg"
  24211. }
  24212. },
  24213. head: {
  24214. height: math.unit(1.331, "meter"),
  24215. name: "Head",
  24216. image: {
  24217. source: "./media/characters/draekon-sylviar/head.svg"
  24218. }
  24219. },
  24220. hand: {
  24221. height: math.unit(0.564, "meter"),
  24222. name: "Hand",
  24223. image: {
  24224. source: "./media/characters/draekon-sylviar/hand.svg"
  24225. }
  24226. },
  24227. foot: {
  24228. height: math.unit(0.621, "meter"),
  24229. name: "Foot",
  24230. image: {
  24231. source: "./media/characters/draekon-sylviar/foot.svg",
  24232. bottom: 32 / 324
  24233. }
  24234. },
  24235. dick: {
  24236. height: math.unit(61, "cm"),
  24237. name: "Dick",
  24238. image: {
  24239. source: "./media/characters/draekon-sylviar/dick.svg"
  24240. }
  24241. },
  24242. dickseparated: {
  24243. height: math.unit(61, "cm"),
  24244. name: "Dick-separated",
  24245. image: {
  24246. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Small",
  24253. height: math.unit(4.53 / 2, "meters"),
  24254. default: true
  24255. },
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(4.53, "meters"),
  24259. default: true
  24260. },
  24261. {
  24262. name: "Large",
  24263. height: math.unit(4.53 * 2, "meters"),
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(6 + 2 / 12, "feet"),
  24272. weight: math.unit(180, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/brawler/front.svg",
  24276. extra: 3301 / 3027,
  24277. bottom: 138 / 3439
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(6 + 2 / 12, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(11, "feet"),
  24294. weight: math.unit(1000, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/alex/front.svg",
  24298. bottom: 44.5 / 620
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Micro",
  24305. height: math.unit(5, "inches")
  24306. },
  24307. {
  24308. name: "Normal",
  24309. height: math.unit(11, "feet"),
  24310. default: true
  24311. },
  24312. {
  24313. name: "Macro",
  24314. height: math.unit(9.5e9, "feet")
  24315. },
  24316. {
  24317. name: "Max Size",
  24318. height: math.unit(1.4e283, "yottameters")
  24319. },
  24320. ]
  24321. ))
  24322. characterMakers.push(() => makeCharacter(
  24323. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24324. {
  24325. female: {
  24326. height: math.unit(29.9, "m"),
  24327. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24328. name: "Female",
  24329. image: {
  24330. source: "./media/characters/zenari/female.svg",
  24331. extra: 3281.6 / 3217,
  24332. bottom: 72.2 / 3353
  24333. }
  24334. },
  24335. male: {
  24336. height: math.unit(27.7, "m"),
  24337. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24338. name: "Male",
  24339. image: {
  24340. source: "./media/characters/zenari/male.svg",
  24341. extra: 3008 / 2991,
  24342. bottom: 54.6 / 3069
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Macro",
  24349. height: math.unit(29.7, "meters"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24356. {
  24357. female: {
  24358. height: math.unit(23.8, "m"),
  24359. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24360. name: "Female",
  24361. image: {
  24362. source: "./media/characters/mactarian/female.svg",
  24363. extra: 2662 / 2569,
  24364. bottom: 73 / 2736
  24365. }
  24366. },
  24367. male: {
  24368. height: math.unit(23.8, "m"),
  24369. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24370. name: "Male",
  24371. image: {
  24372. source: "./media/characters/mactarian/male.svg",
  24373. extra: 2673 / 2600,
  24374. bottom: 76 / 2750
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Macro",
  24381. height: math.unit(23.8, "meters"),
  24382. default: true
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24388. {
  24389. female: {
  24390. height: math.unit(19.3, "m"),
  24391. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24392. name: "Female",
  24393. image: {
  24394. source: "./media/characters/umok/female.svg",
  24395. extra: 2186 / 2078,
  24396. bottom: 87 / 2277
  24397. }
  24398. },
  24399. male: {
  24400. height: math.unit(19.5, "m"),
  24401. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24402. name: "Male",
  24403. image: {
  24404. source: "./media/characters/umok/male.svg",
  24405. extra: 2233 / 2140,
  24406. bottom: 24.4 / 2258
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(19.3, "meters"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24420. {
  24421. female: {
  24422. height: math.unit(26.15, "m"),
  24423. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24424. name: "Female",
  24425. image: {
  24426. source: "./media/characters/joraxian/female.svg",
  24427. extra: 2912 / 2824,
  24428. bottom: 36 / 2956
  24429. }
  24430. },
  24431. male: {
  24432. height: math.unit(25.4, "m"),
  24433. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24434. name: "Male",
  24435. image: {
  24436. source: "./media/characters/joraxian/male.svg",
  24437. extra: 2877 / 2721,
  24438. bottom: 82 / 2967
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Macro",
  24445. height: math.unit(26.15, "meters"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24452. {
  24453. female: {
  24454. height: math.unit(21.6, "m"),
  24455. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24456. name: "Female",
  24457. image: {
  24458. source: "./media/characters/sthara/female.svg",
  24459. extra: 2516 / 2347,
  24460. bottom: 21.5 / 2537
  24461. }
  24462. },
  24463. male: {
  24464. height: math.unit(24, "m"),
  24465. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24466. name: "Male",
  24467. image: {
  24468. source: "./media/characters/sthara/male.svg",
  24469. extra: 2732 / 2607,
  24470. bottom: 23 / 2732
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(21.6, "meters"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(6 + 4 / 12, "feet"),
  24487. weight: math.unit(175, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/luka-bryzant/front.svg",
  24491. extra: 311 / 289,
  24492. bottom: 4 / 315
  24493. }
  24494. },
  24495. back: {
  24496. height: math.unit(6 + 4 / 12, "feet"),
  24497. weight: math.unit(175, "lb"),
  24498. name: "Back",
  24499. image: {
  24500. source: "./media/characters/luka-bryzant/back.svg",
  24501. extra: 311 / 289,
  24502. bottom: 3.8 / 313.7
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Micro",
  24509. height: math.unit(10, "inches")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(6 + 4 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Large",
  24518. height: math.unit(12, "feet")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(5 + 7 / 12, "feet"),
  24527. weight: math.unit(185, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/aman-aquila/front.svg",
  24531. extra: 1013 / 976,
  24532. bottom: 45.6 / 1057
  24533. }
  24534. },
  24535. side: {
  24536. height: math.unit(5 + 7 / 12, "feet"),
  24537. weight: math.unit(185, "lb"),
  24538. name: "Side",
  24539. image: {
  24540. source: "./media/characters/aman-aquila/side.svg",
  24541. extra: 1054 / 1011,
  24542. bottom: 15 / 1070
  24543. }
  24544. },
  24545. back: {
  24546. height: math.unit(5 + 7 / 12, "feet"),
  24547. weight: math.unit(185, "lb"),
  24548. name: "Back",
  24549. image: {
  24550. source: "./media/characters/aman-aquila/back.svg",
  24551. extra: 1026 / 970,
  24552. bottom: 12 / 1039
  24553. }
  24554. },
  24555. head: {
  24556. height: math.unit(1.211, "feet"),
  24557. name: "Head",
  24558. image: {
  24559. source: "./media/characters/aman-aquila/head.svg",
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Minimicro",
  24566. height: math.unit(0.057, "inches")
  24567. },
  24568. {
  24569. name: "Micro",
  24570. height: math.unit(7, "inches")
  24571. },
  24572. {
  24573. name: "Mini",
  24574. height: math.unit(3 + 7 / 12, "feet")
  24575. },
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(5 + 7 / 12, "feet"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Macro",
  24583. height: math.unit(157 + 7 / 12, "feet")
  24584. },
  24585. {
  24586. name: "Megamacro",
  24587. height: math.unit(1557 + 7 / 12, "feet")
  24588. },
  24589. {
  24590. name: "Gigamacro",
  24591. height: math.unit(15557 + 7 / 12, "feet")
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(3 + 2 / 12, "inches"),
  24600. weight: math.unit(0.3, "ounces"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/hiphae/front.svg",
  24604. extra: 1931 / 1683,
  24605. bottom: 24 / 1955
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(3 + 1 / 2, "inches"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(5 + 10 / 12, "feet"),
  24622. weight: math.unit(165, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/nicky/front.svg",
  24626. extra: 3144 / 2886,
  24627. bottom: 45.6 / 3192
  24628. }
  24629. },
  24630. back: {
  24631. height: math.unit(5 + 10 / 12, "feet"),
  24632. weight: math.unit(165, "lb"),
  24633. name: "Back",
  24634. image: {
  24635. source: "./media/characters/nicky/back.svg",
  24636. extra: 3055 / 2804,
  24637. bottom: 28.4 / 3087
  24638. }
  24639. },
  24640. frontclothed: {
  24641. height: math.unit(5 + 10 / 12, "feet"),
  24642. weight: math.unit(165, "lb"),
  24643. name: "Front-clothed",
  24644. image: {
  24645. source: "./media/characters/nicky/front-clothed.svg",
  24646. extra: 3184.9 / 2926.9,
  24647. bottom: 86.5 / 3239.9
  24648. }
  24649. },
  24650. foot: {
  24651. height: math.unit(1.16, "feet"),
  24652. name: "Foot",
  24653. image: {
  24654. source: "./media/characters/nicky/foot.svg"
  24655. }
  24656. },
  24657. feet: {
  24658. height: math.unit(1.34, "feet"),
  24659. name: "Feet",
  24660. image: {
  24661. source: "./media/characters/nicky/feet.svg"
  24662. }
  24663. },
  24664. maw: {
  24665. height: math.unit(0.9, "feet"),
  24666. name: "Maw",
  24667. image: {
  24668. source: "./media/characters/nicky/maw.svg"
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(5 + 10 / 12, "feet"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(60, "feet")
  24681. },
  24682. {
  24683. name: "Megamacro",
  24684. height: math.unit(1, "mile")
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24690. {
  24691. side: {
  24692. height: math.unit(10, "feet"),
  24693. weight: math.unit(600, "lb"),
  24694. name: "Side",
  24695. image: {
  24696. source: "./media/characters/blair/side.svg",
  24697. bottom: 16.6 / 475,
  24698. extra: 458 / 431
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Micro",
  24705. height: math.unit(8, "inches")
  24706. },
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(10, "feet"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "Macro",
  24714. height: math.unit(180, "feet")
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24720. {
  24721. front: {
  24722. height: math.unit(5 + 4 / 12, "feet"),
  24723. weight: math.unit(125, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/fisher/front.svg",
  24727. extra: 444 / 390,
  24728. bottom: 2 / 444.8
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Micro",
  24735. height: math.unit(4, "inches")
  24736. },
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(5 + 4 / 12, "feet"),
  24740. default: true
  24741. },
  24742. {
  24743. name: "Macro",
  24744. height: math.unit(100, "feet")
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(6.71, "feet"),
  24753. weight: math.unit(200, "lb"),
  24754. capacity: math.unit(1000000, "people"),
  24755. name: "Front",
  24756. image: {
  24757. source: "./media/characters/gliss/front.svg",
  24758. extra: 2347 / 2231,
  24759. bottom: 113 / 2462
  24760. }
  24761. },
  24762. hammerspaceSize: {
  24763. height: math.unit(6.71 * 717, "feet"),
  24764. weight: math.unit(200, "lb"),
  24765. capacity: math.unit(1000000, "people"),
  24766. name: "Hammerspace Size",
  24767. image: {
  24768. source: "./media/characters/gliss/front.svg",
  24769. extra: 2347 / 2231,
  24770. bottom: 113 / 2462
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(6.71, "feet"),
  24778. default: true
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24784. {
  24785. side: {
  24786. height: math.unit(1.44, "m"),
  24787. weight: math.unit(80, "kg"),
  24788. name: "Side",
  24789. image: {
  24790. source: "./media/characters/dune-anderson/side.svg",
  24791. bottom: 49 / 1426
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Wolf-sized",
  24798. height: math.unit(1.44, "meters")
  24799. },
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(5.05, "meters"),
  24803. default: true
  24804. },
  24805. {
  24806. name: "Big",
  24807. height: math.unit(14.4, "meters")
  24808. },
  24809. {
  24810. name: "Huge",
  24811. height: math.unit(144, "meters")
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(7, "feet"),
  24820. weight: math.unit(425, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/hind/front.svg",
  24824. extra: 2091 / 1860,
  24825. bottom: 129 / 2220
  24826. }
  24827. },
  24828. back: {
  24829. height: math.unit(7, "feet"),
  24830. weight: math.unit(425, "lb"),
  24831. name: "Back",
  24832. image: {
  24833. source: "./media/characters/hind/back.svg",
  24834. extra: 2091 / 1860,
  24835. bottom: 24.6 / 2309
  24836. }
  24837. },
  24838. tail: {
  24839. height: math.unit(2.8, "feet"),
  24840. name: "Tail",
  24841. image: {
  24842. source: "./media/characters/hind/tail.svg"
  24843. }
  24844. },
  24845. head: {
  24846. height: math.unit(2.55, "feet"),
  24847. name: "Head",
  24848. image: {
  24849. source: "./media/characters/hind/head.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "XS",
  24856. height: math.unit(0.7, "feet")
  24857. },
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(7, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "XL",
  24865. height: math.unit(70, "feet")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(6, "feet"),
  24874. weight: math.unit(150, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/tharquench-sizestealer/front.svg",
  24878. extra: 2318 / 2063,
  24879. bottom: 93.4 / 2410
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Nano",
  24886. height: math.unit(1, "mm")
  24887. },
  24888. {
  24889. name: "Micro",
  24890. height: math.unit(1, "cm")
  24891. },
  24892. {
  24893. name: "Normal",
  24894. height: math.unit(2.1, "meters"),
  24895. default: true
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(7 + 5 / 12, "feet"),
  24904. weight: math.unit(357, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/solex-draconov/front.svg",
  24908. extra: 1993 / 1865,
  24909. bottom: 117 / 2111
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Natural Height",
  24916. height: math.unit(7 + 5 / 12, "feet"),
  24917. default: true
  24918. },
  24919. {
  24920. name: "Macro",
  24921. height: math.unit(350, "feet")
  24922. },
  24923. {
  24924. name: "Macro+",
  24925. height: math.unit(1000, "feet")
  24926. },
  24927. {
  24928. name: "Megamacro",
  24929. height: math.unit(20, "km")
  24930. },
  24931. {
  24932. name: "Megamacro+",
  24933. height: math.unit(1000, "km")
  24934. },
  24935. {
  24936. name: "Gigamacro",
  24937. height: math.unit(2.5, "Gm")
  24938. },
  24939. {
  24940. name: "Teramacro",
  24941. height: math.unit(15, "Tm")
  24942. },
  24943. {
  24944. name: "Galactic",
  24945. height: math.unit(30, "Zm")
  24946. },
  24947. {
  24948. name: "Universal",
  24949. height: math.unit(21000, "Ym")
  24950. },
  24951. {
  24952. name: "Omniversal",
  24953. height: math.unit(9.861e50, "Ym")
  24954. },
  24955. {
  24956. name: "Existential",
  24957. height: math.unit(1e300, "meters")
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24963. {
  24964. side: {
  24965. height: math.unit(25, "feet"),
  24966. weight: math.unit(90000, "lb"),
  24967. name: "Side",
  24968. image: {
  24969. source: "./media/characters/mandarax/side.svg",
  24970. extra: 614 / 332,
  24971. bottom: 55 / 630
  24972. }
  24973. },
  24974. head: {
  24975. height: math.unit(11.4, "feet"),
  24976. name: "Head",
  24977. image: {
  24978. source: "./media/characters/mandarax/head.svg"
  24979. }
  24980. },
  24981. belly: {
  24982. height: math.unit(33, "feet"),
  24983. name: "Belly",
  24984. capacity: math.unit(500, "people"),
  24985. image: {
  24986. source: "./media/characters/mandarax/belly.svg"
  24987. }
  24988. },
  24989. dick: {
  24990. height: math.unit(8.46, "feet"),
  24991. name: "Dick",
  24992. image: {
  24993. source: "./media/characters/mandarax/dick.svg"
  24994. }
  24995. },
  24996. top: {
  24997. height: math.unit(28, "meters"),
  24998. name: "Top",
  24999. image: {
  25000. source: "./media/characters/mandarax/top.svg"
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(25, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(5, "feet"),
  25017. weight: math.unit(90, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/pixil/front.svg",
  25021. extra: 2000 / 1618,
  25022. bottom: 12.3 / 2011
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(5, "feet"),
  25030. default: true
  25031. },
  25032. {
  25033. name: "Megamacro",
  25034. height: math.unit(10, "miles"),
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(7 + 2 / 12, "feet"),
  25043. weight: math.unit(200, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/angel/front.svg",
  25047. extra: 1830 / 1737,
  25048. bottom: 22.6 / 1854,
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(7 + 2 / 12, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Macro",
  25060. height: math.unit(1000, "feet")
  25061. },
  25062. {
  25063. name: "Megamacro",
  25064. height: math.unit(2, "miles")
  25065. },
  25066. {
  25067. name: "Gigamacro",
  25068. height: math.unit(20, "earths")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(5, "feet"),
  25077. weight: math.unit(180, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/mekana/front.svg",
  25081. extra: 1671 / 1605,
  25082. bottom: 3.5 / 1691
  25083. }
  25084. },
  25085. side: {
  25086. height: math.unit(5, "feet"),
  25087. weight: math.unit(180, "lb"),
  25088. name: "Side",
  25089. image: {
  25090. source: "./media/characters/mekana/side.svg",
  25091. extra: 1671 / 1605,
  25092. bottom: 3.5 / 1691
  25093. }
  25094. },
  25095. back: {
  25096. height: math.unit(5, "feet"),
  25097. weight: math.unit(180, "lb"),
  25098. name: "Back",
  25099. image: {
  25100. source: "./media/characters/mekana/back.svg",
  25101. extra: 1671 / 1605,
  25102. bottom: 3.5 / 1691
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(5, "feet"),
  25110. default: true
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25116. {
  25117. front: {
  25118. height: math.unit(4 + 6 / 12, "feet"),
  25119. weight: math.unit(80, "lb"),
  25120. name: "Front",
  25121. image: {
  25122. source: "./media/characters/pixie/front.svg",
  25123. extra: 1924 / 1825,
  25124. bottom: 22.4 / 1946
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(4 + 6 / 12, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(40, "feet")
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(2.1, "meters"),
  25145. weight: math.unit(200, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/the-lascivious/front.svg",
  25149. extra: 1 / 0.893,
  25150. bottom: 3.5 / 573.7
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Human Scale",
  25157. height: math.unit(2.1, "meters")
  25158. },
  25159. {
  25160. name: "Wolxi Scale",
  25161. height: math.unit(46.2, "m"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Boinker of Buildings",
  25166. height: math.unit(10, "km")
  25167. },
  25168. {
  25169. name: "Shagger of Skyscrapers",
  25170. height: math.unit(40, "km")
  25171. },
  25172. {
  25173. name: "Banger of Boroughs",
  25174. height: math.unit(4000, "km")
  25175. },
  25176. {
  25177. name: "Screwer of States",
  25178. height: math.unit(100000, "km")
  25179. },
  25180. {
  25181. name: "Pounder of Planets",
  25182. height: math.unit(2000000, "km")
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(6, "feet"),
  25191. weight: math.unit(150, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/aj/front.svg",
  25195. extra: 2039 / 1562,
  25196. bottom: 40 / 2079
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(11 + 6 / 12, "feet"),
  25204. default: true
  25205. },
  25206. {
  25207. name: "Megamacro",
  25208. height: math.unit(60, "megameters")
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25214. {
  25215. side: {
  25216. height: math.unit(31 + 8 / 12, "feet"),
  25217. weight: math.unit(75000, "kg"),
  25218. name: "Side",
  25219. image: {
  25220. source: "./media/characters/koros/side.svg",
  25221. extra: 1442 / 1297,
  25222. bottom: 122.7 / 1562
  25223. }
  25224. },
  25225. dicksKingsCrown: {
  25226. height: math.unit(6, "feet"),
  25227. name: "Dicks (King's Crown)",
  25228. image: {
  25229. source: "./media/characters/koros/dicks-kings-crown.svg"
  25230. }
  25231. },
  25232. dicksTailSet: {
  25233. height: math.unit(3, "feet"),
  25234. name: "Dicks (Tail Set)",
  25235. image: {
  25236. source: "./media/characters/koros/dicks-tail-set.svg"
  25237. }
  25238. },
  25239. dickCumming: {
  25240. height: math.unit(7.98, "feet"),
  25241. name: "Dick (Cumming)",
  25242. image: {
  25243. source: "./media/characters/koros/dick-cumming.svg"
  25244. }
  25245. },
  25246. dicksBack: {
  25247. height: math.unit(5.9, "feet"),
  25248. name: "Dicks (Back)",
  25249. image: {
  25250. source: "./media/characters/koros/dicks-back.svg"
  25251. }
  25252. },
  25253. dicksFront: {
  25254. height: math.unit(3.72, "feet"),
  25255. name: "Dicks (Front)",
  25256. image: {
  25257. source: "./media/characters/koros/dicks-front.svg"
  25258. }
  25259. },
  25260. dicksPeeking: {
  25261. height: math.unit(3.0, "feet"),
  25262. name: "Dicks (Peeking)",
  25263. image: {
  25264. source: "./media/characters/koros/dicks-peeking.svg"
  25265. }
  25266. },
  25267. eye: {
  25268. height: math.unit(1.7, "feet"),
  25269. name: "Eye",
  25270. image: {
  25271. source: "./media/characters/koros/eye.svg"
  25272. }
  25273. },
  25274. headFront: {
  25275. height: math.unit(11.69, "feet"),
  25276. name: "Head (Front)",
  25277. image: {
  25278. source: "./media/characters/koros/head-front.svg"
  25279. }
  25280. },
  25281. headSide: {
  25282. height: math.unit(14, "feet"),
  25283. name: "Head (Side)",
  25284. image: {
  25285. source: "./media/characters/koros/head-side.svg"
  25286. }
  25287. },
  25288. leg: {
  25289. height: math.unit(17, "feet"),
  25290. name: "Leg",
  25291. image: {
  25292. source: "./media/characters/koros/leg.svg"
  25293. }
  25294. },
  25295. mawSide: {
  25296. height: math.unit(12.8, "feet"),
  25297. name: "Maw (Side)",
  25298. image: {
  25299. source: "./media/characters/koros/maw-side.svg"
  25300. }
  25301. },
  25302. mawSpitting: {
  25303. height: math.unit(17, "feet"),
  25304. name: "Maw (Spitting)",
  25305. image: {
  25306. source: "./media/characters/koros/maw-spitting.svg"
  25307. }
  25308. },
  25309. slit: {
  25310. height: math.unit(2.8, "feet"),
  25311. name: "Slit",
  25312. image: {
  25313. source: "./media/characters/koros/slit.svg"
  25314. }
  25315. },
  25316. stomach: {
  25317. height: math.unit(6.8, "feet"),
  25318. capacity: math.unit(20, "people"),
  25319. name: "Stomach",
  25320. image: {
  25321. source: "./media/characters/koros/stomach.svg"
  25322. }
  25323. },
  25324. wingspanBottom: {
  25325. height: math.unit(114, "feet"),
  25326. name: "Wingspan (Bottom)",
  25327. image: {
  25328. source: "./media/characters/koros/wingspan-bottom.svg"
  25329. }
  25330. },
  25331. wingspanTop: {
  25332. height: math.unit(104, "feet"),
  25333. name: "Wingspan (Top)",
  25334. image: {
  25335. source: "./media/characters/koros/wingspan-top.svg"
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(31 + 8 / 12, "feet"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(18 + 5 / 12, "feet"),
  25352. weight: math.unit(3750, "kg"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/vexx/front.svg",
  25356. extra: 426 / 396,
  25357. bottom: 31.5 / 458
  25358. }
  25359. },
  25360. maw: {
  25361. height: math.unit(6, "feet"),
  25362. name: "Maw",
  25363. image: {
  25364. source: "./media/characters/vexx/maw.svg"
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(18 + 5 / 12, "feet"),
  25372. default: true
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(17 + 6 / 12, "feet"),
  25381. weight: math.unit(150, "lb"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/baadra/front.svg",
  25385. extra: 3137 / 2890,
  25386. bottom: 168.4 / 3305
  25387. }
  25388. },
  25389. back: {
  25390. height: math.unit(17 + 6 / 12, "feet"),
  25391. weight: math.unit(150, "lb"),
  25392. name: "Back",
  25393. image: {
  25394. source: "./media/characters/baadra/back.svg",
  25395. extra: 3142 / 2890,
  25396. bottom: 220 / 3371
  25397. }
  25398. },
  25399. head: {
  25400. height: math.unit(5.45, "feet"),
  25401. name: "Head",
  25402. image: {
  25403. source: "./media/characters/baadra/head.svg"
  25404. }
  25405. },
  25406. headAngry: {
  25407. height: math.unit(4.95, "feet"),
  25408. name: "Head (Angry)",
  25409. image: {
  25410. source: "./media/characters/baadra/head-angry.svg"
  25411. }
  25412. },
  25413. headOpen: {
  25414. height: math.unit(6, "feet"),
  25415. name: "Head (Open)",
  25416. image: {
  25417. source: "./media/characters/baadra/head-open.svg"
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(17 + 6 / 12, "feet"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(7 + 3 / 12, "feet"),
  25434. weight: math.unit(180, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/juri/front.svg",
  25438. extra: 1401 / 1237,
  25439. bottom: 18.5 / 1418
  25440. }
  25441. },
  25442. side: {
  25443. height: math.unit(7 + 3 / 12, "feet"),
  25444. weight: math.unit(180, "lb"),
  25445. name: "Side",
  25446. image: {
  25447. source: "./media/characters/juri/side.svg",
  25448. extra: 1424 / 1242,
  25449. bottom: 18.5 / 1447
  25450. }
  25451. },
  25452. sitting: {
  25453. height: math.unit(6, "feet"),
  25454. weight: math.unit(180, "lb"),
  25455. name: "Sitting",
  25456. image: {
  25457. source: "./media/characters/juri/sitting.svg",
  25458. extra: 1270 / 1143,
  25459. bottom: 100 / 1343
  25460. }
  25461. },
  25462. back: {
  25463. height: math.unit(7 + 3 / 12, "feet"),
  25464. weight: math.unit(180, "lb"),
  25465. name: "Back",
  25466. image: {
  25467. source: "./media/characters/juri/back.svg",
  25468. extra: 1377 / 1240,
  25469. bottom: 23.7 / 1405
  25470. }
  25471. },
  25472. maw: {
  25473. height: math.unit(2.8, "feet"),
  25474. name: "Maw",
  25475. image: {
  25476. source: "./media/characters/juri/maw.svg"
  25477. }
  25478. },
  25479. stomach: {
  25480. height: math.unit(0.89, "feet"),
  25481. capacity: math.unit(4, "liters"),
  25482. name: "Stomach",
  25483. image: {
  25484. source: "./media/characters/juri/stomach.svg"
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(7 + 3 / 12, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25498. {
  25499. fox: {
  25500. height: math.unit(5 + 6 / 12, "feet"),
  25501. weight: math.unit(140, "lb"),
  25502. name: "Fox",
  25503. image: {
  25504. source: "./media/characters/maxene-sita/fox.svg",
  25505. extra: 146 / 138,
  25506. bottom: 2.1 / 148.19
  25507. }
  25508. },
  25509. foxLaying: {
  25510. height: math.unit(1.70, "feet"),
  25511. weight: math.unit(140, "lb"),
  25512. name: "Fox (Laying)",
  25513. image: {
  25514. source: "./media/characters/maxene-sita/fox-laying.svg",
  25515. extra: 910 / 572,
  25516. bottom: 71 / 981
  25517. }
  25518. },
  25519. kitsune: {
  25520. height: math.unit(10, "feet"),
  25521. weight: math.unit(800, "lb"),
  25522. name: "Kitsune",
  25523. image: {
  25524. source: "./media/characters/maxene-sita/kitsune.svg",
  25525. extra: 185 / 176,
  25526. bottom: 4.7 / 189.9
  25527. }
  25528. },
  25529. hellhound: {
  25530. height: math.unit(10, "feet"),
  25531. weight: math.unit(700, "lb"),
  25532. name: "Hellhound",
  25533. image: {
  25534. source: "./media/characters/maxene-sita/hellhound.svg",
  25535. extra: 1600 / 1545,
  25536. bottom: 81 / 1681
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(5 + 6 / 12, "feet"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25550. {
  25551. front: {
  25552. height: math.unit(3 + 4 / 12, "feet"),
  25553. weight: math.unit(70, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/maia/front.svg",
  25557. extra: 227 / 219.5,
  25558. bottom: 40 / 267
  25559. }
  25560. },
  25561. back: {
  25562. height: math.unit(3 + 4 / 12, "feet"),
  25563. weight: math.unit(70, "lb"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/maia/back.svg",
  25567. extra: 237 / 225
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(3 + 4 / 12, "feet"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(5 + 10 / 12, "feet"),
  25584. weight: math.unit(197, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/jabaro/front.svg",
  25588. extra: 225 / 216,
  25589. bottom: 5.06 / 230
  25590. }
  25591. },
  25592. back: {
  25593. height: math.unit(5 + 10 / 12, "feet"),
  25594. weight: math.unit(197, "lb"),
  25595. name: "Back",
  25596. image: {
  25597. source: "./media/characters/jabaro/back.svg",
  25598. extra: 225 / 219,
  25599. bottom: 1.9 / 227
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(5 + 10 / 12, "feet"),
  25607. default: true
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(5 + 8 / 12, "feet"),
  25616. weight: math.unit(139, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/risa/front.svg",
  25620. extra: 270 / 260,
  25621. bottom: 11.2 / 282
  25622. }
  25623. },
  25624. back: {
  25625. height: math.unit(5 + 8 / 12, "feet"),
  25626. weight: math.unit(139, "lb"),
  25627. name: "Back",
  25628. image: {
  25629. source: "./media/characters/risa/back.svg",
  25630. extra: 264 / 255,
  25631. bottom: 4 / 268
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(5 + 8 / 12, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(2 + 11 / 12, "feet"),
  25648. weight: math.unit(30, "lb"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/weatley/front.svg",
  25652. bottom: 10.7 / 414,
  25653. extra: 403.5 / 362
  25654. }
  25655. },
  25656. back: {
  25657. height: math.unit(2 + 11 / 12, "feet"),
  25658. weight: math.unit(30, "lb"),
  25659. name: "Back",
  25660. image: {
  25661. source: "./media/characters/weatley/back.svg",
  25662. bottom: 10.7 / 414,
  25663. extra: 403.5 / 362
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(2 + 11 / 12, "feet"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25677. {
  25678. front: {
  25679. height: math.unit(5 + 2 / 12, "feet"),
  25680. weight: math.unit(50, "kg"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/mercury-crescent/front.svg",
  25684. extra: 1088 / 1033,
  25685. bottom: 18.9 / 1109
  25686. }
  25687. },
  25688. },
  25689. [
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(5 + 2 / 12, "feet"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25699. {
  25700. front: {
  25701. height: math.unit(2, "feet"),
  25702. weight: math.unit(15, "kg"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/diamond-jones/front.svg",
  25706. extra: 727/723,
  25707. bottom: 46/773
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(2, "feet"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(3, "feet"),
  25724. weight: math.unit(30, "kg"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/sweet-bit/front.svg",
  25728. extra: 675 / 567,
  25729. bottom: 27.7 / 703
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(3, "feet"),
  25737. default: true
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25743. {
  25744. side: {
  25745. height: math.unit(9.178, "feet"),
  25746. weight: math.unit(500, "lb"),
  25747. name: "Side",
  25748. image: {
  25749. source: "./media/characters/umbrazen/side.svg",
  25750. extra: 1730 / 1473,
  25751. bottom: 34.6 / 1765
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(9.178, "feet"),
  25759. default: true
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25765. {
  25766. front: {
  25767. height: math.unit(10, "feet"),
  25768. weight: math.unit(750, "lb"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/arlist/front.svg",
  25772. extra: 961 / 778,
  25773. bottom: 6.2 / 986
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Normal",
  25780. height: math.unit(10, "feet"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(5 + 1 / 12, "feet"),
  25790. weight: math.unit(110, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/aradel/front.svg",
  25794. extra: 324 / 303,
  25795. bottom: 3.6 / 329.4
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(5 + 1 / 12, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(3 + 8 / 12, "feet"),
  25812. weight: math.unit(50, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/serryn/front.svg",
  25816. extra: 1792 / 1656,
  25817. bottom: 43.5 / 1840
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(3 + 8 / 12, "feet"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25831. {
  25832. front: {
  25833. height: math.unit(7 + 10 / 12, "feet"),
  25834. weight: math.unit(255, "lb"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/xavier-thyme/front.svg",
  25838. extra: 3733 / 3642,
  25839. bottom: 131 / 3869
  25840. }
  25841. },
  25842. frontRaven: {
  25843. height: math.unit(7 + 10 / 12, "feet"),
  25844. weight: math.unit(255, "lb"),
  25845. name: "Front (Raven)",
  25846. image: {
  25847. source: "./media/characters/xavier-thyme/front-raven.svg",
  25848. extra: 4385 / 3642,
  25849. bottom: 131 / 4517
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(7 + 10 / 12, "feet"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(1.6, "m"),
  25866. weight: math.unit(50, "kg"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/kiki/front.svg",
  25870. extra: 4682 / 3610,
  25871. bottom: 115 / 4777
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(1.6, "meters"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(50, "m"),
  25888. weight: math.unit(500, "tonnes"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/ryoko/front.svg",
  25892. extra: 4632 / 3926,
  25893. bottom: 193 / 4823
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(50, "meters"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25907. {
  25908. front: {
  25909. height: math.unit(30, "m"),
  25910. weight: math.unit(22, "tonnes"),
  25911. name: "Front",
  25912. image: {
  25913. source: "./media/characters/elio/front.svg",
  25914. extra: 4582 / 3720,
  25915. bottom: 236 / 4828
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(30, "meters"),
  25923. default: true
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(6 + 3 / 12, "feet"),
  25932. weight: math.unit(120, "lb"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/azura/front.svg",
  25936. extra: 1149 / 1135,
  25937. bottom: 45 / 1194
  25938. }
  25939. },
  25940. frontClothed: {
  25941. height: math.unit(6 + 3 / 12, "feet"),
  25942. weight: math.unit(120, "lb"),
  25943. name: "Front (Clothed)",
  25944. image: {
  25945. source: "./media/characters/azura/front-clothed.svg",
  25946. extra: 1149 / 1135,
  25947. bottom: 45 / 1194
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(6 + 3 / 12, "feet"),
  25955. default: true
  25956. },
  25957. {
  25958. name: "Macro",
  25959. height: math.unit(20 + 6 / 12, "feet")
  25960. },
  25961. {
  25962. name: "Megamacro",
  25963. height: math.unit(12, "miles")
  25964. },
  25965. {
  25966. name: "Gigamacro",
  25967. height: math.unit(10000, "miles")
  25968. },
  25969. {
  25970. name: "Teramacro",
  25971. height: math.unit(900000, "miles")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(12, "feet"),
  25980. weight: math.unit(1, "ton"),
  25981. capacity: math.unit(660000, "gallons"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/zeus/front.svg",
  25985. extra: 5005 / 4717,
  25986. bottom: 363 / 5388
  25987. }
  25988. },
  25989. },
  25990. [
  25991. {
  25992. name: "Normal",
  25993. height: math.unit(12, "feet")
  25994. },
  25995. {
  25996. name: "Preferred Size",
  25997. height: math.unit(0.5, "miles"),
  25998. default: true
  25999. },
  26000. {
  26001. name: "Giga Horse",
  26002. height: math.unit(300, "miles")
  26003. },
  26004. {
  26005. name: "Riding Planets",
  26006. height: math.unit(30, "megameters")
  26007. },
  26008. {
  26009. name: "Cosmic Giant",
  26010. height: math.unit(3, "zettameters")
  26011. },
  26012. {
  26013. name: "Breeding God",
  26014. height: math.unit(9.92e22, "yottameters")
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26020. {
  26021. side: {
  26022. height: math.unit(9, "feet"),
  26023. weight: math.unit(1500, "kg"),
  26024. name: "Side",
  26025. image: {
  26026. source: "./media/characters/fang/side.svg",
  26027. extra: 924 / 866,
  26028. bottom: 47.5 / 972.3
  26029. }
  26030. },
  26031. },
  26032. [
  26033. {
  26034. name: "Normal",
  26035. height: math.unit(9, "feet"),
  26036. default: true
  26037. },
  26038. {
  26039. name: "Macro",
  26040. height: math.unit(75 + 6 / 12, "feet")
  26041. },
  26042. {
  26043. name: "Teramacro",
  26044. height: math.unit(50000, "miles")
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26050. {
  26051. front: {
  26052. height: math.unit(10, "feet"),
  26053. weight: math.unit(2, "tons"),
  26054. name: "Front",
  26055. image: {
  26056. source: "./media/characters/rekhit/front.svg",
  26057. extra: 2796 / 2590,
  26058. bottom: 225 / 3022
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Normal",
  26065. height: math.unit(10, "feet"),
  26066. default: true
  26067. },
  26068. {
  26069. name: "Macro",
  26070. height: math.unit(500, "feet")
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(7 + 6.451 / 12, "feet"),
  26079. weight: math.unit(310, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/dahlia-verrick/front.svg",
  26083. extra: 1488 / 1365,
  26084. bottom: 6.2 / 1495
  26085. }
  26086. },
  26087. back: {
  26088. height: math.unit(7 + 6.451 / 12, "feet"),
  26089. weight: math.unit(310, "lb"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/dahlia-verrick/back.svg",
  26093. extra: 1472 / 1351,
  26094. bottom: 5.28 / 1477
  26095. }
  26096. },
  26097. frontBusiness: {
  26098. height: math.unit(7 + 6.451 / 12, "feet"),
  26099. weight: math.unit(200, "lb"),
  26100. name: "Front (Business)",
  26101. image: {
  26102. source: "./media/characters/dahlia-verrick/front-business.svg",
  26103. extra: 1478 / 1381,
  26104. bottom: 5.5 / 1484
  26105. }
  26106. },
  26107. frontCasual: {
  26108. height: math.unit(7 + 6.451 / 12, "feet"),
  26109. weight: math.unit(200, "lb"),
  26110. name: "Front (Casual)",
  26111. image: {
  26112. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26113. extra: 1478 / 1381,
  26114. bottom: 5.5 / 1484
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Travel-Sized",
  26121. height: math.unit(7.45, "inches")
  26122. },
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(7 + 6.451 / 12, "feet"),
  26126. default: true
  26127. },
  26128. {
  26129. name: "Hitting the Town",
  26130. height: math.unit(37 + 8 / 12, "feet")
  26131. },
  26132. {
  26133. name: "Stomp in the Suburbs",
  26134. height: math.unit(964 + 9.728 / 12, "feet")
  26135. },
  26136. {
  26137. name: "Sit on the City",
  26138. height: math.unit(61747 + 10.592 / 12, "feet")
  26139. },
  26140. {
  26141. name: "Glomp the Globe",
  26142. height: math.unit(252919327 + 4.832 / 12, "feet")
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(6 + 4 / 12, "feet"),
  26151. weight: math.unit(320, "lb"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/balina-mahigan/front.svg",
  26155. extra: 447 / 428,
  26156. bottom: 18 / 466
  26157. }
  26158. },
  26159. back: {
  26160. height: math.unit(6 + 4 / 12, "feet"),
  26161. weight: math.unit(320, "lb"),
  26162. name: "Back",
  26163. image: {
  26164. source: "./media/characters/balina-mahigan/back.svg",
  26165. extra: 445 / 428,
  26166. bottom: 4.07 / 448
  26167. }
  26168. },
  26169. arm: {
  26170. height: math.unit(1.88, "feet"),
  26171. name: "Arm",
  26172. image: {
  26173. source: "./media/characters/balina-mahigan/arm.svg"
  26174. }
  26175. },
  26176. backPort: {
  26177. height: math.unit(0.685, "feet"),
  26178. name: "Back Port",
  26179. image: {
  26180. source: "./media/characters/balina-mahigan/back-port.svg"
  26181. }
  26182. },
  26183. hoofpaw: {
  26184. height: math.unit(1.41, "feet"),
  26185. name: "Hoofpaw",
  26186. image: {
  26187. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26188. }
  26189. },
  26190. leftHandBack: {
  26191. height: math.unit(0.938, "feet"),
  26192. name: "Left Hand (Back)",
  26193. image: {
  26194. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26195. }
  26196. },
  26197. leftHandFront: {
  26198. height: math.unit(0.938, "feet"),
  26199. name: "Left Hand (Front)",
  26200. image: {
  26201. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26202. }
  26203. },
  26204. rightHandBack: {
  26205. height: math.unit(0.95, "feet"),
  26206. name: "Right Hand (Back)",
  26207. image: {
  26208. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26209. }
  26210. },
  26211. rightHandFront: {
  26212. height: math.unit(0.95, "feet"),
  26213. name: "Right Hand (Front)",
  26214. image: {
  26215. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(6 + 4 / 12, "feet"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(6, "feet"),
  26232. weight: math.unit(320, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/balina-mejeri/front.svg",
  26236. extra: 517 / 488,
  26237. bottom: 44.2 / 561
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(6 + 4 / 12, "feet")
  26245. },
  26246. {
  26247. name: "Business",
  26248. height: math.unit(155, "feet"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26255. {
  26256. kneeling: {
  26257. height: math.unit(6 + 4 / 12, "feet"),
  26258. weight: math.unit(300 * 20, "lb"),
  26259. name: "Kneeling",
  26260. image: {
  26261. source: "./media/characters/balbarian/kneeling.svg",
  26262. extra: 922 / 862,
  26263. bottom: 42.4 / 965
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(6 + 4 / 12, "feet")
  26271. },
  26272. {
  26273. name: "Treasured",
  26274. height: math.unit(18 + 9 / 12, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Macro",
  26279. height: math.unit(900, "feet")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(6 + 4 / 12, "feet"),
  26288. weight: math.unit(325, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/balina-amarini/front.svg",
  26292. extra: 415 / 403,
  26293. bottom: 19 / 433.4
  26294. }
  26295. },
  26296. back: {
  26297. height: math.unit(6 + 4 / 12, "feet"),
  26298. weight: math.unit(325, "lb"),
  26299. name: "Back",
  26300. image: {
  26301. source: "./media/characters/balina-amarini/back.svg",
  26302. extra: 415 / 403,
  26303. bottom: 13.5 / 432
  26304. }
  26305. },
  26306. overdrive: {
  26307. height: math.unit(6 + 4 / 12, "feet"),
  26308. weight: math.unit(400, "lb"),
  26309. name: "Overdrive",
  26310. image: {
  26311. source: "./media/characters/balina-amarini/overdrive.svg",
  26312. extra: 269 / 259,
  26313. bottom: 12 / 282
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Boom",
  26320. height: math.unit(9 + 10 / 12, "feet"),
  26321. default: true
  26322. },
  26323. {
  26324. name: "Macro",
  26325. height: math.unit(280, "feet")
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26331. {
  26332. goddess: {
  26333. height: math.unit(600, "feet"),
  26334. weight: math.unit(2000000, "tons"),
  26335. name: "Goddess",
  26336. image: {
  26337. source: "./media/characters/lady-kubwa/goddess.svg",
  26338. extra: 1240.5 / 1223,
  26339. bottom: 22 / 1263
  26340. }
  26341. },
  26342. goddesser: {
  26343. height: math.unit(900, "feet"),
  26344. weight: math.unit(20000000, "lb"),
  26345. name: "Goddess-er",
  26346. image: {
  26347. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26348. extra: 899 / 888,
  26349. bottom: 12.6 / 912
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Macro",
  26356. height: math.unit(600, "feet"),
  26357. default: true
  26358. },
  26359. {
  26360. name: "Megamacro",
  26361. height: math.unit(250, "miles")
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(7 + 7 / 12, "feet"),
  26370. weight: math.unit(250, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/tala-grovehorn/front.svg",
  26374. extra: 2636 / 2525,
  26375. bottom: 147 / 2781
  26376. }
  26377. },
  26378. back: {
  26379. height: math.unit(7 + 7 / 12, "feet"),
  26380. weight: math.unit(250, "lb"),
  26381. name: "Back",
  26382. image: {
  26383. source: "./media/characters/tala-grovehorn/back.svg",
  26384. extra: 2635 / 2539,
  26385. bottom: 100 / 2732.8
  26386. }
  26387. },
  26388. mouth: {
  26389. height: math.unit(1.15, "feet"),
  26390. name: "Mouth",
  26391. image: {
  26392. source: "./media/characters/tala-grovehorn/mouth.svg"
  26393. }
  26394. },
  26395. dick: {
  26396. height: math.unit(2.36, "feet"),
  26397. name: "Dick",
  26398. image: {
  26399. source: "./media/characters/tala-grovehorn/dick.svg"
  26400. }
  26401. },
  26402. slit: {
  26403. height: math.unit(0.61, "feet"),
  26404. name: "Slit",
  26405. image: {
  26406. source: "./media/characters/tala-grovehorn/slit.svg"
  26407. }
  26408. },
  26409. },
  26410. [
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(7 + 7 / 12, "feet"),
  26418. weight: math.unit(225, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/epona/front.svg",
  26422. extra: 2445 / 2290,
  26423. bottom: 251 / 2696
  26424. }
  26425. },
  26426. back: {
  26427. height: math.unit(7 + 7 / 12, "feet"),
  26428. weight: math.unit(225, "lb"),
  26429. name: "Back",
  26430. image: {
  26431. source: "./media/characters/epona/back.svg",
  26432. extra: 2546 / 2408,
  26433. bottom: 44 / 2589
  26434. }
  26435. },
  26436. genitals: {
  26437. height: math.unit(1.5, "feet"),
  26438. name: "Genitals",
  26439. image: {
  26440. source: "./media/characters/epona/genitals.svg"
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(7 + 7 / 12, "feet"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(7, "feet"),
  26457. weight: math.unit(518, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/avia-bloodbourn/front.svg",
  26461. extra: 1466 / 1350,
  26462. bottom: 65 / 1527
  26463. }
  26464. },
  26465. },
  26466. [
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(9.35, "feet"),
  26474. weight: math.unit(600, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/amera/front.svg",
  26478. extra: 891 / 818,
  26479. bottom: 30 / 922.7
  26480. }
  26481. },
  26482. back: {
  26483. height: math.unit(9.35, "feet"),
  26484. weight: math.unit(600, "lb"),
  26485. name: "Back",
  26486. image: {
  26487. source: "./media/characters/amera/back.svg",
  26488. extra: 876 / 824,
  26489. bottom: 6.8 / 884
  26490. }
  26491. },
  26492. dick: {
  26493. height: math.unit(2.14, "feet"),
  26494. name: "Dick",
  26495. image: {
  26496. source: "./media/characters/amera/dick.svg"
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(9.35, "feet"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26510. {
  26511. kneeling: {
  26512. height: math.unit(3 + 4 / 12, "feet"),
  26513. weight: math.unit(90, "lb"),
  26514. name: "Kneeling",
  26515. image: {
  26516. source: "./media/characters/rosewen/kneeling.svg",
  26517. extra: 1835 / 1571,
  26518. bottom: 27.7 / 1862
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(3 + 4 / 12, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(5 + 10 / 12, "feet"),
  26535. weight: math.unit(200, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/sabah/front.svg",
  26539. extra: 849 / 763,
  26540. bottom: 33.9 / 881
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(5 + 10 / 12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26554. {
  26555. front: {
  26556. height: math.unit(3 + 5 / 12, "feet"),
  26557. weight: math.unit(40, "kg"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/purple-flame/front.svg",
  26561. extra: 1577 / 1412,
  26562. bottom: 97 / 1694
  26563. }
  26564. },
  26565. frontDressed: {
  26566. height: math.unit(3 + 5 / 12, "feet"),
  26567. weight: math.unit(40, "kg"),
  26568. name: "Front (Dressed)",
  26569. image: {
  26570. source: "./media/characters/purple-flame/front-dressed.svg",
  26571. extra: 1577 / 1412,
  26572. bottom: 97 / 1694
  26573. }
  26574. },
  26575. headphones: {
  26576. height: math.unit(0.85, "feet"),
  26577. name: "Headphones",
  26578. image: {
  26579. source: "./media/characters/purple-flame/headphones.svg"
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Really Small",
  26586. height: math.unit(5, "cm")
  26587. },
  26588. {
  26589. name: "Micro",
  26590. height: math.unit(1 + 5 / 12, "feet")
  26591. },
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(3 + 5 / 12, "feet"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Minimacro",
  26599. height: math.unit(125, "feet")
  26600. },
  26601. {
  26602. name: "Macro",
  26603. height: math.unit(0.5, "miles")
  26604. },
  26605. {
  26606. name: "Megamacro",
  26607. height: math.unit(50, "miles")
  26608. },
  26609. {
  26610. name: "Gigantic",
  26611. height: math.unit(750, "miles")
  26612. },
  26613. {
  26614. name: "Planetary",
  26615. height: math.unit(15000, "miles")
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(14, "feet"),
  26624. weight: math.unit(959, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/arsenal/front.svg",
  26628. extra: 2357 / 2157,
  26629. bottom: 93 / 2458
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Normal",
  26636. height: math.unit(14, "feet"),
  26637. default: true
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(6, "feet"),
  26646. weight: math.unit(150, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/adira/front.svg",
  26650. extra: 1078 / 1029,
  26651. bottom: 87 / 1166
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Micro",
  26658. height: math.unit(4, "inches"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Macro",
  26663. height: math.unit(50, "feet")
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(16, "feet"),
  26672. weight: math.unit(1000, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/grim/front.svg",
  26676. extra: 622 / 614,
  26677. bottom: 18.1 / 642
  26678. }
  26679. },
  26680. back: {
  26681. height: math.unit(16, "feet"),
  26682. weight: math.unit(1000, "lb"),
  26683. name: "Back",
  26684. image: {
  26685. source: "./media/characters/grim/back.svg",
  26686. extra: 610.6 / 602,
  26687. bottom: 40.8 / 652
  26688. }
  26689. },
  26690. hunched: {
  26691. height: math.unit(9.75, "feet"),
  26692. weight: math.unit(1000, "lb"),
  26693. name: "Hunched",
  26694. image: {
  26695. source: "./media/characters/grim/hunched.svg",
  26696. extra: 304 / 297,
  26697. bottom: 35.4 / 394
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(16, "feet"),
  26705. default: true
  26706. },
  26707. ]
  26708. ))
  26709. characterMakers.push(() => makeCharacter(
  26710. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26711. {
  26712. front: {
  26713. height: math.unit(2.3, "meters"),
  26714. weight: math.unit(300, "lb"),
  26715. name: "Front",
  26716. image: {
  26717. source: "./media/characters/sinja/front-sfw.svg",
  26718. extra: 1393 / 1294,
  26719. bottom: 70 / 1463
  26720. }
  26721. },
  26722. frontNsfw: {
  26723. height: math.unit(2.3, "meters"),
  26724. weight: math.unit(300, "lb"),
  26725. name: "Front (NSFW)",
  26726. image: {
  26727. source: "./media/characters/sinja/front-nsfw.svg",
  26728. extra: 1393 / 1294,
  26729. bottom: 70 / 1463
  26730. }
  26731. },
  26732. back: {
  26733. height: math.unit(2.3, "meters"),
  26734. weight: math.unit(300, "lb"),
  26735. name: "Back",
  26736. image: {
  26737. source: "./media/characters/sinja/back.svg",
  26738. extra: 1393 / 1294,
  26739. bottom: 70 / 1463
  26740. }
  26741. },
  26742. head: {
  26743. height: math.unit(1.771, "feet"),
  26744. name: "Head",
  26745. image: {
  26746. source: "./media/characters/sinja/head.svg"
  26747. }
  26748. },
  26749. slit: {
  26750. height: math.unit(0.8, "feet"),
  26751. name: "Slit",
  26752. image: {
  26753. source: "./media/characters/sinja/slit.svg"
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(2.3, "meters")
  26761. },
  26762. {
  26763. name: "Macro",
  26764. height: math.unit(91, "meters"),
  26765. default: true
  26766. },
  26767. {
  26768. name: "Megamacro",
  26769. height: math.unit(91440, "meters")
  26770. },
  26771. {
  26772. name: "Gigamacro",
  26773. height: math.unit(60960000, "meters")
  26774. },
  26775. {
  26776. name: "Teramacro",
  26777. height: math.unit(9144000000, "meters")
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(1.7, "meters"),
  26786. weight: math.unit(130, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/kyu/front.svg",
  26790. extra: 415 / 395,
  26791. bottom: 5 / 420
  26792. }
  26793. },
  26794. head: {
  26795. height: math.unit(1.75, "feet"),
  26796. name: "Head",
  26797. image: {
  26798. source: "./media/characters/kyu/head.svg"
  26799. }
  26800. },
  26801. foot: {
  26802. height: math.unit(0.81, "feet"),
  26803. name: "Foot",
  26804. image: {
  26805. source: "./media/characters/kyu/foot.svg"
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(1.7, "meters")
  26813. },
  26814. {
  26815. name: "Macro",
  26816. height: math.unit(131, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Megamacro",
  26821. height: math.unit(91440, "meters")
  26822. },
  26823. {
  26824. name: "Gigamacro",
  26825. height: math.unit(60960000, "meters")
  26826. },
  26827. {
  26828. name: "Teramacro",
  26829. height: math.unit(9144000000, "meters")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(7 + 1 / 12, "feet"),
  26838. weight: math.unit(250, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/joey/front.svg",
  26842. extra: 1791 / 1537,
  26843. bottom: 28 / 1816
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Micro",
  26850. height: math.unit(3, "inches")
  26851. },
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(7 + 1 / 12, "feet"),
  26855. default: true
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(165, "cm"),
  26864. weight: math.unit(140, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/sam-evans/front.svg",
  26868. extra: 3417 / 3230,
  26869. bottom: 41.3 / 3417
  26870. }
  26871. },
  26872. frontSixTails: {
  26873. height: math.unit(165, "cm"),
  26874. weight: math.unit(140, "lb"),
  26875. name: "Front-six-tails",
  26876. image: {
  26877. source: "./media/characters/sam-evans/front-six-tails.svg",
  26878. extra: 3417 / 3230,
  26879. bottom: 41.3 / 3417
  26880. }
  26881. },
  26882. back: {
  26883. height: math.unit(165, "cm"),
  26884. weight: math.unit(140, "lb"),
  26885. name: "Back",
  26886. image: {
  26887. source: "./media/characters/sam-evans/back.svg",
  26888. extra: 3227 / 3032,
  26889. bottom: 6.8 / 3234
  26890. }
  26891. },
  26892. face: {
  26893. height: math.unit(0.68, "feet"),
  26894. name: "Face",
  26895. image: {
  26896. source: "./media/characters/sam-evans/face.svg"
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(165, "cm"),
  26904. default: true
  26905. },
  26906. {
  26907. name: "Macro",
  26908. height: math.unit(100, "meters")
  26909. },
  26910. {
  26911. name: "Macro+",
  26912. height: math.unit(800, "meters")
  26913. },
  26914. {
  26915. name: "Macro++",
  26916. height: math.unit(3, "km")
  26917. },
  26918. {
  26919. name: "Macro+++",
  26920. height: math.unit(30, "km")
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(10, "feet"),
  26929. weight: math.unit(750, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/juliet-a/front.svg",
  26933. extra: 1766 / 1720,
  26934. bottom: 43 / 1809
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(10, "feet"),
  26939. weight: math.unit(750, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/juliet-a/back.svg",
  26943. extra: 1781 / 1734,
  26944. bottom: 35 / 1810,
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(10, "feet"),
  26952. default: true
  26953. },
  26954. {
  26955. name: "Dragon Form",
  26956. height: math.unit(250, "feet")
  26957. },
  26958. {
  26959. name: "Macro",
  26960. height: math.unit(1000, "feet")
  26961. },
  26962. {
  26963. name: "Megamacro",
  26964. height: math.unit(10000, "feet")
  26965. }
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26970. {
  26971. regular: {
  26972. height: math.unit(7 + 3 / 12, "feet"),
  26973. weight: math.unit(260, "lb"),
  26974. name: "Regular",
  26975. image: {
  26976. source: "./media/characters/wild/regular.svg",
  26977. extra: 97.45 / 92,
  26978. bottom: 6.8 / 104.3
  26979. }
  26980. },
  26981. biggums: {
  26982. height: math.unit(8 + 6 / 12, "feet"),
  26983. weight: math.unit(425, "lb"),
  26984. name: "Biggums",
  26985. image: {
  26986. source: "./media/characters/wild/biggums.svg",
  26987. extra: 97.45 / 92,
  26988. bottom: 7.5 / 132.34
  26989. }
  26990. },
  26991. mawRegular: {
  26992. height: math.unit(1.24, "feet"),
  26993. name: "Maw (Regular)",
  26994. image: {
  26995. source: "./media/characters/wild/maw.svg"
  26996. }
  26997. },
  26998. mawBiggums: {
  26999. height: math.unit(1.47, "feet"),
  27000. name: "Maw (Biggums)",
  27001. image: {
  27002. source: "./media/characters/wild/maw.svg"
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(7 + 3 / 12, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27016. {
  27017. front: {
  27018. height: math.unit(2.5, "meters"),
  27019. weight: math.unit(200, "kg"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/vidar/front.svg",
  27023. extra: 2994 / 2795,
  27024. bottom: 56 / 3061
  27025. }
  27026. },
  27027. back: {
  27028. height: math.unit(2.5, "meters"),
  27029. weight: math.unit(200, "kg"),
  27030. name: "Back",
  27031. image: {
  27032. source: "./media/characters/vidar/back.svg",
  27033. extra: 3131 / 2928,
  27034. bottom: 13.5 / 3141.5
  27035. }
  27036. },
  27037. feral: {
  27038. height: math.unit(2.5, "meters"),
  27039. weight: math.unit(2000, "kg"),
  27040. name: "Feral",
  27041. image: {
  27042. source: "./media/characters/vidar/feral.svg",
  27043. extra: 2790 / 1765,
  27044. bottom: 6 / 2796
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(2.5, "meters"),
  27052. default: true
  27053. },
  27054. {
  27055. name: "Macro",
  27056. height: math.unit(100, "meters")
  27057. },
  27058. ]
  27059. ))
  27060. characterMakers.push(() => makeCharacter(
  27061. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27062. {
  27063. front: {
  27064. height: math.unit(5 + 9 / 12, "feet"),
  27065. weight: math.unit(120, "lb"),
  27066. name: "Front",
  27067. image: {
  27068. source: "./media/characters/ash/front.svg",
  27069. extra: 2189 / 1961,
  27070. bottom: 5.2 / 2194
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Normal",
  27077. height: math.unit(5 + 9 / 12, "feet"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(9, "feet"),
  27087. weight: math.unit(10000, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/gygabite/front.svg",
  27091. bottom: 31.7 / 537.8,
  27092. extra: 505 / 370
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(9, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(12, "feet"),
  27109. weight: math.unit(35000, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/p0tat0/front.svg",
  27113. extra: 1065 / 921,
  27114. bottom: 55.7 / 1121.25
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(12, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27128. {
  27129. side: {
  27130. height: math.unit(6.5, "feet"),
  27131. weight: math.unit(800, "lb"),
  27132. name: "Side",
  27133. image: {
  27134. source: "./media/characters/dusk/side.svg",
  27135. extra: 615 / 373,
  27136. bottom: 53 / 664
  27137. }
  27138. },
  27139. sitting: {
  27140. height: math.unit(7, "feet"),
  27141. weight: math.unit(800, "lb"),
  27142. name: "Sitting",
  27143. image: {
  27144. source: "./media/characters/dusk/sitting.svg",
  27145. extra: 753 / 425,
  27146. bottom: 33 / 774
  27147. }
  27148. },
  27149. head: {
  27150. height: math.unit(6.1, "feet"),
  27151. name: "Head",
  27152. image: {
  27153. source: "./media/characters/dusk/head.svg"
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(7, "feet"),
  27161. default: true
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(15, "feet"),
  27170. weight: math.unit(7000, "lb"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/jay-direwolf/front.svg",
  27174. extra: 1810 / 1732,
  27175. bottom: 66 / 1892
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(15, "feet"),
  27183. default: true
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(4 + 9 / 12, "feet"),
  27192. weight: math.unit(130, "lb"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/anchovie/front.svg",
  27196. extra: 382 / 350,
  27197. bottom: 25 / 409
  27198. }
  27199. },
  27200. back: {
  27201. height: math.unit(4 + 9 / 12, "feet"),
  27202. weight: math.unit(130, "lb"),
  27203. name: "Back",
  27204. image: {
  27205. source: "./media/characters/anchovie/back.svg",
  27206. extra: 385 / 352,
  27207. bottom: 16.6 / 402
  27208. }
  27209. },
  27210. frontDressed: {
  27211. height: math.unit(4 + 9 / 12, "feet"),
  27212. weight: math.unit(130, "lb"),
  27213. name: "Front (Dressed)",
  27214. image: {
  27215. source: "./media/characters/anchovie/front-dressed.svg",
  27216. extra: 382 / 350,
  27217. bottom: 25 / 409
  27218. }
  27219. },
  27220. backDressed: {
  27221. height: math.unit(4 + 9 / 12, "feet"),
  27222. weight: math.unit(130, "lb"),
  27223. name: "Back (Dressed)",
  27224. image: {
  27225. source: "./media/characters/anchovie/back-dressed.svg",
  27226. extra: 385 / 352,
  27227. bottom: 16.6 / 402
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Micro",
  27234. height: math.unit(6.4, "inches")
  27235. },
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(4 + 9 / 12, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(2, "meters"),
  27248. weight: math.unit(180, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/acidrenamon/front.svg",
  27252. extra: 987 / 890,
  27253. bottom: 22.8 / 1009
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(2, "meters"),
  27258. weight: math.unit(180, "lb"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/acidrenamon/back.svg",
  27262. extra: 983 / 891,
  27263. bottom: 8.4 / 992
  27264. }
  27265. },
  27266. head: {
  27267. height: math.unit(1.92, "feet"),
  27268. name: "Head",
  27269. image: {
  27270. source: "./media/characters/acidrenamon/head.svg"
  27271. }
  27272. },
  27273. rump: {
  27274. height: math.unit(1.72, "feet"),
  27275. name: "Rump",
  27276. image: {
  27277. source: "./media/characters/acidrenamon/rump.svg"
  27278. }
  27279. },
  27280. tail: {
  27281. height: math.unit(4.2, "feet"),
  27282. name: "Tail",
  27283. image: {
  27284. source: "./media/characters/acidrenamon/tail.svg"
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(2, "meters"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Minimacro",
  27296. height: math.unit(7, "meters")
  27297. },
  27298. {
  27299. name: "Macro",
  27300. height: math.unit(200, "meters")
  27301. },
  27302. {
  27303. name: "Gigamacro",
  27304. height: math.unit(0.2, "earths")
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(6, "feet"),
  27313. weight: math.unit(150, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/kenzie-lee/front.svg",
  27317. extra: 1525 / 1465,
  27318. bottom: 45 / 1570
  27319. }
  27320. },
  27321. side: {
  27322. height: math.unit(6, "feet"),
  27323. weight: math.unit(150, "lb"),
  27324. name: "Side",
  27325. image: {
  27326. source: "./media/characters/kenzie-lee/side.svg",
  27327. extra: 5505 / 5383,
  27328. bottom: 60 / 5573
  27329. }
  27330. },
  27331. paw: {
  27332. height: math.unit(0.57, "feet"),
  27333. name: "Paw",
  27334. image: {
  27335. source: "./media/characters/kenzie-lee/paw.svg"
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(152, "feet"),
  27343. default: true
  27344. },
  27345. {
  27346. name: "Megamacro",
  27347. height: math.unit(7, "miles")
  27348. },
  27349. {
  27350. name: "Gigamacro",
  27351. height: math.unit(8000, "miles")
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27357. {
  27358. side: {
  27359. height: math.unit(6, "feet"),
  27360. weight: math.unit(150, "lb"),
  27361. name: "Side",
  27362. image: {
  27363. source: "./media/characters/withers/side.svg",
  27364. extra: 1830 / 1728,
  27365. bottom: 96 / 1927
  27366. }
  27367. },
  27368. front: {
  27369. height: math.unit(6, "feet"),
  27370. weight: math.unit(150, "lb"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/withers/front.svg",
  27374. extra: 1514 / 1438,
  27375. bottom: 118 / 1632
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Macro",
  27382. height: math.unit(168, "feet"),
  27383. default: true
  27384. },
  27385. {
  27386. name: "Megamacro",
  27387. height: math.unit(15, "miles")
  27388. }
  27389. ]
  27390. ))
  27391. characterMakers.push(() => makeCharacter(
  27392. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27393. {
  27394. front: {
  27395. height: math.unit(6 + 7 / 12, "feet"),
  27396. weight: math.unit(250, "lb"),
  27397. name: "Front",
  27398. image: {
  27399. source: "./media/characters/nemoskii/front.svg",
  27400. extra: 2270 / 1734,
  27401. bottom: 86 / 2354
  27402. }
  27403. },
  27404. back: {
  27405. height: math.unit(6 + 7 / 12, "feet"),
  27406. weight: math.unit(250, "lb"),
  27407. name: "Back",
  27408. image: {
  27409. source: "./media/characters/nemoskii/back.svg",
  27410. extra: 1845 / 1788,
  27411. bottom: 10.5 / 1852
  27412. }
  27413. },
  27414. head: {
  27415. height: math.unit(1.31, "feet"),
  27416. name: "Head",
  27417. image: {
  27418. source: "./media/characters/nemoskii/head.svg"
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Micro",
  27425. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27426. },
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6 + 7 / 12, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Macro",
  27434. height: math.unit((6 + 7 / 12) * 150, "feet")
  27435. },
  27436. {
  27437. name: "Macro+",
  27438. height: math.unit((6 + 7 / 12) * 500, "feet")
  27439. },
  27440. {
  27441. name: "Megamacro",
  27442. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(1, "mile"),
  27451. weight: math.unit(265261.9, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/shui/front.svg",
  27455. extra: 1633 / 1564,
  27456. bottom: 91.5 / 1726
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Macro",
  27463. height: math.unit(1, "mile"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(12 + 6 / 12, "feet"),
  27473. weight: math.unit(1342, "lb"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/arokh-takakura/front.svg",
  27477. extra: 1089 / 1043,
  27478. bottom: 77.4 / 1176.7
  27479. }
  27480. },
  27481. back: {
  27482. height: math.unit(12 + 6 / 12, "feet"),
  27483. weight: math.unit(1342, "lb"),
  27484. name: "Back",
  27485. image: {
  27486. source: "./media/characters/arokh-takakura/back.svg",
  27487. extra: 1046 / 1019,
  27488. bottom: 102 / 1150
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Big",
  27495. height: math.unit(12 + 6 / 12, "feet"),
  27496. default: true
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27502. {
  27503. front: {
  27504. height: math.unit(5 + 6 / 12, "feet"),
  27505. weight: math.unit(150, "lb"),
  27506. name: "Front",
  27507. image: {
  27508. source: "./media/characters/theo/front.svg",
  27509. extra: 1184 / 1131,
  27510. bottom: 7.4 / 1191
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Micro",
  27517. height: math.unit(5, "inches")
  27518. },
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(5 + 6 / 12, "feet"),
  27522. default: true
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(5 + 9 / 12, "feet"),
  27531. weight: math.unit(130, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/cecelia-swift/front.svg",
  27535. extra: 502 / 484,
  27536. bottom: 23 / 523
  27537. }
  27538. },
  27539. back: {
  27540. height: math.unit(5 + 9 / 12, "feet"),
  27541. weight: math.unit(130, "lb"),
  27542. name: "Back",
  27543. image: {
  27544. source: "./media/characters/cecelia-swift/back.svg",
  27545. extra: 499 / 485,
  27546. bottom: 12 / 511
  27547. }
  27548. },
  27549. head: {
  27550. height: math.unit(0.90, "feet"),
  27551. name: "Head",
  27552. image: {
  27553. source: "./media/characters/cecelia-swift/head.svg"
  27554. }
  27555. },
  27556. rump: {
  27557. height: math.unit(1.75, "feet"),
  27558. name: "Rump",
  27559. image: {
  27560. source: "./media/characters/cecelia-swift/rump.svg"
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(5 + 9 / 12, "feet"),
  27568. default: true
  27569. },
  27570. {
  27571. name: "Big",
  27572. height: math.unit(50, "feet")
  27573. },
  27574. {
  27575. name: "Macro",
  27576. height: math.unit(100, "feet")
  27577. },
  27578. {
  27579. name: "Macro+",
  27580. height: math.unit(500, "feet")
  27581. },
  27582. {
  27583. name: "Macro++",
  27584. height: math.unit(1000, "feet")
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(6, "feet"),
  27593. weight: math.unit(150, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/kaunan/front.svg",
  27597. extra: 2890 / 2523,
  27598. bottom: 49 / 2939
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Macro",
  27605. height: math.unit(150, "feet"),
  27606. default: true
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(175, "cm"),
  27615. weight: math.unit(60, "kg"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/fei/front.svg",
  27619. extra: 1873/1723,
  27620. bottom: 53/1926
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Mortal",
  27627. height: math.unit(175, "cm")
  27628. },
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(3500, "m"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Stroll",
  27636. height: math.unit(17.5, "km")
  27637. },
  27638. {
  27639. name: "Showoff",
  27640. height: math.unit(175, "km")
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(7, "feet"),
  27649. weight: math.unit(1000, "kg"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/edrax/front.svg",
  27653. extra: 2838 / 2550,
  27654. bottom: 130 / 2968
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Small",
  27661. height: math.unit(7, "feet")
  27662. },
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(1500, "meters")
  27666. },
  27667. {
  27668. name: "Mega",
  27669. height: math.unit(12000000, "km"),
  27670. default: true
  27671. },
  27672. {
  27673. name: "Megamacro",
  27674. height: math.unit(10600000, "lightyears")
  27675. },
  27676. {
  27677. name: "Hypermacro",
  27678. height: math.unit(256, "yottameters")
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(10, "feet"),
  27687. weight: math.unit(750, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/clove/front.svg",
  27691. extra: 2031 / 1860,
  27692. bottom: 47.8 / 2080
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(10, "feet"),
  27697. weight: math.unit(750, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/clove/back.svg",
  27701. extra: 2025 / 1859,
  27702. bottom: 46 / 2071
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(10, "feet"),
  27710. default: true
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(4, "feet"),
  27719. weight: math.unit(50, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/alex-rabbit/front.svg",
  27723. extra: 507 / 458,
  27724. bottom: 18.5 / 527
  27725. }
  27726. },
  27727. back: {
  27728. height: math.unit(4, "feet"),
  27729. weight: math.unit(50, "lb"),
  27730. name: "Back",
  27731. image: {
  27732. source: "./media/characters/alex-rabbit/back.svg",
  27733. extra: 502 / 460,
  27734. bottom: 18.9 / 521
  27735. }
  27736. },
  27737. },
  27738. [
  27739. {
  27740. name: "Normal",
  27741. height: math.unit(4, "feet"),
  27742. default: true
  27743. },
  27744. ]
  27745. ))
  27746. characterMakers.push(() => makeCharacter(
  27747. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27748. {
  27749. front: {
  27750. height: math.unit(1 + 3 / 12, "feet"),
  27751. weight: math.unit(80, "lb"),
  27752. name: "Front",
  27753. image: {
  27754. source: "./media/characters/zander-rose/front.svg",
  27755. extra: 916 / 797,
  27756. bottom: 17 / 933
  27757. }
  27758. },
  27759. back: {
  27760. height: math.unit(1 + 3 / 12, "feet"),
  27761. weight: math.unit(80, "lb"),
  27762. name: "Back",
  27763. image: {
  27764. source: "./media/characters/zander-rose/back.svg",
  27765. extra: 903 / 779,
  27766. bottom: 31 / 934
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(1 + 3 / 12, "feet"),
  27774. default: true
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27780. {
  27781. anthro: {
  27782. height: math.unit(6, "feet"),
  27783. weight: math.unit(150, "lb"),
  27784. name: "Anthro",
  27785. image: {
  27786. source: "./media/characters/razz/anthro.svg",
  27787. extra: 1437 / 1343,
  27788. bottom: 48 / 1485
  27789. }
  27790. },
  27791. feral: {
  27792. height: math.unit(6, "feet"),
  27793. weight: math.unit(150, "lb"),
  27794. name: "Feral",
  27795. image: {
  27796. source: "./media/characters/razz/feral.svg",
  27797. extra: 2569 / 1385,
  27798. bottom: 95 / 2664
  27799. }
  27800. },
  27801. },
  27802. [
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(6, "feet"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(9 + 4 / 12, "feet"),
  27815. weight: math.unit(500, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/morrigan/front.svg",
  27819. extra: 2707 / 2579,
  27820. bottom: 156 / 2863
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(9 + 4 / 12, "feet"),
  27828. default: true
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27834. {
  27835. front: {
  27836. height: math.unit(5, "stories"),
  27837. weight: math.unit(4000, "lb"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/jenene/front.svg",
  27841. extra: 1780 / 1710,
  27842. bottom: 57 / 1837
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(5, "stories"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27856. {
  27857. taurSfw: {
  27858. height: math.unit(10, "meters"),
  27859. weight: math.unit(17500, "kg"),
  27860. name: "Taur",
  27861. image: {
  27862. source: "./media/characters/faey/taur-sfw.svg",
  27863. extra: 1200 / 968,
  27864. bottom: 41 / 1241
  27865. }
  27866. },
  27867. chestmaw: {
  27868. height: math.unit(2.01, "meters"),
  27869. name: "Chestmaw",
  27870. image: {
  27871. source: "./media/characters/faey/chestmaw.svg"
  27872. }
  27873. },
  27874. foot: {
  27875. height: math.unit(2.43, "meters"),
  27876. name: "Foot",
  27877. image: {
  27878. source: "./media/characters/faey/foot.svg"
  27879. }
  27880. },
  27881. jaws: {
  27882. height: math.unit(1.66, "meters"),
  27883. name: "Jaws",
  27884. image: {
  27885. source: "./media/characters/faey/jaws.svg"
  27886. }
  27887. },
  27888. tongues: {
  27889. height: math.unit(2.01, "meters"),
  27890. name: "Tongues",
  27891. image: {
  27892. source: "./media/characters/faey/tongues.svg"
  27893. }
  27894. },
  27895. },
  27896. [
  27897. {
  27898. name: "Small",
  27899. height: math.unit(10, "meters"),
  27900. default: true
  27901. },
  27902. {
  27903. name: "Big",
  27904. height: math.unit(500000, "km")
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(7, "feet"),
  27913. weight: math.unit(275, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/roku/front.svg",
  27917. extra: 903 / 878,
  27918. bottom: 37 / 940
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(7, "feet"),
  27926. default: true
  27927. },
  27928. {
  27929. name: "Macro",
  27930. height: math.unit(500, "feet")
  27931. },
  27932. {
  27933. name: "Megamacro",
  27934. height: math.unit(200, "miles")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(6 + 2 / 12, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/lira/front.svg",
  27947. extra: 1727 / 1605,
  27948. bottom: 26 / 1753
  27949. }
  27950. },
  27951. back: {
  27952. height: math.unit(6 + 2 / 12, "feet"),
  27953. weight: math.unit(150, "lb"),
  27954. name: "Back",
  27955. image: {
  27956. source: "./media/characters/lira/back.svg",
  27957. extra: 1713/1621,
  27958. bottom: 20/1733
  27959. }
  27960. },
  27961. hand: {
  27962. height: math.unit(0.75, "feet"),
  27963. name: "Hand",
  27964. image: {
  27965. source: "./media/characters/lira/hand.svg"
  27966. }
  27967. },
  27968. maw: {
  27969. height: math.unit(0.65, "feet"),
  27970. name: "Maw",
  27971. image: {
  27972. source: "./media/characters/lira/maw.svg"
  27973. }
  27974. },
  27975. pawDigi: {
  27976. height: math.unit(1.6, "feet"),
  27977. name: "Paw Digi",
  27978. image: {
  27979. source: "./media/characters/lira/paw-digi.svg"
  27980. }
  27981. },
  27982. pawPlanti: {
  27983. height: math.unit(1.4, "feet"),
  27984. name: "Paw Planti",
  27985. image: {
  27986. source: "./media/characters/lira/paw-planti.svg"
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(6 + 2 / 12, "feet"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Macro",
  27998. height: math.unit(100, "feet")
  27999. },
  28000. {
  28001. name: "Macro²",
  28002. height: math.unit(1600, "feet")
  28003. },
  28004. {
  28005. name: "Planetary",
  28006. height: math.unit(20, "earths")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(6, "feet"),
  28015. weight: math.unit(150, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/hadjet/front.svg",
  28019. extra: 1480 / 1346,
  28020. bottom: 26 / 1506
  28021. }
  28022. },
  28023. frontNsfw: {
  28024. height: math.unit(6, "feet"),
  28025. weight: math.unit(150, "lb"),
  28026. name: "Front (NSFW)",
  28027. image: {
  28028. source: "./media/characters/hadjet/front-nsfw.svg",
  28029. extra: 1440 / 1358,
  28030. bottom: 52 / 1492
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Macro",
  28037. height: math.unit(10, "stories"),
  28038. default: true
  28039. },
  28040. {
  28041. name: "Megamacro",
  28042. height: math.unit(1.5, "miles")
  28043. },
  28044. {
  28045. name: "Megamacro+",
  28046. height: math.unit(5, "miles")
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28052. {
  28053. side: {
  28054. height: math.unit(106, "feet"),
  28055. weight: math.unit(500, "tonnes"),
  28056. name: "Side",
  28057. image: {
  28058. source: "./media/characters/kodran/side.svg",
  28059. extra: 553 / 480,
  28060. bottom: 33 / 586
  28061. }
  28062. },
  28063. front: {
  28064. height: math.unit(132, "feet"),
  28065. weight: math.unit(500, "tonnes"),
  28066. name: "Front",
  28067. image: {
  28068. source: "./media/characters/kodran/front.svg",
  28069. extra: 667 / 643,
  28070. bottom: 42 / 709
  28071. }
  28072. },
  28073. flying: {
  28074. height: math.unit(350, "feet"),
  28075. weight: math.unit(500, "tonnes"),
  28076. name: "Flying",
  28077. image: {
  28078. source: "./media/characters/kodran/flying.svg"
  28079. }
  28080. },
  28081. foot: {
  28082. height: math.unit(33, "feet"),
  28083. name: "Foot",
  28084. image: {
  28085. source: "./media/characters/kodran/foot.svg"
  28086. }
  28087. },
  28088. footFront: {
  28089. height: math.unit(19, "feet"),
  28090. name: "Foot (Front)",
  28091. image: {
  28092. source: "./media/characters/kodran/foot-front.svg",
  28093. extra: 261 / 261,
  28094. bottom: 91 / 352
  28095. }
  28096. },
  28097. headFront: {
  28098. height: math.unit(53, "feet"),
  28099. name: "Head (Front)",
  28100. image: {
  28101. source: "./media/characters/kodran/head-front.svg"
  28102. }
  28103. },
  28104. headSide: {
  28105. height: math.unit(65, "feet"),
  28106. name: "Head (Side)",
  28107. image: {
  28108. source: "./media/characters/kodran/head-side.svg"
  28109. }
  28110. },
  28111. throat: {
  28112. height: math.unit(79, "feet"),
  28113. name: "Throat",
  28114. image: {
  28115. source: "./media/characters/kodran/throat.svg"
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Large",
  28122. height: math.unit(106, "feet"),
  28123. default: true
  28124. },
  28125. ]
  28126. ))
  28127. characterMakers.push(() => makeCharacter(
  28128. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28129. {
  28130. side: {
  28131. height: math.unit(11, "feet"),
  28132. weight: math.unit(150, "lb"),
  28133. name: "Side",
  28134. image: {
  28135. source: "./media/characters/pyxaron/side.svg",
  28136. extra: 305 / 195,
  28137. bottom: 17 / 322
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(11, "feet"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(6, "feet"),
  28154. weight: math.unit(150, "lb"),
  28155. name: "Front",
  28156. image: {
  28157. source: "./media/characters/meep/front.svg",
  28158. extra: 88 / 80,
  28159. bottom: 6 / 94
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Fun Sized",
  28166. height: math.unit(2, "inches"),
  28167. default: true
  28168. },
  28169. {
  28170. name: "Friend Sized",
  28171. height: math.unit(8, "inches")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(15, "feet"),
  28180. weight: math.unit(2500, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/holly-rabbit/front.svg",
  28184. extra: 1433 / 1233,
  28185. bottom: 125 / 1558
  28186. }
  28187. },
  28188. dick: {
  28189. height: math.unit(4.6, "feet"),
  28190. name: "Dick",
  28191. image: {
  28192. source: "./media/characters/holly-rabbit/dick.svg"
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Normal",
  28199. height: math.unit(15, "feet"),
  28200. default: true
  28201. },
  28202. {
  28203. name: "Macro",
  28204. height: math.unit(250, "feet")
  28205. },
  28206. {
  28207. name: "Macro+",
  28208. height: math.unit(2500, "feet")
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(3.02, "meters"),
  28217. weight: math.unit(500, "kg"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/drena/front.svg",
  28221. extra: 282 / 243,
  28222. bottom: 8 / 290
  28223. }
  28224. },
  28225. side: {
  28226. height: math.unit(3.02, "meters"),
  28227. weight: math.unit(500, "kg"),
  28228. name: "Side",
  28229. image: {
  28230. source: "./media/characters/drena/side.svg",
  28231. extra: 280 / 245,
  28232. bottom: 10 / 290
  28233. }
  28234. },
  28235. back: {
  28236. height: math.unit(3.02, "meters"),
  28237. weight: math.unit(500, "kg"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/drena/back.svg",
  28241. extra: 278 / 243,
  28242. bottom: 2 / 280
  28243. }
  28244. },
  28245. foot: {
  28246. height: math.unit(0.75, "meters"),
  28247. name: "Foot",
  28248. image: {
  28249. source: "./media/characters/drena/foot.svg"
  28250. }
  28251. },
  28252. maw: {
  28253. height: math.unit(0.82, "meters"),
  28254. name: "Maw",
  28255. image: {
  28256. source: "./media/characters/drena/maw.svg"
  28257. }
  28258. },
  28259. rump: {
  28260. height: math.unit(0.93, "meters"),
  28261. name: "Rump",
  28262. image: {
  28263. source: "./media/characters/drena/rump.svg"
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(3.02, "meters"),
  28271. default: true
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28277. {
  28278. front: {
  28279. height: math.unit(6 + 4 / 12, "feet"),
  28280. weight: math.unit(250, "lb"),
  28281. name: "Front",
  28282. image: {
  28283. source: "./media/characters/remmyzilla/front.svg",
  28284. extra: 4033 / 3588,
  28285. bottom: 123 / 4156
  28286. }
  28287. },
  28288. back: {
  28289. height: math.unit(6 + 4 / 12, "feet"),
  28290. weight: math.unit(250, "lb"),
  28291. name: "Back",
  28292. image: {
  28293. source: "./media/characters/remmyzilla/back.svg",
  28294. extra: 2687 / 2555,
  28295. bottom: 48 / 2735
  28296. }
  28297. },
  28298. paw: {
  28299. height: math.unit(1.73, "feet"),
  28300. name: "Paw",
  28301. image: {
  28302. source: "./media/characters/remmyzilla/paw.svg"
  28303. }
  28304. },
  28305. maw: {
  28306. height: math.unit(1.73, "feet"),
  28307. name: "Maw",
  28308. image: {
  28309. source: "./media/characters/remmyzilla/maw.svg"
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(6 + 4 / 12, "feet")
  28317. },
  28318. {
  28319. name: "Minimacro",
  28320. height: math.unit(12 + 8 / 12, "feet")
  28321. },
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(640, "feet"),
  28325. default: true
  28326. },
  28327. {
  28328. name: "Megamacro",
  28329. height: math.unit(6400, "feet")
  28330. },
  28331. {
  28332. name: "Gigamacro",
  28333. height: math.unit(64000, "miles")
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(2.5, "meters"),
  28342. weight: math.unit(300, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/lawrence/front.svg",
  28346. extra: 357 / 335,
  28347. bottom: 30 / 387
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(2.5, "meters"),
  28352. weight: math.unit(300, "lb"),
  28353. name: "Back",
  28354. image: {
  28355. source: "./media/characters/lawrence/back.svg",
  28356. extra: 357 / 338,
  28357. bottom: 16 / 373
  28358. }
  28359. },
  28360. head: {
  28361. height: math.unit(0.9, "meter"),
  28362. name: "Head",
  28363. image: {
  28364. source: "./media/characters/lawrence/head.svg"
  28365. }
  28366. },
  28367. maw: {
  28368. height: math.unit(0.7, "meter"),
  28369. name: "Maw",
  28370. image: {
  28371. source: "./media/characters/lawrence/maw.svg"
  28372. }
  28373. },
  28374. footBottom: {
  28375. height: math.unit(0.5, "meter"),
  28376. name: "Foot (Bottom)",
  28377. image: {
  28378. source: "./media/characters/lawrence/foot-bottom.svg"
  28379. }
  28380. },
  28381. footTop: {
  28382. height: math.unit(0.5, "meter"),
  28383. name: "Foot (Top)",
  28384. image: {
  28385. source: "./media/characters/lawrence/foot-top.svg"
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(2.5, "meters"),
  28393. default: true
  28394. },
  28395. {
  28396. name: "Macro",
  28397. height: math.unit(95, "meters")
  28398. },
  28399. {
  28400. name: "Megamacro",
  28401. height: math.unit(150, "km")
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28407. {
  28408. front: {
  28409. height: math.unit(4.2, "meters"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/sydney/front.svg",
  28413. extra: 1323 / 1277,
  28414. bottom: 111 / 1434
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(4.2, "meters"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28428. {
  28429. back: {
  28430. height: math.unit(201, "feet"),
  28431. name: "Back",
  28432. image: {
  28433. source: "./media/characters/jessica/back.svg",
  28434. extra: 273 / 259,
  28435. bottom: 7 / 280
  28436. }
  28437. },
  28438. },
  28439. [
  28440. {
  28441. name: "Normal",
  28442. height: math.unit(201, "feet"),
  28443. default: true
  28444. },
  28445. {
  28446. name: "Megamacro",
  28447. height: math.unit(8, "miles")
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28453. {
  28454. side: {
  28455. height: math.unit(320, "cm"),
  28456. name: "Side",
  28457. image: {
  28458. source: "./media/characters/victoria/side.svg",
  28459. extra: 778 / 346,
  28460. bottom: 56 / 834
  28461. }
  28462. },
  28463. maw: {
  28464. height: math.unit(5.9, "feet"),
  28465. name: "Maw",
  28466. image: {
  28467. source: "./media/characters/victoria/maw.svg"
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(320, "cm"),
  28475. default: true
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28481. {
  28482. front: {
  28483. height: math.unit(5 + 6 / 12, "feet"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/cat/front.svg",
  28487. extra: 1449/1295,
  28488. bottom: 34/1483
  28489. }
  28490. },
  28491. back: {
  28492. height: math.unit(5 + 6 / 12, "feet"),
  28493. name: "Back",
  28494. image: {
  28495. source: "./media/characters/cat/back.svg",
  28496. extra: 1466/1301,
  28497. bottom: 19/1485
  28498. }
  28499. },
  28500. taur: {
  28501. height: math.unit(7, "feet"),
  28502. name: "Taur",
  28503. image: {
  28504. source: "./media/characters/cat/taur.svg",
  28505. extra: 1389/1233,
  28506. bottom: 83/1472
  28507. }
  28508. },
  28509. lucarioFront: {
  28510. height: math.unit(4, "feet"),
  28511. name: "Lucario (Front)",
  28512. image: {
  28513. source: "./media/characters/cat/lucario-front.svg",
  28514. extra: 1149/1019,
  28515. bottom: 84/1233
  28516. }
  28517. },
  28518. lucarioBack: {
  28519. height: math.unit(4, "feet"),
  28520. name: "Lucario (Back)",
  28521. image: {
  28522. source: "./media/characters/cat/lucario-back.svg",
  28523. extra: 1190/1059,
  28524. bottom: 33/1223
  28525. }
  28526. },
  28527. megaLucario: {
  28528. height: math.unit(4, "feet"),
  28529. name: "Mega Lucario",
  28530. image: {
  28531. source: "./media/characters/cat/mega-lucario.svg",
  28532. extra: 1515 / 1319,
  28533. bottom: 63 / 1578
  28534. }
  28535. },
  28536. nickit: {
  28537. height: math.unit(2, "feet"),
  28538. name: "Nickit",
  28539. image: {
  28540. source: "./media/characters/cat/nickit.svg",
  28541. extra: 1980 / 1585,
  28542. bottom: 102 / 2082
  28543. }
  28544. },
  28545. lopunnyFront: {
  28546. height: math.unit(5, "feet"),
  28547. name: "Lopunny (Front)",
  28548. image: {
  28549. source: "./media/characters/cat/lopunny-front.svg",
  28550. extra: 1782 / 1469,
  28551. bottom: 38 / 1820
  28552. }
  28553. },
  28554. lopunnyBack: {
  28555. height: math.unit(5, "feet"),
  28556. name: "Lopunny (Back)",
  28557. image: {
  28558. source: "./media/characters/cat/lopunny-back.svg",
  28559. extra: 1660 / 1490,
  28560. bottom: 25 / 1685
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Really small",
  28567. height: math.unit(1, "nm")
  28568. },
  28569. {
  28570. name: "Micro",
  28571. height: math.unit(5, "inches")
  28572. },
  28573. {
  28574. name: "Normal",
  28575. height: math.unit(5 + 6 / 12, "feet"),
  28576. default: true
  28577. },
  28578. {
  28579. name: "Macro",
  28580. height: math.unit(50, "feet")
  28581. },
  28582. {
  28583. name: "Macro+",
  28584. height: math.unit(150, "feet")
  28585. },
  28586. {
  28587. name: "Megamacro",
  28588. height: math.unit(100, "miles")
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(63.4, "meters"),
  28597. weight: math.unit(3.28349e+6, "kilograms"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/kirina-violet/front.svg",
  28601. extra: 2812 / 2725,
  28602. bottom: 0 / 2812
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(63.4, "meters"),
  28607. weight: math.unit(3.28349e+6, "kilograms"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/kirina-violet/back.svg",
  28611. extra: 2812 / 2725,
  28612. bottom: 0 / 2812
  28613. }
  28614. },
  28615. mouth: {
  28616. height: math.unit(4.35, "meters"),
  28617. name: "Mouth",
  28618. image: {
  28619. source: "./media/characters/kirina-violet/mouth.svg"
  28620. }
  28621. },
  28622. paw: {
  28623. height: math.unit(5.6, "meters"),
  28624. name: "Paw",
  28625. image: {
  28626. source: "./media/characters/kirina-violet/paw.svg"
  28627. }
  28628. },
  28629. tail: {
  28630. height: math.unit(18, "meters"),
  28631. name: "Tail",
  28632. image: {
  28633. source: "./media/characters/kirina-violet/tail.svg"
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(63.4, "meters"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(75, "feet"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/cat-gigachu/front.svg",
  28653. extra: 1239/1027,
  28654. bottom: 32/1271
  28655. }
  28656. },
  28657. back: {
  28658. height: math.unit(75, "feet"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/cat-gigachu/back.svg",
  28662. extra: 1229/1030,
  28663. bottom: 9/1238
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Dynamax",
  28670. height: math.unit(75, "feet"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(6, "feet"),
  28680. weight: math.unit(150, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/sfaiyan/front.svg",
  28684. extra: 999 / 978,
  28685. bottom: 5 / 1004
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Normal",
  28692. height: math.unit(1.82, "meters")
  28693. },
  28694. {
  28695. name: "Giant",
  28696. height: math.unit(2.27, "km"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(179, "cm"),
  28706. weight: math.unit(100, "kg"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/raunehkeli/front.svg",
  28710. extra: 1934 / 1926,
  28711. bottom: 0 / 1934
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(179, "cm")
  28719. },
  28720. {
  28721. name: "Maximum",
  28722. height: math.unit(575, "meters"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(6, "feet"),
  28732. weight: math.unit(150, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28736. extra: 2625 / 2518,
  28737. bottom: 60 / 2685
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(6 + 2 / 12, "feet")
  28745. },
  28746. {
  28747. name: "Macro",
  28748. height: math.unit(1180, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(5 + 6 / 12, "feet"),
  28758. weight: math.unit(108, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/lilith-zott/front.svg",
  28762. extra: 2510 / 2238,
  28763. bottom: 100 / 2610
  28764. }
  28765. },
  28766. frontDressed: {
  28767. height: math.unit(5 + 6 / 12, "feet"),
  28768. weight: math.unit(108, "lb"),
  28769. name: "Front (Dressed)",
  28770. image: {
  28771. source: "./media/characters/lilith-zott/front-dressed.svg",
  28772. extra: 2510 / 2238,
  28773. bottom: 100 / 2610
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(5 + 6 / 12, "feet")
  28781. },
  28782. {
  28783. name: "Macro",
  28784. height: math.unit(1030, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28798. extra: 2567 / 2435,
  28799. bottom: 39 / 2606
  28800. }
  28801. },
  28802. frontSuper: {
  28803. height: math.unit(6, "feet"),
  28804. name: "Front (Super)",
  28805. image: {
  28806. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28807. extra: 2567 / 2435,
  28808. bottom: 39 / 2606
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(5 + 10 / 12, "feet")
  28816. },
  28817. {
  28818. name: "Macro",
  28819. height: math.unit(1100, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(100, "miles"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/sona/front.svg",
  28832. extra: 2433 / 2201,
  28833. bottom: 53 / 2486
  28834. }
  28835. },
  28836. foot: {
  28837. height: math.unit(16.1, "miles"),
  28838. name: "Foot",
  28839. image: {
  28840. source: "./media/characters/sona/foot.svg"
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Macro",
  28847. height: math.unit(100, "miles"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(6, "feet"),
  28857. weight: math.unit(150, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/bailey/front.svg",
  28861. extra: 1778 / 1724,
  28862. bottom: 30 / 1808
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Micro",
  28869. height: math.unit(4, "inches")
  28870. },
  28871. {
  28872. name: "Normal",
  28873. height: math.unit(5 + 5 / 12, "feet"),
  28874. default: true
  28875. },
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(250, "feet")
  28879. },
  28880. {
  28881. name: "Megamacro",
  28882. height: math.unit(100, "miles")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28888. {
  28889. front: {
  28890. height: math.unit(5 + 2 / 12, "feet"),
  28891. weight: math.unit(120, "lb"),
  28892. name: "Front",
  28893. image: {
  28894. source: "./media/characters/snaps/front.svg",
  28895. extra: 2370 / 2177,
  28896. bottom: 48 / 2418
  28897. }
  28898. },
  28899. back: {
  28900. height: math.unit(5 + 2 / 12, "feet"),
  28901. weight: math.unit(120, "lb"),
  28902. name: "Back",
  28903. image: {
  28904. source: "./media/characters/snaps/back.svg",
  28905. extra: 2408 / 2258,
  28906. bottom: 15 / 2423
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Micro",
  28913. height: math.unit(9, "inches")
  28914. },
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(5 + 2 / 12, "feet"),
  28918. default: true
  28919. },
  28920. {
  28921. name: "Mini Macro",
  28922. height: math.unit(10, "feet")
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(1.8, "meters"),
  28931. weight: math.unit(85, "kg"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/azteck/front.svg",
  28935. extra: 2815 / 2625,
  28936. bottom: 89 / 2904
  28937. }
  28938. },
  28939. back: {
  28940. height: math.unit(1.8, "meters"),
  28941. weight: math.unit(85, "kg"),
  28942. name: "Back",
  28943. image: {
  28944. source: "./media/characters/azteck/back.svg",
  28945. extra: 2856 / 2648,
  28946. bottom: 85 / 2941
  28947. }
  28948. },
  28949. frontDressed: {
  28950. height: math.unit(1.8, "meters"),
  28951. weight: math.unit(85, "kg"),
  28952. name: "Front (Dressed)",
  28953. image: {
  28954. source: "./media/characters/azteck/front-dressed.svg",
  28955. extra: 2147 / 2003,
  28956. bottom: 68 / 2215
  28957. }
  28958. },
  28959. head: {
  28960. height: math.unit(0.47, "meters"),
  28961. weight: math.unit(85, "kg"),
  28962. name: "Head",
  28963. image: {
  28964. source: "./media/characters/azteck/head.svg"
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Bite sized",
  28971. height: math.unit(16, "cm")
  28972. },
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(1.8, "meters"),
  28976. default: true
  28977. },
  28978. ]
  28979. ))
  28980. characterMakers.push(() => makeCharacter(
  28981. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28982. {
  28983. front: {
  28984. height: math.unit(6, "feet"),
  28985. weight: math.unit(150, "lb"),
  28986. name: "Front",
  28987. image: {
  28988. source: "./media/characters/pidge/front.svg",
  28989. extra: 620 / 588,
  28990. bottom: 9 / 629
  28991. }
  28992. },
  28993. back: {
  28994. height: math.unit(6, "feet"),
  28995. weight: math.unit(150, "lb"),
  28996. name: "Back",
  28997. image: {
  28998. source: "./media/characters/pidge/back.svg",
  28999. extra: 620 / 588,
  29000. bottom: 9 / 629
  29001. }
  29002. },
  29003. },
  29004. [
  29005. {
  29006. name: "Macro",
  29007. height: math.unit(1, "mile"),
  29008. default: true
  29009. },
  29010. ]
  29011. ))
  29012. characterMakers.push(() => makeCharacter(
  29013. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29014. {
  29015. front: {
  29016. height: math.unit(6, "feet"),
  29017. weight: math.unit(150, "lb"),
  29018. name: "Front",
  29019. image: {
  29020. source: "./media/characters/en/front.svg",
  29021. extra: 1697 / 1563,
  29022. bottom: 103 / 1800
  29023. }
  29024. },
  29025. back: {
  29026. height: math.unit(6, "feet"),
  29027. weight: math.unit(150, "lb"),
  29028. name: "Back",
  29029. image: {
  29030. source: "./media/characters/en/back.svg",
  29031. extra: 1700 / 1570,
  29032. bottom: 51 / 1751
  29033. }
  29034. },
  29035. frontDressed: {
  29036. height: math.unit(6, "feet"),
  29037. weight: math.unit(150, "lb"),
  29038. name: "Front (Dressed)",
  29039. image: {
  29040. source: "./media/characters/en/front-dressed.svg",
  29041. extra: 1697 / 1563,
  29042. bottom: 103 / 1800
  29043. }
  29044. },
  29045. backDressed: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Back (Dressed)",
  29049. image: {
  29050. source: "./media/characters/en/back-dressed.svg",
  29051. extra: 1700 / 1570,
  29052. bottom: 51 / 1751
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Macro",
  29059. height: math.unit(210, "feet"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(6, "feet"),
  29069. weight: math.unit(150, "lb"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/haze-orris/front.svg",
  29073. extra: 3975 / 3525,
  29074. bottom: 137 / 4112
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Micro",
  29081. height: math.unit(150, "mm"),
  29082. default: true
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(6, "feet"),
  29091. weight: math.unit(150, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/casselene-yaro/front.svg",
  29095. extra: 4721 / 4541,
  29096. bottom: 82 / 4803
  29097. }
  29098. },
  29099. back: {
  29100. height: math.unit(6, "feet"),
  29101. weight: math.unit(150, "lb"),
  29102. name: "Back",
  29103. image: {
  29104. source: "./media/characters/casselene-yaro/back.svg",
  29105. extra: 4569 / 4377,
  29106. bottom: 69 / 4638
  29107. }
  29108. },
  29109. frontDressed: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Front-dressed",
  29113. image: {
  29114. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29115. extra: 4721 / 4541,
  29116. bottom: 82 / 4803
  29117. }
  29118. },
  29119. },
  29120. [
  29121. {
  29122. name: "Macro",
  29123. height: math.unit(190, "feet"),
  29124. default: true
  29125. },
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29130. {
  29131. front: {
  29132. height: math.unit(6, "feet"),
  29133. weight: math.unit(150, "lb"),
  29134. name: "Front",
  29135. image: {
  29136. source: "./media/characters/myra-rue-delore/front.svg",
  29137. extra: 1340 / 1308,
  29138. bottom: 67 / 1407
  29139. }
  29140. },
  29141. back: {
  29142. height: math.unit(6, "feet"),
  29143. weight: math.unit(150, "lb"),
  29144. name: "Back",
  29145. image: {
  29146. source: "./media/characters/myra-rue-delore/back.svg",
  29147. extra: 1341 / 1310,
  29148. bottom: 40 / 1381
  29149. }
  29150. },
  29151. frontDressed: {
  29152. height: math.unit(6, "feet"),
  29153. weight: math.unit(150, "lb"),
  29154. name: "Front (Dressed)",
  29155. image: {
  29156. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29157. extra: 1340 / 1308,
  29158. bottom: 67 / 1407
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(150, "feet"),
  29166. default: true
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(10, "feet"),
  29175. weight: math.unit(15015, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/fem!plat/front.svg",
  29179. extra: 2799 / 2604,
  29180. bottom: 149 / 2948
  29181. }
  29182. },
  29183. },
  29184. [
  29185. {
  29186. name: "Normal",
  29187. height: math.unit(10, "feet"),
  29188. default: true
  29189. },
  29190. {
  29191. name: "Macro",
  29192. height: math.unit(100, "feet")
  29193. },
  29194. {
  29195. name: "Megamacro",
  29196. height: math.unit(1000, "feet")
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(15 + 5 / 12, "feet"),
  29205. weight: math.unit(4600, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/neapolitan-ananassa/front.svg",
  29209. extra: 2903 / 2736,
  29210. bottom: 0 / 2903
  29211. }
  29212. },
  29213. side: {
  29214. height: math.unit(15 + 5 / 12, "feet"),
  29215. weight: math.unit(4600, "lb"),
  29216. name: "Side",
  29217. image: {
  29218. source: "./media/characters/neapolitan-ananassa/side.svg",
  29219. extra: 2925 / 2719,
  29220. bottom: 0 / 2925
  29221. }
  29222. },
  29223. back: {
  29224. height: math.unit(15 + 5 / 12, "feet"),
  29225. weight: math.unit(4600, "lb"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/neapolitan-ananassa/back.svg",
  29229. extra: 2903 / 2736,
  29230. bottom: 0 / 2903
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Normal",
  29237. height: math.unit(15 + 5 / 12, "feet"),
  29238. default: true
  29239. },
  29240. {
  29241. name: "Post-Millenium",
  29242. height: math.unit(35 + 5 / 12, "feet")
  29243. },
  29244. {
  29245. name: "Post-Era",
  29246. height: math.unit(450 + 5 / 12, "feet")
  29247. },
  29248. ]
  29249. ))
  29250. characterMakers.push(() => makeCharacter(
  29251. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29252. {
  29253. front: {
  29254. height: math.unit(300, "meters"),
  29255. weight: math.unit(125000, "tonnes"),
  29256. name: "Front",
  29257. image: {
  29258. source: "./media/characters/pazuzu/front.svg",
  29259. extra: 877 / 794,
  29260. bottom: 47 / 924
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Macro",
  29267. height: math.unit(300, "meters"),
  29268. default: true
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29274. {
  29275. side: {
  29276. height: math.unit(10 + 7 / 12, "feet"),
  29277. weight: math.unit(2.5, "tons"),
  29278. name: "Side",
  29279. image: {
  29280. source: "./media/characters/aasha/side.svg",
  29281. extra: 1345 / 1245,
  29282. bottom: 111 / 1456
  29283. }
  29284. },
  29285. back: {
  29286. height: math.unit(10 + 7 / 12, "feet"),
  29287. weight: math.unit(2.5, "tons"),
  29288. name: "Back",
  29289. image: {
  29290. source: "./media/characters/aasha/back.svg",
  29291. extra: 1133 / 1057,
  29292. bottom: 257 / 1390
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(10 + 7 / 12, "feet"),
  29300. default: true
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(6 + 3 / 12, "feet"),
  29309. name: "Front",
  29310. image: {
  29311. source: "./media/characters/nevan/front.svg",
  29312. extra: 704 / 704,
  29313. bottom: 28 / 732
  29314. }
  29315. },
  29316. back: {
  29317. height: math.unit(6 + 3 / 12, "feet"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/nevan/back.svg",
  29321. extra: 714 / 714,
  29322. bottom: 21 / 735
  29323. }
  29324. },
  29325. frontFlaccid: {
  29326. height: math.unit(6 + 3 / 12, "feet"),
  29327. name: "Front (Flaccid)",
  29328. image: {
  29329. source: "./media/characters/nevan/front-flaccid.svg",
  29330. extra: 704 / 704,
  29331. bottom: 28 / 732
  29332. }
  29333. },
  29334. frontErect: {
  29335. height: math.unit(6 + 3 / 12, "feet"),
  29336. name: "Front (Erect)",
  29337. image: {
  29338. source: "./media/characters/nevan/front-erect.svg",
  29339. extra: 704 / 704,
  29340. bottom: 28 / 732
  29341. }
  29342. },
  29343. backFlaccid: {
  29344. height: math.unit(6 + 3 / 12, "feet"),
  29345. name: "Back (Flaccid)",
  29346. image: {
  29347. source: "./media/characters/nevan/back-flaccid.svg",
  29348. extra: 714 / 714,
  29349. bottom: 21 / 735
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(6 + 3 / 12, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(4, "feet"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/arhan/front.svg",
  29369. extra: 3368 / 3133,
  29370. bottom: 0 / 3368
  29371. }
  29372. },
  29373. side: {
  29374. height: math.unit(4, "feet"),
  29375. name: "Side",
  29376. image: {
  29377. source: "./media/characters/arhan/side.svg",
  29378. extra: 3347 / 3105,
  29379. bottom: 0 / 3347
  29380. }
  29381. },
  29382. tongue: {
  29383. height: math.unit(1.42, "feet"),
  29384. name: "Tongue",
  29385. image: {
  29386. source: "./media/characters/arhan/tongue.svg"
  29387. }
  29388. },
  29389. head: {
  29390. height: math.unit(0.85, "feet"),
  29391. name: "Head",
  29392. image: {
  29393. source: "./media/characters/arhan/head.svg"
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(4, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(5 + 7.5 / 12, "feet"),
  29410. weight: math.unit(120, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/digi-duncan/front.svg",
  29414. extra: 330 / 326,
  29415. bottom: 16 / 346
  29416. }
  29417. },
  29418. side: {
  29419. height: math.unit(5 + 7.5 / 12, "feet"),
  29420. weight: math.unit(120, "lb"),
  29421. name: "Side",
  29422. image: {
  29423. source: "./media/characters/digi-duncan/side.svg",
  29424. extra: 341 / 337,
  29425. bottom: 1 / 342
  29426. }
  29427. },
  29428. back: {
  29429. height: math.unit(5 + 7.5 / 12, "feet"),
  29430. weight: math.unit(120, "lb"),
  29431. name: "Back",
  29432. image: {
  29433. source: "./media/characters/digi-duncan/back.svg",
  29434. extra: 330 / 326,
  29435. bottom: 12 / 342
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Speck",
  29442. height: math.unit(0.25, "mm")
  29443. },
  29444. {
  29445. name: "Micro",
  29446. height: math.unit(5, "mm")
  29447. },
  29448. {
  29449. name: "Tiny",
  29450. height: math.unit(0.5, "inches"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Human",
  29455. height: math.unit(5 + 7.5 / 12, "feet")
  29456. },
  29457. {
  29458. name: "Minigiant",
  29459. height: math.unit(8 + 5.25, "feet")
  29460. },
  29461. {
  29462. name: "Giant",
  29463. height: math.unit(2000, "feet")
  29464. },
  29465. {
  29466. name: "Mega",
  29467. height: math.unit(371.1, "miles")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(2, "meters"),
  29476. weight: math.unit(350, "kg"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29480. extra: 898 / 838,
  29481. bottom: 9 / 907
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Micro",
  29488. height: math.unit(8, "meters")
  29489. },
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(50, "meters"),
  29493. default: true
  29494. },
  29495. {
  29496. name: "Macro",
  29497. height: math.unit(500, "meters")
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(6 + 6 / 12, "feet"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/khardesh/front.svg",
  29509. extra: 888 / 797,
  29510. bottom: 25 / 913
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(6 + 6 / 12, "feet"),
  29518. default: true
  29519. },
  29520. {
  29521. name: "Normal+",
  29522. height: math.unit(4, "meters")
  29523. },
  29524. {
  29525. name: "Macro",
  29526. height: math.unit(50, "meters")
  29527. },
  29528. {
  29529. name: "Macro+",
  29530. height: math.unit(100, "meters")
  29531. },
  29532. {
  29533. name: "Megamacro",
  29534. height: math.unit(20, "km")
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(6, "feet"),
  29543. weight: math.unit(150, "lb"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/kosho/front.svg",
  29547. extra: 1847 / 1847,
  29548. bottom: 86 / 1933
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Second-stage micro",
  29555. height: math.unit(0.5, "inches")
  29556. },
  29557. {
  29558. name: "First-stage micro",
  29559. height: math.unit(6, "inches")
  29560. },
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(6, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "First-stage macro",
  29568. height: math.unit(72, "feet")
  29569. },
  29570. {
  29571. name: "Second-stage macro",
  29572. height: math.unit(864, "feet")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29578. {
  29579. normal: {
  29580. height: math.unit(4 + 6 / 12, "feet"),
  29581. name: "Normal",
  29582. image: {
  29583. source: "./media/characters/hydra/normal.svg",
  29584. extra: 2833 / 2634,
  29585. bottom: 68 / 2901
  29586. }
  29587. },
  29588. smol: {
  29589. height: math.unit(0.705, "inches"),
  29590. name: "Smol",
  29591. image: {
  29592. source: "./media/characters/hydra/smol.svg",
  29593. extra: 2715 / 2540,
  29594. bottom: 0 / 2715
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(4 + 6 / 12, "feet"),
  29602. default: true
  29603. }
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(0.6, "cm"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/daz/front.svg",
  29614. extra: 1682 / 1164,
  29615. bottom: 42 / 1724
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(0.6, "cm"),
  29623. default: true
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(6, "feet"),
  29632. weight: math.unit(235, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/theo-pangolin/front.svg",
  29636. extra: 1996 / 1969,
  29637. bottom: 115 / 2111
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(6, "feet"),
  29642. weight: math.unit(235, "lb"),
  29643. name: "Back",
  29644. image: {
  29645. source: "./media/characters/theo-pangolin/back.svg",
  29646. extra: 1979 / 1979,
  29647. bottom: 40 / 2019
  29648. }
  29649. },
  29650. feral: {
  29651. height: math.unit(2, "feet"),
  29652. weight: math.unit(30, "lb"),
  29653. name: "Feral",
  29654. image: {
  29655. source: "./media/characters/theo-pangolin/feral.svg",
  29656. extra: 803 / 791,
  29657. bottom: 181 / 984
  29658. }
  29659. },
  29660. footFive: {
  29661. height: math.unit(1.43, "feet"),
  29662. name: "Foot (Five Toes)",
  29663. image: {
  29664. source: "./media/characters/theo-pangolin/foot-five.svg"
  29665. }
  29666. },
  29667. footFour: {
  29668. height: math.unit(1.43, "feet"),
  29669. name: "Foot (Four Toes)",
  29670. image: {
  29671. source: "./media/characters/theo-pangolin/foot-four.svg"
  29672. }
  29673. },
  29674. handFour: {
  29675. height: math.unit(0.81, "feet"),
  29676. name: "Hand (Four Fingers)",
  29677. image: {
  29678. source: "./media/characters/theo-pangolin/hand-four.svg"
  29679. }
  29680. },
  29681. handThree: {
  29682. height: math.unit(0.81, "feet"),
  29683. name: "Hand (Three Fingers)",
  29684. image: {
  29685. source: "./media/characters/theo-pangolin/hand-three.svg"
  29686. }
  29687. },
  29688. headFront: {
  29689. height: math.unit(1.37, "feet"),
  29690. name: "Head (Front)",
  29691. image: {
  29692. source: "./media/characters/theo-pangolin/head-front.svg"
  29693. }
  29694. },
  29695. headSide: {
  29696. height: math.unit(1.43, "feet"),
  29697. name: "Head (Side)",
  29698. image: {
  29699. source: "./media/characters/theo-pangolin/head-side.svg"
  29700. }
  29701. },
  29702. tongue: {
  29703. height: math.unit(2.29, "feet"),
  29704. name: "Tongue",
  29705. image: {
  29706. source: "./media/characters/theo-pangolin/tongue.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(6, "feet")
  29714. },
  29715. {
  29716. name: "Macro",
  29717. height: math.unit(400, "feet"),
  29718. default: true
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(6, "inches"),
  29727. weight: math.unit(0.036, "kg"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/renée/front.svg",
  29731. extra: 900 / 886,
  29732. bottom: 8 / 908
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Nano",
  29739. height: math.unit(1, "nm")
  29740. },
  29741. {
  29742. name: "Micro",
  29743. height: math.unit(1, "mm")
  29744. },
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(6, "inches")
  29748. },
  29749. {
  29750. name: "Macro",
  29751. height: math.unit(2000, "feet"),
  29752. default: true
  29753. },
  29754. {
  29755. name: "Megamacro",
  29756. height: math.unit(2, "km")
  29757. },
  29758. {
  29759. name: "Gigamacro",
  29760. height: math.unit(2000, "km")
  29761. },
  29762. {
  29763. name: "Teramacro",
  29764. height: math.unit(250000, "km")
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(4, "meters"),
  29773. weight: math.unit(150, "kg"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/caledvwlch/front.svg",
  29777. extra: 1760 / 1551,
  29778. bottom: 28 / 1788
  29779. }
  29780. },
  29781. side: {
  29782. height: math.unit(4, "meters"),
  29783. weight: math.unit(150, "kg"),
  29784. name: "Side",
  29785. image: {
  29786. source: "./media/characters/caledvwlch/side.svg",
  29787. extra: 1605 / 1536,
  29788. bottom: 31 / 1636
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(4, "meters"),
  29793. weight: math.unit(150, "kg"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/caledvwlch/back.svg",
  29797. extra: 1635 / 1565,
  29798. bottom: 27 / 1662
  29799. }
  29800. },
  29801. },
  29802. [
  29803. {
  29804. name: "\"Incognito\"",
  29805. height: math.unit(4, "meters")
  29806. },
  29807. {
  29808. name: "Small rampage",
  29809. height: math.unit(600, "meters")
  29810. },
  29811. {
  29812. name: "Mega",
  29813. height: math.unit(30, "km")
  29814. },
  29815. {
  29816. name: "Home-size",
  29817. height: math.unit(50, "km"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Giga",
  29822. height: math.unit(300, "km")
  29823. },
  29824. {
  29825. name: "Lounging",
  29826. height: math.unit(11000, "km")
  29827. },
  29828. {
  29829. name: "Planet snacking",
  29830. height: math.unit(2000000, "km")
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(6, "feet"),
  29839. weight: math.unit(215, "lb"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/sapphire-svell/front.svg",
  29843. extra: 495 / 455,
  29844. bottom: 20 / 515
  29845. }
  29846. },
  29847. back: {
  29848. height: math.unit(6, "feet"),
  29849. weight: math.unit(216, "lb"),
  29850. name: "Back",
  29851. image: {
  29852. source: "./media/characters/sapphire-svell/back.svg",
  29853. extra: 497 / 477,
  29854. bottom: 7 / 504
  29855. }
  29856. },
  29857. maw: {
  29858. height: math.unit(1.57, "feet"),
  29859. name: "Maw",
  29860. image: {
  29861. source: "./media/characters/sapphire-svell/maw.svg"
  29862. }
  29863. },
  29864. foot: {
  29865. height: math.unit(1.07, "feet"),
  29866. name: "Foot",
  29867. image: {
  29868. source: "./media/characters/sapphire-svell/foot.svg"
  29869. }
  29870. },
  29871. toering: {
  29872. height: math.unit(1.7, "inch"),
  29873. name: "Toering",
  29874. image: {
  29875. source: "./media/characters/sapphire-svell/toering.svg"
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Normal",
  29882. height: math.unit(300, "feet"),
  29883. default: true
  29884. },
  29885. {
  29886. name: "Augmented",
  29887. height: math.unit(1250, "feet")
  29888. },
  29889. {
  29890. name: "Unleashed",
  29891. height: math.unit(3000, "feet")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29897. {
  29898. side: {
  29899. height: math.unit(2 + 3 / 12, "feet"),
  29900. weight: math.unit(110, "lb"),
  29901. name: "Side",
  29902. image: {
  29903. source: "./media/characters/glitch-flux/side.svg",
  29904. extra: 997 / 805,
  29905. bottom: 20 / 1017
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(2 + 3 / 12, "feet"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(4, "meters"),
  29922. name: "Front",
  29923. image: {
  29924. source: "./media/characters/mid/front.svg",
  29925. extra: 507 / 476,
  29926. bottom: 17 / 524
  29927. }
  29928. },
  29929. back: {
  29930. height: math.unit(4, "meters"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/mid/back.svg",
  29934. extra: 519 / 487,
  29935. bottom: 7 / 526
  29936. }
  29937. },
  29938. stuck: {
  29939. height: math.unit(2.2, "meters"),
  29940. name: "Stuck",
  29941. image: {
  29942. source: "./media/characters/mid/stuck.svg",
  29943. extra: 1951 / 1869,
  29944. bottom: 88 / 2039
  29945. }
  29946. }
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(4, "meters"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Big",
  29956. height: math.unit(10, "meters")
  29957. },
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(800, "meters")
  29961. },
  29962. {
  29963. name: "Megamacro",
  29964. height: math.unit(100, "km")
  29965. },
  29966. {
  29967. name: "Overgrown",
  29968. height: math.unit(1, "parsec")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(2.5, "meters"),
  29977. weight: math.unit(225, "kg"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/iris/front.svg",
  29981. extra: 3348 / 3251,
  29982. bottom: 205 / 3553
  29983. }
  29984. },
  29985. maw: {
  29986. height: math.unit(0.56, "meter"),
  29987. name: "Maw",
  29988. image: {
  29989. source: "./media/characters/iris/maw.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Mewter cat",
  29996. height: math.unit(1.2, "meters")
  29997. },
  29998. {
  29999. name: "Minimacro",
  30000. height: math.unit(2.5, "meters"),
  30001. default: true
  30002. },
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(180, "meters")
  30006. },
  30007. {
  30008. name: "Megamacro",
  30009. height: math.unit(2746, "meters")
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(6, "feet"),
  30018. weight: math.unit(135, "lb"),
  30019. name: "Front",
  30020. image: {
  30021. source: "./media/characters/axel/front.svg",
  30022. extra: 908 / 908,
  30023. bottom: 58 / 966
  30024. }
  30025. },
  30026. side: {
  30027. height: math.unit(6, "feet"),
  30028. weight: math.unit(135, "lb"),
  30029. name: "Side",
  30030. image: {
  30031. source: "./media/characters/axel/side.svg",
  30032. extra: 958 / 958,
  30033. bottom: 11 / 969
  30034. }
  30035. },
  30036. back: {
  30037. height: math.unit(6, "feet"),
  30038. weight: math.unit(135, "lb"),
  30039. name: "Back",
  30040. image: {
  30041. source: "./media/characters/axel/back.svg",
  30042. extra: 887 / 887,
  30043. bottom: 34 / 921
  30044. }
  30045. },
  30046. head: {
  30047. height: math.unit(1.07, "feet"),
  30048. name: "Head",
  30049. image: {
  30050. source: "./media/characters/axel/head.svg"
  30051. }
  30052. },
  30053. beak: {
  30054. height: math.unit(1.4, "feet"),
  30055. name: "Beak",
  30056. image: {
  30057. source: "./media/characters/axel/beak.svg"
  30058. }
  30059. },
  30060. beakSide: {
  30061. height: math.unit(1.4, "feet"),
  30062. name: "Beak Side",
  30063. image: {
  30064. source: "./media/characters/axel/beak-side.svg"
  30065. }
  30066. },
  30067. sheath: {
  30068. height: math.unit(0.5, "feet"),
  30069. name: "Sheath",
  30070. image: {
  30071. source: "./media/characters/axel/sheath.svg"
  30072. }
  30073. },
  30074. dick: {
  30075. height: math.unit(0.98, "feet"),
  30076. name: "Dick",
  30077. image: {
  30078. source: "./media/characters/axel/dick.svg"
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(68, "meters"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(3.5, "meters"),
  30095. weight: math.unit(1200, "kg"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/joanna/front.svg",
  30099. extra: 1596 / 1488,
  30100. bottom: 29 / 1625
  30101. }
  30102. },
  30103. back: {
  30104. height: math.unit(3.5, "meters"),
  30105. weight: math.unit(1200, "kg"),
  30106. name: "Back",
  30107. image: {
  30108. source: "./media/characters/joanna/back.svg",
  30109. extra: 1594 / 1495,
  30110. bottom: 26 / 1620
  30111. }
  30112. },
  30113. frontShorts: {
  30114. height: math.unit(3.5, "meters"),
  30115. weight: math.unit(1200, "kg"),
  30116. name: "Front (Shorts)",
  30117. image: {
  30118. source: "./media/characters/joanna/front-shorts.svg",
  30119. extra: 1596 / 1488,
  30120. bottom: 29 / 1625
  30121. }
  30122. },
  30123. frontBiker: {
  30124. height: math.unit(3.5, "meters"),
  30125. weight: math.unit(1200, "kg"),
  30126. name: "Front (Biker)",
  30127. image: {
  30128. source: "./media/characters/joanna/front-biker.svg",
  30129. extra: 1596 / 1488,
  30130. bottom: 29 / 1625
  30131. }
  30132. },
  30133. backBiker: {
  30134. height: math.unit(3.5, "meters"),
  30135. weight: math.unit(1200, "kg"),
  30136. name: "Back (Biker)",
  30137. image: {
  30138. source: "./media/characters/joanna/back-biker.svg",
  30139. extra: 1594 / 1495,
  30140. bottom: 88 / 1682
  30141. }
  30142. },
  30143. bikeLeft: {
  30144. height: math.unit(2.4, "meters"),
  30145. weight: math.unit(1600, "kg"),
  30146. name: "Bike (Left)",
  30147. image: {
  30148. source: "./media/characters/joanna/bike-left.svg",
  30149. extra: 720 / 720,
  30150. bottom: 8 / 728
  30151. }
  30152. },
  30153. bikeRight: {
  30154. height: math.unit(2.4, "meters"),
  30155. weight: math.unit(1600, "kg"),
  30156. name: "Bike (Right)",
  30157. image: {
  30158. source: "./media/characters/joanna/bike-right.svg",
  30159. extra: 720 / 720,
  30160. bottom: 8 / 728
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Incognito",
  30167. height: math.unit(3.5, "meters")
  30168. },
  30169. {
  30170. name: "Casual Big",
  30171. height: math.unit(200, "meters")
  30172. },
  30173. {
  30174. name: "Macro",
  30175. height: math.unit(600, "meters")
  30176. },
  30177. {
  30178. name: "Original",
  30179. height: math.unit(20, "km"),
  30180. default: true
  30181. },
  30182. {
  30183. name: "Giga",
  30184. height: math.unit(400, "km")
  30185. },
  30186. {
  30187. name: "Lounging",
  30188. height: math.unit(1500, "km")
  30189. },
  30190. {
  30191. name: "Planetary",
  30192. height: math.unit(200000, "km")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(6, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Front",
  30203. image: {
  30204. source: "./media/characters/hugo-sigil/front.svg",
  30205. extra: 522 / 500,
  30206. bottom: 2 / 524
  30207. }
  30208. },
  30209. back: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Back",
  30213. image: {
  30214. source: "./media/characters/hugo-sigil/back.svg",
  30215. extra: 519 / 495,
  30216. bottom: 5 / 524
  30217. }
  30218. },
  30219. maw: {
  30220. height: math.unit(1.4, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Maw",
  30223. image: {
  30224. source: "./media/characters/hugo-sigil/maw.svg"
  30225. }
  30226. },
  30227. feet: {
  30228. height: math.unit(1.56, "feet"),
  30229. weight: math.unit(150, "lb"),
  30230. name: "Feet",
  30231. image: {
  30232. source: "./media/characters/hugo-sigil/feet.svg",
  30233. extra: 177 / 177,
  30234. bottom: 12 / 189
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(6, "feet")
  30242. },
  30243. {
  30244. name: "Macro",
  30245. height: math.unit(200, "feet"),
  30246. default: true
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30252. {
  30253. front: {
  30254. height: math.unit(6, "feet"),
  30255. weight: math.unit(150, "lb"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/peri/front.svg",
  30259. extra: 2354 / 2233,
  30260. bottom: 49 / 2403
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Really Small",
  30267. height: math.unit(1, "nm")
  30268. },
  30269. {
  30270. name: "Micro",
  30271. height: math.unit(4, "inches")
  30272. },
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(7, "inches"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Macro",
  30280. height: math.unit(400, "feet")
  30281. },
  30282. {
  30283. name: "Megamacro",
  30284. height: math.unit(100, "miles")
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30290. {
  30291. frontSlim: {
  30292. height: math.unit(7, "feet"),
  30293. name: "Front (Slim)",
  30294. image: {
  30295. source: "./media/characters/issilora/front-slim.svg",
  30296. extra: 529 / 449,
  30297. bottom: 53 / 582
  30298. }
  30299. },
  30300. sideSlim: {
  30301. height: math.unit(7, "feet"),
  30302. name: "Side (Slim)",
  30303. image: {
  30304. source: "./media/characters/issilora/side-slim.svg",
  30305. extra: 570 / 480,
  30306. bottom: 30 / 600
  30307. }
  30308. },
  30309. backSlim: {
  30310. height: math.unit(7, "feet"),
  30311. name: "Back (Slim)",
  30312. image: {
  30313. source: "./media/characters/issilora/back-slim.svg",
  30314. extra: 537 / 455,
  30315. bottom: 46 / 583
  30316. }
  30317. },
  30318. frontBuff: {
  30319. height: math.unit(7, "feet"),
  30320. name: "Front (Buff)",
  30321. image: {
  30322. source: "./media/characters/issilora/front-buff.svg",
  30323. extra: 2310 / 2035,
  30324. bottom: 335 / 2645
  30325. }
  30326. },
  30327. head: {
  30328. height: math.unit(1.94, "feet"),
  30329. name: "Head",
  30330. image: {
  30331. source: "./media/characters/issilora/head.svg"
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Minimum",
  30338. height: math.unit(7, "feet")
  30339. },
  30340. {
  30341. name: "Comfortable",
  30342. height: math.unit(17, "feet")
  30343. },
  30344. {
  30345. name: "Fun Size",
  30346. height: math.unit(47, "feet")
  30347. },
  30348. {
  30349. name: "Natural Macro",
  30350. height: math.unit(137, "feet"),
  30351. default: true
  30352. },
  30353. {
  30354. name: "Maximum Kaiju",
  30355. height: math.unit(397, "feet")
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30361. {
  30362. front: {
  30363. height: math.unit(50 + 9/12, "feet"),
  30364. weight: math.unit(32.8, "tons"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/irb'iiritaahn/front.svg",
  30368. extra: 1878/1826,
  30369. bottom: 326/2204
  30370. }
  30371. },
  30372. back: {
  30373. height: math.unit(50 + 9/12, "feet"),
  30374. weight: math.unit(32.8, "tons"),
  30375. name: "Back",
  30376. image: {
  30377. source: "./media/characters/irb'iiritaahn/back.svg",
  30378. extra: 2052/2018,
  30379. bottom: 152/2204
  30380. }
  30381. },
  30382. head: {
  30383. height: math.unit(12.86, "feet"),
  30384. name: "Head",
  30385. image: {
  30386. source: "./media/characters/irb'iiritaahn/head.svg"
  30387. }
  30388. },
  30389. maw: {
  30390. height: math.unit(9.66, "feet"),
  30391. name: "Maw",
  30392. image: {
  30393. source: "./media/characters/irb'iiritaahn/maw.svg"
  30394. }
  30395. },
  30396. frontDick: {
  30397. height: math.unit(8.78461, "feet"),
  30398. name: "Front Dick",
  30399. image: {
  30400. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30401. }
  30402. },
  30403. rearDick: {
  30404. height: math.unit(8.78461, "feet"),
  30405. name: "Rear Dick",
  30406. image: {
  30407. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30408. }
  30409. },
  30410. rearDickUnfolded: {
  30411. height: math.unit(8.78, "feet"),
  30412. name: "Rear Dick (Unfolded)",
  30413. image: {
  30414. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30415. }
  30416. },
  30417. wings: {
  30418. height: math.unit(43, "feet"),
  30419. name: "Wings",
  30420. image: {
  30421. source: "./media/characters/irb'iiritaahn/wings.svg"
  30422. }
  30423. },
  30424. },
  30425. [
  30426. {
  30427. name: "Macro",
  30428. height: math.unit(50 + 9/12, "feet"),
  30429. default: true
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30435. {
  30436. front: {
  30437. height: math.unit(205, "cm"),
  30438. weight: math.unit(102, "kg"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/irbisgreif/front.svg",
  30442. extra: 785/706,
  30443. bottom: 13/798
  30444. }
  30445. },
  30446. back: {
  30447. height: math.unit(205, "cm"),
  30448. weight: math.unit(102, "kg"),
  30449. name: "Back",
  30450. image: {
  30451. source: "./media/characters/irbisgreif/back.svg",
  30452. extra: 713/701,
  30453. bottom: 26/739
  30454. }
  30455. },
  30456. frontDressed: {
  30457. height: math.unit(216, "cm"),
  30458. weight: math.unit(102, "kg"),
  30459. name: "Front-dressed",
  30460. image: {
  30461. source: "./media/characters/irbisgreif/front-dressed.svg",
  30462. extra: 902/776,
  30463. bottom: 14/916
  30464. }
  30465. },
  30466. sideDressed: {
  30467. height: math.unit(195, "cm"),
  30468. weight: math.unit(102, "kg"),
  30469. name: "Side-dressed",
  30470. image: {
  30471. source: "./media/characters/irbisgreif/side-dressed.svg",
  30472. extra: 788/688,
  30473. bottom: 21/809
  30474. }
  30475. },
  30476. backDressed: {
  30477. height: math.unit(216, "cm"),
  30478. weight: math.unit(102, "kg"),
  30479. name: "Back-dressed",
  30480. image: {
  30481. source: "./media/characters/irbisgreif/back-dressed.svg",
  30482. extra: 901/783,
  30483. bottom: 10/911
  30484. }
  30485. },
  30486. dick: {
  30487. height: math.unit(0.49, "feet"),
  30488. name: "Dick",
  30489. image: {
  30490. source: "./media/characters/irbisgreif/dick.svg"
  30491. }
  30492. },
  30493. wingTop: {
  30494. height: math.unit(1.93 , "feet"),
  30495. name: "Wing-top",
  30496. image: {
  30497. source: "./media/characters/irbisgreif/wing-top.svg"
  30498. }
  30499. },
  30500. wingBottom: {
  30501. height: math.unit(1.93 , "feet"),
  30502. name: "Wing-bottom",
  30503. image: {
  30504. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(216, "cm"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(6, "feet"),
  30521. weight: math.unit(150, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/pride/front.svg",
  30525. extra: 1299/1230,
  30526. bottom: 18/1317
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(7, "feet")
  30534. },
  30535. {
  30536. name: "Mini-macro",
  30537. height: math.unit(11, "feet")
  30538. },
  30539. {
  30540. name: "Macro",
  30541. height: math.unit(15, "meters"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Macro+",
  30546. height: math.unit(40, "meters")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30552. {
  30553. front: {
  30554. height: math.unit(4 + 2 / 12, "feet"),
  30555. weight: math.unit(95, "lb"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/vaelophis-nyx/front.svg",
  30559. extra: 2532/2330,
  30560. bottom: 0/2532
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(4 + 2 / 12, "feet"),
  30565. weight: math.unit(95, "lb"),
  30566. name: "Back",
  30567. image: {
  30568. source: "./media/characters/vaelophis-nyx/back.svg",
  30569. extra: 2484/2361,
  30570. bottom: 0/2484
  30571. }
  30572. },
  30573. feralSide: {
  30574. height: math.unit(2 + 1/12, "feet"),
  30575. weight: math.unit(20, "lb"),
  30576. name: "Feral (Side)",
  30577. image: {
  30578. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30579. extra: 1721/1581,
  30580. bottom: 70/1791
  30581. }
  30582. },
  30583. feralLazing: {
  30584. height: math.unit(1.08, "feet"),
  30585. weight: math.unit(20, "lb"),
  30586. name: "Feral (Lazing)",
  30587. image: {
  30588. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30589. extra: 822/822,
  30590. bottom: 248/1070
  30591. }
  30592. },
  30593. ear: {
  30594. height: math.unit(0.416, "feet"),
  30595. name: "Ear",
  30596. image: {
  30597. source: "./media/characters/vaelophis-nyx/ear.svg"
  30598. }
  30599. },
  30600. eye: {
  30601. height: math.unit(0.0748, "feet"),
  30602. name: "Eye",
  30603. image: {
  30604. source: "./media/characters/vaelophis-nyx/eye.svg"
  30605. }
  30606. },
  30607. mouth: {
  30608. height: math.unit(0.378, "feet"),
  30609. name: "Mouth",
  30610. image: {
  30611. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30612. }
  30613. },
  30614. spade: {
  30615. height: math.unit(0.55, "feet"),
  30616. name: "Spade",
  30617. image: {
  30618. source: "./media/characters/vaelophis-nyx/spade.svg"
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Normal",
  30625. height: math.unit(4 + 2/12, "feet"),
  30626. default: true
  30627. },
  30628. ]
  30629. ))
  30630. characterMakers.push(() => makeCharacter(
  30631. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30632. {
  30633. front: {
  30634. height: math.unit(7, "feet"),
  30635. weight: math.unit(231, "lb"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/flux/front.svg",
  30639. extra: 919/871,
  30640. bottom: 0/919
  30641. }
  30642. },
  30643. back: {
  30644. height: math.unit(7, "feet"),
  30645. weight: math.unit(231, "lb"),
  30646. name: "Back",
  30647. image: {
  30648. source: "./media/characters/flux/back.svg",
  30649. extra: 1040/992,
  30650. bottom: 0/1040
  30651. }
  30652. },
  30653. frontDressed: {
  30654. height: math.unit(7, "feet"),
  30655. weight: math.unit(231, "lb"),
  30656. name: "Front (Dressed)",
  30657. image: {
  30658. source: "./media/characters/flux/front-dressed.svg",
  30659. extra: 919/871,
  30660. bottom: 0/919
  30661. }
  30662. },
  30663. feralSide: {
  30664. height: math.unit(5, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Feral (Side)",
  30667. image: {
  30668. source: "./media/characters/flux/feral-side.svg",
  30669. extra: 598/528,
  30670. bottom: 28/626
  30671. }
  30672. },
  30673. head: {
  30674. height: math.unit(1.585, "feet"),
  30675. name: "Head",
  30676. image: {
  30677. source: "./media/characters/flux/head.svg"
  30678. }
  30679. },
  30680. headSide: {
  30681. height: math.unit(1.74, "feet"),
  30682. name: "Head (Side)",
  30683. image: {
  30684. source: "./media/characters/flux/head-side.svg"
  30685. }
  30686. },
  30687. headSideFire: {
  30688. height: math.unit(1.76, "feet"),
  30689. name: "Head (Side, Fire)",
  30690. image: {
  30691. source: "./media/characters/flux/head-side-fire.svg"
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(7, "feet"),
  30699. default: true
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(9, "feet"),
  30708. weight: math.unit(1012, "lb"),
  30709. name: "Front",
  30710. image: {
  30711. source: "./media/characters/ulfra-lupae/front.svg",
  30712. extra: 1083/1011,
  30713. bottom: 67/1150
  30714. }
  30715. },
  30716. },
  30717. [
  30718. {
  30719. name: "Micro",
  30720. height: math.unit(6, "inches")
  30721. },
  30722. {
  30723. name: "Socializing",
  30724. height: math.unit(6 + 5/12, "feet")
  30725. },
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(9, "feet"),
  30729. default: true
  30730. },
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(150, "feet")
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(5 + 2/12, "feet"),
  30742. weight: math.unit(120, "lb"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/timber/front.svg",
  30746. extra: 2814/2705,
  30747. bottom: 181/2995
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(5 + 2/12, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(5 + 7/12, "feet"),
  30764. weight: math.unit(220, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/nicki/front.svg",
  30768. extra: 453/419,
  30769. bottom: 7/460
  30770. }
  30771. },
  30772. frontAlt: {
  30773. height: math.unit(5 + 7/12, "feet"),
  30774. weight: math.unit(220, "lb"),
  30775. name: "Front-alt",
  30776. image: {
  30777. source: "./media/characters/nicki/front-alt.svg",
  30778. extra: 435/411,
  30779. bottom: 12/447
  30780. }
  30781. },
  30782. back: {
  30783. height: math.unit(5 + 7/12, "feet"),
  30784. weight: math.unit(220, "lb"),
  30785. name: "Back",
  30786. image: {
  30787. source: "./media/characters/nicki/back.svg",
  30788. extra: 440/413,
  30789. bottom: 19/459
  30790. }
  30791. },
  30792. taur: {
  30793. height: math.unit(7 + 6/12, "feet"),
  30794. weight: math.unit(700, "lb"),
  30795. name: "Taur",
  30796. image: {
  30797. source: "./media/characters/nicki/taur.svg",
  30798. extra: 975/773,
  30799. bottom: 0/975
  30800. }
  30801. },
  30802. frontNsfw: {
  30803. height: math.unit(5 + 7/12, "feet"),
  30804. weight: math.unit(220, "lb"),
  30805. name: "Front (NSFW)",
  30806. image: {
  30807. source: "./media/characters/nicki/front-nsfw.svg",
  30808. extra: 453/419,
  30809. bottom: 7/460
  30810. }
  30811. },
  30812. frontNsfwAlt: {
  30813. height: math.unit(5 + 7/12, "feet"),
  30814. weight: math.unit(220, "lb"),
  30815. name: "Front (Alt, NSFW)",
  30816. image: {
  30817. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30818. extra: 435/411,
  30819. bottom: 12/447
  30820. }
  30821. },
  30822. backNsfw: {
  30823. height: math.unit(5 + 7/12, "feet"),
  30824. weight: math.unit(220, "lb"),
  30825. name: "Back (NSFW)",
  30826. image: {
  30827. source: "./media/characters/nicki/back-nsfw.svg",
  30828. extra: 440/413,
  30829. bottom: 19/459
  30830. }
  30831. },
  30832. head: {
  30833. height: math.unit(2.1, "feet"),
  30834. name: "Head",
  30835. image: {
  30836. source: "./media/characters/nicki/head.svg"
  30837. }
  30838. },
  30839. paw: {
  30840. height: math.unit(1.88, "feet"),
  30841. name: "Paw",
  30842. image: {
  30843. source: "./media/characters/nicki/paw.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(5 + 7/12, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(7 + 10/12, "feet"),
  30860. weight: math.unit(3.5, "tons"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/lee/front.svg",
  30864. extra: 1773/1615,
  30865. bottom: 86/1859
  30866. }
  30867. },
  30868. hand: {
  30869. height: math.unit(1.78, "feet"),
  30870. name: "Hand",
  30871. image: {
  30872. source: "./media/characters/lee/hand.svg"
  30873. }
  30874. },
  30875. maw: {
  30876. height: math.unit(1.18, "feet"),
  30877. name: "Maw",
  30878. image: {
  30879. source: "./media/characters/lee/maw.svg"
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Normal",
  30886. height: math.unit(7 + 10/12, "feet"),
  30887. default: true
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30893. {
  30894. front: {
  30895. height: math.unit(9, "feet"),
  30896. name: "Front",
  30897. image: {
  30898. source: "./media/characters/guti/front.svg",
  30899. extra: 4551/4355,
  30900. bottom: 123/4674
  30901. }
  30902. },
  30903. tongue: {
  30904. height: math.unit(1, "feet"),
  30905. name: "Tongue",
  30906. image: {
  30907. source: "./media/characters/guti/tongue.svg"
  30908. }
  30909. },
  30910. paw: {
  30911. height: math.unit(1.18, "feet"),
  30912. name: "Paw",
  30913. image: {
  30914. source: "./media/characters/guti/paw.svg"
  30915. }
  30916. },
  30917. },
  30918. [
  30919. {
  30920. name: "Normal",
  30921. height: math.unit(9, "feet"),
  30922. default: true
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30928. {
  30929. side: {
  30930. height: math.unit(5, "meters"),
  30931. name: "Side",
  30932. image: {
  30933. source: "./media/characters/vesper/side.svg",
  30934. extra: 1605/1518,
  30935. bottom: 0/1605
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Small",
  30942. height: math.unit(5, "meters")
  30943. },
  30944. {
  30945. name: "Sage",
  30946. height: math.unit(100, "meters"),
  30947. default: true
  30948. },
  30949. {
  30950. name: "Fun Size",
  30951. height: math.unit(600, "meters")
  30952. },
  30953. {
  30954. name: "Goddess",
  30955. height: math.unit(20000, "km")
  30956. },
  30957. {
  30958. name: "Maximum",
  30959. height: math.unit(5, "galaxies")
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(6 + 3/12, "feet"),
  30968. weight: math.unit(190, "lb"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/gawain/front.svg",
  30972. extra: 2222/2139,
  30973. bottom: 90/2312
  30974. }
  30975. },
  30976. back: {
  30977. height: math.unit(6 + 3/12, "feet"),
  30978. weight: math.unit(190, "lb"),
  30979. name: "Back",
  30980. image: {
  30981. source: "./media/characters/gawain/back.svg",
  30982. extra: 2199/2111,
  30983. bottom: 73/2272
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(6 + 3/12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30997. {
  30998. side: {
  30999. height: math.unit(3.5, "meters"),
  31000. weight: math.unit(16000, "lb"),
  31001. name: "Side",
  31002. image: {
  31003. source: "./media/characters/dascalti/side.svg",
  31004. extra: 392/273,
  31005. bottom: 47/439
  31006. }
  31007. },
  31008. breath: {
  31009. height: math.unit(7.4, "feet"),
  31010. name: "Breath",
  31011. image: {
  31012. source: "./media/characters/dascalti/breath.svg"
  31013. }
  31014. },
  31015. fed: {
  31016. height: math.unit(3.6, "meters"),
  31017. weight: math.unit(16000, "lb"),
  31018. name: "Fed",
  31019. image: {
  31020. source: "./media/characters/dascalti/fed.svg",
  31021. extra: 1419/820,
  31022. bottom: 95/1514
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(3.5, "meters"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(3 + 5/12, "feet"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/mauve/front.svg",
  31042. extra: 1126/1033,
  31043. bottom: 65/1191
  31044. }
  31045. },
  31046. side: {
  31047. height: math.unit(3 + 5/12, "feet"),
  31048. name: "Side",
  31049. image: {
  31050. source: "./media/characters/mauve/side.svg",
  31051. extra: 1089/1001,
  31052. bottom: 29/1118
  31053. }
  31054. },
  31055. back: {
  31056. height: math.unit(3 + 5/12, "feet"),
  31057. name: "Back",
  31058. image: {
  31059. source: "./media/characters/mauve/back.svg",
  31060. extra: 1173/1053,
  31061. bottom: 109/1282
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(3 + 5/12, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(6 + 3/12, "feet"),
  31078. weight: math.unit(430, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/carlos/front.svg",
  31082. extra: 1964/1913,
  31083. bottom: 70/2034
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(6 + 3/12, "feet"),
  31091. default: true
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31097. {
  31098. back: {
  31099. height: math.unit(5 + 10/12, "feet"),
  31100. weight: math.unit(200, "lb"),
  31101. name: "Back",
  31102. image: {
  31103. source: "./media/characters/jax/back.svg",
  31104. extra: 764/739,
  31105. bottom: 25/789
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(5 + 10/12, "feet"),
  31113. default: true
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(8, "feet"),
  31122. weight: math.unit(250, "lb"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/eikthynir/front.svg",
  31126. extra: 1332/1166,
  31127. bottom: 82/1414
  31128. }
  31129. },
  31130. back: {
  31131. height: math.unit(8, "feet"),
  31132. weight: math.unit(250, "lb"),
  31133. name: "Back",
  31134. image: {
  31135. source: "./media/characters/eikthynir/back.svg",
  31136. extra: 1342/1190,
  31137. bottom: 19/1361
  31138. }
  31139. },
  31140. dick: {
  31141. height: math.unit(2.35, "feet"),
  31142. name: "Dick",
  31143. image: {
  31144. source: "./media/characters/eikthynir/dick.svg"
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(8, "feet"),
  31152. default: true
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31158. {
  31159. front: {
  31160. height: math.unit(99, "meters"),
  31161. weight: math.unit(13000, "tons"),
  31162. name: "Front",
  31163. image: {
  31164. source: "./media/characters/zlmos/front.svg",
  31165. extra: 2202/1992,
  31166. bottom: 315/2517
  31167. }
  31168. },
  31169. },
  31170. [
  31171. {
  31172. name: "Macro",
  31173. height: math.unit(99, "meters"),
  31174. default: true
  31175. },
  31176. ]
  31177. ))
  31178. characterMakers.push(() => makeCharacter(
  31179. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31180. {
  31181. front: {
  31182. height: math.unit(6 + 5/12, "feet"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/purri/front.svg",
  31186. extra: 1698/1610,
  31187. bottom: 32/1730
  31188. }
  31189. },
  31190. frontAlt: {
  31191. height: math.unit(6 + 5/12, "feet"),
  31192. name: "Front (Alt)",
  31193. image: {
  31194. source: "./media/characters/purri/front-alt.svg",
  31195. extra: 450/420,
  31196. bottom: 26/476
  31197. }
  31198. },
  31199. boots: {
  31200. height: math.unit(5.5, "feet"),
  31201. name: "Boots",
  31202. image: {
  31203. source: "./media/characters/purri/boots.svg",
  31204. extra: 905/853,
  31205. bottom: 18/923
  31206. }
  31207. },
  31208. lying: {
  31209. height: math.unit(2, "feet"),
  31210. name: "Lying",
  31211. image: {
  31212. source: "./media/characters/purri/lying.svg",
  31213. extra: 940/843,
  31214. bottom: 146/1086
  31215. }
  31216. },
  31217. devious: {
  31218. height: math.unit(1.77, "feet"),
  31219. name: "Devious",
  31220. image: {
  31221. source: "./media/characters/purri/devious.svg",
  31222. extra: 1440/1155,
  31223. bottom: 147/1587
  31224. }
  31225. },
  31226. bean: {
  31227. height: math.unit(1.94, "feet"),
  31228. name: "Bean",
  31229. image: {
  31230. source: "./media/characters/purri/bean.svg"
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Micro",
  31237. height: math.unit(1, "mm")
  31238. },
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(6 + 5/12, "feet"),
  31242. default: true
  31243. },
  31244. {
  31245. name: "Macro :3c",
  31246. height: math.unit(2, "miles")
  31247. },
  31248. ]
  31249. ))
  31250. characterMakers.push(() => makeCharacter(
  31251. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31252. {
  31253. front: {
  31254. height: math.unit(6 + 2/12, "feet"),
  31255. weight: math.unit(250, "lb"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/moonlight/front.svg",
  31259. extra: 1044/908,
  31260. bottom: 56/1100
  31261. }
  31262. },
  31263. feral: {
  31264. height: math.unit(3 + 1/12, "feet"),
  31265. weight: math.unit(50, "kg"),
  31266. name: "Feral",
  31267. image: {
  31268. source: "./media/characters/moonlight/feral.svg",
  31269. extra: 3705/2791,
  31270. bottom: 145/3850
  31271. }
  31272. },
  31273. paw: {
  31274. height: math.unit(1, "feet"),
  31275. name: "Paw",
  31276. image: {
  31277. source: "./media/characters/moonlight/paw.svg"
  31278. }
  31279. },
  31280. paws: {
  31281. height: math.unit(0.98, "feet"),
  31282. name: "Paws",
  31283. image: {
  31284. source: "./media/characters/moonlight/paws.svg",
  31285. extra: 939/939,
  31286. bottom: 50/989
  31287. }
  31288. },
  31289. mouth: {
  31290. height: math.unit(0.48, "feet"),
  31291. name: "Mouth",
  31292. image: {
  31293. source: "./media/characters/moonlight/mouth.svg"
  31294. }
  31295. },
  31296. dick: {
  31297. height: math.unit(1.46, "feet"),
  31298. name: "Dick",
  31299. image: {
  31300. source: "./media/characters/moonlight/dick.svg"
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(6 + 2/12, "feet"),
  31308. default: true
  31309. },
  31310. {
  31311. name: "Macro",
  31312. height: math.unit(300, "feet")
  31313. },
  31314. {
  31315. name: "Macro+",
  31316. height: math.unit(1, "mile")
  31317. },
  31318. {
  31319. name: "Mt. Moon",
  31320. height: math.unit(5, "miles")
  31321. },
  31322. {
  31323. name: "Megamacro",
  31324. height: math.unit(15, "miles")
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31330. {
  31331. back: {
  31332. height: math.unit(6, "feet"),
  31333. weight: math.unit(150, "lb"),
  31334. name: "Back",
  31335. image: {
  31336. source: "./media/characters/sylen/back.svg",
  31337. extra: 1335/1273,
  31338. bottom: 107/1442
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Normal",
  31345. height: math.unit(5 + 5/12, "feet")
  31346. },
  31347. {
  31348. name: "Megamacro",
  31349. height: math.unit(3, "miles"),
  31350. default: true
  31351. },
  31352. ]
  31353. ))
  31354. characterMakers.push(() => makeCharacter(
  31355. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31356. {
  31357. front: {
  31358. height: math.unit(6, "feet"),
  31359. weight: math.unit(190, "lb"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/huttser/front.svg",
  31363. extra: 1152/1058,
  31364. bottom: 23/1175
  31365. }
  31366. },
  31367. side: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(190, "lb"),
  31370. name: "Side",
  31371. image: {
  31372. source: "./media/characters/huttser/side.svg",
  31373. extra: 1174/1065,
  31374. bottom: 18/1192
  31375. }
  31376. },
  31377. back: {
  31378. height: math.unit(6, "feet"),
  31379. weight: math.unit(190, "lb"),
  31380. name: "Back",
  31381. image: {
  31382. source: "./media/characters/huttser/back.svg",
  31383. extra: 1158/1056,
  31384. bottom: 12/1170
  31385. }
  31386. },
  31387. },
  31388. [
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31393. {
  31394. side: {
  31395. height: math.unit(12 + 9/12, "feet"),
  31396. weight: math.unit(15000, "lb"),
  31397. name: "Side",
  31398. image: {
  31399. source: "./media/characters/faan/side.svg",
  31400. extra: 2747/2697,
  31401. bottom: 0/2747
  31402. }
  31403. },
  31404. front: {
  31405. height: math.unit(12 + 9/12, "feet"),
  31406. weight: math.unit(15000, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/faan/front.svg",
  31410. extra: 607/571,
  31411. bottom: 24/631
  31412. }
  31413. },
  31414. head: {
  31415. height: math.unit(2.85, "feet"),
  31416. name: "Head",
  31417. image: {
  31418. source: "./media/characters/faan/head.svg"
  31419. }
  31420. },
  31421. headAlt: {
  31422. height: math.unit(3.13, "feet"),
  31423. name: "Head-alt",
  31424. image: {
  31425. source: "./media/characters/faan/head-alt.svg"
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Normal",
  31432. height: math.unit(12 + 9/12, "feet"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(6, "feet"),
  31442. weight: math.unit(300, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/tanio/front.svg",
  31446. extra: 711/673,
  31447. bottom: 25/736
  31448. }
  31449. },
  31450. },
  31451. [
  31452. {
  31453. name: "Normal",
  31454. height: math.unit(6, "feet"),
  31455. default: true
  31456. },
  31457. ]
  31458. ))
  31459. characterMakers.push(() => makeCharacter(
  31460. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31461. {
  31462. front: {
  31463. height: math.unit(3, "inches"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/noboru/front.svg",
  31467. extra: 1039/932,
  31468. bottom: 18/1057
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Micro",
  31475. height: math.unit(3, "inches"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(1.85, "meters"),
  31485. weight: math.unit(80, "kg"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/daniel-barrett/front.svg",
  31489. extra: 355/337,
  31490. bottom: 9/364
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Pico",
  31497. height: math.unit(0.0433, "mm")
  31498. },
  31499. {
  31500. name: "Nano",
  31501. height: math.unit(1.5, "mm")
  31502. },
  31503. {
  31504. name: "Micro",
  31505. height: math.unit(5.3, "cm"),
  31506. default: true
  31507. },
  31508. {
  31509. name: "Normal",
  31510. height: math.unit(1.85, "meters")
  31511. },
  31512. {
  31513. name: "Macro",
  31514. height: math.unit(64.7, "meters")
  31515. },
  31516. {
  31517. name: "Megamacro",
  31518. height: math.unit(2.26, "km")
  31519. },
  31520. {
  31521. name: "Gigamacro",
  31522. height: math.unit(79, "km")
  31523. },
  31524. {
  31525. name: "Teramacro",
  31526. height: math.unit(2765, "km")
  31527. },
  31528. {
  31529. name: "Petamacro",
  31530. height: math.unit(96678, "km")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(30, "meters"),
  31539. weight: math.unit(400, "tons"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/zeel/front.svg",
  31543. extra: 2599/2599,
  31544. bottom: 226/2825
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Macro",
  31551. height: math.unit(30, "meters"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(6 + 7/12, "feet"),
  31561. weight: math.unit(210, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/tarn/front.svg",
  31565. extra: 3517/3220,
  31566. bottom: 91/3608
  31567. }
  31568. },
  31569. back: {
  31570. height: math.unit(6 + 7/12, "feet"),
  31571. weight: math.unit(210, "lb"),
  31572. name: "Back",
  31573. image: {
  31574. source: "./media/characters/tarn/back.svg",
  31575. extra: 3566/3241,
  31576. bottom: 34/3600
  31577. }
  31578. },
  31579. dick: {
  31580. height: math.unit(1.65, "feet"),
  31581. name: "Dick",
  31582. image: {
  31583. source: "./media/characters/tarn/dick.svg"
  31584. }
  31585. },
  31586. paw: {
  31587. height: math.unit(1.80, "feet"),
  31588. name: "Paw",
  31589. image: {
  31590. source: "./media/characters/tarn/paw.svg"
  31591. }
  31592. },
  31593. tongue: {
  31594. height: math.unit(0.97, "feet"),
  31595. name: "Tongue",
  31596. image: {
  31597. source: "./media/characters/tarn/tongue.svg"
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Micro",
  31604. height: math.unit(4, "inches")
  31605. },
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(6 + 7/12, "feet"),
  31609. default: true
  31610. },
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(300, "feet")
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(5 + 7/12, "feet"),
  31622. weight: math.unit(80, "kg"),
  31623. name: "Front",
  31624. image: {
  31625. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31626. extra: 3023/2865,
  31627. bottom: 33/3056
  31628. }
  31629. },
  31630. back: {
  31631. height: math.unit(5 + 7/12, "feet"),
  31632. weight: math.unit(80, "kg"),
  31633. name: "Back",
  31634. image: {
  31635. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31636. extra: 3020/2886,
  31637. bottom: 30/3050
  31638. }
  31639. },
  31640. dick: {
  31641. height: math.unit(0.98, "feet"),
  31642. name: "Dick",
  31643. image: {
  31644. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31645. }
  31646. },
  31647. anatomy: {
  31648. height: math.unit(2.86, "feet"),
  31649. name: "Anatomy",
  31650. image: {
  31651. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Really Small",
  31658. height: math.unit(2, "inches")
  31659. },
  31660. {
  31661. name: "Micro",
  31662. height: math.unit(5.583, "inches")
  31663. },
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(5 + 7/12, "feet"),
  31667. default: true
  31668. },
  31669. {
  31670. name: "Macro",
  31671. height: math.unit(67, "feet")
  31672. },
  31673. {
  31674. name: "Megamacro",
  31675. height: math.unit(134, "feet")
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(9, "feet"),
  31684. weight: math.unit(120, "lb"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/sally/front.svg",
  31688. extra: 1506/1349,
  31689. bottom: 66/1572
  31690. }
  31691. },
  31692. },
  31693. [
  31694. {
  31695. name: "Normal",
  31696. height: math.unit(9, "feet"),
  31697. default: true
  31698. },
  31699. ]
  31700. ))
  31701. characterMakers.push(() => makeCharacter(
  31702. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31703. {
  31704. front: {
  31705. height: math.unit(8, "feet"),
  31706. weight: math.unit(900, "lb"),
  31707. name: "Front",
  31708. image: {
  31709. source: "./media/characters/owen/front.svg",
  31710. extra: 1761/1657,
  31711. bottom: 74/1835
  31712. }
  31713. },
  31714. side: {
  31715. height: math.unit(8, "feet"),
  31716. weight: math.unit(900, "lb"),
  31717. name: "Side",
  31718. image: {
  31719. source: "./media/characters/owen/side.svg",
  31720. extra: 1797/1734,
  31721. bottom: 30/1827
  31722. }
  31723. },
  31724. back: {
  31725. height: math.unit(8, "feet"),
  31726. weight: math.unit(900, "lb"),
  31727. name: "Back",
  31728. image: {
  31729. source: "./media/characters/owen/back.svg",
  31730. extra: 1796/1706,
  31731. bottom: 59/1855
  31732. }
  31733. },
  31734. maw: {
  31735. height: math.unit(1.76, "feet"),
  31736. name: "Maw",
  31737. image: {
  31738. source: "./media/characters/owen/maw.svg"
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Normal",
  31745. height: math.unit(8, "feet"),
  31746. default: true
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31752. {
  31753. front: {
  31754. height: math.unit(4, "feet"),
  31755. weight: math.unit(400, "lb"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/ryth/front.svg",
  31759. extra: 1920/1748,
  31760. bottom: 42/1962
  31761. }
  31762. },
  31763. back: {
  31764. height: math.unit(4, "feet"),
  31765. weight: math.unit(400, "lb"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/ryth/back.svg",
  31769. extra: 1897/1690,
  31770. bottom: 89/1986
  31771. }
  31772. },
  31773. mouth: {
  31774. height: math.unit(1.39, "feet"),
  31775. name: "Mouth",
  31776. image: {
  31777. source: "./media/characters/ryth/mouth.svg"
  31778. }
  31779. },
  31780. tailmaw: {
  31781. height: math.unit(1.23, "feet"),
  31782. name: "Tailmaw",
  31783. image: {
  31784. source: "./media/characters/ryth/tailmaw.svg"
  31785. }
  31786. },
  31787. goia: {
  31788. height: math.unit(12, "feet"),
  31789. weight: math.unit(10800, "lb"),
  31790. name: "Goia",
  31791. image: {
  31792. source: "./media/characters/ryth/goia.svg",
  31793. extra: 3450/3198,
  31794. bottom: 61/3511
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(4, "feet"),
  31802. default: true
  31803. },
  31804. ]
  31805. ))
  31806. characterMakers.push(() => makeCharacter(
  31807. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31808. {
  31809. front: {
  31810. height: math.unit(7, "feet"),
  31811. weight: math.unit(180, "lb"),
  31812. name: "Front",
  31813. image: {
  31814. source: "./media/characters/necrolance/front.svg",
  31815. extra: 1062/947,
  31816. bottom: 41/1103
  31817. }
  31818. },
  31819. back: {
  31820. height: math.unit(7, "feet"),
  31821. weight: math.unit(180, "lb"),
  31822. name: "Back",
  31823. image: {
  31824. source: "./media/characters/necrolance/back.svg",
  31825. extra: 1045/984,
  31826. bottom: 14/1059
  31827. }
  31828. },
  31829. wing: {
  31830. height: math.unit(2.67, "feet"),
  31831. name: "Wing",
  31832. image: {
  31833. source: "./media/characters/necrolance/wing.svg"
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Normal",
  31840. height: math.unit(7, "feet"),
  31841. default: true
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31847. {
  31848. front: {
  31849. height: math.unit(76, "meters"),
  31850. weight: math.unit(30000, "tons"),
  31851. name: "Front",
  31852. image: {
  31853. source: "./media/characters/tyler/front.svg",
  31854. extra: 1640/1640,
  31855. bottom: 114/1754
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Macro",
  31862. height: math.unit(76, "meters"),
  31863. default: true
  31864. },
  31865. ]
  31866. ))
  31867. characterMakers.push(() => makeCharacter(
  31868. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31869. {
  31870. front: {
  31871. height: math.unit(4 + 11/12, "feet"),
  31872. weight: math.unit(132, "lb"),
  31873. name: "Front",
  31874. image: {
  31875. source: "./media/characters/icey/front.svg",
  31876. extra: 2750/2550,
  31877. bottom: 33/2783
  31878. }
  31879. },
  31880. back: {
  31881. height: math.unit(4 + 11/12, "feet"),
  31882. weight: math.unit(132, "lb"),
  31883. name: "Back",
  31884. image: {
  31885. source: "./media/characters/icey/back.svg",
  31886. extra: 2624/2481,
  31887. bottom: 35/2659
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(4 + 11/12, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(100, "feet"),
  31904. weight: math.unit(0, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/smile/front.svg",
  31908. extra: 2983/2912,
  31909. bottom: 162/3145
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(100, "feet"),
  31914. weight: math.unit(0, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/smile/back.svg",
  31918. extra: 3143/3031,
  31919. bottom: 91/3234
  31920. }
  31921. },
  31922. head: {
  31923. height: math.unit(26.3, "feet"),
  31924. weight: math.unit(0, "lb"),
  31925. name: "Head",
  31926. image: {
  31927. source: "./media/characters/smile/head.svg"
  31928. }
  31929. },
  31930. collar: {
  31931. height: math.unit(5.3, "feet"),
  31932. weight: math.unit(0, "lb"),
  31933. name: "Collar",
  31934. image: {
  31935. source: "./media/characters/smile/collar.svg"
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Macro",
  31942. height: math.unit(100, "feet"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31949. {
  31950. dragon: {
  31951. height: math.unit(26, "feet"),
  31952. weight: math.unit(36, "tons"),
  31953. name: "Dragon",
  31954. image: {
  31955. source: "./media/characters/arimphae/dragon.svg",
  31956. extra: 1574/983,
  31957. bottom: 357/1931
  31958. }
  31959. },
  31960. drake: {
  31961. height: math.unit(9, "feet"),
  31962. weight: math.unit(1.5, "tons"),
  31963. name: "Drake",
  31964. image: {
  31965. source: "./media/characters/arimphae/drake.svg",
  31966. extra: 1120/925,
  31967. bottom: 435/1555
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Small",
  31974. height: math.unit(26*5/9, "feet")
  31975. },
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(26, "feet"),
  31979. default: true
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(8 + 9/12, "feet"),
  31988. name: "Front",
  31989. image: {
  31990. source: "./media/characters/xander/front.svg",
  31991. extra: 848/673,
  31992. bottom: 62/910
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(8 + 9/12, "feet"),
  32000. default: true
  32001. },
  32002. {
  32003. name: "Gaze Grabber",
  32004. height: math.unit(13 + 8/12, "feet")
  32005. },
  32006. {
  32007. name: "Jaw Dropper",
  32008. height: math.unit(27, "feet")
  32009. },
  32010. {
  32011. name: "Show Stopper",
  32012. height: math.unit(136, "feet")
  32013. },
  32014. {
  32015. name: "Superstar",
  32016. height: math.unit(1.9e6, "miles")
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32022. {
  32023. side: {
  32024. height: math.unit(2100, "feet"),
  32025. name: "Side",
  32026. image: {
  32027. source: "./media/characters/osiris/side.svg",
  32028. extra: 1105/939,
  32029. bottom: 167/1272
  32030. }
  32031. },
  32032. },
  32033. [
  32034. {
  32035. name: "Macro",
  32036. height: math.unit(2100, "feet"),
  32037. default: true
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32043. {
  32044. front: {
  32045. height: math.unit(6 + 8/12, "feet"),
  32046. weight: math.unit(225, "lb"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/rhys-londe/front.svg",
  32050. extra: 2258/2141,
  32051. bottom: 188/2446
  32052. }
  32053. },
  32054. back: {
  32055. height: math.unit(6 + 8/12, "feet"),
  32056. weight: math.unit(225, "lb"),
  32057. name: "Back",
  32058. image: {
  32059. source: "./media/characters/rhys-londe/back.svg",
  32060. extra: 2237/2137,
  32061. bottom: 63/2300
  32062. }
  32063. },
  32064. frontNsfw: {
  32065. height: math.unit(6 + 8/12, "feet"),
  32066. weight: math.unit(225, "lb"),
  32067. name: "Front (NSFW)",
  32068. image: {
  32069. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32070. extra: 2258/2141,
  32071. bottom: 188/2446
  32072. }
  32073. },
  32074. backNsfw: {
  32075. height: math.unit(6 + 8/12, "feet"),
  32076. weight: math.unit(225, "lb"),
  32077. name: "Back (NSFW)",
  32078. image: {
  32079. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32080. extra: 2237/2137,
  32081. bottom: 63/2300
  32082. }
  32083. },
  32084. dick: {
  32085. height: math.unit(30, "inches"),
  32086. name: "Dick",
  32087. image: {
  32088. source: "./media/characters/rhys-londe/dick.svg"
  32089. }
  32090. },
  32091. maw: {
  32092. height: math.unit(1.6, "feet"),
  32093. name: "Maw",
  32094. image: {
  32095. source: "./media/characters/rhys-londe/maw.svg"
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(6 + 8/12, "feet"),
  32103. default: true
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(3 + 10/12, "feet"),
  32112. weight: math.unit(90, "lb"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/taivas-ensim/front.svg",
  32116. extra: 1327/1216,
  32117. bottom: 96/1423
  32118. }
  32119. },
  32120. back: {
  32121. height: math.unit(3 + 10/12, "feet"),
  32122. weight: math.unit(90, "lb"),
  32123. name: "Back",
  32124. image: {
  32125. source: "./media/characters/taivas-ensim/back.svg",
  32126. extra: 1355/1247,
  32127. bottom: 11/1366
  32128. }
  32129. },
  32130. frontNsfw: {
  32131. height: math.unit(3 + 10/12, "feet"),
  32132. weight: math.unit(90, "lb"),
  32133. name: "Front (NSFW)",
  32134. image: {
  32135. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32136. extra: 1327/1216,
  32137. bottom: 96/1423
  32138. }
  32139. },
  32140. backNsfw: {
  32141. height: math.unit(3 + 10/12, "feet"),
  32142. weight: math.unit(90, "lb"),
  32143. name: "Back (NSFW)",
  32144. image: {
  32145. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32146. extra: 1355/1247,
  32147. bottom: 11/1366
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(3 + 10/12, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32161. {
  32162. front: {
  32163. height: math.unit(9 + 6/12, "feet"),
  32164. weight: math.unit(940, "lb"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/byliss/front.svg",
  32168. extra: 1327/1290,
  32169. bottom: 82/1409
  32170. }
  32171. },
  32172. back: {
  32173. height: math.unit(9 + 6/12, "feet"),
  32174. weight: math.unit(940, "lb"),
  32175. name: "Back",
  32176. image: {
  32177. source: "./media/characters/byliss/back.svg",
  32178. extra: 1376/1349,
  32179. bottom: 9/1385
  32180. }
  32181. },
  32182. frontNsfw: {
  32183. height: math.unit(9 + 6/12, "feet"),
  32184. weight: math.unit(940, "lb"),
  32185. name: "Front (NSFW)",
  32186. image: {
  32187. source: "./media/characters/byliss/front-nsfw.svg",
  32188. extra: 1327/1290,
  32189. bottom: 82/1409
  32190. }
  32191. },
  32192. backNsfw: {
  32193. height: math.unit(9 + 6/12, "feet"),
  32194. weight: math.unit(940, "lb"),
  32195. name: "Back (NSFW)",
  32196. image: {
  32197. source: "./media/characters/byliss/back-nsfw.svg",
  32198. extra: 1376/1349,
  32199. bottom: 9/1385
  32200. }
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Normal",
  32206. height: math.unit(9 + 6/12, "feet"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(5 + 2/12, "feet"),
  32216. weight: math.unit(200, "lb"),
  32217. name: "Front",
  32218. image: {
  32219. source: "./media/characters/noraly/front.svg",
  32220. extra: 4985/4773,
  32221. bottom: 150/5135
  32222. }
  32223. },
  32224. full: {
  32225. height: math.unit(5 + 2/12, "feet"),
  32226. weight: math.unit(164, "lb"),
  32227. name: "Full",
  32228. image: {
  32229. source: "./media/characters/noraly/full.svg",
  32230. extra: 1114/1059,
  32231. bottom: 35/1149
  32232. }
  32233. },
  32234. fuller: {
  32235. height: math.unit(5 + 2/12, "feet"),
  32236. weight: math.unit(230, "lb"),
  32237. name: "Fuller",
  32238. image: {
  32239. source: "./media/characters/noraly/fuller.svg",
  32240. extra: 1114/1059,
  32241. bottom: 35/1149
  32242. }
  32243. },
  32244. fullest: {
  32245. height: math.unit(5 + 2/12, "feet"),
  32246. weight: math.unit(300, "lb"),
  32247. name: "Fullest",
  32248. image: {
  32249. source: "./media/characters/noraly/fullest.svg",
  32250. extra: 1114/1059,
  32251. bottom: 35/1149
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(5 + 2/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32265. {
  32266. front: {
  32267. height: math.unit(5 + 2/12, "feet"),
  32268. weight: math.unit(210, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/pera/front.svg",
  32272. extra: 1560/1531,
  32273. bottom: 165/1725
  32274. }
  32275. },
  32276. back: {
  32277. height: math.unit(5 + 2/12, "feet"),
  32278. weight: math.unit(210, "lb"),
  32279. name: "Back",
  32280. image: {
  32281. source: "./media/characters/pera/back.svg",
  32282. extra: 1523/1493,
  32283. bottom: 152/1675
  32284. }
  32285. },
  32286. dick: {
  32287. height: math.unit(2.4, "feet"),
  32288. name: "Dick",
  32289. image: {
  32290. source: "./media/characters/pera/dick.svg"
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(5 + 2/12, "feet"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(12, "feet"),
  32307. weight: math.unit(3200, "lb"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/julian/front.svg",
  32311. extra: 2962/2701,
  32312. bottom: 184/3146
  32313. }
  32314. },
  32315. maw: {
  32316. height: math.unit(5.35, "feet"),
  32317. name: "Maw",
  32318. image: {
  32319. source: "./media/characters/julian/maw.svg"
  32320. }
  32321. },
  32322. paw: {
  32323. height: math.unit(3.07, "feet"),
  32324. name: "Paw",
  32325. image: {
  32326. source: "./media/characters/julian/paw.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Default",
  32333. height: math.unit(12, "feet"),
  32334. default: true
  32335. },
  32336. {
  32337. name: "Big",
  32338. height: math.unit(50, "feet")
  32339. },
  32340. {
  32341. name: "Really Big",
  32342. height: math.unit(1, "mile")
  32343. },
  32344. {
  32345. name: "Extremely Big",
  32346. height: math.unit(100, "miles")
  32347. },
  32348. {
  32349. name: "Planet Hugger",
  32350. height: math.unit(200, "megameters")
  32351. },
  32352. {
  32353. name: "Unreasonably Big",
  32354. height: math.unit(1e300, "meters")
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32360. {
  32361. solgooleo: {
  32362. height: math.unit(4, "meters"),
  32363. weight: math.unit(6000*1.5, "kg"),
  32364. volume: math.unit(6000, "liters"),
  32365. name: "Solgooleo",
  32366. image: {
  32367. source: "./media/characters/pi/solgooleo.svg",
  32368. extra: 388/331,
  32369. bottom: 29/417
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Normal",
  32376. height: math.unit(4, "meters"),
  32377. default: true
  32378. },
  32379. ]
  32380. ))
  32381. characterMakers.push(() => makeCharacter(
  32382. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32383. {
  32384. front: {
  32385. height: math.unit(8 + 2/12, "feet"),
  32386. weight: math.unit(4, "tons"),
  32387. name: "Front",
  32388. image: {
  32389. source: "./media/characters/shaun/front.svg",
  32390. extra: 1550/1505,
  32391. bottom: 353/1903
  32392. }
  32393. },
  32394. },
  32395. [
  32396. {
  32397. name: "Lorg",
  32398. height: math.unit(8 + 2/12, "feet"),
  32399. default: true
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32405. {
  32406. front: {
  32407. height: math.unit(7, "feet"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/sini/front.svg",
  32411. extra: 726/678,
  32412. bottom: 35/761
  32413. }
  32414. },
  32415. back: {
  32416. height: math.unit(7, "feet"),
  32417. name: "Back",
  32418. image: {
  32419. source: "./media/characters/sini/back.svg",
  32420. extra: 743/701,
  32421. bottom: 12/755
  32422. }
  32423. },
  32424. mawAnthro: {
  32425. height: math.unit(2.14, "feet"),
  32426. name: "Maw (Anthro)",
  32427. image: {
  32428. source: "./media/characters/sini/maw-anthro.svg"
  32429. }
  32430. },
  32431. dick: {
  32432. height: math.unit(1.45, "feet"),
  32433. name: "Dick (Anthro)",
  32434. image: {
  32435. source: "./media/characters/sini/dick-anthro.svg"
  32436. }
  32437. },
  32438. feral: {
  32439. height: math.unit(16, "feet"),
  32440. name: "Feral",
  32441. image: {
  32442. source: "./media/characters/sini/feral.svg",
  32443. extra: 814/605,
  32444. bottom: 11/825
  32445. }
  32446. },
  32447. mawFeral: {
  32448. height: math.unit(5.66, "feet"),
  32449. name: "Maw-feral",
  32450. image: {
  32451. source: "./media/characters/sini/maw-feral.svg"
  32452. }
  32453. },
  32454. footFeral: {
  32455. height: math.unit(5.17, "feet"),
  32456. name: "Foot-feral",
  32457. image: {
  32458. source: "./media/characters/sini/foot-feral.svg"
  32459. }
  32460. },
  32461. },
  32462. [
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(7, "feet"),
  32466. default: true
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32472. {
  32473. side: {
  32474. height: math.unit(13, "meters"),
  32475. weight: math.unit(9072, "kg"),
  32476. name: "Side",
  32477. image: {
  32478. source: "./media/characters/raylldo/side.svg",
  32479. extra: 403/344,
  32480. bottom: 42/445
  32481. }
  32482. },
  32483. leaping: {
  32484. height: math.unit(12.3, "meters"),
  32485. weight: math.unit(9072, "kg"),
  32486. name: "Leaping",
  32487. image: {
  32488. source: "./media/characters/raylldo/leaping.svg",
  32489. extra: 470/249,
  32490. bottom: 13/483
  32491. }
  32492. },
  32493. flying: {
  32494. height: math.unit(18, "meters"),
  32495. weight: math.unit(9072, "kg"),
  32496. name: "Flying",
  32497. image: {
  32498. source: "./media/characters/raylldo/flying.svg"
  32499. }
  32500. },
  32501. head: {
  32502. height: math.unit(5.85, "meters"),
  32503. name: "Head",
  32504. image: {
  32505. source: "./media/characters/raylldo/head.svg"
  32506. }
  32507. },
  32508. maw: {
  32509. height: math.unit(5.32, "meters"),
  32510. name: "Maw",
  32511. image: {
  32512. source: "./media/characters/raylldo/maw.svg"
  32513. }
  32514. },
  32515. eye: {
  32516. height: math.unit(0.54, "meters"),
  32517. name: "Eye",
  32518. image: {
  32519. source: "./media/characters/raylldo/eye.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(13, "meters"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32533. {
  32534. anthroFront: {
  32535. height: math.unit(9, "feet"),
  32536. weight: math.unit(600, "lb"),
  32537. name: "Anthro (Front)",
  32538. image: {
  32539. source: "./media/characters/glint/anthro-front.svg",
  32540. extra: 1097/1018,
  32541. bottom: 28/1125
  32542. }
  32543. },
  32544. anthroBack: {
  32545. height: math.unit(9, "feet"),
  32546. weight: math.unit(600, "lb"),
  32547. name: "Anthro (Back)",
  32548. image: {
  32549. source: "./media/characters/glint/anthro-back.svg",
  32550. extra: 1154/997,
  32551. bottom: 36/1190
  32552. }
  32553. },
  32554. feral: {
  32555. height: math.unit(11, "feet"),
  32556. weight: math.unit(50000, "lb"),
  32557. name: "Feral",
  32558. image: {
  32559. source: "./media/characters/glint/feral.svg",
  32560. extra: 3035/1585,
  32561. bottom: 1169/4204
  32562. }
  32563. },
  32564. dickAnthro: {
  32565. height: math.unit(0.7, "meters"),
  32566. name: "Dick (Anthro)",
  32567. image: {
  32568. source: "./media/characters/glint/dick-anthro.svg"
  32569. }
  32570. },
  32571. dickFeral: {
  32572. height: math.unit(2.65, "meters"),
  32573. name: "Dick (Feral)",
  32574. image: {
  32575. source: "./media/characters/glint/dick-feral.svg"
  32576. }
  32577. },
  32578. slitHidden: {
  32579. height: math.unit(5.85, "meters"),
  32580. name: "Slit (Hidden)",
  32581. image: {
  32582. source: "./media/characters/glint/slit-hidden.svg"
  32583. }
  32584. },
  32585. slitErect: {
  32586. height: math.unit(5.85, "meters"),
  32587. name: "Slit (Erect)",
  32588. image: {
  32589. source: "./media/characters/glint/slit-erect.svg"
  32590. }
  32591. },
  32592. mawAnthro: {
  32593. height: math.unit(0.63, "meters"),
  32594. name: "Maw (Anthro)",
  32595. image: {
  32596. source: "./media/characters/glint/maw.svg"
  32597. }
  32598. },
  32599. mawFeral: {
  32600. height: math.unit(2.89, "meters"),
  32601. name: "Maw (Feral)",
  32602. image: {
  32603. source: "./media/characters/glint/maw.svg"
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Normal",
  32610. height: math.unit(9, "feet"),
  32611. default: true
  32612. },
  32613. ]
  32614. ))
  32615. characterMakers.push(() => makeCharacter(
  32616. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32617. {
  32618. side: {
  32619. height: math.unit(15, "feet"),
  32620. weight: math.unit(5000, "kg"),
  32621. name: "Side",
  32622. image: {
  32623. source: "./media/characters/kairne/side.svg",
  32624. extra: 979/811,
  32625. bottom: 13/992
  32626. }
  32627. },
  32628. front: {
  32629. height: math.unit(15, "feet"),
  32630. weight: math.unit(5000, "kg"),
  32631. name: "Front",
  32632. image: {
  32633. source: "./media/characters/kairne/front.svg",
  32634. extra: 908/814,
  32635. bottom: 26/934
  32636. }
  32637. },
  32638. sideNsfw: {
  32639. height: math.unit(15, "feet"),
  32640. weight: math.unit(5000, "kg"),
  32641. name: "Side (NSFW)",
  32642. image: {
  32643. source: "./media/characters/kairne/side-nsfw.svg",
  32644. extra: 979/811,
  32645. bottom: 13/992
  32646. }
  32647. },
  32648. frontNsfw: {
  32649. height: math.unit(15, "feet"),
  32650. weight: math.unit(5000, "kg"),
  32651. name: "Front (NSFW)",
  32652. image: {
  32653. source: "./media/characters/kairne/front-nsfw.svg",
  32654. extra: 908/814,
  32655. bottom: 26/934
  32656. }
  32657. },
  32658. dickCaged: {
  32659. height: math.unit(0.65, "meters"),
  32660. name: "Dick-caged",
  32661. image: {
  32662. source: "./media/characters/kairne/dick-caged.svg"
  32663. }
  32664. },
  32665. dick: {
  32666. height: math.unit(0.79, "meters"),
  32667. name: "Dick",
  32668. image: {
  32669. source: "./media/characters/kairne/dick.svg"
  32670. }
  32671. },
  32672. genitals: {
  32673. height: math.unit(1.29, "meters"),
  32674. name: "Genitals",
  32675. image: {
  32676. source: "./media/characters/kairne/genitals.svg"
  32677. }
  32678. },
  32679. maw: {
  32680. height: math.unit(1.73, "meters"),
  32681. name: "Maw",
  32682. image: {
  32683. source: "./media/characters/kairne/maw.svg"
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(15, "feet"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(5 + 8/12, "feet"),
  32700. weight: math.unit(139, "lb"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/biscuit-jackal/front.svg",
  32704. extra: 2106/1961,
  32705. bottom: 58/2164
  32706. }
  32707. },
  32708. back: {
  32709. height: math.unit(5 + 8/12, "feet"),
  32710. weight: math.unit(139, "lb"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/biscuit-jackal/back.svg",
  32714. extra: 2132/1976,
  32715. bottom: 57/2189
  32716. }
  32717. },
  32718. werejackal: {
  32719. height: math.unit(6 + 3/12, "feet"),
  32720. weight: math.unit(188, "lb"),
  32721. name: "Werejackal",
  32722. image: {
  32723. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32724. extra: 2373/2178,
  32725. bottom: 53/2426
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(5 + 8/12, "feet"),
  32733. default: true
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(140, "cm"),
  32742. weight: math.unit(45, "kg"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/tayra-white/front.svg",
  32746. extra: 2229/2192,
  32747. bottom: 75/2304
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(140, "cm"),
  32755. default: true
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(4 + 5/12, "feet"),
  32764. name: "Front",
  32765. image: {
  32766. source: "./media/characters/scoop/front.svg",
  32767. extra: 1257/1136,
  32768. bottom: 69/1326
  32769. }
  32770. },
  32771. back: {
  32772. height: math.unit(4 + 5/12, "feet"),
  32773. name: "Back",
  32774. image: {
  32775. source: "./media/characters/scoop/back.svg",
  32776. extra: 1321/1152,
  32777. bottom: 32/1353
  32778. }
  32779. },
  32780. maw: {
  32781. height: math.unit(0.68, "feet"),
  32782. name: "Maw",
  32783. image: {
  32784. source: "./media/characters/scoop/maw.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Really Small",
  32791. height: math.unit(1, "mm")
  32792. },
  32793. {
  32794. name: "Micro",
  32795. height: math.unit(1, "inch")
  32796. },
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(4 + 5/12, "feet"),
  32800. default: true
  32801. },
  32802. {
  32803. name: "Macro",
  32804. height: math.unit(200, "feet")
  32805. },
  32806. {
  32807. name: "Megamacro",
  32808. height: math.unit(3240, "feet")
  32809. },
  32810. {
  32811. name: "Teramacro",
  32812. height: math.unit(2500, "miles")
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(15 + 7/12, "feet"),
  32821. name: "Front",
  32822. image: {
  32823. source: "./media/characters/saphinara/front.svg",
  32824. extra: 604/546,
  32825. bottom: 19/623
  32826. }
  32827. },
  32828. side: {
  32829. height: math.unit(15 + 7/12, "feet"),
  32830. name: "Side",
  32831. image: {
  32832. source: "./media/characters/saphinara/side.svg",
  32833. extra: 605/547,
  32834. bottom: 6/611
  32835. }
  32836. },
  32837. back: {
  32838. height: math.unit(15 + 7/12, "feet"),
  32839. name: "Back",
  32840. image: {
  32841. source: "./media/characters/saphinara/back.svg",
  32842. extra: 591/531,
  32843. bottom: 13/604
  32844. }
  32845. },
  32846. frontTail: {
  32847. height: math.unit(15 + 7/12, "feet"),
  32848. name: "Front (Full Tail)",
  32849. image: {
  32850. source: "./media/characters/saphinara/front-tail.svg",
  32851. extra: 748/547,
  32852. bottom: 66/814
  32853. }
  32854. },
  32855. },
  32856. [
  32857. {
  32858. name: "Normal",
  32859. height: math.unit(15 + 7/12, "feet"),
  32860. default: true
  32861. },
  32862. {
  32863. name: "Angry",
  32864. height: math.unit(30 + 6/12, "feet")
  32865. },
  32866. {
  32867. name: "Enraged",
  32868. height: math.unit(102 + 1/12, "feet")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(6 + 8/12, "feet"),
  32877. weight: math.unit(300, "lb"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/jrain/front.svg",
  32881. extra: 3039/2865,
  32882. bottom: 399/3438
  32883. }
  32884. },
  32885. back: {
  32886. height: math.unit(6 + 8/12, "feet"),
  32887. weight: math.unit(300, "lb"),
  32888. name: "Back",
  32889. image: {
  32890. source: "./media/characters/jrain/back.svg",
  32891. extra: 3089/2938,
  32892. bottom: 172/3261
  32893. }
  32894. },
  32895. head: {
  32896. height: math.unit(2.14, "feet"),
  32897. name: "Head",
  32898. image: {
  32899. source: "./media/characters/jrain/head.svg"
  32900. }
  32901. },
  32902. maw: {
  32903. height: math.unit(1.77, "feet"),
  32904. name: "Maw",
  32905. image: {
  32906. source: "./media/characters/jrain/maw.svg"
  32907. }
  32908. },
  32909. leftHand: {
  32910. height: math.unit(1.1, "feet"),
  32911. name: "Left Hand",
  32912. image: {
  32913. source: "./media/characters/jrain/left-hand.svg"
  32914. }
  32915. },
  32916. rightHand: {
  32917. height: math.unit(1.1, "feet"),
  32918. name: "Right Hand",
  32919. image: {
  32920. source: "./media/characters/jrain/right-hand.svg"
  32921. }
  32922. },
  32923. eye: {
  32924. height: math.unit(0.35, "feet"),
  32925. name: "Eye",
  32926. image: {
  32927. source: "./media/characters/jrain/eye.svg"
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(6 + 8/12, "feet"),
  32935. default: true
  32936. },
  32937. {
  32938. name: "Casually Large",
  32939. height: math.unit(25, "feet")
  32940. },
  32941. {
  32942. name: "Giant",
  32943. height: math.unit(100, "feet")
  32944. },
  32945. {
  32946. name: "Kaiju",
  32947. height: math.unit(300, "feet")
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32953. {
  32954. dragon: {
  32955. height: math.unit(5, "meters"),
  32956. name: "Dragon",
  32957. image: {
  32958. source: "./media/characters/sabrina/dragon.svg",
  32959. extra: 3670 / 2365,
  32960. bottom: 333 / 4003
  32961. }
  32962. },
  32963. gryphon: {
  32964. height: math.unit(3, "meters"),
  32965. name: "Gryphon",
  32966. image: {
  32967. source: "./media/characters/sabrina/gryphon.svg",
  32968. extra: 1576 / 945,
  32969. bottom: 71 / 1647
  32970. }
  32971. },
  32972. snake: {
  32973. height: math.unit(12, "meters"),
  32974. name: "Snake",
  32975. image: {
  32976. source: "./media/characters/sabrina/snake.svg",
  32977. extra: 1758 / 1320,
  32978. bottom: 186 / 1944
  32979. }
  32980. },
  32981. collar: {
  32982. height: math.unit(1.86, "meters"),
  32983. name: "Collar",
  32984. image: {
  32985. source: "./media/characters/sabrina/collar.svg"
  32986. }
  32987. },
  32988. eye: {
  32989. height: math.unit(0.53, "meters"),
  32990. name: "Eye",
  32991. image: {
  32992. source: "./media/characters/sabrina/eye.svg"
  32993. }
  32994. },
  32995. foot: {
  32996. height: math.unit(1.86, "meters"),
  32997. name: "Foot",
  32998. image: {
  32999. source: "./media/characters/sabrina/foot.svg"
  33000. }
  33001. },
  33002. hand: {
  33003. height: math.unit(1.32, "meters"),
  33004. name: "Hand",
  33005. image: {
  33006. source: "./media/characters/sabrina/hand.svg"
  33007. }
  33008. },
  33009. head: {
  33010. height: math.unit(2.44, "meters"),
  33011. name: "Head",
  33012. image: {
  33013. source: "./media/characters/sabrina/head.svg"
  33014. }
  33015. },
  33016. headAngry: {
  33017. height: math.unit(2.44, "meters"),
  33018. name: "Head (Angry))",
  33019. image: {
  33020. source: "./media/characters/sabrina/head-angry.svg"
  33021. }
  33022. },
  33023. maw: {
  33024. height: math.unit(1.65, "meters"),
  33025. name: "Maw",
  33026. image: {
  33027. source: "./media/characters/sabrina/maw.svg"
  33028. }
  33029. },
  33030. spikes: {
  33031. height: math.unit(1.69, "meters"),
  33032. name: "Spikes",
  33033. image: {
  33034. source: "./media/characters/sabrina/spikes.svg"
  33035. }
  33036. },
  33037. stomach: {
  33038. height: math.unit(1.15, "meters"),
  33039. name: "Stomach",
  33040. image: {
  33041. source: "./media/characters/sabrina/stomach.svg"
  33042. }
  33043. },
  33044. tongue: {
  33045. height: math.unit(1.27, "meters"),
  33046. name: "Tongue",
  33047. image: {
  33048. source: "./media/characters/sabrina/tongue.svg"
  33049. }
  33050. },
  33051. wingDorsal: {
  33052. height: math.unit(4.85, "meters"),
  33053. name: "Wing (Dorsal)",
  33054. image: {
  33055. source: "./media/characters/sabrina/wing-dorsal.svg"
  33056. }
  33057. },
  33058. wingVentral: {
  33059. height: math.unit(4.85, "meters"),
  33060. name: "Wing (Ventral)",
  33061. image: {
  33062. source: "./media/characters/sabrina/wing-ventral.svg"
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "Normal",
  33069. height: math.unit(5, "meters"),
  33070. default: true
  33071. },
  33072. ]
  33073. ))
  33074. characterMakers.push(() => makeCharacter(
  33075. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33076. {
  33077. frontMaid: {
  33078. height: math.unit(5 + 5/12, "feet"),
  33079. weight: math.unit(130, "lb"),
  33080. name: "Front (Maid)",
  33081. image: {
  33082. source: "./media/characters/midnight-tales/front-maid.svg",
  33083. extra: 489/454,
  33084. bottom: 61/550
  33085. }
  33086. },
  33087. frontFormal: {
  33088. height: math.unit(5 + 5/12, "feet"),
  33089. weight: math.unit(130, "lb"),
  33090. name: "Front (Formal)",
  33091. image: {
  33092. source: "./media/characters/midnight-tales/front-formal.svg",
  33093. extra: 489/454,
  33094. bottom: 61/550
  33095. }
  33096. },
  33097. back: {
  33098. height: math.unit(5 + 5/12, "feet"),
  33099. weight: math.unit(130, "lb"),
  33100. name: "Back",
  33101. image: {
  33102. source: "./media/characters/midnight-tales/back.svg",
  33103. extra: 498/456,
  33104. bottom: 33/531
  33105. }
  33106. },
  33107. frontBeast: {
  33108. height: math.unit(40, "feet"),
  33109. weight: math.unit(64000, "lb"),
  33110. name: "Front (Beast)",
  33111. image: {
  33112. source: "./media/characters/midnight-tales/front-beast.svg",
  33113. extra: 927/860,
  33114. bottom: 53/980
  33115. }
  33116. },
  33117. backBeast: {
  33118. height: math.unit(40, "feet"),
  33119. weight: math.unit(64000, "lb"),
  33120. name: "Back (Beast)",
  33121. image: {
  33122. source: "./media/characters/midnight-tales/back-beast.svg",
  33123. extra: 929/855,
  33124. bottom: 16/945
  33125. }
  33126. },
  33127. footBeast: {
  33128. height: math.unit(6.7, "feet"),
  33129. name: "Foot (Beast)",
  33130. image: {
  33131. source: "./media/characters/midnight-tales/foot-beast.svg"
  33132. }
  33133. },
  33134. headBeast: {
  33135. height: math.unit(8, "feet"),
  33136. name: "Head (Beast)",
  33137. image: {
  33138. source: "./media/characters/midnight-tales/head-beast.svg"
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Normal",
  33145. height: math.unit(5 + 5 / 12, "feet"),
  33146. default: true
  33147. },
  33148. {
  33149. name: "Macro",
  33150. height: math.unit(25, "feet")
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33156. {
  33157. front: {
  33158. height: math.unit(5 + 10/12, "feet"),
  33159. name: "Front",
  33160. image: {
  33161. source: "./media/characters/argon/front.svg",
  33162. extra: 2009/1935,
  33163. bottom: 118/2127
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(5 + 10/12, "feet"),
  33168. name: "Back",
  33169. image: {
  33170. source: "./media/characters/argon/back.svg",
  33171. extra: 2047/1992,
  33172. bottom: 20/2067
  33173. }
  33174. },
  33175. frontDressed: {
  33176. height: math.unit(5 + 10/12, "feet"),
  33177. name: "Front (Dressed)",
  33178. image: {
  33179. source: "./media/characters/argon/front-dressed.svg",
  33180. extra: 2009/1935,
  33181. bottom: 118/2127
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(5 + 10/12, "feet"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33195. {
  33196. front: {
  33197. height: math.unit(8 + 6/12, "feet"),
  33198. weight: math.unit(1150, "lb"),
  33199. name: "Front",
  33200. image: {
  33201. source: "./media/characters/kichi/front.svg",
  33202. extra: 1267/1164,
  33203. bottom: 61/1328
  33204. }
  33205. },
  33206. back: {
  33207. height: math.unit(8 + 6/12, "feet"),
  33208. weight: math.unit(1150, "lb"),
  33209. name: "Back",
  33210. image: {
  33211. source: "./media/characters/kichi/back.svg",
  33212. extra: 1273/1166,
  33213. bottom: 33/1306
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Normal",
  33220. height: math.unit(8 + 6/12, "feet"),
  33221. default: true
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33227. {
  33228. front: {
  33229. height: math.unit(6, "feet"),
  33230. weight: math.unit(210, "lb"),
  33231. name: "Front",
  33232. image: {
  33233. source: "./media/characters/manetel-greyscale/front.svg",
  33234. extra: 350/312,
  33235. bottom: 8/358
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Micro",
  33242. height: math.unit(2, "inches")
  33243. },
  33244. {
  33245. name: "Normal",
  33246. height: math.unit(6, "feet"),
  33247. default: true
  33248. },
  33249. {
  33250. name: "Minimacro",
  33251. height: math.unit(17, "feet")
  33252. },
  33253. {
  33254. name: "Macro",
  33255. height: math.unit(117, "feet")
  33256. },
  33257. ]
  33258. ))
  33259. characterMakers.push(() => makeCharacter(
  33260. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33261. {
  33262. side: {
  33263. height: math.unit(5 + 1/12, "feet"),
  33264. weight: math.unit(418, "lb"),
  33265. name: "Side",
  33266. image: {
  33267. source: "./media/characters/softpurr/side.svg",
  33268. extra: 1993/1945,
  33269. bottom: 134/2127
  33270. }
  33271. },
  33272. front: {
  33273. height: math.unit(5 + 1/12, "feet"),
  33274. weight: math.unit(418, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/softpurr/front.svg",
  33278. extra: 1950/1856,
  33279. bottom: 174/2124
  33280. }
  33281. },
  33282. paw: {
  33283. height: math.unit(1, "feet"),
  33284. name: "Paw",
  33285. image: {
  33286. source: "./media/characters/softpurr/paw.svg"
  33287. }
  33288. },
  33289. },
  33290. [
  33291. {
  33292. name: "Normal",
  33293. height: math.unit(5 + 1/12, "feet"),
  33294. default: true
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33300. {
  33301. front: {
  33302. height: math.unit(260, "meters"),
  33303. name: "Front",
  33304. image: {
  33305. source: "./media/characters/anahita/front.svg",
  33306. extra: 665/635,
  33307. bottom: 89/754
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Macro",
  33314. height: math.unit(260, "meters"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(4 + 10/12, "feet"),
  33324. weight: math.unit(160, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/chip-mouse/front.svg",
  33328. extra: 3528/3408,
  33329. bottom: 0/3528
  33330. }
  33331. },
  33332. frontNsfw: {
  33333. height: math.unit(4 + 10/12, "feet"),
  33334. weight: math.unit(160, "lb"),
  33335. name: "Front (NSFW)",
  33336. image: {
  33337. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33338. extra: 3528/3408,
  33339. bottom: 0/3528
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(4 + 10/12, "feet"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33353. {
  33354. side: {
  33355. height: math.unit(10, "feet"),
  33356. weight: math.unit(14000, "lb"),
  33357. name: "Side",
  33358. image: {
  33359. source: "./media/characters/kremm/side.svg",
  33360. extra: 1390/1053,
  33361. bottom: 90/1480
  33362. }
  33363. },
  33364. gut: {
  33365. height: math.unit(5.8, "feet"),
  33366. name: "Gut",
  33367. image: {
  33368. source: "./media/characters/kremm/gut.svg"
  33369. }
  33370. },
  33371. ass: {
  33372. height: math.unit(6.1, "feet"),
  33373. name: "Ass",
  33374. image: {
  33375. source: "./media/characters/kremm/ass.svg"
  33376. }
  33377. },
  33378. jaws: {
  33379. height: math.unit(2.2, "feet"),
  33380. name: "Jaws",
  33381. image: {
  33382. source: "./media/characters/kremm/jaws.svg"
  33383. }
  33384. },
  33385. dick: {
  33386. height: math.unit(4.26, "feet"),
  33387. name: "Dick",
  33388. image: {
  33389. source: "./media/characters/kremm/dick.svg"
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(10, "feet"),
  33397. default: true
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33403. {
  33404. front: {
  33405. height: math.unit(30, "stories"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/kai/front.svg",
  33409. extra: 1892/1718,
  33410. bottom: 162/2054
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Macro",
  33417. height: math.unit(30, "stories"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(6 + 4/12, "feet"),
  33427. weight: math.unit(145, "lb"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/sykes/front.svg",
  33431. extra: 1321 / 1187,
  33432. bottom: 66 / 1387
  33433. }
  33434. },
  33435. back: {
  33436. height: math.unit(6 + 4/12, "feet"),
  33437. weight: math.unit(145, "lb"),
  33438. name: "Back",
  33439. image: {
  33440. source: "./media/characters/sykes/back.svg",
  33441. extra: 1326/1181,
  33442. bottom: 31/1357
  33443. }
  33444. },
  33445. handBack: {
  33446. height: math.unit(0.9, "feet"),
  33447. name: "Hand (Back)",
  33448. image: {
  33449. source: "./media/characters/sykes/hand-back.svg"
  33450. }
  33451. },
  33452. handFront: {
  33453. height: math.unit(0.839, "feet"),
  33454. name: "Hand (Front)",
  33455. image: {
  33456. source: "./media/characters/sykes/hand-front.svg"
  33457. }
  33458. },
  33459. leftFoot: {
  33460. height: math.unit(1.2, "feet"),
  33461. name: "Foot (Left)",
  33462. image: {
  33463. source: "./media/characters/sykes/foot-left.svg"
  33464. }
  33465. },
  33466. rightFoot: {
  33467. height: math.unit(1.2, "feet"),
  33468. name: "Foot (Right)",
  33469. image: {
  33470. source: "./media/characters/sykes/foot-right.svg"
  33471. }
  33472. },
  33473. maw: {
  33474. height: math.unit(1.93, "feet"),
  33475. name: "Maw",
  33476. image: {
  33477. source: "./media/characters/sykes/maw.svg"
  33478. }
  33479. },
  33480. teeth: {
  33481. height: math.unit(0.51, "feet"),
  33482. name: "Teeth",
  33483. image: {
  33484. source: "./media/characters/sykes/teeth.svg"
  33485. }
  33486. },
  33487. tongue: {
  33488. height: math.unit(2.13, "feet"),
  33489. name: "Tongue",
  33490. image: {
  33491. source: "./media/characters/sykes/tongue.svg"
  33492. }
  33493. },
  33494. uvula: {
  33495. height: math.unit(0.16, "feet"),
  33496. name: "Uvula",
  33497. image: {
  33498. source: "./media/characters/sykes/uvula.svg"
  33499. }
  33500. },
  33501. collar: {
  33502. height: math.unit(0.287, "feet"),
  33503. name: "Collar",
  33504. image: {
  33505. source: "./media/characters/sykes/collar.svg"
  33506. }
  33507. },
  33508. },
  33509. [
  33510. {
  33511. name: "Shrunken",
  33512. height: math.unit(5, "inches")
  33513. },
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(6 + 4 / 12, "feet"),
  33517. default: true
  33518. },
  33519. {
  33520. name: "Big",
  33521. height: math.unit(15, "feet")
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33527. {
  33528. front: {
  33529. height: math.unit(5 + 8/12, "feet"),
  33530. weight: math.unit(190, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/oven-otter/front.svg",
  33534. extra: 1809/1740,
  33535. bottom: 181/1990
  33536. }
  33537. },
  33538. back: {
  33539. height: math.unit(5 + 8/12, "feet"),
  33540. weight: math.unit(190, "lb"),
  33541. name: "Back",
  33542. image: {
  33543. source: "./media/characters/oven-otter/back.svg",
  33544. extra: 1709/1635,
  33545. bottom: 118/1827
  33546. }
  33547. },
  33548. hand: {
  33549. height: math.unit(1.07, "feet"),
  33550. name: "Hand",
  33551. image: {
  33552. source: "./media/characters/oven-otter/hand.svg"
  33553. }
  33554. },
  33555. beans: {
  33556. height: math.unit(1.74, "feet"),
  33557. name: "Beans",
  33558. image: {
  33559. source: "./media/characters/oven-otter/beans.svg"
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Micro",
  33566. height: math.unit(0.5, "inches")
  33567. },
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(5 + 8/12, "feet"),
  33571. default: true
  33572. },
  33573. {
  33574. name: "Macro",
  33575. height: math.unit(250, "feet")
  33576. },
  33577. {
  33578. name: "Really High",
  33579. height: math.unit(420, "feet")
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(5, "meters"),
  33588. weight: math.unit(292000000000000, "kg"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/devourer/front.svg",
  33592. extra: 1800/1733,
  33593. bottom: 211/2011
  33594. }
  33595. },
  33596. maw: {
  33597. height: math.unit(1.1, "meter"),
  33598. name: "Maw",
  33599. image: {
  33600. source: "./media/characters/devourer/maw.svg"
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Small",
  33607. height: math.unit(3, "meters")
  33608. },
  33609. {
  33610. name: "Large",
  33611. height: math.unit(5, "meters"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33618. {
  33619. front: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(400, "lb"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/ellarby/front.svg",
  33625. extra: 1909/1763,
  33626. bottom: 80/1989
  33627. }
  33628. },
  33629. back: {
  33630. height: math.unit(6, "feet"),
  33631. weight: math.unit(400, "lb"),
  33632. name: "Back",
  33633. image: {
  33634. source: "./media/characters/ellarby/back.svg",
  33635. extra: 1914/1784,
  33636. bottom: 172/2086
  33637. }
  33638. },
  33639. },
  33640. [
  33641. {
  33642. name: "Mischief",
  33643. height: math.unit(18, "inches")
  33644. },
  33645. {
  33646. name: "Trouble",
  33647. height: math.unit(12, "feet")
  33648. },
  33649. {
  33650. name: "Havoc",
  33651. height: math.unit(200, "feet"),
  33652. default: true
  33653. },
  33654. {
  33655. name: "Pandemonium",
  33656. height: math.unit(1, "mile")
  33657. },
  33658. {
  33659. name: "Catastrophe",
  33660. height: math.unit(100, "miles")
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33666. {
  33667. front: {
  33668. height: math.unit(4.7, "meters"),
  33669. weight: math.unit(6500, "kg"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/vex/front.svg",
  33673. extra: 1288/1140,
  33674. bottom: 100/1388
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(4.7, "meters"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33688. {
  33689. normal: {
  33690. height: math.unit(6, "feet"),
  33691. weight: math.unit(350, "lb"),
  33692. name: "Normal",
  33693. image: {
  33694. source: "./media/characters/teshy/normal.svg",
  33695. extra: 1795/1735,
  33696. bottom: 16/1811
  33697. }
  33698. },
  33699. monsterFront: {
  33700. height: math.unit(12, "feet"),
  33701. weight: math.unit(4700, "lb"),
  33702. name: "Monster (Front)",
  33703. image: {
  33704. source: "./media/characters/teshy/monster-front.svg",
  33705. extra: 2042/2034,
  33706. bottom: 128/2170
  33707. }
  33708. },
  33709. monsterSide: {
  33710. height: math.unit(12, "feet"),
  33711. weight: math.unit(4700, "lb"),
  33712. name: "Monster (Side)",
  33713. image: {
  33714. source: "./media/characters/teshy/monster-side.svg",
  33715. extra: 2067/2056,
  33716. bottom: 70/2137
  33717. }
  33718. },
  33719. monsterBack: {
  33720. height: math.unit(12, "feet"),
  33721. weight: math.unit(4700, "lb"),
  33722. name: "Monster (Back)",
  33723. image: {
  33724. source: "./media/characters/teshy/monster-back.svg",
  33725. extra: 1921/1914,
  33726. bottom: 171/2092
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(6, "feet"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(6, "feet"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/ramey/front.svg",
  33746. extra: 790/787,
  33747. bottom: 27/817
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(6, "feet"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(5 + 5/12, "feet"),
  33764. weight: math.unit(120, "lb"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/phirae/front.svg",
  33768. extra: 2491/2436,
  33769. bottom: 38/2529
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(5 + 5/12, "feet"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(6, "feet"),
  33786. weight: math.unit(150, "lb"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/stagglas/front.svg",
  33790. extra: 962/882,
  33791. bottom: 53/1015
  33792. }
  33793. },
  33794. },
  33795. [
  33796. {
  33797. name: "Normal",
  33798. height: math.unit(5 + 3/12, "feet"),
  33799. default: true
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33805. {
  33806. front: {
  33807. height: math.unit(5 + 4/12, "feet"),
  33808. weight: math.unit(145, "lb"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/starra/front.svg",
  33812. extra: 1790/1691,
  33813. bottom: 91/1881
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(5 + 4/12, "feet"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(2.2, "meters"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33833. extra: 1194/1005,
  33834. bottom: 25/1219
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(2.2, "meters"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33848. {
  33849. side: {
  33850. height: math.unit(8 + 2/12, "feet"),
  33851. weight: math.unit(1240, "lb"),
  33852. name: "Side",
  33853. image: {
  33854. source: "./media/characters/mika-valentine/side.svg",
  33855. extra: 2670/2501,
  33856. bottom: 250/2920
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(8 + 2/12, "feet"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(7 + 2/12, "feet"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/xoltol/front.svg",
  33876. extra: 2212/2124,
  33877. bottom: 84/2296
  33878. }
  33879. },
  33880. side: {
  33881. height: math.unit(7 + 2/12, "feet"),
  33882. name: "Side",
  33883. image: {
  33884. source: "./media/characters/xoltol/side.svg",
  33885. extra: 2273/2197,
  33886. bottom: 26/2299
  33887. }
  33888. },
  33889. hand: {
  33890. height: math.unit(2.5, "feet"),
  33891. name: "Hand",
  33892. image: {
  33893. source: "./media/characters/xoltol/hand.svg"
  33894. }
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Small-ish",
  33900. height: math.unit(5 + 11/12, "feet")
  33901. },
  33902. {
  33903. name: "Normal",
  33904. height: math.unit(7 + 2/12, "feet")
  33905. },
  33906. {
  33907. name: "\"Macro\"",
  33908. height: math.unit(14 + 9/12, "feet"),
  33909. default: true
  33910. },
  33911. {
  33912. name: "Alternate Height",
  33913. height: math.unit(20, "feet")
  33914. },
  33915. {
  33916. name: "Actually Macro",
  33917. height: math.unit(100, "feet")
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(5 + 2/12, "feet"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/kotetsu-redwood/front.svg",
  33929. extra: 1053/942,
  33930. bottom: 60/1113
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(5 + 2/12, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(2.4, "meters"),
  33947. weight: math.unit(125, "kg"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/lilith/front.svg",
  33951. extra: 1590/1513,
  33952. bottom: 203/1793
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Humanoid",
  33959. height: math.unit(2.4, "meters")
  33960. },
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(6, "meters"),
  33964. default: true
  33965. },
  33966. {
  33967. name: "Largest",
  33968. height: math.unit(55, "meters")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(8 + 4/12, "feet"),
  33977. weight: math.unit(535, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/beh'kah-bolger/front.svg",
  33981. extra: 1660/1603,
  33982. bottom: 37/1697
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(8 + 4/12, "feet"),
  33990. default: true
  33991. },
  33992. {
  33993. name: "Kaiju",
  33994. height: math.unit(250, "feet")
  33995. },
  33996. {
  33997. name: "Still Growing",
  33998. height: math.unit(10, "miles")
  33999. },
  34000. {
  34001. name: "Continental",
  34002. height: math.unit(5000, "miles")
  34003. },
  34004. {
  34005. name: "Final Form",
  34006. height: math.unit(2500000, "miles")
  34007. },
  34008. ]
  34009. ))
  34010. characterMakers.push(() => makeCharacter(
  34011. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34012. {
  34013. front: {
  34014. height: math.unit(7 + 2/12, "feet"),
  34015. weight: math.unit(230, "kg"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/tatyana-milewska/front.svg",
  34019. extra: 1199/1150,
  34020. bottom: 86/1285
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(7 + 2/12, "feet"),
  34028. default: true
  34029. },
  34030. {
  34031. name: "Big",
  34032. height: math.unit(12, "feet")
  34033. },
  34034. {
  34035. name: "Minimacro",
  34036. height: math.unit(20, "feet")
  34037. },
  34038. {
  34039. name: "Macro",
  34040. height: math.unit(120, "feet")
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(7 + 8/12, "feet"),
  34049. weight: math.unit(152, "kg"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/helen-arri/front.svg",
  34053. extra: 440/423,
  34054. bottom: 14/454
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(7 + 8/12, "feet"),
  34059. weight: math.unit(152, "kg"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/helen-arri/back.svg",
  34063. extra: 443/426,
  34064. bottom: 8/451
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(7 + 8/12, "feet"),
  34072. default: true
  34073. },
  34074. {
  34075. name: "Big",
  34076. height: math.unit(14, "feet")
  34077. },
  34078. {
  34079. name: "Minimacro",
  34080. height: math.unit(24, "feet")
  34081. },
  34082. {
  34083. name: "Macro",
  34084. height: math.unit(140, "feet")
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34090. {
  34091. front: {
  34092. height: math.unit(6, "meters"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/ehanu-rehu/front.svg",
  34096. extra: 1800/1800,
  34097. bottom: 59/1859
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(6, "meters"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(7 + 3/12, "feet"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/renholder/front.svg",
  34117. extra: 3096/2960,
  34118. bottom: 250/3346
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal Bat",
  34125. height: math.unit(7 + 3/12, "feet"),
  34126. default: true
  34127. },
  34128. {
  34129. name: "Slightly Tall Bat",
  34130. height: math.unit(100, "feet")
  34131. },
  34132. {
  34133. name: "Big Bat",
  34134. height: math.unit(1000, "feet")
  34135. },
  34136. {
  34137. name: "City-Sized Bat",
  34138. height: math.unit(200000, "feet")
  34139. },
  34140. {
  34141. name: "Bigger Bat",
  34142. height: math.unit(10000, "miles")
  34143. },
  34144. {
  34145. name: "Solar Sized Bat",
  34146. height: math.unit(100, "AU")
  34147. },
  34148. {
  34149. name: "Galactic Bat",
  34150. height: math.unit(200000, "lightyears")
  34151. },
  34152. {
  34153. name: "Universally Known Bat",
  34154. height: math.unit(1, "universe")
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(6 + 11/12, "feet"),
  34163. weight: math.unit(250, "lb"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/cookiecat/front.svg",
  34167. extra: 893/827,
  34168. bottom: 14/907
  34169. }
  34170. },
  34171. },
  34172. [
  34173. {
  34174. name: "Micro",
  34175. height: math.unit(3, "inches")
  34176. },
  34177. {
  34178. name: "Normal",
  34179. height: math.unit(6 + 11/12, "feet"),
  34180. default: true
  34181. },
  34182. {
  34183. name: "Macro",
  34184. height: math.unit(100, "feet")
  34185. },
  34186. {
  34187. name: "Macro+",
  34188. height: math.unit(404, "feet")
  34189. },
  34190. {
  34191. name: "Megamacro",
  34192. height: math.unit(165, "miles")
  34193. },
  34194. {
  34195. name: "Planetary",
  34196. height: math.unit(4600, "miles")
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34202. {
  34203. front: {
  34204. height: math.unit(10 + 3/12, "feet"),
  34205. weight: math.unit(1500, "lb"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/tux-kusanagi/front.svg",
  34209. extra: 944/840,
  34210. bottom: 39/983
  34211. }
  34212. },
  34213. back: {
  34214. height: math.unit(10 + 3/12, "feet"),
  34215. weight: math.unit(1500, "lb"),
  34216. name: "Back",
  34217. image: {
  34218. source: "./media/characters/tux-kusanagi/back.svg",
  34219. extra: 941/842,
  34220. bottom: 28/969
  34221. }
  34222. },
  34223. rump: {
  34224. height: math.unit(5.25, "feet"),
  34225. name: "Rump",
  34226. image: {
  34227. source: "./media/characters/tux-kusanagi/rump.svg"
  34228. }
  34229. },
  34230. beak: {
  34231. height: math.unit(1.54, "feet"),
  34232. name: "Beak",
  34233. image: {
  34234. source: "./media/characters/tux-kusanagi/beak.svg"
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(10 + 3/12, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34248. {
  34249. front: {
  34250. height: math.unit(58, "feet"),
  34251. weight: math.unit(200, "tons"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/uzarmazari/front.svg",
  34255. extra: 1575/1455,
  34256. bottom: 152/1727
  34257. }
  34258. },
  34259. back: {
  34260. height: math.unit(58, "feet"),
  34261. weight: math.unit(200, "tons"),
  34262. name: "Back",
  34263. image: {
  34264. source: "./media/characters/uzarmazari/back.svg",
  34265. extra: 1585/1510,
  34266. bottom: 157/1742
  34267. }
  34268. },
  34269. head: {
  34270. height: math.unit(26, "feet"),
  34271. name: "Head",
  34272. image: {
  34273. source: "./media/characters/uzarmazari/head.svg"
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(58, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34287. {
  34288. side: {
  34289. height: math.unit(15, "feet"),
  34290. name: "Side",
  34291. image: {
  34292. source: "./media/characters/akitu/side.svg",
  34293. extra: 1421/1321,
  34294. bottom: 157/1578
  34295. }
  34296. },
  34297. front: {
  34298. height: math.unit(15, "feet"),
  34299. name: "Front",
  34300. image: {
  34301. source: "./media/characters/akitu/front.svg",
  34302. extra: 1435/1326,
  34303. bottom: 232/1667
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(15, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(10 + 8/12, "feet"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/azalie-croixland/front.svg",
  34323. extra: 1972/1856,
  34324. bottom: 31/2003
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Original Height",
  34331. height: math.unit(5 + 4/12, "feet")
  34332. },
  34333. {
  34334. name: "Normal Height",
  34335. height: math.unit(10 + 8/12, "feet"),
  34336. default: true
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34342. {
  34343. side: {
  34344. height: math.unit(7 + 1/12, "feet"),
  34345. weight: math.unit(245, "lb"),
  34346. name: "Side",
  34347. image: {
  34348. source: "./media/characters/kavus-kazian/side.svg",
  34349. extra: 349/342,
  34350. bottom: 15/364
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(7 + 1/12, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34364. {
  34365. normal: {
  34366. height: math.unit(5 + 11/12, "feet"),
  34367. name: "Normal",
  34368. image: {
  34369. source: "./media/characters/moonlight-rose/normal.svg",
  34370. extra: 1979/1835,
  34371. bottom: 14/1993
  34372. }
  34373. },
  34374. demon: {
  34375. height: math.unit(5, "km"),
  34376. name: "Demon",
  34377. image: {
  34378. source: "./media/characters/moonlight-rose/demon.svg",
  34379. extra: 986/916,
  34380. bottom: 28/1014
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "\"Natural\" height",
  34387. height: math.unit(5 + 11/12, "feet")
  34388. },
  34389. {
  34390. name: "Comfortable Size",
  34391. height: math.unit(40, "meters")
  34392. },
  34393. {
  34394. name: "Common Size",
  34395. height: math.unit(50, "km"),
  34396. default: true
  34397. },
  34398. {
  34399. name: "Demonic",
  34400. height: math.unit(1.24415e+21, "meters")
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(16, "feet"),
  34409. weight: math.unit(610, "kg"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/huckle/front.svg",
  34413. extra: 1731/1625,
  34414. bottom: 33/1764
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(16, "feet"),
  34419. weight: math.unit(610, "kg"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/huckle/back.svg",
  34423. extra: 1738/1651,
  34424. bottom: 37/1775
  34425. }
  34426. },
  34427. laughing: {
  34428. height: math.unit(3.75, "feet"),
  34429. name: "Laughing",
  34430. image: {
  34431. source: "./media/characters/huckle/laughing.svg"
  34432. }
  34433. },
  34434. angry: {
  34435. height: math.unit(4.15, "feet"),
  34436. name: "Angry",
  34437. image: {
  34438. source: "./media/characters/huckle/angry.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(16, "feet"),
  34446. default: true
  34447. },
  34448. {
  34449. name: "Mini Macro",
  34450. height: math.unit(463, "feet")
  34451. },
  34452. {
  34453. name: "Macro",
  34454. height: math.unit(1680, "meters")
  34455. },
  34456. {
  34457. name: "Mega Macro",
  34458. height: math.unit(175, "km")
  34459. },
  34460. {
  34461. name: "Terra Macro",
  34462. height: math.unit(32, "gigameters")
  34463. },
  34464. {
  34465. name: "Multiverse+",
  34466. height: math.unit(2.56e23, "yottameters")
  34467. },
  34468. ]
  34469. ))
  34470. characterMakers.push(() => makeCharacter(
  34471. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34472. {
  34473. front: {
  34474. height: math.unit(6 + 9/12, "feet"),
  34475. weight: math.unit(280, "lb"),
  34476. name: "Front",
  34477. image: {
  34478. source: "./media/characters/candy/front.svg",
  34479. extra: 234/217,
  34480. bottom: 11/245
  34481. }
  34482. },
  34483. },
  34484. [
  34485. {
  34486. name: "Really Small",
  34487. height: math.unit(0.1, "nm")
  34488. },
  34489. {
  34490. name: "Micro",
  34491. height: math.unit(2, "inches")
  34492. },
  34493. {
  34494. name: "Normal",
  34495. height: math.unit(6 + 9/12, "feet"),
  34496. default: true
  34497. },
  34498. {
  34499. name: "Small Macro",
  34500. height: math.unit(69, "feet")
  34501. },
  34502. {
  34503. name: "Macro",
  34504. height: math.unit(160, "feet")
  34505. },
  34506. {
  34507. name: "Megamacro",
  34508. height: math.unit(22000, "miles")
  34509. },
  34510. {
  34511. name: "Gigamacro",
  34512. height: math.unit(50000, "miles")
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(4, "feet"),
  34521. weight: math.unit(90, "lb"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/joey-mcdonald/front.svg",
  34525. extra: 1059/852,
  34526. bottom: 33/1092
  34527. }
  34528. },
  34529. back: {
  34530. height: math.unit(4, "feet"),
  34531. weight: math.unit(90, "lb"),
  34532. name: "Back",
  34533. image: {
  34534. source: "./media/characters/joey-mcdonald/back.svg",
  34535. extra: 1077/879,
  34536. bottom: 5/1082
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(4, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(12 + 6/12, "feet"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/kass-lockheed/front.svg",
  34556. extra: 354/343,
  34557. bottom: 9/363
  34558. }
  34559. },
  34560. back: {
  34561. height: math.unit(12 + 6/12, "feet"),
  34562. name: "Back",
  34563. image: {
  34564. source: "./media/characters/kass-lockheed/back.svg",
  34565. extra: 364/352,
  34566. bottom: 3/367
  34567. }
  34568. },
  34569. dick: {
  34570. height: math.unit(3.12, "feet"),
  34571. name: "Dick",
  34572. image: {
  34573. source: "./media/characters/kass-lockheed/dick.svg"
  34574. }
  34575. },
  34576. head: {
  34577. height: math.unit(2.6, "feet"),
  34578. name: "Head",
  34579. image: {
  34580. source: "./media/characters/kass-lockheed/head.svg"
  34581. }
  34582. },
  34583. bleh: {
  34584. height: math.unit(2.85, "feet"),
  34585. name: "Bleh",
  34586. image: {
  34587. source: "./media/characters/kass-lockheed/bleh.svg"
  34588. }
  34589. },
  34590. smug: {
  34591. height: math.unit(2.85, "feet"),
  34592. name: "Smug",
  34593. image: {
  34594. source: "./media/characters/kass-lockheed/smug.svg"
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(12 + 6/12, "feet"),
  34602. default: true
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34608. {
  34609. front: {
  34610. height: math.unit(6 + 2/12, "feet"),
  34611. name: "Front",
  34612. image: {
  34613. source: "./media/characters/taylor/front.svg",
  34614. extra: 639/495,
  34615. bottom: 12/651
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(6 + 2/12, "feet"),
  34623. default: true
  34624. },
  34625. {
  34626. name: "Big",
  34627. height: math.unit(15, "feet")
  34628. },
  34629. {
  34630. name: "Lorg",
  34631. height: math.unit(80, "feet")
  34632. },
  34633. {
  34634. name: "Too Lorg",
  34635. height: math.unit(120, "feet")
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34641. {
  34642. front: {
  34643. height: math.unit(15, "feet"),
  34644. name: "Front",
  34645. image: {
  34646. source: "./media/characters/kaizer/front.svg",
  34647. extra: 1612/1436,
  34648. bottom: 43/1655
  34649. }
  34650. },
  34651. },
  34652. [
  34653. {
  34654. name: "Normal",
  34655. height: math.unit(15, "feet"),
  34656. default: true
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34662. {
  34663. front: {
  34664. height: math.unit(2, "feet"),
  34665. weight: math.unit(30, "lb"),
  34666. name: "Front",
  34667. image: {
  34668. source: "./media/characters/sandy/front.svg",
  34669. extra: 1439/1307,
  34670. bottom: 194/1633
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(2, "feet"),
  34678. default: true
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34684. {
  34685. front: {
  34686. height: math.unit(3, "feet"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/mellvi/front.svg",
  34690. extra: 1831/1630,
  34691. bottom: 58/1889
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(3, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(5 + 11/12, "feet"),
  34708. weight: math.unit(200, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/shirou/front.svg",
  34712. extra: 2491/2383,
  34713. bottom: 189/2680
  34714. }
  34715. },
  34716. back: {
  34717. height: math.unit(5 + 11/12, "feet"),
  34718. weight: math.unit(200, "lb"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/shirou/back.svg",
  34722. extra: 2554/2450,
  34723. bottom: 76/2630
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Normal",
  34730. height: math.unit(5 + 11/12, "feet"),
  34731. default: true
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34737. {
  34738. front: {
  34739. height: math.unit(6 + 3/12, "feet"),
  34740. weight: math.unit(177, "lb"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/noryu/front.svg",
  34744. extra: 973/885,
  34745. bottom: 10/983
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(6 + 3/12, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(5 + 6/12, "feet"),
  34762. weight: math.unit(170, "lb"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/mevolas-rubenido/front.svg",
  34766. extra: 2109/1901,
  34767. bottom: 96/2205
  34768. }
  34769. },
  34770. },
  34771. [
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(5 + 6/12, "feet"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34781. {
  34782. front: {
  34783. height: math.unit(100, "feet"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/dee/front.svg",
  34787. extra: 2153/2036,
  34788. bottom: 59/2212
  34789. }
  34790. },
  34791. back: {
  34792. height: math.unit(100, "feet"),
  34793. name: "Back",
  34794. image: {
  34795. source: "./media/characters/dee/back.svg",
  34796. extra: 2183/2058,
  34797. bottom: 75/2258
  34798. }
  34799. },
  34800. foot: {
  34801. height: math.unit(19.43, "feet"),
  34802. name: "Foot",
  34803. image: {
  34804. source: "./media/characters/dee/foot.svg"
  34805. }
  34806. },
  34807. hoof: {
  34808. height: math.unit(20.6, "feet"),
  34809. name: "Hoof",
  34810. image: {
  34811. source: "./media/characters/dee/hoof.svg"
  34812. }
  34813. },
  34814. },
  34815. [
  34816. {
  34817. name: "Macro",
  34818. height: math.unit(100, "feet"),
  34819. default: true
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(5 + 6/12, "feet"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/teh/front.svg",
  34831. extra: 1002/847,
  34832. bottom: 62/1064
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Normal",
  34839. height: math.unit(5 + 6/12, "feet"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34846. {
  34847. side: {
  34848. height: math.unit(6 + 1/12, "feet"),
  34849. weight: math.unit(204, "lb"),
  34850. name: "Side",
  34851. image: {
  34852. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34853. extra: 974/775,
  34854. bottom: 169/1143
  34855. }
  34856. },
  34857. sitting: {
  34858. height: math.unit(6 + 2/12, "feet"),
  34859. weight: math.unit(204, "lb"),
  34860. name: "Sitting",
  34861. image: {
  34862. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34863. extra: 1175/964,
  34864. bottom: 378/1553
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Normal",
  34871. height: math.unit(6 + 1/12, "feet"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34878. {
  34879. front: {
  34880. height: math.unit(6, "inches"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/tululi/front.svg",
  34884. extra: 1997/1876,
  34885. bottom: 20/2017
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(6, "inches"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(4 + 1/12, "feet"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/star/front.svg",
  34905. extra: 1493/1189,
  34906. bottom: 48/1541
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(4 + 1/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(6 + 3/12, "feet"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/comet/front.svg",
  34926. extra: 1681/1462,
  34927. bottom: 26/1707
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(6 + 3/12, "feet"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(950, "feet"),
  34944. name: "Front",
  34945. image: {
  34946. source: "./media/characters/vortex/front.svg",
  34947. extra: 1497/1434,
  34948. bottom: 56/1553
  34949. }
  34950. },
  34951. maw: {
  34952. height: math.unit(285, "feet"),
  34953. name: "Maw",
  34954. image: {
  34955. source: "./media/characters/vortex/maw.svg"
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Macro",
  34962. height: math.unit(950, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(600, "feet"),
  34972. weight: math.unit(0.02, "grams"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/doodle/front.svg",
  34976. extra: 1578/1413,
  34977. bottom: 37/1615
  34978. }
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Macro",
  34984. height: math.unit(600, "feet"),
  34985. default: true
  34986. },
  34987. ]
  34988. ))
  34989. characterMakers.push(() => makeCharacter(
  34990. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34991. {
  34992. front: {
  34993. height: math.unit(6 + 6/12, "feet"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/jai/front.svg",
  34997. extra: 1645/1534,
  34998. bottom: 115/1760
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(6 + 6/12, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35012. {
  35013. front: {
  35014. height: math.unit(6 + 8/12, "feet"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/pixel/front.svg",
  35018. extra: 1900/1735,
  35019. bottom: 63/1963
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(6 + 8/12, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(4 + 11/12, "feet"),
  35036. weight: math.unit(111, "lb"),
  35037. name: "Front",
  35038. image: {
  35039. source: "./media/characters/rhett/front.svg",
  35040. extra: 1682/1586,
  35041. bottom: 92/1774
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Mini",
  35048. height: math.unit(1 + 1/12, "feet")
  35049. },
  35050. {
  35051. name: "Normal",
  35052. height: math.unit(4 + 11/12, "feet"),
  35053. default: true
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35059. {
  35060. front: {
  35061. height: math.unit(3 + 3/12, "feet"),
  35062. name: "Front",
  35063. image: {
  35064. source: "./media/characters/penny/front.svg",
  35065. extra: 1406/1311,
  35066. bottom: 26/1432
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(3 + 3/12, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(4 + 11/12, "feet"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/monty/front.svg",
  35086. extra: 1479/1209,
  35087. bottom: 0/1479
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(4 + 11/12, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(8 + 4/12, "feet"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/sterling/front.svg",
  35107. extra: 1420/1236,
  35108. bottom: 27/1447
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(8 + 4/12, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(15, "feet"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/marble/front.svg",
  35128. extra: 973/937,
  35129. bottom: 32/1005
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(15, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35143. {
  35144. front: {
  35145. height: math.unit(3, "inches"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/powder/front.svg",
  35149. extra: 1504/1334,
  35150. bottom: 518/2022
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(3, "inches"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(4 + 5/12, "feet"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/joey-raccoon/front.svg",
  35170. extra: 1273/1197,
  35171. bottom: 0/1273
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(4 + 5/12, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(8 + 4/12, "feet"),
  35188. name: "Front",
  35189. image: {
  35190. source: "./media/characters/vick/front.svg",
  35191. extra: 2187/2118,
  35192. bottom: 47/2234
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(8 + 4/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(5 + 5/12, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/mitsy/front.svg",
  35212. extra: 1842/1695,
  35213. bottom: 0/1842
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(5 + 5/12, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(6 + 3/12, "feet"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/silvy/front.svg",
  35233. extra: 1995/1836,
  35234. bottom: 225/2220
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(6 + 3/12, "feet"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(3 + 8/12, "feet"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/rodney/front.svg",
  35254. extra: 1956/1747,
  35255. bottom: 31/1987
  35256. }
  35257. },
  35258. frontDressed: {
  35259. height: math.unit(2.9, "feet"),
  35260. name: "Front (Dressed)",
  35261. image: {
  35262. source: "./media/characters/rodney/front-dressed.svg",
  35263. extra: 1382/1241,
  35264. bottom: 385/1767
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(3 + 8/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(5 + 9/12, "feet"),
  35281. weight: math.unit(194, "lbs"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/zakail-sudekai/front.svg",
  35285. extra: 2696/2533,
  35286. bottom: 248/2944
  35287. }
  35288. },
  35289. maw: {
  35290. height: math.unit(1.35, "feet"),
  35291. name: "Maw",
  35292. image: {
  35293. source: "./media/characters/zakail-sudekai/maw.svg"
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(5 + 9/12, "feet"),
  35301. default: true
  35302. },
  35303. ]
  35304. ))
  35305. characterMakers.push(() => makeCharacter(
  35306. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35307. {
  35308. front: {
  35309. height: math.unit(8 + 4/12, "feet"),
  35310. weight: math.unit(1200, "lb"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/eleanor/front.svg",
  35314. extra: 1226/1192,
  35315. bottom: 52/1278
  35316. }
  35317. },
  35318. back: {
  35319. height: math.unit(8 + 4/12, "feet"),
  35320. weight: math.unit(1200, "lb"),
  35321. name: "Back",
  35322. image: {
  35323. source: "./media/characters/eleanor/back.svg",
  35324. extra: 1242/1184,
  35325. bottom: 60/1302
  35326. }
  35327. },
  35328. head: {
  35329. height: math.unit(2.62, "feet"),
  35330. name: "Head",
  35331. image: {
  35332. source: "./media/characters/eleanor/head.svg"
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(8 + 4/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(8 + 4/12, "feet"),
  35349. weight: math.unit(750, "lb"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/tanya/front.svg",
  35353. extra: 1749/1615,
  35354. bottom: 33/1782
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Normal",
  35361. height: math.unit(8 + 4/12, "feet"),
  35362. default: true
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35368. {
  35369. front: {
  35370. height: math.unit(5, "feet"),
  35371. weight: math.unit(225, "lb"),
  35372. name: "Front",
  35373. image: {
  35374. source: "./media/characters/cindy/front.svg",
  35375. extra: 1320/1250,
  35376. bottom: 42/1362
  35377. }
  35378. },
  35379. frontDressed: {
  35380. height: math.unit(5, "feet"),
  35381. weight: math.unit(225, "lb"),
  35382. name: "Front (Dressed)",
  35383. image: {
  35384. source: "./media/characters/cindy/front-dressed.svg",
  35385. extra: 1320/1250,
  35386. bottom: 42/1362
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(5, "feet"),
  35391. weight: math.unit(225, "lb"),
  35392. name: "Back",
  35393. image: {
  35394. source: "./media/characters/cindy/back.svg",
  35395. extra: 1384/1346,
  35396. bottom: 14/1398
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(5, "feet"),
  35404. default: true
  35405. },
  35406. ]
  35407. ))
  35408. characterMakers.push(() => makeCharacter(
  35409. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35410. {
  35411. front: {
  35412. height: math.unit(6 + 9/12, "feet"),
  35413. weight: math.unit(440, "lb"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/wilbur-owen/front.svg",
  35417. extra: 1575/1448,
  35418. bottom: 72/1647
  35419. }
  35420. },
  35421. back: {
  35422. height: math.unit(6 + 9/12, "feet"),
  35423. weight: math.unit(440, "lb"),
  35424. name: "Back",
  35425. image: {
  35426. source: "./media/characters/wilbur-owen/back.svg",
  35427. extra: 1578/1445,
  35428. bottom: 36/1614
  35429. }
  35430. },
  35431. },
  35432. [
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(6 + 9/12, "feet"),
  35436. default: true
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(6 + 5/12, "feet"),
  35445. weight: math.unit(650, "lb"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/keegan/front.svg",
  35449. extra: 2387/2198,
  35450. bottom: 33/2420
  35451. }
  35452. },
  35453. side: {
  35454. height: math.unit(6 + 5/12, "feet"),
  35455. weight: math.unit(650, "lb"),
  35456. name: "Side",
  35457. image: {
  35458. source: "./media/characters/keegan/side.svg",
  35459. extra: 2390/2202,
  35460. bottom: 47/2437
  35461. }
  35462. },
  35463. back: {
  35464. height: math.unit(6 + 5/12, "feet"),
  35465. weight: math.unit(650, "lb"),
  35466. name: "Back",
  35467. image: {
  35468. source: "./media/characters/keegan/back.svg",
  35469. extra: 2418/2268,
  35470. bottom: 15/2433
  35471. }
  35472. },
  35473. frontSfw: {
  35474. height: math.unit(6 + 5/12, "feet"),
  35475. weight: math.unit(650, "lb"),
  35476. name: "Front (SFW)",
  35477. image: {
  35478. source: "./media/characters/keegan/front-sfw.svg",
  35479. extra: 2387/2198,
  35480. bottom: 33/2420
  35481. }
  35482. },
  35483. beans: {
  35484. height: math.unit(1.85, "feet"),
  35485. name: "Beans",
  35486. image: {
  35487. source: "./media/characters/keegan/beans.svg"
  35488. }
  35489. },
  35490. },
  35491. [
  35492. {
  35493. name: "Normal",
  35494. height: math.unit(6 + 5/12, "feet"),
  35495. default: true
  35496. },
  35497. ]
  35498. ))
  35499. characterMakers.push(() => makeCharacter(
  35500. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35501. {
  35502. front: {
  35503. height: math.unit(9, "feet"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/colton/front.svg",
  35507. extra: 1589/1326,
  35508. bottom: 139/1728
  35509. }
  35510. },
  35511. },
  35512. [
  35513. {
  35514. name: "Normal",
  35515. height: math.unit(9, "feet"),
  35516. default: true
  35517. },
  35518. ]
  35519. ))
  35520. characterMakers.push(() => makeCharacter(
  35521. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35522. {
  35523. front: {
  35524. height: math.unit(2 + 9/12, "feet"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/bora/front.svg",
  35528. extra: 1265/1250,
  35529. bottom: 24/1289
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(2 + 9/12, "feet"),
  35537. default: true
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35543. {
  35544. front: {
  35545. height: math.unit(8, "feet"),
  35546. name: "Front",
  35547. image: {
  35548. source: "./media/characters/myu-myu/front.svg",
  35549. extra: 1949/1857,
  35550. bottom: 90/2039
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(8, "feet"),
  35558. default: true
  35559. },
  35560. {
  35561. name: "Big",
  35562. height: math.unit(15, "feet")
  35563. },
  35564. {
  35565. name: "BIG",
  35566. height: math.unit(25, "feet")
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35572. {
  35573. side: {
  35574. height: math.unit(7 + 5/12, "feet"),
  35575. weight: math.unit(2800, "lb"),
  35576. name: "Side",
  35577. image: {
  35578. source: "./media/characters/haloren/side.svg",
  35579. extra: 1793/409,
  35580. bottom: 59/1852
  35581. }
  35582. },
  35583. frontPaw: {
  35584. height: math.unit(2.36, "feet"),
  35585. name: "Front paw",
  35586. image: {
  35587. source: "./media/characters/haloren/front-paw.svg"
  35588. }
  35589. },
  35590. hindPaw: {
  35591. height: math.unit(3.18, "feet"),
  35592. name: "Hind paw",
  35593. image: {
  35594. source: "./media/characters/haloren/hind-paw.svg"
  35595. }
  35596. },
  35597. maw: {
  35598. height: math.unit(5.05, "feet"),
  35599. name: "Maw",
  35600. image: {
  35601. source: "./media/characters/haloren/maw.svg"
  35602. }
  35603. },
  35604. dick: {
  35605. height: math.unit(2.90, "feet"),
  35606. name: "Dick",
  35607. image: {
  35608. source: "./media/characters/haloren/dick.svg"
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(7 + 5/12, "feet"),
  35616. default: true
  35617. },
  35618. {
  35619. name: "Enhanced",
  35620. height: math.unit(14 + 3/12, "feet")
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(171, "cm"),
  35629. name: "Front",
  35630. image: {
  35631. source: "./media/characters/kimmy/front.svg",
  35632. extra: 1491/1435,
  35633. bottom: 53/1544
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Small",
  35640. height: math.unit(9, "cm")
  35641. },
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(171, "cm"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35651. {
  35652. front: {
  35653. height: math.unit(8, "feet"),
  35654. weight: math.unit(300, "lb"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/galeboomer/front.svg",
  35658. extra: 4651/4415,
  35659. bottom: 162/4813
  35660. }
  35661. },
  35662. back: {
  35663. height: math.unit(8, "feet"),
  35664. weight: math.unit(300, "lb"),
  35665. name: "Back",
  35666. image: {
  35667. source: "./media/characters/galeboomer/back.svg",
  35668. extra: 4544/4314,
  35669. bottom: 16/4560
  35670. }
  35671. },
  35672. frontAlt: {
  35673. height: math.unit(8, "feet"),
  35674. weight: math.unit(300, "lb"),
  35675. name: "Front (Alt)",
  35676. image: {
  35677. source: "./media/characters/galeboomer/front-alt.svg",
  35678. extra: 4458/4228,
  35679. bottom: 68/4526
  35680. }
  35681. },
  35682. maw: {
  35683. height: math.unit(1.2, "feet"),
  35684. name: "Maw",
  35685. image: {
  35686. source: "./media/characters/galeboomer/maw.svg"
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(8, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(5 + 9/12, "feet"),
  35703. weight: math.unit(120, "lb"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/chyr/front.svg",
  35707. extra: 1323/1254,
  35708. bottom: 63/1386
  35709. }
  35710. },
  35711. back: {
  35712. height: math.unit(5 + 9/12, "feet"),
  35713. weight: math.unit(120, "lb"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/chyr/back.svg",
  35717. extra: 1323/1252,
  35718. bottom: 48/1371
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(5 + 9/12, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(7, "feet"),
  35735. weight: math.unit(310, "lb"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/solarus/front.svg",
  35739. extra: 2415/2021,
  35740. bottom: 103/2518
  35741. }
  35742. },
  35743. back: {
  35744. height: math.unit(7, "feet"),
  35745. weight: math.unit(310, "lb"),
  35746. name: "Back",
  35747. image: {
  35748. source: "./media/characters/solarus/back.svg",
  35749. extra: 2463/2089,
  35750. bottom: 79/2542
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(7, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(16, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35770. extra: 1844/1780,
  35771. bottom: 58/1902
  35772. }
  35773. },
  35774. winterCoat: {
  35775. height: math.unit(16, "feet"),
  35776. name: "Winter Coat",
  35777. image: {
  35778. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35779. extra: 1807/1775,
  35780. bottom: 69/1876
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(16, "feet"),
  35788. default: true
  35789. },
  35790. {
  35791. name: "Chicago Size",
  35792. height: math.unit(560, "feet")
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(11 + 6/12, "feet"),
  35801. weight: math.unit(1366, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/lexor/front.svg",
  35805. extra: 1560/1481,
  35806. bottom: 211/1771
  35807. }
  35808. },
  35809. back: {
  35810. height: math.unit(11 + 6/12, "feet"),
  35811. weight: math.unit(1366, "lb"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/lexor/back.svg",
  35815. extra: 1614/1533,
  35816. bottom: 76/1690
  35817. }
  35818. },
  35819. maw: {
  35820. height: math.unit(3, "feet"),
  35821. name: "Maw",
  35822. image: {
  35823. source: "./media/characters/lexor/maw.svg"
  35824. }
  35825. },
  35826. dick: {
  35827. height: math.unit(2.59, "feet"),
  35828. name: "Dick",
  35829. image: {
  35830. source: "./media/characters/lexor/dick.svg"
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Normal",
  35837. height: math.unit(11 + 6/12, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35844. {
  35845. front: {
  35846. height: math.unit(5 + 8/12, "feet"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/magnum/front.svg",
  35850. extra: 942/855,
  35851. bottom: 26/968
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(5 + 8/12, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35865. {
  35866. front: {
  35867. height: math.unit(18 + 4/12, "feet"),
  35868. weight: math.unit(1500, "kg"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/solas-sharpsman/front.svg",
  35872. extra: 1698/1589,
  35873. bottom: 0/1698
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(18 + 4/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(5 + 5/12, "feet"),
  35890. weight: math.unit(180, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/october/front.svg",
  35894. extra: 1800/1650,
  35895. bottom: 0/1800
  35896. }
  35897. },
  35898. frontNsfw: {
  35899. height: math.unit(5 + 5/12, "feet"),
  35900. weight: math.unit(180, "lb"),
  35901. name: "Front (NSFW)",
  35902. image: {
  35903. source: "./media/characters/october/front-nsfw.svg",
  35904. extra: 1392/1307,
  35905. bottom: 42/1434
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(5 + 5/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(8 + 6/12, "feet"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/essynkardi/front.svg",
  35925. extra: 1914/1846,
  35926. bottom: 22/1936
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(8 + 6/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(6 + 6/12, "feet"),
  35943. weight: math.unit(7, "lb"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/icky/front.svg",
  35947. extra: 813/782,
  35948. bottom: 66/879
  35949. }
  35950. },
  35951. back: {
  35952. height: math.unit(6 + 6/12, "feet"),
  35953. weight: math.unit(7, "lb"),
  35954. name: "Back",
  35955. image: {
  35956. source: "./media/characters/icky/back.svg",
  35957. extra: 754/735,
  35958. bottom: 56/810
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(6 + 6/12, "feet"),
  35966. default: true
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35972. {
  35973. front: {
  35974. height: math.unit(15, "feet"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/rojas/front.svg",
  35978. extra: 1462/1408,
  35979. bottom: 95/1557
  35980. }
  35981. },
  35982. back: {
  35983. height: math.unit(15, "feet"),
  35984. name: "Back",
  35985. image: {
  35986. source: "./media/characters/rojas/back.svg",
  35987. extra: 1023/954,
  35988. bottom: 28/1051
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(15, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36002. {
  36003. frontHuman: {
  36004. height: math.unit(5 + 7/12, "feet"),
  36005. name: "Front (Human)",
  36006. image: {
  36007. source: "./media/characters/alek-dryagan/front-human.svg",
  36008. extra: 1687/1667,
  36009. bottom: 69/1756
  36010. }
  36011. },
  36012. backHuman: {
  36013. height: math.unit(5 + 7/12, "feet"),
  36014. name: "Back (Human)",
  36015. image: {
  36016. source: "./media/characters/alek-dryagan/back-human.svg",
  36017. extra: 1670/1649,
  36018. bottom: 65/1735
  36019. }
  36020. },
  36021. frontDemi: {
  36022. height: math.unit(65, "feet"),
  36023. name: "Front (Demi)",
  36024. image: {
  36025. source: "./media/characters/alek-dryagan/front-demi.svg",
  36026. extra: 1669/1642,
  36027. bottom: 49/1718
  36028. }
  36029. },
  36030. backDemi: {
  36031. height: math.unit(65, "feet"),
  36032. name: "Back (Demi)",
  36033. image: {
  36034. source: "./media/characters/alek-dryagan/back-demi.svg",
  36035. extra: 1658/1637,
  36036. bottom: 40/1698
  36037. }
  36038. },
  36039. mawHuman: {
  36040. height: math.unit(0.3, "feet"),
  36041. name: "Maw (Human)",
  36042. image: {
  36043. source: "./media/characters/alek-dryagan/maw-human.svg"
  36044. }
  36045. },
  36046. mawDemi: {
  36047. height: math.unit(3.8, "feet"),
  36048. name: "Maw (Demi)",
  36049. image: {
  36050. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(5 + 7/12, "feet"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36064. {
  36065. frontHuman: {
  36066. height: math.unit(5 + 2/12, "feet"),
  36067. name: "Front (Human)",
  36068. image: {
  36069. source: "./media/characters/gen/front-human.svg",
  36070. extra: 1627/1538,
  36071. bottom: 71/1698
  36072. }
  36073. },
  36074. backHuman: {
  36075. height: math.unit(5 + 2/12, "feet"),
  36076. name: "Back (Human)",
  36077. image: {
  36078. source: "./media/characters/gen/back-human.svg",
  36079. extra: 1638/1548,
  36080. bottom: 69/1707
  36081. }
  36082. },
  36083. frontDemi: {
  36084. height: math.unit(5 + 2/12, "feet"),
  36085. name: "Front (Demi)",
  36086. image: {
  36087. source: "./media/characters/gen/front-demi.svg",
  36088. extra: 1627/1538,
  36089. bottom: 71/1698
  36090. }
  36091. },
  36092. backDemi: {
  36093. height: math.unit(5 + 2/12, "feet"),
  36094. name: "Back (Demi)",
  36095. image: {
  36096. source: "./media/characters/gen/back-demi.svg",
  36097. extra: 1638/1548,
  36098. bottom: 69/1707
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(5 + 2/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36112. {
  36113. frontImp: {
  36114. height: math.unit(1 + 11/12, "feet"),
  36115. name: "Front (Imp)",
  36116. image: {
  36117. source: "./media/characters/max-kobold/front-imp.svg",
  36118. extra: 1238/1134,
  36119. bottom: 81/1319
  36120. }
  36121. },
  36122. backImp: {
  36123. height: math.unit(1 + 11/12, "feet"),
  36124. name: "Back (Imp)",
  36125. image: {
  36126. source: "./media/characters/max-kobold/back-imp.svg",
  36127. extra: 1334/1175,
  36128. bottom: 34/1368
  36129. }
  36130. },
  36131. frontDemi: {
  36132. height: math.unit(5 + 9/12, "feet"),
  36133. name: "Front (Demi)",
  36134. image: {
  36135. source: "./media/characters/max-kobold/front-demi.svg",
  36136. extra: 1715/1685,
  36137. bottom: 54/1769
  36138. }
  36139. },
  36140. backDemi: {
  36141. height: math.unit(5 + 9/12, "feet"),
  36142. name: "Back (Demi)",
  36143. image: {
  36144. source: "./media/characters/max-kobold/back-demi.svg",
  36145. extra: 1752/1729,
  36146. bottom: 41/1793
  36147. }
  36148. },
  36149. handImp: {
  36150. height: math.unit(0.45, "feet"),
  36151. name: "Hand (Imp)",
  36152. image: {
  36153. source: "./media/characters/max-kobold/hand.svg"
  36154. }
  36155. },
  36156. pawImp: {
  36157. height: math.unit(0.46, "feet"),
  36158. name: "Paw (Imp)",
  36159. image: {
  36160. source: "./media/characters/max-kobold/paw.svg"
  36161. }
  36162. },
  36163. handDemi: {
  36164. height: math.unit(0.80, "feet"),
  36165. name: "Hand (Demi)",
  36166. image: {
  36167. source: "./media/characters/max-kobold/hand.svg"
  36168. }
  36169. },
  36170. pawDemi: {
  36171. height: math.unit(1.1, "feet"),
  36172. name: "Paw (Demi)",
  36173. image: {
  36174. source: "./media/characters/max-kobold/paw.svg"
  36175. }
  36176. },
  36177. headImp: {
  36178. height: math.unit(1.33, "feet"),
  36179. name: "Head (Imp)",
  36180. image: {
  36181. source: "./media/characters/max-kobold/head-imp.svg"
  36182. }
  36183. },
  36184. mawImp: {
  36185. height: math.unit(0.75, "feet"),
  36186. name: "Maw (Imp)",
  36187. image: {
  36188. source: "./media/characters/max-kobold/maw-imp.svg"
  36189. }
  36190. },
  36191. mawDemi: {
  36192. height: math.unit(0.42, "feet"),
  36193. name: "Maw (Demi)",
  36194. image: {
  36195. source: "./media/characters/max-kobold/maw-demi.svg"
  36196. }
  36197. },
  36198. },
  36199. [
  36200. {
  36201. name: "Normal",
  36202. height: math.unit(1 + 11/12, "feet"),
  36203. default: true
  36204. },
  36205. ]
  36206. ))
  36207. characterMakers.push(() => makeCharacter(
  36208. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36209. {
  36210. front: {
  36211. height: math.unit(7 + 5/12, "feet"),
  36212. name: "Front",
  36213. image: {
  36214. source: "./media/characters/carbon/front.svg",
  36215. extra: 1754/1689,
  36216. bottom: 65/1819
  36217. }
  36218. },
  36219. back: {
  36220. height: math.unit(7 + 5/12, "feet"),
  36221. name: "Back",
  36222. image: {
  36223. source: "./media/characters/carbon/back.svg",
  36224. extra: 1762/1695,
  36225. bottom: 24/1786
  36226. }
  36227. },
  36228. frontGigantamax: {
  36229. height: math.unit(150, "feet"),
  36230. name: "Front (Gigantamax)",
  36231. image: {
  36232. source: "./media/characters/carbon/front-gigantamax.svg",
  36233. extra: 1826/1669,
  36234. bottom: 59/1885
  36235. }
  36236. },
  36237. backGigantamax: {
  36238. height: math.unit(150, "feet"),
  36239. name: "Back (Gigantamax)",
  36240. image: {
  36241. source: "./media/characters/carbon/back-gigantamax.svg",
  36242. extra: 1796/1653,
  36243. bottom: 53/1849
  36244. }
  36245. },
  36246. maw: {
  36247. height: math.unit(0.48, "feet"),
  36248. name: "Maw",
  36249. image: {
  36250. source: "./media/characters/carbon/maw.svg"
  36251. }
  36252. },
  36253. mawGigantamax: {
  36254. height: math.unit(7.5, "feet"),
  36255. name: "Maw (Gigantamax)",
  36256. image: {
  36257. source: "./media/characters/carbon/maw-gigantamax.svg"
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(7 + 5/12, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36271. {
  36272. front: {
  36273. height: math.unit(6, "feet"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/maverick/front.svg",
  36277. extra: 1672/1661,
  36278. bottom: 85/1757
  36279. }
  36280. },
  36281. back: {
  36282. height: math.unit(6, "feet"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/maverick/back.svg",
  36286. extra: 1642/1631,
  36287. bottom: 38/1680
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(6, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(15, "feet"),
  36304. weight: math.unit(615, "lb"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/grockle/front.svg",
  36308. extra: 1535/1427,
  36309. bottom: 56/1591
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(15, "feet"),
  36317. default: true
  36318. },
  36319. {
  36320. name: "Large",
  36321. height: math.unit(150, "feet")
  36322. },
  36323. {
  36324. name: "Macro",
  36325. height: math.unit(1876, "feet")
  36326. },
  36327. {
  36328. name: "Mega Macro",
  36329. height: math.unit(121940, "feet")
  36330. },
  36331. {
  36332. name: "Giga Macro",
  36333. height: math.unit(750, "km")
  36334. },
  36335. {
  36336. name: "Tera Macro",
  36337. height: math.unit(750000, "km")
  36338. },
  36339. {
  36340. name: "Galactic",
  36341. height: math.unit(1.4e5, "km")
  36342. },
  36343. {
  36344. name: "Godlike",
  36345. height: math.unit(9.8e280, "galaxies")
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(11, "meters"),
  36354. weight: math.unit(20, "tonnes"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/alistair/front.svg",
  36358. extra: 1265/1009,
  36359. bottom: 93/1358
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal",
  36366. height: math.unit(11, "meters"),
  36367. default: true
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(5 + 8/12, "feet"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/haruka/front.svg",
  36379. extra: 2012/1952,
  36380. bottom: 0/2012
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(5 + 8/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36394. {
  36395. back: {
  36396. height: math.unit(9, "feet"),
  36397. name: "Back",
  36398. image: {
  36399. source: "./media/characters/vivian-sylveon/back.svg",
  36400. extra: 1853/1714,
  36401. bottom: 0/1853
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(9, "feet"),
  36409. default: true
  36410. },
  36411. {
  36412. name: "Macro",
  36413. height: math.unit(500, "feet")
  36414. },
  36415. {
  36416. name: "Megamacro",
  36417. height: math.unit(600, "miles")
  36418. },
  36419. {
  36420. name: "Gigamacro",
  36421. height: math.unit(30000, "miles")
  36422. },
  36423. ]
  36424. ))
  36425. characterMakers.push(() => makeCharacter(
  36426. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36427. {
  36428. anthro: {
  36429. height: math.unit(5 + 10/12, "feet"),
  36430. weight: math.unit(100, "lb"),
  36431. name: "Anthro",
  36432. image: {
  36433. source: "./media/characters/daiki/anthro.svg",
  36434. extra: 1115/1027,
  36435. bottom: 69/1184
  36436. }
  36437. },
  36438. feral: {
  36439. height: math.unit(200, "feet"),
  36440. name: "Feral",
  36441. image: {
  36442. source: "./media/characters/daiki/feral.svg",
  36443. extra: 1256/313,
  36444. bottom: 39/1295
  36445. }
  36446. },
  36447. feralHead: {
  36448. height: math.unit(171, "feet"),
  36449. name: "Feral Head",
  36450. image: {
  36451. source: "./media/characters/daiki/feral-head.svg"
  36452. }
  36453. },
  36454. manaDragon: {
  36455. height: math.unit(170, "meters"),
  36456. name: "Mana-dragon",
  36457. image: {
  36458. source: "./media/characters/daiki/mana-dragon.svg",
  36459. extra: 763/420,
  36460. bottom: 97/860
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(5 + 10/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36474. {
  36475. fullyEquippedFront: {
  36476. height: math.unit(3 + 1/12, "feet"),
  36477. weight: math.unit(24, "lb"),
  36478. name: "Fully Equipped (Front)",
  36479. image: {
  36480. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36481. extra: 687/605,
  36482. bottom: 18/705
  36483. }
  36484. },
  36485. fullyEquippedBack: {
  36486. height: math.unit(3 + 1/12, "feet"),
  36487. weight: math.unit(24, "lb"),
  36488. name: "Fully Equipped (Back)",
  36489. image: {
  36490. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36491. extra: 689/590,
  36492. bottom: 18/707
  36493. }
  36494. },
  36495. dailyWear: {
  36496. height: math.unit(3 + 1/12, "feet"),
  36497. weight: math.unit(24, "lb"),
  36498. name: "Daily Wear",
  36499. image: {
  36500. source: "./media/characters/tea-spot/daily-wear.svg",
  36501. extra: 701/620,
  36502. bottom: 21/722
  36503. }
  36504. },
  36505. maidWork: {
  36506. height: math.unit(3 + 1/12, "feet"),
  36507. weight: math.unit(24, "lb"),
  36508. name: "Maid Work",
  36509. image: {
  36510. source: "./media/characters/tea-spot/maid-work.svg",
  36511. extra: 693/609,
  36512. bottom: 15/708
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(3 + 1/12, "feet"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36526. {
  36527. front: {
  36528. height: math.unit(175, "cm"),
  36529. weight: math.unit(75, "kg"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/chee/front.svg",
  36533. extra: 1796/1740,
  36534. bottom: 40/1836
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Micro-Micro",
  36541. height: math.unit(1, "nm")
  36542. },
  36543. {
  36544. name: "Micro-erst",
  36545. height: math.unit(1, "micrometer")
  36546. },
  36547. {
  36548. name: "Micro-er",
  36549. height: math.unit(1, "cm")
  36550. },
  36551. {
  36552. name: "Normal",
  36553. height: math.unit(175, "cm"),
  36554. default: true
  36555. },
  36556. {
  36557. name: "Macro",
  36558. height: math.unit(100, "m")
  36559. },
  36560. {
  36561. name: "Macro-er",
  36562. height: math.unit(1, "km")
  36563. },
  36564. {
  36565. name: "Macro-erst",
  36566. height: math.unit(10, "km")
  36567. },
  36568. {
  36569. name: "Macro-Macro",
  36570. height: math.unit(100, "km")
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(11 + 9/12, "feet"),
  36579. weight: math.unit(935, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/kingsley/front.svg",
  36583. extra: 1803/1674,
  36584. bottom: 127/1930
  36585. }
  36586. },
  36587. frontNude: {
  36588. height: math.unit(11 + 9/12, "feet"),
  36589. weight: math.unit(935, "lb"),
  36590. name: "Front (Nude)",
  36591. image: {
  36592. source: "./media/characters/kingsley/front-nude.svg",
  36593. extra: 1803/1674,
  36594. bottom: 127/1930
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(11 + 9/12, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36608. {
  36609. side: {
  36610. height: math.unit(9, "feet"),
  36611. name: "Side",
  36612. image: {
  36613. source: "./media/characters/rymel/side.svg",
  36614. extra: 792/469,
  36615. bottom: 121/913
  36616. }
  36617. },
  36618. maw: {
  36619. height: math.unit(2.4, "meters"),
  36620. name: "Maw",
  36621. image: {
  36622. source: "./media/characters/rymel/maw.svg"
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "House Drake",
  36629. height: math.unit(2, "feet")
  36630. },
  36631. {
  36632. name: "Reduced",
  36633. height: math.unit(4.5, "feet")
  36634. },
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(9, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(1.74, "meters"),
  36647. weight: math.unit(55, "kg"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/rubus/front.svg",
  36651. extra: 1894/1742,
  36652. bottom: 44/1938
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(1.74, "meters"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(5 + 2/12, "feet"),
  36669. weight: math.unit(112, "lb"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/cassie-kingston/front.svg",
  36673. extra: 1438/1390,
  36674. bottom: 47/1485
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(5 + 2/12, "feet"),
  36682. default: true
  36683. },
  36684. {
  36685. name: "Macro",
  36686. height: math.unit(128, "feet")
  36687. },
  36688. {
  36689. name: "Megamacro",
  36690. height: math.unit(2.56, "miles")
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(7, "feet"),
  36699. name: "Front",
  36700. image: {
  36701. source: "./media/characters/fox/front.svg",
  36702. extra: 1798/1703,
  36703. bottom: 55/1853
  36704. }
  36705. },
  36706. back: {
  36707. height: math.unit(7, "feet"),
  36708. name: "Back",
  36709. image: {
  36710. source: "./media/characters/fox/back.svg",
  36711. extra: 1748/1649,
  36712. bottom: 32/1780
  36713. }
  36714. },
  36715. head: {
  36716. height: math.unit(1.95, "feet"),
  36717. name: "Head",
  36718. image: {
  36719. source: "./media/characters/fox/head.svg"
  36720. }
  36721. },
  36722. dick: {
  36723. height: math.unit(1.33, "feet"),
  36724. name: "Dick",
  36725. image: {
  36726. source: "./media/characters/fox/dick.svg"
  36727. }
  36728. },
  36729. foot: {
  36730. height: math.unit(1, "feet"),
  36731. name: "Foot",
  36732. image: {
  36733. source: "./media/characters/fox/foot.svg"
  36734. }
  36735. },
  36736. paw: {
  36737. height: math.unit(0.92, "feet"),
  36738. name: "Paw",
  36739. image: {
  36740. source: "./media/characters/fox/paw.svg"
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Small",
  36747. height: math.unit(3, "inches")
  36748. },
  36749. {
  36750. name: "\"Realistic\"",
  36751. height: math.unit(7, "feet")
  36752. },
  36753. {
  36754. name: "Normal",
  36755. height: math.unit(150, "feet"),
  36756. default: true
  36757. },
  36758. {
  36759. name: "BIG",
  36760. height: math.unit(1200, "feet")
  36761. },
  36762. {
  36763. name: "👀",
  36764. height: math.unit(5, "miles")
  36765. },
  36766. {
  36767. name: "👀👀👀",
  36768. height: math.unit(64, "miles")
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(625, "feet"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/asonja-rossa/front.svg",
  36780. extra: 1833/1686,
  36781. bottom: 24/1857
  36782. }
  36783. },
  36784. back: {
  36785. height: math.unit(625, "feet"),
  36786. name: "Back",
  36787. image: {
  36788. source: "./media/characters/asonja-rossa/back.svg",
  36789. extra: 1852/1753,
  36790. bottom: 26/1878
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Macro",
  36797. height: math.unit(625, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36804. {
  36805. side: {
  36806. height: math.unit(6, "feet"),
  36807. weight: math.unit(150, "lb"),
  36808. name: "Side",
  36809. image: {
  36810. source: "./media/characters/rezukii/side.svg",
  36811. extra: 979/542,
  36812. bottom: 87/1066
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Tiny",
  36819. height: math.unit(2, "feet")
  36820. },
  36821. {
  36822. name: "Smol",
  36823. height: math.unit(4, "feet")
  36824. },
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(8, "feet"),
  36828. default: true
  36829. },
  36830. {
  36831. name: "Big",
  36832. height: math.unit(12, "feet")
  36833. },
  36834. {
  36835. name: "Macro",
  36836. height: math.unit(30, "feet")
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(14, "feet"),
  36845. weight: math.unit(9.5, "tonnes"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/dawnheart/front.svg",
  36849. extra: 2792/2675,
  36850. bottom: 64/2856
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(14, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36864. {
  36865. front: {
  36866. height: math.unit(1.7, "m"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/gladi/front.svg",
  36870. extra: 1460/1362,
  36871. bottom: 19/1479
  36872. }
  36873. },
  36874. back: {
  36875. height: math.unit(1.7, "m"),
  36876. name: "Back",
  36877. image: {
  36878. source: "./media/characters/gladi/back.svg",
  36879. extra: 1459/1357,
  36880. bottom: 12/1471
  36881. }
  36882. },
  36883. feral: {
  36884. height: math.unit(2.05, "m"),
  36885. name: "Feral",
  36886. image: {
  36887. source: "./media/characters/gladi/feral.svg",
  36888. extra: 821/557,
  36889. bottom: 91/912
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Shortest",
  36896. height: math.unit(70, "cm")
  36897. },
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(1.7, "m")
  36901. },
  36902. {
  36903. name: "Macro",
  36904. height: math.unit(10, "m"),
  36905. default: true
  36906. },
  36907. {
  36908. name: "Tallest",
  36909. height: math.unit(200, "m")
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(5 + 7/12, "feet"),
  36918. weight: math.unit(92, "kg"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/erdno/front.svg",
  36922. extra: 1954/1889,
  36923. bottom: 22/1976
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(5 + 7/12, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(5 + 10/12, "feet"),
  36940. weight: math.unit(150, "lb"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/jamie/front.svg",
  36944. extra: 1908/1768,
  36945. bottom: 19/1927
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Minimum",
  36952. height: math.unit(2, "cm")
  36953. },
  36954. {
  36955. name: "Micro",
  36956. height: math.unit(3, "inches")
  36957. },
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(5 + 10/12, "feet"),
  36961. default: true
  36962. },
  36963. {
  36964. name: "Macro",
  36965. height: math.unit(150, "feet")
  36966. },
  36967. {
  36968. name: "Megamacro",
  36969. height: math.unit(10000, "m")
  36970. },
  36971. ]
  36972. ))
  36973. characterMakers.push(() => makeCharacter(
  36974. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36975. {
  36976. front: {
  36977. height: math.unit(2, "meters"),
  36978. weight: math.unit(100, "kg"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/shiron/front.svg",
  36982. extra: 2103/1985,
  36983. bottom: 98/2201
  36984. }
  36985. },
  36986. back: {
  36987. height: math.unit(2, "meters"),
  36988. weight: math.unit(100, "kg"),
  36989. name: "Back",
  36990. image: {
  36991. source: "./media/characters/shiron/back.svg",
  36992. extra: 2110/2015,
  36993. bottom: 89/2199
  36994. }
  36995. },
  36996. hand: {
  36997. height: math.unit(0.96, "feet"),
  36998. name: "Hand",
  36999. image: {
  37000. source: "./media/characters/shiron/hand.svg"
  37001. }
  37002. },
  37003. foot: {
  37004. height: math.unit(1.464, "feet"),
  37005. name: "Foot",
  37006. image: {
  37007. source: "./media/characters/shiron/foot.svg"
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(2, "meters")
  37015. },
  37016. {
  37017. name: "Macro",
  37018. height: math.unit(500, "meters"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Megamacro",
  37023. height: math.unit(20, "km")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(6, "feet"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/sam/front.svg",
  37035. extra: 849/826,
  37036. bottom: 19/868
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Normal",
  37043. height: math.unit(6, "feet"),
  37044. default: true
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(8 + 4/12, "feet"),
  37053. weight: math.unit(122, "kg"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/namori-kurogawa/front.svg",
  37057. extra: 1894/1576,
  37058. bottom: 34/1928
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(8 + 4/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(9, "feet"),
  37075. weight: math.unit(621, "lb"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/unmru/front.svg",
  37079. extra: 1853/1747,
  37080. bottom: 73/1926
  37081. }
  37082. },
  37083. side: {
  37084. height: math.unit(9, "feet"),
  37085. weight: math.unit(621, "lb"),
  37086. name: "Side",
  37087. image: {
  37088. source: "./media/characters/unmru/side.svg",
  37089. extra: 1781/1671,
  37090. bottom: 127/1908
  37091. }
  37092. },
  37093. back: {
  37094. height: math.unit(9, "feet"),
  37095. weight: math.unit(621, "lb"),
  37096. name: "Back",
  37097. image: {
  37098. source: "./media/characters/unmru/back.svg",
  37099. extra: 1894/1765,
  37100. bottom: 75/1969
  37101. }
  37102. },
  37103. dick: {
  37104. height: math.unit(3, "feet"),
  37105. weight: math.unit(35, "lb"),
  37106. name: "Dick",
  37107. image: {
  37108. source: "./media/characters/unmru/dick.svg"
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(9, "feet")
  37116. },
  37117. {
  37118. name: "Natural",
  37119. height: math.unit(27, "feet"),
  37120. default: true
  37121. },
  37122. {
  37123. name: "Giant",
  37124. height: math.unit(90, "feet")
  37125. },
  37126. {
  37127. name: "Kaiju",
  37128. height: math.unit(270, "feet")
  37129. },
  37130. {
  37131. name: "Macro",
  37132. height: math.unit(900, "feet")
  37133. },
  37134. {
  37135. name: "Macro+",
  37136. height: math.unit(2700, "feet")
  37137. },
  37138. {
  37139. name: "Megamacro",
  37140. height: math.unit(9000, "feet")
  37141. },
  37142. {
  37143. name: "City-Crushing",
  37144. height: math.unit(27000, "feet")
  37145. },
  37146. {
  37147. name: "Mountain-Mashing",
  37148. height: math.unit(90000, "feet")
  37149. },
  37150. {
  37151. name: "Earth-Eclipsing",
  37152. height: math.unit(2.7e8, "feet")
  37153. },
  37154. {
  37155. name: "Sol-Swallowing",
  37156. height: math.unit(9e10, "feet")
  37157. },
  37158. {
  37159. name: "Majoris-Munching",
  37160. height: math.unit(2.7e13, "feet")
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37166. {
  37167. front: {
  37168. height: math.unit(1, "inch"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/squeaks-mouse/front.svg",
  37172. extra: 352/308,
  37173. bottom: 25/377
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Micro",
  37180. height: math.unit(1, "inch"),
  37181. default: true
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37187. {
  37188. side: {
  37189. height: math.unit(35, "feet"),
  37190. name: "Side",
  37191. image: {
  37192. source: "./media/characters/sayko/side.svg",
  37193. extra: 1697/1021,
  37194. bottom: 82/1779
  37195. }
  37196. },
  37197. head: {
  37198. height: math.unit(16, "feet"),
  37199. name: "Head",
  37200. image: {
  37201. source: "./media/characters/sayko/head.svg"
  37202. }
  37203. },
  37204. forepaw: {
  37205. height: math.unit(7.85, "feet"),
  37206. name: "Forepaw",
  37207. image: {
  37208. source: "./media/characters/sayko/forepaw.svg"
  37209. }
  37210. },
  37211. hindpaw: {
  37212. height: math.unit(8.8, "feet"),
  37213. name: "Hindpaw",
  37214. image: {
  37215. source: "./media/characters/sayko/hindpaw.svg"
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(35, "feet"),
  37223. default: true
  37224. },
  37225. {
  37226. name: "Colossus",
  37227. height: math.unit(100, "meters")
  37228. },
  37229. {
  37230. name: "\"Small\" Deity",
  37231. height: math.unit(1, "km")
  37232. },
  37233. {
  37234. name: "\"Large\" Deity",
  37235. height: math.unit(15, "km")
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37241. {
  37242. front: {
  37243. height: math.unit(6, "feet"),
  37244. weight: math.unit(250, "lb"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/mukiro/front.svg",
  37248. extra: 1368/1310,
  37249. bottom: 34/1402
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(6, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(12 + 4/12, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37269. extra: 1346/1311,
  37270. bottom: 65/1411
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Base",
  37277. height: math.unit(12 + 4/12, "feet"),
  37278. default: true
  37279. },
  37280. {
  37281. name: "Macro",
  37282. height: math.unit(150, "feet")
  37283. },
  37284. {
  37285. name: "Mega",
  37286. height: math.unit(2, "miles")
  37287. },
  37288. {
  37289. name: "Demi God",
  37290. height: math.unit(4, "AU")
  37291. },
  37292. {
  37293. name: "God Size",
  37294. height: math.unit(1, "universe")
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(3 + 3/12, "feet"),
  37303. weight: math.unit(88, "lb"),
  37304. name: "Front",
  37305. image: {
  37306. source: "./media/characters/trey/front.svg",
  37307. extra: 1815/1509,
  37308. bottom: 60/1875
  37309. }
  37310. },
  37311. },
  37312. [
  37313. {
  37314. name: "Normal",
  37315. height: math.unit(3 + 3/12, "feet"),
  37316. default: true
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(4, "meters"),
  37325. name: "Front",
  37326. image: {
  37327. source: "./media/characters/adelonda/front.svg",
  37328. extra: 1077/982,
  37329. bottom: 39/1116
  37330. }
  37331. },
  37332. back: {
  37333. height: math.unit(4, "meters"),
  37334. name: "Back",
  37335. image: {
  37336. source: "./media/characters/adelonda/back.svg",
  37337. extra: 1105/1003,
  37338. bottom: 25/1130
  37339. }
  37340. },
  37341. },
  37342. [
  37343. {
  37344. name: "Normal",
  37345. height: math.unit(4, "meters"),
  37346. default: true
  37347. },
  37348. ]
  37349. ))
  37350. characterMakers.push(() => makeCharacter(
  37351. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37352. {
  37353. front: {
  37354. height: math.unit(8 + 4/12, "feet"),
  37355. weight: math.unit(670, "lb"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/acadiel/front.svg",
  37359. extra: 1901/1595,
  37360. bottom: 142/2043
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(8 + 4/12, "feet"),
  37368. default: true
  37369. },
  37370. {
  37371. name: "Macro",
  37372. height: math.unit(200, "feet")
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(6 + 2/12, "feet"),
  37381. weight: math.unit(185, "lb"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/kayne-ein/front.svg",
  37385. extra: 1780/1560,
  37386. bottom: 81/1861
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(6 + 2/12, "feet"),
  37394. default: true
  37395. },
  37396. {
  37397. name: "Transformation Stage",
  37398. height: math.unit(15, "feet")
  37399. },
  37400. {
  37401. name: "Macro",
  37402. height: math.unit(150, "feet")
  37403. },
  37404. {
  37405. name: "Earth's Shadow",
  37406. height: math.unit(6200, "miles")
  37407. },
  37408. {
  37409. name: "Universal Demon",
  37410. height: math.unit(28e9, "parsecs")
  37411. },
  37412. {
  37413. name: "Multiverse God",
  37414. height: math.unit(3, "multiverses")
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(5 + 5/12, "feet"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/fawn/front.svg",
  37426. extra: 1873/1731,
  37427. bottom: 95/1968
  37428. }
  37429. },
  37430. back: {
  37431. height: math.unit(5 + 5/12, "feet"),
  37432. name: "Back",
  37433. image: {
  37434. source: "./media/characters/fawn/back.svg",
  37435. extra: 1813/1700,
  37436. bottom: 14/1827
  37437. }
  37438. },
  37439. hoof: {
  37440. height: math.unit(1.45, "feet"),
  37441. name: "Hoof",
  37442. image: {
  37443. source: "./media/characters/fawn/hoof.svg"
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(5 + 5/12, "feet"),
  37451. default: true
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(2 + 5/12, "feet"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/orion/front.svg",
  37463. extra: 1366/1304,
  37464. bottom: 43/1409
  37465. }
  37466. },
  37467. paw: {
  37468. height: math.unit(0.52, "feet"),
  37469. name: "Paw",
  37470. image: {
  37471. source: "./media/characters/orion/paw.svg"
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(2 + 5/12, "feet"),
  37479. default: true
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(5 + 10/12, "feet"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/vera/front.svg",
  37491. extra: 1680/1575,
  37492. bottom: 49/1729
  37493. }
  37494. },
  37495. back: {
  37496. height: math.unit(5 + 10/12, "feet"),
  37497. name: "Back",
  37498. image: {
  37499. source: "./media/characters/vera/back.svg",
  37500. extra: 1700/1588,
  37501. bottom: 18/1718
  37502. }
  37503. },
  37504. arcanine: {
  37505. height: math.unit(6 + 8/12, "feet"),
  37506. name: "Arcanine",
  37507. image: {
  37508. source: "./media/characters/vera/arcanine.svg",
  37509. extra: 1590/1511,
  37510. bottom: 71/1661
  37511. }
  37512. },
  37513. maw: {
  37514. height: math.unit(0.82, "feet"),
  37515. name: "Maw",
  37516. image: {
  37517. source: "./media/characters/vera/maw.svg"
  37518. }
  37519. },
  37520. mawArcanine: {
  37521. height: math.unit(0.97, "feet"),
  37522. name: "Maw (Arcanine)",
  37523. image: {
  37524. source: "./media/characters/vera/maw-arcanine.svg"
  37525. }
  37526. },
  37527. paw: {
  37528. height: math.unit(0.75, "feet"),
  37529. name: "Paw",
  37530. image: {
  37531. source: "./media/characters/vera/paw.svg"
  37532. }
  37533. },
  37534. pawprint: {
  37535. height: math.unit(0.52, "feet"),
  37536. name: "Pawprint",
  37537. image: {
  37538. source: "./media/characters/vera/pawprint.svg"
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(5 + 10/12, "feet"),
  37546. default: true
  37547. },
  37548. {
  37549. name: "Macro",
  37550. height: math.unit(75, "feet")
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(4, "feet"),
  37559. weight: math.unit(40, "lb"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/orvan-rabbit/front.svg",
  37563. extra: 1896/1642,
  37564. bottom: 29/1925
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(4, "feet"),
  37572. default: true
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(6, "feet"),
  37581. weight: math.unit(168, "lb"),
  37582. name: "Front",
  37583. image: {
  37584. source: "./media/characters/lisa/front.svg",
  37585. extra: 2065/1867,
  37586. bottom: 46/2111
  37587. }
  37588. },
  37589. back: {
  37590. height: math.unit(6, "feet"),
  37591. weight: math.unit(168, "lb"),
  37592. name: "Back",
  37593. image: {
  37594. source: "./media/characters/lisa/back.svg",
  37595. extra: 1982/1838,
  37596. bottom: 29/2011
  37597. }
  37598. },
  37599. maw: {
  37600. height: math.unit(0.81, "feet"),
  37601. name: "Maw",
  37602. image: {
  37603. source: "./media/characters/lisa/maw.svg"
  37604. }
  37605. },
  37606. paw: {
  37607. height: math.unit(0.9, "feet"),
  37608. name: "Paw",
  37609. image: {
  37610. source: "./media/characters/lisa/paw.svg"
  37611. }
  37612. },
  37613. caribousune: {
  37614. height: math.unit(7 + 2/12, "feet"),
  37615. weight: math.unit(268, "lb"),
  37616. name: "Caribousune",
  37617. image: {
  37618. source: "./media/characters/lisa/caribousune.svg",
  37619. extra: 1843/1633,
  37620. bottom: 29/1872
  37621. }
  37622. },
  37623. frontCaribousune: {
  37624. height: math.unit(7 + 2/12, "feet"),
  37625. weight: math.unit(268, "lb"),
  37626. name: "Front (Caribousune)",
  37627. image: {
  37628. source: "./media/characters/lisa/front-caribousune.svg",
  37629. extra: 1818/1638,
  37630. bottom: 52/1870
  37631. }
  37632. },
  37633. sideCaribousune: {
  37634. height: math.unit(7 + 2/12, "feet"),
  37635. weight: math.unit(268, "lb"),
  37636. name: "Side (Caribousune)",
  37637. image: {
  37638. source: "./media/characters/lisa/side-caribousune.svg",
  37639. extra: 1851/1635,
  37640. bottom: 16/1867
  37641. }
  37642. },
  37643. backCaribousune: {
  37644. height: math.unit(7 + 2/12, "feet"),
  37645. weight: math.unit(268, "lb"),
  37646. name: "Back (Caribousune)",
  37647. image: {
  37648. source: "./media/characters/lisa/back-caribousune.svg",
  37649. extra: 1801/1604,
  37650. bottom: 44/1845
  37651. }
  37652. },
  37653. caribou: {
  37654. height: math.unit(7 + 2/12, "feet"),
  37655. weight: math.unit(268, "lb"),
  37656. name: "Caribou",
  37657. image: {
  37658. source: "./media/characters/lisa/caribou.svg",
  37659. extra: 1843/1633,
  37660. bottom: 29/1872
  37661. }
  37662. },
  37663. frontCaribou: {
  37664. height: math.unit(7 + 2/12, "feet"),
  37665. weight: math.unit(268, "lb"),
  37666. name: "Front (Caribou)",
  37667. image: {
  37668. source: "./media/characters/lisa/front-caribou.svg",
  37669. extra: 1818/1638,
  37670. bottom: 52/1870
  37671. }
  37672. },
  37673. sideCaribou: {
  37674. height: math.unit(7 + 2/12, "feet"),
  37675. weight: math.unit(268, "lb"),
  37676. name: "Side (Caribou)",
  37677. image: {
  37678. source: "./media/characters/lisa/side-caribou.svg",
  37679. extra: 1851/1635,
  37680. bottom: 16/1867
  37681. }
  37682. },
  37683. backCaribou: {
  37684. height: math.unit(7 + 2/12, "feet"),
  37685. weight: math.unit(268, "lb"),
  37686. name: "Back (Caribou)",
  37687. image: {
  37688. source: "./media/characters/lisa/back-caribou.svg",
  37689. extra: 1801/1604,
  37690. bottom: 44/1845
  37691. }
  37692. },
  37693. mawCaribou: {
  37694. height: math.unit(1.45, "feet"),
  37695. name: "Maw (Caribou)",
  37696. image: {
  37697. source: "./media/characters/lisa/maw-caribou.svg"
  37698. }
  37699. },
  37700. mawCaribousune: {
  37701. height: math.unit(1.45, "feet"),
  37702. name: "Maw (Caribousune)",
  37703. image: {
  37704. source: "./media/characters/lisa/maw-caribousune.svg"
  37705. }
  37706. },
  37707. pawCaribousune: {
  37708. height: math.unit(1.61, "feet"),
  37709. name: "Paw (Caribou)",
  37710. image: {
  37711. source: "./media/characters/lisa/paw-caribousune.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(6, "feet")
  37719. },
  37720. {
  37721. name: "God Size",
  37722. height: math.unit(72, "feet"),
  37723. default: true
  37724. },
  37725. {
  37726. name: "Towering",
  37727. height: math.unit(288, "feet")
  37728. },
  37729. {
  37730. name: "City Size",
  37731. height: math.unit(48384, "feet")
  37732. },
  37733. {
  37734. name: "Continental",
  37735. height: math.unit(4200, "miles")
  37736. },
  37737. {
  37738. name: "Planet Eater",
  37739. height: math.unit(42, "earths")
  37740. },
  37741. {
  37742. name: "Star Swallower",
  37743. height: math.unit(42, "solarradii")
  37744. },
  37745. {
  37746. name: "System Swallower",
  37747. height: math.unit(84000, "AU")
  37748. },
  37749. {
  37750. name: "Galaxy Gobbler",
  37751. height: math.unit(42, "galaxies")
  37752. },
  37753. {
  37754. name: "Universe Devourer",
  37755. height: math.unit(42, "universes")
  37756. },
  37757. {
  37758. name: "Multiverse Muncher",
  37759. height: math.unit(42, "multiverses")
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(36, "feet"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/shadow-rat/front.svg",
  37771. extra: 1845/1758,
  37772. bottom: 83/1928
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Macro",
  37779. height: math.unit(36, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37786. {
  37787. side: {
  37788. height: math.unit(8, "feet"),
  37789. weight: math.unit(2630, "lb"),
  37790. name: "Side",
  37791. image: {
  37792. source: "./media/characters/torallia/side.svg",
  37793. extra: 2164/2021,
  37794. bottom: 371/2535
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Mortal Interaction",
  37801. height: math.unit(8, "feet")
  37802. },
  37803. {
  37804. name: "Natural",
  37805. height: math.unit(24, "feet"),
  37806. default: true
  37807. },
  37808. {
  37809. name: "Giant",
  37810. height: math.unit(80, "feet")
  37811. },
  37812. {
  37813. name: "Kaiju",
  37814. height: math.unit(240, "feet")
  37815. },
  37816. {
  37817. name: "Macro",
  37818. height: math.unit(800, "feet")
  37819. },
  37820. {
  37821. name: "Macro+",
  37822. height: math.unit(2400, "feet")
  37823. },
  37824. {
  37825. name: "Macro++",
  37826. height: math.unit(8000, "feet")
  37827. },
  37828. {
  37829. name: "City-Crushing",
  37830. height: math.unit(24000, "feet")
  37831. },
  37832. {
  37833. name: "Mountain-Mashing",
  37834. height: math.unit(80000, "feet")
  37835. },
  37836. {
  37837. name: "District Demolisher",
  37838. height: math.unit(240000, "feet")
  37839. },
  37840. {
  37841. name: "Tri-County Terror",
  37842. height: math.unit(800000, "feet")
  37843. },
  37844. {
  37845. name: "State Smasher",
  37846. height: math.unit(2.4e6, "feet")
  37847. },
  37848. {
  37849. name: "Nation Nemesis",
  37850. height: math.unit(8e6, "feet")
  37851. },
  37852. {
  37853. name: "Continent Cracker",
  37854. height: math.unit(2.4e7, "feet")
  37855. },
  37856. {
  37857. name: "Planet-Pillaging",
  37858. height: math.unit(8e7, "feet")
  37859. },
  37860. {
  37861. name: "Earth-Eclipsing",
  37862. height: math.unit(2.4e8, "feet")
  37863. },
  37864. {
  37865. name: "Jovian-Jostling",
  37866. height: math.unit(8e8, "feet")
  37867. },
  37868. {
  37869. name: "Gas Giant Gulper",
  37870. height: math.unit(2.4e9, "feet")
  37871. },
  37872. {
  37873. name: "Astral Annihilator",
  37874. height: math.unit(8e9, "feet")
  37875. },
  37876. {
  37877. name: "Celestial Conqueror",
  37878. height: math.unit(2.4e10, "feet")
  37879. },
  37880. {
  37881. name: "Sol-Swallowing",
  37882. height: math.unit(8e10, "feet")
  37883. },
  37884. {
  37885. name: "Hunter of the Heavens",
  37886. height: math.unit(2.4e13, "feet")
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(6 + 8/12, "feet"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/rebecca-pawlson/front.svg",
  37898. extra: 1737/1596,
  37899. bottom: 107/1844
  37900. }
  37901. },
  37902. back: {
  37903. height: math.unit(6 + 8/12, "feet"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/rebecca-pawlson/back.svg",
  37907. extra: 1702/1523,
  37908. bottom: 86/1788
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(6 + 8/12, "feet")
  37916. },
  37917. {
  37918. name: "Mini Macro",
  37919. height: math.unit(10, "feet"),
  37920. default: true
  37921. },
  37922. {
  37923. name: "Macro",
  37924. height: math.unit(100, "feet")
  37925. },
  37926. {
  37927. name: "Mega Macro",
  37928. height: math.unit(2500, "feet")
  37929. },
  37930. {
  37931. name: "Giga Macro",
  37932. height: math.unit(50, "miles")
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(7 + 6/12, "feet"),
  37941. weight: math.unit(600, "lb"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/moxie-nova/front.svg",
  37945. extra: 1734/1652,
  37946. bottom: 41/1775
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(7 + 6/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(5, "feet"),
  37963. weight: math.unit(150, "lb"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/tiffany/front.svg",
  37967. extra: 1941/1845,
  37968. bottom: 58/1999
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(5, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(8, "feet"),
  37985. weight: math.unit(300, "lb"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/raxinath/front.svg",
  37989. extra: 1407/1309,
  37990. bottom: 39/1446
  37991. }
  37992. },
  37993. back: {
  37994. height: math.unit(8, "feet"),
  37995. weight: math.unit(300, "lb"),
  37996. name: "Back",
  37997. image: {
  37998. source: "./media/characters/raxinath/back.svg",
  37999. extra: 1405/1315,
  38000. bottom: 9/1414
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Speck",
  38007. height: math.unit(0.5, "nm")
  38008. },
  38009. {
  38010. name: "Micro",
  38011. height: math.unit(3, "inches")
  38012. },
  38013. {
  38014. name: "Kobold",
  38015. height: math.unit(3, "feet")
  38016. },
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(8, "feet"),
  38020. default: true
  38021. },
  38022. {
  38023. name: "Giant",
  38024. height: math.unit(50, "feet")
  38025. },
  38026. {
  38027. name: "Macro",
  38028. height: math.unit(1000, "feet")
  38029. },
  38030. {
  38031. name: "Megamacro",
  38032. height: math.unit(1, "mile")
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(10, "feet"),
  38041. weight: math.unit(1442, "lb"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/mal-dragon/front.svg",
  38045. extra: 1515/1444,
  38046. bottom: 113/1628
  38047. }
  38048. },
  38049. back: {
  38050. height: math.unit(10, "feet"),
  38051. weight: math.unit(1442, "lb"),
  38052. name: "Back",
  38053. image: {
  38054. source: "./media/characters/mal-dragon/back.svg",
  38055. extra: 1527/1434,
  38056. bottom: 25/1552
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Mortal Interaction",
  38063. height: math.unit(10, "feet"),
  38064. default: true
  38065. },
  38066. {
  38067. name: "Large",
  38068. height: math.unit(30, "feet")
  38069. },
  38070. {
  38071. name: "Kaiju",
  38072. height: math.unit(300, "feet")
  38073. },
  38074. {
  38075. name: "Megamacro",
  38076. height: math.unit(10000, "feet")
  38077. },
  38078. {
  38079. name: "Continent Cracker",
  38080. height: math.unit(30000000, "feet")
  38081. },
  38082. {
  38083. name: "Sol-Swallowing",
  38084. height: math.unit(1e11, "feet")
  38085. },
  38086. {
  38087. name: "Light Universal",
  38088. height: math.unit(5, "universes")
  38089. },
  38090. {
  38091. name: "Universe Atoms",
  38092. height: math.unit(1.829e9, "universes")
  38093. },
  38094. {
  38095. name: "Light Multiversal",
  38096. height: math.unit(5, "multiverses")
  38097. },
  38098. {
  38099. name: "Multiverse Atoms",
  38100. height: math.unit(1.829e9, "multiverses")
  38101. },
  38102. {
  38103. name: "Fabric of Time",
  38104. height: math.unit(1e262, "multiverses")
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(9, "feet"),
  38113. weight: math.unit(1050, "lb"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/tabitha/front.svg",
  38117. extra: 2083/1994,
  38118. bottom: 68/2151
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Baseline",
  38125. height: math.unit(9, "feet"),
  38126. default: true
  38127. },
  38128. {
  38129. name: "Giant",
  38130. height: math.unit(90, "feet")
  38131. },
  38132. {
  38133. name: "Macro",
  38134. height: math.unit(900, "feet")
  38135. },
  38136. {
  38137. name: "Megamacro",
  38138. height: math.unit(9000, "feet")
  38139. },
  38140. {
  38141. name: "City-Crushing",
  38142. height: math.unit(27000, "feet")
  38143. },
  38144. {
  38145. name: "Mountain-Mashing",
  38146. height: math.unit(90000, "feet")
  38147. },
  38148. {
  38149. name: "Nation Nemesis",
  38150. height: math.unit(9e6, "feet")
  38151. },
  38152. {
  38153. name: "Continent Cracker",
  38154. height: math.unit(27e6, "feet")
  38155. },
  38156. {
  38157. name: "Earth-Eclipsing",
  38158. height: math.unit(2.7e8, "feet")
  38159. },
  38160. {
  38161. name: "Gas Giant Gulper",
  38162. height: math.unit(2.7e9, "feet")
  38163. },
  38164. {
  38165. name: "Sol-Swallowing",
  38166. height: math.unit(9e10, "feet")
  38167. },
  38168. {
  38169. name: "Galaxy Gulper",
  38170. height: math.unit(9, "galaxies")
  38171. },
  38172. {
  38173. name: "Cosmos Churner",
  38174. height: math.unit(9, "universes")
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38180. {
  38181. front: {
  38182. height: math.unit(160, "cm"),
  38183. weight: math.unit(55, "kg"),
  38184. name: "Front",
  38185. image: {
  38186. source: "./media/characters/tow/front.svg",
  38187. extra: 1751/1722,
  38188. bottom: 74/1825
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Norm",
  38195. height: math.unit(160, "cm")
  38196. },
  38197. {
  38198. name: "Casual",
  38199. height: math.unit(3200, "m"),
  38200. default: true
  38201. },
  38202. {
  38203. name: "Show-Off",
  38204. height: math.unit(160, "km")
  38205. },
  38206. ]
  38207. ))
  38208. characterMakers.push(() => makeCharacter(
  38209. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38210. {
  38211. front: {
  38212. height: math.unit(7 + 11/12, "feet"),
  38213. weight: math.unit(342.8, "lb"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/vivian-orca-dragon/front.svg",
  38217. extra: 1890/1865,
  38218. bottom: 28/1918
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Micro",
  38225. height: math.unit(5, "inches")
  38226. },
  38227. {
  38228. name: "Normal",
  38229. height: math.unit(7 + 11/12, "feet"),
  38230. default: true
  38231. },
  38232. {
  38233. name: "Macro",
  38234. height: math.unit(395 + 7/12, "feet")
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38240. {
  38241. side: {
  38242. height: math.unit(10, "feet"),
  38243. weight: math.unit(1442, "lb"),
  38244. name: "Side",
  38245. image: {
  38246. source: "./media/characters/lotherakon/side.svg",
  38247. extra: 1604/1497,
  38248. bottom: 89/1693
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Mortal Interaction",
  38255. height: math.unit(10, "feet")
  38256. },
  38257. {
  38258. name: "Large",
  38259. height: math.unit(30, "feet"),
  38260. default: true
  38261. },
  38262. {
  38263. name: "Giant",
  38264. height: math.unit(100, "feet")
  38265. },
  38266. {
  38267. name: "Kaiju",
  38268. height: math.unit(300, "feet")
  38269. },
  38270. {
  38271. name: "Macro",
  38272. height: math.unit(1000, "feet")
  38273. },
  38274. {
  38275. name: "Macro+",
  38276. height: math.unit(3000, "feet")
  38277. },
  38278. {
  38279. name: "Megamacro",
  38280. height: math.unit(10000, "feet")
  38281. },
  38282. {
  38283. name: "City-Crushing",
  38284. height: math.unit(30000, "feet")
  38285. },
  38286. {
  38287. name: "Continent Cracker",
  38288. height: math.unit(30e6, "feet")
  38289. },
  38290. {
  38291. name: "Earth Eclipsing",
  38292. height: math.unit(3e8, "feet")
  38293. },
  38294. {
  38295. name: "Gas Giant Gulper",
  38296. height: math.unit(3e9, "feet")
  38297. },
  38298. {
  38299. name: "Sol-Swallowing",
  38300. height: math.unit(1e11, "feet")
  38301. },
  38302. {
  38303. name: "System Swallower",
  38304. height: math.unit(3e14, "feet")
  38305. },
  38306. {
  38307. name: "Galaxy Gulper",
  38308. height: math.unit(10, "galaxies")
  38309. },
  38310. {
  38311. name: "Light Universal",
  38312. height: math.unit(5, "universes")
  38313. },
  38314. {
  38315. name: "Universe Palm",
  38316. height: math.unit(20, "universes")
  38317. },
  38318. {
  38319. name: "Light Multiversal",
  38320. height: math.unit(5, "multiverses")
  38321. },
  38322. {
  38323. name: "Multiverse Palm",
  38324. height: math.unit(20, "multiverses")
  38325. },
  38326. {
  38327. name: "Inferno Incarnate",
  38328. height: math.unit(1e7, "multiverses")
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38334. {
  38335. front: {
  38336. height: math.unit(8, "feet"),
  38337. weight: math.unit(1200, "lb"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/malithee/front.svg",
  38341. extra: 1675/1640,
  38342. bottom: 162/1837
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Mortal Interaction",
  38349. height: math.unit(8, "feet"),
  38350. default: true
  38351. },
  38352. {
  38353. name: "Large",
  38354. height: math.unit(24, "feet")
  38355. },
  38356. {
  38357. name: "Kaiju",
  38358. height: math.unit(240, "feet")
  38359. },
  38360. {
  38361. name: "Megamacro",
  38362. height: math.unit(8000, "feet")
  38363. },
  38364. {
  38365. name: "Continent Cracker",
  38366. height: math.unit(24e6, "feet")
  38367. },
  38368. {
  38369. name: "Earth-Eclipsing",
  38370. height: math.unit(2.4e8, "feet")
  38371. },
  38372. {
  38373. name: "Sol-Swallowing",
  38374. height: math.unit(8e10, "feet")
  38375. },
  38376. {
  38377. name: "Galaxy Gulper",
  38378. height: math.unit(8, "galaxies")
  38379. },
  38380. {
  38381. name: "Light Universal",
  38382. height: math.unit(4, "universes")
  38383. },
  38384. {
  38385. name: "Universe Atoms",
  38386. height: math.unit(1.829e9, "universes")
  38387. },
  38388. {
  38389. name: "Light Multiversal",
  38390. height: math.unit(4, "multiverses")
  38391. },
  38392. {
  38393. name: "Multiverse Atoms",
  38394. height: math.unit(1.829e9, "multiverses")
  38395. },
  38396. {
  38397. name: "Nigh-Omnipresence",
  38398. height: math.unit(8e261, "multiverses")
  38399. },
  38400. ]
  38401. ))
  38402. characterMakers.push(() => makeCharacter(
  38403. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38404. {
  38405. front: {
  38406. height: math.unit(10, "feet"),
  38407. weight: math.unit(1500, "lb"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/miles-thestia/front.svg",
  38411. extra: 1812/1727,
  38412. bottom: 86/1898
  38413. }
  38414. },
  38415. back: {
  38416. height: math.unit(10, "feet"),
  38417. weight: math.unit(1500, "lb"),
  38418. name: "Back",
  38419. image: {
  38420. source: "./media/characters/miles-thestia/back.svg",
  38421. extra: 1799/1690,
  38422. bottom: 47/1846
  38423. }
  38424. },
  38425. frontNsfw: {
  38426. height: math.unit(10, "feet"),
  38427. weight: math.unit(1500, "lb"),
  38428. name: "Front (NSFW)",
  38429. image: {
  38430. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38431. extra: 1812/1727,
  38432. bottom: 86/1898
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Mini-Macro",
  38439. height: math.unit(10, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(25, "feet"),
  38449. name: "Front",
  38450. image: {
  38451. source: "./media/characters/titan-s-wulf/front.svg",
  38452. extra: 1560/1484,
  38453. bottom: 76/1636
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Smallest",
  38460. height: math.unit(25, "feet"),
  38461. default: true
  38462. },
  38463. {
  38464. name: "Normal",
  38465. height: math.unit(200, "feet")
  38466. },
  38467. {
  38468. name: "Macro",
  38469. height: math.unit(200000, "feet")
  38470. },
  38471. {
  38472. name: "Multiversal Original",
  38473. height: math.unit(10000, "multiverses")
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(8, "feet"),
  38482. weight: math.unit(553, "lb"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/tawendeh/front.svg",
  38486. extra: 2365/2268,
  38487. bottom: 83/2448
  38488. }
  38489. },
  38490. frontClothed: {
  38491. height: math.unit(8, "feet"),
  38492. weight: math.unit(553, "lb"),
  38493. name: "Front (Clothed)",
  38494. image: {
  38495. source: "./media/characters/tawendeh/front-clothed.svg",
  38496. extra: 2365/2268,
  38497. bottom: 83/2448
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(8, "feet"),
  38502. weight: math.unit(553, "lb"),
  38503. name: "Back",
  38504. image: {
  38505. source: "./media/characters/tawendeh/back.svg",
  38506. extra: 2397/2294,
  38507. bottom: 42/2439
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Mortal Interaction",
  38514. height: math.unit(8, "feet"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Giant",
  38519. height: math.unit(80, "feet")
  38520. },
  38521. {
  38522. name: "Macro",
  38523. height: math.unit(800, "feet")
  38524. },
  38525. {
  38526. name: "Megamacro",
  38527. height: math.unit(8000, "feet")
  38528. },
  38529. {
  38530. name: "City-Crushing",
  38531. height: math.unit(24000, "feet")
  38532. },
  38533. {
  38534. name: "Mountain-Mashing",
  38535. height: math.unit(80000, "feet")
  38536. },
  38537. {
  38538. name: "Nation Nemesis",
  38539. height: math.unit(8e6, "feet")
  38540. },
  38541. {
  38542. name: "Continent Cracker",
  38543. height: math.unit(24e6, "feet")
  38544. },
  38545. {
  38546. name: "Earth-Eclipsing",
  38547. height: math.unit(2.4e8, "feet")
  38548. },
  38549. {
  38550. name: "Gas Giant Gulper",
  38551. height: math.unit(2.4e9, "feet")
  38552. },
  38553. {
  38554. name: "Sol-Swallowing",
  38555. height: math.unit(8e10, "feet")
  38556. },
  38557. {
  38558. name: "Galaxy Gulper",
  38559. height: math.unit(8, "galaxies")
  38560. },
  38561. {
  38562. name: "Cosmos Churner",
  38563. height: math.unit(8, "universes")
  38564. },
  38565. {
  38566. name: "Omnipotent Otter",
  38567. height: math.unit(80, "universes")
  38568. },
  38569. ]
  38570. ))
  38571. characterMakers.push(() => makeCharacter(
  38572. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38573. {
  38574. front: {
  38575. height: math.unit(2.6, "meters"),
  38576. weight: math.unit(900, "kg"),
  38577. name: "Front",
  38578. image: {
  38579. source: "./media/characters/neesha/front.svg",
  38580. extra: 1803/1653,
  38581. bottom: 128/1931
  38582. }
  38583. },
  38584. },
  38585. [
  38586. {
  38587. name: "Normal",
  38588. height: math.unit(2.6, "meters"),
  38589. default: true
  38590. },
  38591. {
  38592. name: "Macro",
  38593. height: math.unit(50, "meters")
  38594. },
  38595. ]
  38596. ))
  38597. characterMakers.push(() => makeCharacter(
  38598. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38599. {
  38600. front: {
  38601. height: math.unit(5, "feet"),
  38602. weight: math.unit(185, "lb"),
  38603. name: "Front",
  38604. image: {
  38605. source: "./media/characters/kyera/front.svg",
  38606. extra: 1875/1790,
  38607. bottom: 96/1971
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(5, "feet"),
  38615. default: true
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(7 + 6/12, "feet"),
  38624. weight: math.unit(540, "lb"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/yuko/front.svg",
  38628. extra: 1282/1222,
  38629. bottom: 101/1383
  38630. }
  38631. },
  38632. frontClothed: {
  38633. height: math.unit(7 + 6/12, "feet"),
  38634. weight: math.unit(540, "lb"),
  38635. name: "Front (Clothed)",
  38636. image: {
  38637. source: "./media/characters/yuko/front-clothed.svg",
  38638. extra: 1282/1222,
  38639. bottom: 101/1383
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(7 + 6/12, "feet"),
  38647. default: true
  38648. },
  38649. {
  38650. name: "Macro",
  38651. height: math.unit(26 + 9/12, "feet")
  38652. },
  38653. {
  38654. name: "Megamacro",
  38655. height: math.unit(300, "feet")
  38656. },
  38657. {
  38658. name: "Gigamacro",
  38659. height: math.unit(5000, "feet")
  38660. },
  38661. {
  38662. name: "Planetary",
  38663. height: math.unit(10000, "miles")
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(8 + 2/12, "feet"),
  38672. weight: math.unit(600, "lb"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/deam-nitrel/front.svg",
  38676. extra: 1308/1234,
  38677. bottom: 125/1433
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Normal",
  38684. height: math.unit(8 + 2/12, "feet"),
  38685. default: true
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(6.1, "feet"),
  38694. weight: math.unit(180, "lb"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/skyress/front.svg",
  38698. extra: 1045/915,
  38699. bottom: 28/1073
  38700. }
  38701. },
  38702. maw: {
  38703. height: math.unit(1, "feet"),
  38704. name: "Maw",
  38705. image: {
  38706. source: "./media/characters/skyress/maw.svg"
  38707. }
  38708. },
  38709. },
  38710. [
  38711. {
  38712. name: "Normal",
  38713. height: math.unit(6.1, "feet"),
  38714. default: true
  38715. },
  38716. {
  38717. name: "Macro",
  38718. height: math.unit(200, "feet")
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(4 + 2/12, "feet"),
  38727. weight: math.unit(40, "kg"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/amethyst-jones/front.svg",
  38731. extra: 1220/1150,
  38732. bottom: 101/1321
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(4 + 2/12, "feet"),
  38740. default: true
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(1.7, "m"),
  38749. weight: math.unit(135, "lb"),
  38750. name: "Front",
  38751. image: {
  38752. source: "./media/characters/jade/front.svg",
  38753. extra: 1818/1767,
  38754. bottom: 32/1850
  38755. }
  38756. },
  38757. back: {
  38758. height: math.unit(1.7, "m"),
  38759. weight: math.unit(135, "lb"),
  38760. name: "Back",
  38761. image: {
  38762. source: "./media/characters/jade/back.svg",
  38763. extra: 1869/1809,
  38764. bottom: 35/1904
  38765. }
  38766. },
  38767. hand: {
  38768. height: math.unit(0.24, "m"),
  38769. name: "Hand",
  38770. image: {
  38771. source: "./media/characters/jade/hand.svg"
  38772. }
  38773. },
  38774. foot: {
  38775. height: math.unit(0.263, "m"),
  38776. name: "Foot",
  38777. image: {
  38778. source: "./media/characters/jade/foot.svg"
  38779. }
  38780. },
  38781. dick: {
  38782. height: math.unit(0.47, "m"),
  38783. name: "Dick",
  38784. image: {
  38785. source: "./media/characters/jade/dick.svg"
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Micro",
  38792. height: math.unit(22, "cm")
  38793. },
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(1.7, "m"),
  38797. default: true
  38798. },
  38799. {
  38800. name: "Macro",
  38801. height: math.unit(152, "m")
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(100, "miles"),
  38810. weight: math.unit(20000, "tons"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/cookie/front.svg",
  38814. extra: 1125/1070,
  38815. bottom: 30/1155
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Big",
  38822. height: math.unit(50, "feet")
  38823. },
  38824. {
  38825. name: "Macro",
  38826. height: math.unit(100, "miles"),
  38827. default: true
  38828. },
  38829. {
  38830. name: "Megamacro",
  38831. height: math.unit(90000, "miles")
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(6, "feet"),
  38840. weight: math.unit(145, "lb"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/farzian/front.svg",
  38844. extra: 1902/1693,
  38845. bottom: 108/2010
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Macro",
  38852. height: math.unit(500, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(3 + 6/12, "feet"),
  38862. weight: math.unit(50, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/kimberly-tilson/front.svg",
  38866. extra: 1400/1322,
  38867. bottom: 36/1436
  38868. }
  38869. },
  38870. back: {
  38871. height: math.unit(3 + 6/12, "feet"),
  38872. weight: math.unit(50, "lb"),
  38873. name: "Back",
  38874. image: {
  38875. source: "./media/characters/kimberly-tilson/back.svg",
  38876. extra: 1370/1307,
  38877. bottom: 20/1390
  38878. }
  38879. },
  38880. },
  38881. [
  38882. {
  38883. name: "Normal",
  38884. height: math.unit(3 + 6/12, "feet"),
  38885. default: true
  38886. },
  38887. ]
  38888. ))
  38889. characterMakers.push(() => makeCharacter(
  38890. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38891. {
  38892. front: {
  38893. height: math.unit(1148, "feet"),
  38894. weight: math.unit(34057, "lb"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/harthos/front.svg",
  38898. extra: 1391/1339,
  38899. bottom: 13/1404
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Macro",
  38906. height: math.unit(1148, "feet"),
  38907. default: true
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(15, "feet"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/hypatia/front.svg",
  38919. extra: 1653/1591,
  38920. bottom: 79/1732
  38921. }
  38922. },
  38923. },
  38924. [
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(15, "feet")
  38928. },
  38929. {
  38930. name: "Small",
  38931. height: math.unit(300, "feet")
  38932. },
  38933. {
  38934. name: "Macro",
  38935. height: math.unit(2500, "feet"),
  38936. default: true
  38937. },
  38938. {
  38939. name: "Mega Macro",
  38940. height: math.unit(1500, "miles")
  38941. },
  38942. {
  38943. name: "Giga Macro",
  38944. height: math.unit(1.5e6, "miles")
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(6, "feet"),
  38953. weight: math.unit(200, "lb"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/wulver/front.svg",
  38957. extra: 1724/1632,
  38958. bottom: 130/1854
  38959. }
  38960. },
  38961. frontNsfw: {
  38962. height: math.unit(6, "feet"),
  38963. weight: math.unit(200, "lb"),
  38964. name: "Front (NSFW)",
  38965. image: {
  38966. source: "./media/characters/wulver/front-nsfw.svg",
  38967. extra: 1724/1632,
  38968. bottom: 130/1854
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Human-Sized",
  38975. height: math.unit(6, "feet")
  38976. },
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(4, "meters"),
  38980. default: true
  38981. },
  38982. {
  38983. name: "Large",
  38984. height: math.unit(6, "m")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(7, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/maru/front.svg",
  38996. extra: 1595/1570,
  38997. bottom: 0/1595
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(7, "feet"),
  39005. default: true
  39006. },
  39007. {
  39008. name: "Macro",
  39009. height: math.unit(700, "feet")
  39010. },
  39011. {
  39012. name: "Mega Macro",
  39013. height: math.unit(25, "miles")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(6, "feet"),
  39022. weight: math.unit(170, "lb"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/xenon/front.svg",
  39026. extra: 1376/1305,
  39027. bottom: 56/1432
  39028. }
  39029. },
  39030. back: {
  39031. height: math.unit(6, "feet"),
  39032. weight: math.unit(170, "lb"),
  39033. name: "Back",
  39034. image: {
  39035. source: "./media/characters/xenon/back.svg",
  39036. extra: 1328/1259,
  39037. bottom: 95/1423
  39038. }
  39039. },
  39040. maw: {
  39041. height: math.unit(0.52, "feet"),
  39042. name: "Maw",
  39043. image: {
  39044. source: "./media/characters/xenon/maw.svg"
  39045. }
  39046. },
  39047. hand: {
  39048. height: math.unit(0.82, "feet"),
  39049. name: "Hand",
  39050. image: {
  39051. source: "./media/characters/xenon/hand.svg"
  39052. }
  39053. },
  39054. foot: {
  39055. height: math.unit(1.13, "feet"),
  39056. name: "Foot",
  39057. image: {
  39058. source: "./media/characters/xenon/foot.svg"
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Micro",
  39065. height: math.unit(0.8, "inches")
  39066. },
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(6, "feet")
  39070. },
  39071. {
  39072. name: "Macro",
  39073. height: math.unit(50, "feet"),
  39074. default: true
  39075. },
  39076. {
  39077. name: "Macro+",
  39078. height: math.unit(250, "feet")
  39079. },
  39080. {
  39081. name: "Megamacro",
  39082. height: math.unit(1500, "feet")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(7 + 5/12, "feet"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/zane/front.svg",
  39094. extra: 1260/1203,
  39095. bottom: 94/1354
  39096. }
  39097. },
  39098. back: {
  39099. height: math.unit(5.05, "feet"),
  39100. name: "Back",
  39101. image: {
  39102. source: "./media/characters/zane/back.svg",
  39103. extra: 893/829,
  39104. bottom: 30/923
  39105. }
  39106. },
  39107. werewolf: {
  39108. height: math.unit(11, "feet"),
  39109. name: "Werewolf",
  39110. image: {
  39111. source: "./media/characters/zane/werewolf.svg",
  39112. extra: 1383/1323,
  39113. bottom: 89/1472
  39114. }
  39115. },
  39116. foot: {
  39117. height: math.unit(1.46, "feet"),
  39118. name: "Foot",
  39119. image: {
  39120. source: "./media/characters/zane/foot.svg"
  39121. }
  39122. },
  39123. footFront: {
  39124. height: math.unit(0.784, "feet"),
  39125. name: "Foot (Front)",
  39126. image: {
  39127. source: "./media/characters/zane/foot-front.svg"
  39128. }
  39129. },
  39130. dick: {
  39131. height: math.unit(1.95, "feet"),
  39132. name: "Dick",
  39133. image: {
  39134. source: "./media/characters/zane/dick.svg"
  39135. }
  39136. },
  39137. dickWerewolf: {
  39138. height: math.unit(3.77, "feet"),
  39139. name: "Dick (Werewolf)",
  39140. image: {
  39141. source: "./media/characters/zane/dick.svg"
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(7 + 5/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(6 + 2/12, "feet"),
  39158. weight: math.unit(284, "lb"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/benni-desparque/front.svg",
  39162. extra: 1353/1126,
  39163. bottom: 69/1422
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Civilian",
  39170. height: math.unit(6 + 2/12, "feet")
  39171. },
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(98, "feet"),
  39175. default: true
  39176. },
  39177. {
  39178. name: "Kaiju Fighter",
  39179. height: math.unit(268, "feet")
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(5, "feet"),
  39188. weight: math.unit(105, "lb"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/maxine/front.svg",
  39192. extra: 1386/1250,
  39193. bottom: 71/1457
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(5, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(11 + 7/12, "feet"),
  39210. weight: math.unit(9576, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/scaly/front.svg",
  39214. extra: 888/867,
  39215. bottom: 36/924
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(11 + 7/12, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(9, "inches"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/saelria/front.svg",
  39235. extra: 662/621,
  39236. bottom: 12/674
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Tiny",
  39243. height: math.unit(9, "inches"),
  39244. default: true
  39245. },
  39246. ]
  39247. ))
  39248. characterMakers.push(() => makeCharacter(
  39249. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39250. {
  39251. front: {
  39252. height: math.unit(80, "meters"),
  39253. weight: math.unit(7000, "tonnes"),
  39254. name: "Front",
  39255. image: {
  39256. source: "./media/characters/tef/front.svg",
  39257. extra: 2036/1991,
  39258. bottom: 54/2090
  39259. }
  39260. },
  39261. back: {
  39262. height: math.unit(80, "meters"),
  39263. weight: math.unit(7000, "tonnes"),
  39264. name: "Back",
  39265. image: {
  39266. source: "./media/characters/tef/back.svg",
  39267. extra: 2036/1991,
  39268. bottom: 54/2090
  39269. }
  39270. },
  39271. },
  39272. [
  39273. {
  39274. name: "Macro",
  39275. height: math.unit(80, "meters"),
  39276. default: true
  39277. },
  39278. ]
  39279. ))
  39280. characterMakers.push(() => makeCharacter(
  39281. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39282. {
  39283. front: {
  39284. height: math.unit(13, "feet"),
  39285. weight: math.unit(6, "tons"),
  39286. name: "Front",
  39287. image: {
  39288. source: "./media/characters/rover/front.svg",
  39289. extra: 1233/1156,
  39290. bottom: 50/1283
  39291. }
  39292. },
  39293. back: {
  39294. height: math.unit(13, "feet"),
  39295. weight: math.unit(6, "tons"),
  39296. name: "Back",
  39297. image: {
  39298. source: "./media/characters/rover/back.svg",
  39299. extra: 1327/1258,
  39300. bottom: 39/1366
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(13, "feet"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Macro",
  39312. height: math.unit(1300, "feet")
  39313. },
  39314. {
  39315. name: "Megamacro",
  39316. height: math.unit(1300, "miles")
  39317. },
  39318. {
  39319. name: "Gigamacro",
  39320. height: math.unit(1300000, "miles")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(6, "feet"),
  39329. weight: math.unit(150, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/ariz/front.svg",
  39333. extra: 1401/1346,
  39334. bottom: 5/1406
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(10, "feet"),
  39342. default: true
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(6, "feet"),
  39351. weight: math.unit(140, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/sigrun/front.svg",
  39355. extra: 1418/1359,
  39356. bottom: 27/1445
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Macro",
  39363. height: math.unit(35, "feet"),
  39364. default: true
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(6, "feet"),
  39373. weight: math.unit(150, "lb"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/numin/front.svg",
  39377. extra: 1433/1388,
  39378. bottom: 12/1445
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(21.5, "km"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(6, "feet"),
  39395. weight: math.unit(463, "lb"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/melwa/front.svg",
  39399. extra: 1307/1248,
  39400. bottom: 93/1400
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Macro",
  39407. height: math.unit(50, "meters"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(325, "feet"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/zorkaiju/front.svg",
  39420. extra: 1955/1814,
  39421. bottom: 40/1995
  39422. }
  39423. },
  39424. frontExtended: {
  39425. height: math.unit(325, "feet"),
  39426. name: "Front (Extended)",
  39427. image: {
  39428. source: "./media/characters/zorkaiju/front-extended.svg",
  39429. extra: 1955/1814,
  39430. bottom: 40/1995
  39431. }
  39432. },
  39433. side: {
  39434. height: math.unit(325, "feet"),
  39435. name: "Side",
  39436. image: {
  39437. source: "./media/characters/zorkaiju/side.svg",
  39438. extra: 1495/1396,
  39439. bottom: 17/1512
  39440. }
  39441. },
  39442. sideExtended: {
  39443. height: math.unit(325, "feet"),
  39444. name: "Side (Extended)",
  39445. image: {
  39446. source: "./media/characters/zorkaiju/side-extended.svg",
  39447. extra: 1495/1396,
  39448. bottom: 17/1512
  39449. }
  39450. },
  39451. back: {
  39452. height: math.unit(325, "feet"),
  39453. name: "Back",
  39454. image: {
  39455. source: "./media/characters/zorkaiju/back.svg",
  39456. extra: 1959/1821,
  39457. bottom: 31/1990
  39458. }
  39459. },
  39460. backExtended: {
  39461. height: math.unit(325, "feet"),
  39462. name: "Back (Extended)",
  39463. image: {
  39464. source: "./media/characters/zorkaiju/back-extended.svg",
  39465. extra: 1959/1821,
  39466. bottom: 31/1990
  39467. }
  39468. },
  39469. hand: {
  39470. height: math.unit(58.4, "feet"),
  39471. name: "Hand",
  39472. image: {
  39473. source: "./media/characters/zorkaiju/hand.svg"
  39474. }
  39475. },
  39476. handExtended: {
  39477. height: math.unit(61.4, "feet"),
  39478. name: "Hand (Extended)",
  39479. image: {
  39480. source: "./media/characters/zorkaiju/hand-extended.svg"
  39481. }
  39482. },
  39483. foot: {
  39484. height: math.unit(95, "feet"),
  39485. name: "Foot",
  39486. image: {
  39487. source: "./media/characters/zorkaiju/foot.svg"
  39488. }
  39489. },
  39490. leftArm: {
  39491. height: math.unit(59, "feet"),
  39492. name: "Left Arm",
  39493. image: {
  39494. source: "./media/characters/zorkaiju/left-arm.svg"
  39495. }
  39496. },
  39497. rightArm: {
  39498. height: math.unit(59, "feet"),
  39499. name: "Right Arm",
  39500. image: {
  39501. source: "./media/characters/zorkaiju/right-arm.svg"
  39502. }
  39503. },
  39504. tail: {
  39505. height: math.unit(104, "feet"),
  39506. name: "Tail",
  39507. image: {
  39508. source: "./media/characters/zorkaiju/tail.svg"
  39509. }
  39510. },
  39511. tailExtended: {
  39512. height: math.unit(104, "feet"),
  39513. name: "Tail (Extended)",
  39514. image: {
  39515. source: "./media/characters/zorkaiju/tail-extended.svg"
  39516. }
  39517. },
  39518. tailBottom: {
  39519. height: math.unit(104, "feet"),
  39520. name: "Tail Bottom",
  39521. image: {
  39522. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39523. }
  39524. },
  39525. crystal: {
  39526. height: math.unit(27.54, "feet"),
  39527. name: "Crystal",
  39528. image: {
  39529. source: "./media/characters/zorkaiju/crystal.svg"
  39530. }
  39531. },
  39532. },
  39533. [
  39534. {
  39535. name: "Kaiju",
  39536. height: math.unit(325, "feet"),
  39537. default: true
  39538. },
  39539. ]
  39540. ))
  39541. characterMakers.push(() => makeCharacter(
  39542. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39543. {
  39544. front: {
  39545. height: math.unit(6 + 1/12, "feet"),
  39546. weight: math.unit(115, "lb"),
  39547. name: "Front",
  39548. image: {
  39549. source: "./media/characters/bailey-belfry/front.svg",
  39550. extra: 1240/1121,
  39551. bottom: 101/1341
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Normal",
  39558. height: math.unit(6 + 1/12, "feet"),
  39559. default: true
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39565. {
  39566. side: {
  39567. height: math.unit(4, "meters"),
  39568. weight: math.unit(250, "kg"),
  39569. name: "Side",
  39570. image: {
  39571. source: "./media/characters/blacky/side.svg",
  39572. extra: 1027/919,
  39573. bottom: 43/1070
  39574. }
  39575. },
  39576. maw: {
  39577. height: math.unit(1, "meters"),
  39578. name: "Maw",
  39579. image: {
  39580. source: "./media/characters/blacky/maw.svg"
  39581. }
  39582. },
  39583. paw: {
  39584. height: math.unit(1, "meters"),
  39585. name: "Paw",
  39586. image: {
  39587. source: "./media/characters/blacky/paw.svg"
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(4, "meters"),
  39595. default: true
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(170, "cm"),
  39604. weight: math.unit(66, "kg"),
  39605. name: "Front",
  39606. image: {
  39607. source: "./media/characters/thux-ei/front.svg",
  39608. extra: 1109/1011,
  39609. bottom: 8/1117
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(170, "cm"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(5, "feet"),
  39626. weight: math.unit(120, "lb"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/roxanne-voltaire/front.svg",
  39630. extra: 1901/1779,
  39631. bottom: 53/1954
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(5, "feet"),
  39639. default: true
  39640. },
  39641. {
  39642. name: "Giant",
  39643. height: math.unit(50, "feet")
  39644. },
  39645. {
  39646. name: "Titan",
  39647. height: math.unit(500, "feet")
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(5000, "feet")
  39652. },
  39653. {
  39654. name: "Megamacro",
  39655. height: math.unit(50000, "feet")
  39656. },
  39657. {
  39658. name: "Gigamacro",
  39659. height: math.unit(500000, "feet")
  39660. },
  39661. {
  39662. name: "Teramacro",
  39663. height: math.unit(5e6, "feet")
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(6 + 2/12, "feet"),
  39672. name: "Front",
  39673. image: {
  39674. source: "./media/characters/squeaks/front.svg",
  39675. extra: 1823/1768,
  39676. bottom: 138/1961
  39677. }
  39678. },
  39679. },
  39680. [
  39681. {
  39682. name: "Micro",
  39683. height: math.unit(0.5, "inches")
  39684. },
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(6 + 2/12, "feet"),
  39688. default: true
  39689. },
  39690. {
  39691. name: "Macro",
  39692. height: math.unit(600, "feet")
  39693. },
  39694. ]
  39695. ))
  39696. characterMakers.push(() => makeCharacter(
  39697. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39698. {
  39699. front: {
  39700. height: math.unit(1.72, "meters"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/archinger/front.svg",
  39704. extra: 1861/1675,
  39705. bottom: 125/1986
  39706. }
  39707. },
  39708. back: {
  39709. height: math.unit(1.72, "meters"),
  39710. name: "Back",
  39711. image: {
  39712. source: "./media/characters/archinger/back.svg",
  39713. extra: 1844/1701,
  39714. bottom: 104/1948
  39715. }
  39716. },
  39717. cock: {
  39718. height: math.unit(0.59, "feet"),
  39719. name: "Cock",
  39720. image: {
  39721. source: "./media/characters/archinger/cock.svg"
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(1.72, "meters"),
  39729. default: true
  39730. },
  39731. {
  39732. name: "Macro",
  39733. height: math.unit(84, "meters")
  39734. },
  39735. {
  39736. name: "Macro+",
  39737. height: math.unit(112, "meters")
  39738. },
  39739. {
  39740. name: "Macro++",
  39741. height: math.unit(960, "meters")
  39742. },
  39743. {
  39744. name: "Macro+++",
  39745. height: math.unit(4, "km")
  39746. },
  39747. {
  39748. name: "Macro++++",
  39749. height: math.unit(48, "km")
  39750. },
  39751. {
  39752. name: "Macro+++++",
  39753. height: math.unit(4500, "km")
  39754. },
  39755. ]
  39756. ))
  39757. characterMakers.push(() => makeCharacter(
  39758. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39759. {
  39760. front: {
  39761. height: math.unit(5 + 5/12, "feet"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/alsnapz/front.svg",
  39765. extra: 1157/1065,
  39766. bottom: 42/1199
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(5 + 5/12, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39780. {
  39781. side: {
  39782. height: math.unit(3.2, "earths"),
  39783. name: "Side",
  39784. image: {
  39785. source: "./media/characters/mag/side.svg",
  39786. extra: 1331/1008,
  39787. bottom: 52/1383
  39788. }
  39789. },
  39790. wing: {
  39791. height: math.unit(1.94, "earths"),
  39792. name: "Wing",
  39793. image: {
  39794. source: "./media/characters/mag/wing.svg"
  39795. }
  39796. },
  39797. dick: {
  39798. height: math.unit(1.8, "earths"),
  39799. name: "Dick",
  39800. image: {
  39801. source: "./media/characters/mag/dick.svg"
  39802. }
  39803. },
  39804. ass: {
  39805. height: math.unit(1.33, "earths"),
  39806. name: "Ass",
  39807. image: {
  39808. source: "./media/characters/mag/ass.svg"
  39809. }
  39810. },
  39811. head: {
  39812. height: math.unit(1.1, "earths"),
  39813. name: "Head",
  39814. image: {
  39815. source: "./media/characters/mag/head.svg"
  39816. }
  39817. },
  39818. maw: {
  39819. height: math.unit(1.62, "earths"),
  39820. name: "Maw",
  39821. image: {
  39822. source: "./media/characters/mag/maw.svg"
  39823. }
  39824. },
  39825. },
  39826. [
  39827. {
  39828. name: "Small",
  39829. height: math.unit(162, "feet")
  39830. },
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(3.2, "earths"),
  39834. default: true
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(512, "feet"),
  39843. weight: math.unit(63509, "tonnes"),
  39844. name: "Front",
  39845. image: {
  39846. source: "./media/characters/vorrel-harroc/front.svg",
  39847. extra: 1075/1063,
  39848. bottom: 62/1137
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(10, "feet")
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(512, "feet"),
  39860. default: true
  39861. },
  39862. {
  39863. name: "Megamacro",
  39864. height: math.unit(256, "miles")
  39865. },
  39866. {
  39867. name: "Gigamacro",
  39868. height: math.unit(4096, "miles")
  39869. },
  39870. ]
  39871. ))
  39872. characterMakers.push(() => makeCharacter(
  39873. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39874. {
  39875. side: {
  39876. height: math.unit(50, "feet"),
  39877. name: "Side",
  39878. image: {
  39879. source: "./media/characters/froimar/side.svg",
  39880. extra: 855/638,
  39881. bottom: 99/954
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Macro",
  39888. height: math.unit(50, "feet"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(210, "miles"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/timothy/front.svg",
  39901. extra: 1007/943,
  39902. bottom: 62/1069
  39903. }
  39904. },
  39905. frontSkirt: {
  39906. height: math.unit(210, "miles"),
  39907. name: "Front (Skirt)",
  39908. image: {
  39909. source: "./media/characters/timothy/front-skirt.svg",
  39910. extra: 1007/943,
  39911. bottom: 62/1069
  39912. }
  39913. },
  39914. frontCoat: {
  39915. height: math.unit(210, "miles"),
  39916. name: "Front (Coat)",
  39917. image: {
  39918. source: "./media/characters/timothy/front-coat.svg",
  39919. extra: 1007/943,
  39920. bottom: 62/1069
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Macro",
  39927. height: math.unit(210, "miles"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Megamacro",
  39932. height: math.unit(210000, "miles")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(188, "feet"),
  39941. name: "Front",
  39942. image: {
  39943. source: "./media/characters/pyotr/front.svg",
  39944. extra: 1912/1826,
  39945. bottom: 18/1930
  39946. }
  39947. },
  39948. },
  39949. [
  39950. {
  39951. name: "Macro",
  39952. height: math.unit(188, "feet"),
  39953. default: true
  39954. },
  39955. {
  39956. name: "Megamacro",
  39957. height: math.unit(8, "miles")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39963. {
  39964. side: {
  39965. height: math.unit(10, "feet"),
  39966. weight: math.unit(4500, "lb"),
  39967. name: "Side",
  39968. image: {
  39969. source: "./media/characters/ackart/side.svg",
  39970. extra: 1776/1668,
  39971. bottom: 116/1892
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(10, "feet"),
  39979. default: true
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39985. {
  39986. side: {
  39987. height: math.unit(21, "feet"),
  39988. name: "Side",
  39989. image: {
  39990. source: "./media/characters/nolow/side.svg",
  39991. extra: 1484/1434,
  39992. bottom: 85/1569
  39993. }
  39994. },
  39995. sideErect: {
  39996. height: math.unit(21, "feet"),
  39997. name: "Side-erect",
  39998. image: {
  39999. source: "./media/characters/nolow/side-erect.svg",
  40000. extra: 1484/1434,
  40001. bottom: 85/1569
  40002. }
  40003. },
  40004. },
  40005. [
  40006. {
  40007. name: "Regular",
  40008. height: math.unit(12, "feet")
  40009. },
  40010. {
  40011. name: "Big Chee",
  40012. height: math.unit(21, "feet"),
  40013. default: true
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(7, "feet"),
  40022. weight: math.unit(250, "lb"),
  40023. name: "Front",
  40024. image: {
  40025. source: "./media/characters/nines/front.svg",
  40026. extra: 1741/1607,
  40027. bottom: 41/1782
  40028. }
  40029. },
  40030. side: {
  40031. height: math.unit(7, "feet"),
  40032. weight: math.unit(250, "lb"),
  40033. name: "Side",
  40034. image: {
  40035. source: "./media/characters/nines/side.svg",
  40036. extra: 1854/1735,
  40037. bottom: 93/1947
  40038. }
  40039. },
  40040. back: {
  40041. height: math.unit(7, "feet"),
  40042. weight: math.unit(250, "lb"),
  40043. name: "Back",
  40044. image: {
  40045. source: "./media/characters/nines/back.svg",
  40046. extra: 1748/1615,
  40047. bottom: 20/1768
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Megamacro",
  40054. height: math.unit(99, "km"),
  40055. default: true
  40056. },
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40061. {
  40062. front: {
  40063. height: math.unit(5 + 10/12, "feet"),
  40064. weight: math.unit(210, "lb"),
  40065. name: "Front",
  40066. image: {
  40067. source: "./media/characters/zenith/front.svg",
  40068. extra: 1531/1452,
  40069. bottom: 198/1729
  40070. }
  40071. },
  40072. back: {
  40073. height: math.unit(5 + 10/12, "feet"),
  40074. weight: math.unit(210, "lb"),
  40075. name: "Back",
  40076. image: {
  40077. source: "./media/characters/zenith/back.svg",
  40078. extra: 1571/1487,
  40079. bottom: 75/1646
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Normal",
  40086. height: math.unit(5 + 10/12, "feet"),
  40087. default: true
  40088. }
  40089. ]
  40090. ))
  40091. characterMakers.push(() => makeCharacter(
  40092. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40093. {
  40094. front: {
  40095. height: math.unit(4, "feet"),
  40096. weight: math.unit(60, "lb"),
  40097. name: "Front",
  40098. image: {
  40099. source: "./media/characters/jasper/front.svg",
  40100. extra: 1450/1379,
  40101. bottom: 19/1469
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Normal",
  40108. height: math.unit(4, "feet"),
  40109. default: true
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(6 + 5/12, "feet"),
  40118. weight: math.unit(290, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/tiberius-thyben/front.svg",
  40122. extra: 757/739,
  40123. bottom: 39/796
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Micro",
  40130. height: math.unit(1.5, "inches")
  40131. },
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(6 + 5/12, "feet"),
  40135. default: true
  40136. },
  40137. {
  40138. name: "Macro",
  40139. height: math.unit(300, "feet")
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(5 + 6/12, "feet"),
  40148. weight: math.unit(60, "kg"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/sabre/front.svg",
  40152. extra: 738/671,
  40153. bottom: 27/765
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Teeny",
  40160. height: math.unit(2, "inches")
  40161. },
  40162. {
  40163. name: "Smol",
  40164. height: math.unit(8, "inches")
  40165. },
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(5 + 6/12, "feet"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Mini-Macro",
  40173. height: math.unit(15, "feet")
  40174. },
  40175. {
  40176. name: "Macro",
  40177. height: math.unit(50, "feet")
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40183. {
  40184. front: {
  40185. height: math.unit(6 + 4/12, "feet"),
  40186. weight: math.unit(170, "lb"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/charlie/front.svg",
  40190. extra: 1348/1228,
  40191. bottom: 15/1363
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Macro",
  40198. height: math.unit(1700, "meters"),
  40199. default: true
  40200. },
  40201. {
  40202. name: "MegaMacro",
  40203. height: math.unit(20400, "meters")
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40209. {
  40210. front: {
  40211. height: math.unit(6 + 3/12, "feet"),
  40212. weight: math.unit(185, "lb"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/susan-grant/front.svg",
  40216. extra: 1351/1327,
  40217. bottom: 26/1377
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(6 + 3/12, "feet"),
  40225. default: true
  40226. },
  40227. {
  40228. name: "Macro",
  40229. height: math.unit(225, "feet")
  40230. },
  40231. {
  40232. name: "Macro+",
  40233. height: math.unit(900, "feet")
  40234. },
  40235. {
  40236. name: "MegaMacro",
  40237. height: math.unit(14400, "feet")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(5 + 4/12, "feet"),
  40246. weight: math.unit(110, "lb"),
  40247. name: "Front",
  40248. image: {
  40249. source: "./media/characters/axel-isanov/front.svg",
  40250. extra: 1096/1065,
  40251. bottom: 13/1109
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Normal",
  40258. height: math.unit(5 + 4/12, "feet"),
  40259. default: true
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40265. {
  40266. front: {
  40267. height: math.unit(9, "feet"),
  40268. weight: math.unit(467, "lb"),
  40269. name: "Front",
  40270. image: {
  40271. source: "./media/characters/necahual/front.svg",
  40272. extra: 920/873,
  40273. bottom: 26/946
  40274. }
  40275. },
  40276. back: {
  40277. height: math.unit(9, "feet"),
  40278. weight: math.unit(467, "lb"),
  40279. name: "Back",
  40280. image: {
  40281. source: "./media/characters/necahual/back.svg",
  40282. extra: 930/884,
  40283. bottom: 16/946
  40284. }
  40285. },
  40286. frontUnderwear: {
  40287. height: math.unit(9, "feet"),
  40288. weight: math.unit(467, "lb"),
  40289. name: "Front (Underwear)",
  40290. image: {
  40291. source: "./media/characters/necahual/front-underwear.svg",
  40292. extra: 920/873,
  40293. bottom: 26/946
  40294. }
  40295. },
  40296. frontDressed: {
  40297. height: math.unit(9, "feet"),
  40298. weight: math.unit(467, "lb"),
  40299. name: "Front (Dressed)",
  40300. image: {
  40301. source: "./media/characters/necahual/front-dressed.svg",
  40302. extra: 920/873,
  40303. bottom: 26/946
  40304. }
  40305. },
  40306. },
  40307. [
  40308. {
  40309. name: "Comprsesed",
  40310. height: math.unit(9, "feet")
  40311. },
  40312. {
  40313. name: "Natural",
  40314. height: math.unit(15, "feet"),
  40315. default: true
  40316. },
  40317. {
  40318. name: "Boosted",
  40319. height: math.unit(50, "feet")
  40320. },
  40321. {
  40322. name: "Boosted+",
  40323. height: math.unit(150, "feet")
  40324. },
  40325. {
  40326. name: "Max",
  40327. height: math.unit(500, "feet")
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(22 + 1/12, "feet"),
  40336. weight: math.unit(3200, "lb"),
  40337. name: "Front",
  40338. image: {
  40339. source: "./media/characters/theo-acacia/front.svg",
  40340. extra: 1796/1741,
  40341. bottom: 83/1879
  40342. }
  40343. },
  40344. frontUnderwear: {
  40345. height: math.unit(22 + 1/12, "feet"),
  40346. weight: math.unit(3200, "lb"),
  40347. name: "Front (Underwear)",
  40348. image: {
  40349. source: "./media/characters/theo-acacia/front-underwear.svg",
  40350. extra: 1796/1741,
  40351. bottom: 83/1879
  40352. }
  40353. },
  40354. frontNude: {
  40355. height: math.unit(22 + 1/12, "feet"),
  40356. weight: math.unit(3200, "lb"),
  40357. name: "Front (Nude)",
  40358. image: {
  40359. source: "./media/characters/theo-acacia/front-nude.svg",
  40360. extra: 1796/1741,
  40361. bottom: 83/1879
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Normal",
  40368. height: math.unit(22 + 1/12, "feet"),
  40369. default: true
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(20, "feet"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/astra/front.svg",
  40381. extra: 1850/1714,
  40382. bottom: 106/1956
  40383. }
  40384. },
  40385. frontUndressed: {
  40386. height: math.unit(20, "feet"),
  40387. name: "Front (Undressed)",
  40388. image: {
  40389. source: "./media/characters/astra/front-undressed.svg",
  40390. extra: 1926/1749,
  40391. bottom: 0/1926
  40392. }
  40393. },
  40394. hand: {
  40395. height: math.unit(1.53, "feet"),
  40396. name: "Hand",
  40397. image: {
  40398. source: "./media/characters/astra/hand.svg"
  40399. }
  40400. },
  40401. paw: {
  40402. height: math.unit(1.53, "feet"),
  40403. name: "Paw",
  40404. image: {
  40405. source: "./media/characters/astra/paw.svg"
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Smallest",
  40412. height: math.unit(20, "feet")
  40413. },
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(1e9, "miles"),
  40417. default: true
  40418. },
  40419. {
  40420. name: "Larger",
  40421. height: math.unit(5, "multiverses")
  40422. },
  40423. {
  40424. name: "Largest",
  40425. height: math.unit(1e9, "multiverses")
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40431. {
  40432. front: {
  40433. height: math.unit(8, "feet"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/breanna/front.svg",
  40437. extra: 1912/1632,
  40438. bottom: 33/1945
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Smallest",
  40445. height: math.unit(8, "feet")
  40446. },
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(1, "mile"),
  40450. default: true
  40451. },
  40452. {
  40453. name: "Maximum",
  40454. height: math.unit(1500000000000, "lightyears")
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(5 + 11/12, "feet"),
  40463. weight: math.unit(155, "lb"),
  40464. name: "Front",
  40465. image: {
  40466. source: "./media/characters/cai/front.svg",
  40467. extra: 1823/1702,
  40468. bottom: 32/1855
  40469. }
  40470. },
  40471. back: {
  40472. height: math.unit(5 + 11/12, "feet"),
  40473. weight: math.unit(155, "lb"),
  40474. name: "Back",
  40475. image: {
  40476. source: "./media/characters/cai/back.svg",
  40477. extra: 1809/1708,
  40478. bottom: 31/1840
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Normal",
  40485. height: math.unit(5 + 11/12, "feet"),
  40486. default: true
  40487. },
  40488. {
  40489. name: "Big",
  40490. height: math.unit(15, "feet")
  40491. },
  40492. {
  40493. name: "Macro",
  40494. height: math.unit(200, "feet")
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40500. {
  40501. front: {
  40502. height: math.unit(5 + 6/12, "feet"),
  40503. weight: math.unit(160, "lb"),
  40504. name: "Front",
  40505. image: {
  40506. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40507. extra: 1227/1174,
  40508. bottom: 37/1264
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Macro",
  40515. height: math.unit(444, "meters"),
  40516. default: true
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(18 + 7/12, "feet"),
  40525. name: "Front",
  40526. image: {
  40527. source: "./media/characters/rex/front.svg",
  40528. extra: 1941/1807,
  40529. bottom: 66/2007
  40530. }
  40531. },
  40532. back: {
  40533. height: math.unit(18 + 7/12, "feet"),
  40534. name: "Back",
  40535. image: {
  40536. source: "./media/characters/rex/back.svg",
  40537. extra: 1937/1822,
  40538. bottom: 42/1979
  40539. }
  40540. },
  40541. boot: {
  40542. height: math.unit(3.45, "feet"),
  40543. name: "Boot",
  40544. image: {
  40545. source: "./media/characters/rex/boot.svg"
  40546. }
  40547. },
  40548. paw: {
  40549. height: math.unit(4.17, "feet"),
  40550. name: "Paw",
  40551. image: {
  40552. source: "./media/characters/rex/paw.svg"
  40553. }
  40554. },
  40555. head: {
  40556. height: math.unit(6.728, "feet"),
  40557. name: "Head",
  40558. image: {
  40559. source: "./media/characters/rex/head.svg"
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Nano",
  40566. height: math.unit(18 + 7/12, "feet")
  40567. },
  40568. {
  40569. name: "Micro",
  40570. height: math.unit(1.5, "megameters")
  40571. },
  40572. {
  40573. name: "Normal",
  40574. height: math.unit(440, "megameters"),
  40575. default: true
  40576. },
  40577. {
  40578. name: "Macro",
  40579. height: math.unit(2.5, "gigameters")
  40580. },
  40581. {
  40582. name: "Gigamacro",
  40583. height: math.unit(2, "galaxies")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40589. {
  40590. side: {
  40591. height: math.unit(32, "feet"),
  40592. weight: math.unit(250000, "lb"),
  40593. name: "Side",
  40594. image: {
  40595. source: "./media/characters/silverwing/side.svg",
  40596. extra: 1100/1019,
  40597. bottom: 204/1304
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(32, "feet"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(6 + 6/12, "feet"),
  40614. weight: math.unit(350, "lb"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/tristan-hawthorne/front.svg",
  40618. extra: 1159/1124,
  40619. bottom: 37/1196
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(6 + 6/12, "feet"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(5 + 11/12, "feet"),
  40636. weight: math.unit(190, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/mizu/front.svg",
  40640. extra: 1988/1788,
  40641. bottom: 14/2002
  40642. }
  40643. },
  40644. },
  40645. [
  40646. {
  40647. name: "Normal",
  40648. height: math.unit(5 + 11/12, "feet"),
  40649. default: true
  40650. },
  40651. ]
  40652. ))
  40653. characterMakers.push(() => makeCharacter(
  40654. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40655. {
  40656. front: {
  40657. height: math.unit(6, "feet"),
  40658. name: "Front",
  40659. image: {
  40660. source: "./media/characters/moonlight-rose-terra/front.svg",
  40661. extra: 1434/1252,
  40662. bottom: 48/1482
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "TRAPPIST-1D",
  40669. height: math.unit(4992*2, "km")
  40670. },
  40671. {
  40672. name: "Earth",
  40673. height: math.unit(6367*2, "km"),
  40674. default: true
  40675. },
  40676. {
  40677. name: "Kepler-22b",
  40678. height: math.unit(15282*2, "km")
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40684. {
  40685. front: {
  40686. height: math.unit(6, "feet"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40690. extra: 1851/1712,
  40691. bottom: 0/1851
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Enceladus",
  40698. height: math.unit(513*2, "km")
  40699. },
  40700. {
  40701. name: "Europe",
  40702. height: math.unit(1560*2, "km")
  40703. },
  40704. {
  40705. name: "Neptune",
  40706. height: math.unit(24622*2, "km"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "CoRoT-9b",
  40711. height: math.unit(75067*2, "km")
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(6, "feet"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40723. extra: 1367/1286,
  40724. bottom: 55/1422
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Saturn",
  40731. height: math.unit(58232*2, "km")
  40732. },
  40733. {
  40734. name: "Jupiter",
  40735. height: math.unit(69911*2, "km"),
  40736. default: true
  40737. },
  40738. {
  40739. name: "HD 100546 b",
  40740. height: math.unit(482938, "km")
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(1.7, "feet"),
  40749. weight: math.unit(50, "lb"),
  40750. name: "Front",
  40751. image: {
  40752. source: "./media/characters/dechroma/front.svg",
  40753. extra: 1095/859,
  40754. bottom: 64/1159
  40755. }
  40756. },
  40757. },
  40758. [
  40759. {
  40760. name: "Normal",
  40761. height: math.unit(1.7, "feet"),
  40762. default: true
  40763. },
  40764. ]
  40765. ))
  40766. characterMakers.push(() => makeCharacter(
  40767. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40768. {
  40769. side: {
  40770. height: math.unit(30, "feet"),
  40771. name: "Side",
  40772. image: {
  40773. source: "./media/characters/veluren-thanazel/side.svg",
  40774. extra: 1611/633,
  40775. bottom: 118/1729
  40776. }
  40777. },
  40778. front: {
  40779. height: math.unit(30, "feet"),
  40780. name: "Front",
  40781. image: {
  40782. source: "./media/characters/veluren-thanazel/front.svg",
  40783. extra: 1486/636,
  40784. bottom: 238/1724
  40785. }
  40786. },
  40787. head: {
  40788. height: math.unit(21.4, "feet"),
  40789. name: "Head",
  40790. image: {
  40791. source: "./media/characters/veluren-thanazel/head.svg"
  40792. }
  40793. },
  40794. genitals: {
  40795. height: math.unit(19.4, "feet"),
  40796. name: "Genitals",
  40797. image: {
  40798. source: "./media/characters/veluren-thanazel/genitals.svg"
  40799. }
  40800. },
  40801. },
  40802. [
  40803. {
  40804. name: "Social",
  40805. height: math.unit(6, "feet")
  40806. },
  40807. {
  40808. name: "Play",
  40809. height: math.unit(12, "feet")
  40810. },
  40811. {
  40812. name: "True",
  40813. height: math.unit(30, "feet"),
  40814. default: true
  40815. },
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40820. {
  40821. front: {
  40822. height: math.unit(7 + 6/12, "feet"),
  40823. weight: math.unit(500, "kg"),
  40824. name: "Front",
  40825. image: {
  40826. source: "./media/characters/arcturas/front.svg",
  40827. extra: 1700/1500,
  40828. bottom: 145/1845
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(7 + 6/12, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40842. {
  40843. side: {
  40844. height: math.unit(6, "feet"),
  40845. weight: math.unit(2, "tons"),
  40846. name: "Side",
  40847. image: {
  40848. source: "./media/characters/vitaen/side.svg",
  40849. extra: 1157/617,
  40850. bottom: 122/1279
  40851. }
  40852. },
  40853. },
  40854. [
  40855. {
  40856. name: "Normal",
  40857. height: math.unit(6, "feet"),
  40858. default: true
  40859. },
  40860. ]
  40861. ))
  40862. characterMakers.push(() => makeCharacter(
  40863. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40864. {
  40865. front: {
  40866. height: math.unit(19, "feet"),
  40867. name: "Front",
  40868. image: {
  40869. source: "./media/characters/fia-dreamweaver/front.svg",
  40870. extra: 1630/1504,
  40871. bottom: 25/1655
  40872. }
  40873. },
  40874. },
  40875. [
  40876. {
  40877. name: "Normal",
  40878. height: math.unit(19, "feet"),
  40879. default: true
  40880. },
  40881. ]
  40882. ))
  40883. characterMakers.push(() => makeCharacter(
  40884. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40885. {
  40886. front: {
  40887. height: math.unit(5 + 4/12, "feet"),
  40888. name: "Front",
  40889. image: {
  40890. source: "./media/characters/artan/front.svg",
  40891. extra: 1618/1535,
  40892. bottom: 46/1664
  40893. }
  40894. },
  40895. back: {
  40896. height: math.unit(5 + 4/12, "feet"),
  40897. name: "Back",
  40898. image: {
  40899. source: "./media/characters/artan/back.svg",
  40900. extra: 1618/1543,
  40901. bottom: 31/1649
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Normal",
  40908. height: math.unit(5 + 4/12, "feet"),
  40909. default: true
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40915. {
  40916. side: {
  40917. height: math.unit(182, "cm"),
  40918. weight: math.unit(1000, "lb"),
  40919. name: "Side",
  40920. image: {
  40921. source: "./media/characters/silver-dragon/side.svg",
  40922. extra: 710/287,
  40923. bottom: 88/798
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Normal",
  40930. height: math.unit(182, "cm"),
  40931. default: true
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40937. {
  40938. side: {
  40939. height: math.unit(6 + 6/12, "feet"),
  40940. weight: math.unit(1.5, "tons"),
  40941. name: "Side",
  40942. image: {
  40943. source: "./media/characters/zephyr/side.svg",
  40944. extra: 1433/586,
  40945. bottom: 109/1542
  40946. }
  40947. },
  40948. },
  40949. [
  40950. {
  40951. name: "Normal",
  40952. height: math.unit(6 + 6/12, "feet"),
  40953. default: true
  40954. },
  40955. ]
  40956. ))
  40957. characterMakers.push(() => makeCharacter(
  40958. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40959. {
  40960. side: {
  40961. height: math.unit(1, "feet"),
  40962. name: "Side",
  40963. image: {
  40964. source: "./media/characters/vixye/side.svg",
  40965. extra: 632/541,
  40966. bottom: 0/632
  40967. }
  40968. },
  40969. },
  40970. [
  40971. {
  40972. name: "Normal",
  40973. height: math.unit(1, "feet"),
  40974. default: true
  40975. },
  40976. {
  40977. name: "True",
  40978. height: math.unit(1e15, "multiverses")
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40984. {
  40985. front: {
  40986. height: math.unit(8 + 2/12, "feet"),
  40987. weight: math.unit(650, "lb"),
  40988. name: "Front",
  40989. image: {
  40990. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40991. extra: 1174/1137,
  40992. bottom: 82/1256
  40993. }
  40994. },
  40995. back: {
  40996. height: math.unit(8 + 2/12, "feet"),
  40997. weight: math.unit(650, "lb"),
  40998. name: "Back",
  40999. image: {
  41000. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41001. extra: 1204/1157,
  41002. bottom: 46/1250
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Wildform",
  41009. height: math.unit(8 + 2/12, "feet"),
  41010. default: true
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(18, "feet"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/cyphin/front.svg",
  41022. extra: 970/886,
  41023. bottom: 42/1012
  41024. }
  41025. },
  41026. back: {
  41027. height: math.unit(18, "feet"),
  41028. name: "Back",
  41029. image: {
  41030. source: "./media/characters/cyphin/back.svg",
  41031. extra: 1009/894,
  41032. bottom: 24/1033
  41033. }
  41034. },
  41035. head: {
  41036. height: math.unit(5.05, "feet"),
  41037. name: "Head",
  41038. image: {
  41039. source: "./media/characters/cyphin/head.svg"
  41040. }
  41041. },
  41042. tailbud: {
  41043. height: math.unit(5, "feet"),
  41044. name: "Tailbud",
  41045. image: {
  41046. source: "./media/characters/cyphin/tailbud.svg"
  41047. }
  41048. },
  41049. },
  41050. [
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41055. {
  41056. side: {
  41057. height: math.unit(10, "feet"),
  41058. weight: math.unit(6, "tons"),
  41059. name: "Side",
  41060. image: {
  41061. source: "./media/characters/raijin/side.svg",
  41062. extra: 1529/613,
  41063. bottom: 337/1866
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(10, "feet"),
  41071. default: true
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41077. {
  41078. side: {
  41079. height: math.unit(9, "feet"),
  41080. name: "Side",
  41081. image: {
  41082. source: "./media/characters/nilghais/side.svg",
  41083. extra: 1047/744,
  41084. bottom: 91/1138
  41085. }
  41086. },
  41087. head: {
  41088. height: math.unit(3.14, "feet"),
  41089. name: "Head",
  41090. image: {
  41091. source: "./media/characters/nilghais/head.svg"
  41092. }
  41093. },
  41094. mouth: {
  41095. height: math.unit(4.6, "feet"),
  41096. name: "Mouth",
  41097. image: {
  41098. source: "./media/characters/nilghais/mouth.svg"
  41099. }
  41100. },
  41101. wings: {
  41102. height: math.unit(24, "feet"),
  41103. name: "Wings",
  41104. image: {
  41105. source: "./media/characters/nilghais/wings.svg"
  41106. }
  41107. },
  41108. ass: {
  41109. height: math.unit(6.12, "feet"),
  41110. name: "Ass",
  41111. image: {
  41112. source: "./media/characters/nilghais/ass.svg"
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(9, "feet"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41126. {
  41127. regular: {
  41128. height: math.unit(16 + 2/12, "feet"),
  41129. weight: math.unit(2300, "lb"),
  41130. name: "Regular",
  41131. image: {
  41132. source: "./media/characters/zolgar/regular.svg",
  41133. extra: 1246/1004,
  41134. bottom: 124/1370
  41135. }
  41136. },
  41137. boxers: {
  41138. height: math.unit(16 + 2/12, "feet"),
  41139. weight: math.unit(2300, "lb"),
  41140. name: "Boxers",
  41141. image: {
  41142. source: "./media/characters/zolgar/boxers.svg",
  41143. extra: 1246/1004,
  41144. bottom: 124/1370
  41145. }
  41146. },
  41147. armored: {
  41148. height: math.unit(16 + 2/12, "feet"),
  41149. weight: math.unit(2300, "lb"),
  41150. name: "Armored",
  41151. image: {
  41152. source: "./media/characters/zolgar/armored.svg",
  41153. extra: 1246/1004,
  41154. bottom: 124/1370
  41155. }
  41156. },
  41157. goth: {
  41158. height: math.unit(16 + 2/12, "feet"),
  41159. weight: math.unit(2300, "lb"),
  41160. name: "Goth",
  41161. image: {
  41162. source: "./media/characters/zolgar/goth.svg",
  41163. extra: 1246/1004,
  41164. bottom: 124/1370
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Shrunken Down",
  41171. height: math.unit(9 + 2/12, "feet")
  41172. },
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(16 + 2/12, "feet"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(6, "feet"),
  41185. weight: math.unit(168, "lb"),
  41186. name: "Front",
  41187. image: {
  41188. source: "./media/characters/luca/front.svg",
  41189. extra: 841/667,
  41190. bottom: 102/943
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Normal",
  41197. height: math.unit(6, "feet"),
  41198. default: true
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41204. {
  41205. side: {
  41206. height: math.unit(7 + 3/12, "feet"),
  41207. weight: math.unit(312, "lb"),
  41208. name: "Side",
  41209. image: {
  41210. source: "./media/characters/zezo/side.svg",
  41211. extra: 1192/1067,
  41212. bottom: 63/1255
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "Normal",
  41219. height: math.unit(7 + 3/12, "feet"),
  41220. default: true
  41221. },
  41222. ]
  41223. ))
  41224. characterMakers.push(() => makeCharacter(
  41225. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41226. {
  41227. front: {
  41228. height: math.unit(5 + 5/12, "feet"),
  41229. weight: math.unit(170, "lb"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/mayso/front.svg",
  41233. extra: 1215/1108,
  41234. bottom: 16/1231
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "Normal",
  41241. height: math.unit(5 + 5/12, "feet"),
  41242. default: true
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(4 + 3/12, "feet"),
  41251. weight: math.unit(80, "lb"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/hess/front.svg",
  41255. extra: 1200/1123,
  41256. bottom: 16/1216
  41257. }
  41258. },
  41259. },
  41260. [
  41261. {
  41262. name: "Normal",
  41263. height: math.unit(4 + 3/12, "feet"),
  41264. default: true
  41265. },
  41266. ]
  41267. ))
  41268. characterMakers.push(() => makeCharacter(
  41269. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41270. {
  41271. front: {
  41272. height: math.unit(1.9, "meters"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/ashgar/front.svg",
  41276. extra: 1177/1146,
  41277. bottom: 99/1276
  41278. }
  41279. },
  41280. back: {
  41281. height: math.unit(1.9, "meters"),
  41282. name: "Back",
  41283. image: {
  41284. source: "./media/characters/ashgar/back.svg",
  41285. extra: 1201/1183,
  41286. bottom: 53/1254
  41287. }
  41288. },
  41289. feral: {
  41290. height: math.unit(1.4, "meters"),
  41291. name: "Feral",
  41292. image: {
  41293. source: "./media/characters/ashgar/feral.svg",
  41294. extra: 370/345,
  41295. bottom: 45/415
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Normal",
  41302. height: math.unit(1.9, "meters"),
  41303. default: true
  41304. },
  41305. ]
  41306. ))
  41307. characterMakers.push(() => makeCharacter(
  41308. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41309. {
  41310. regular: {
  41311. height: math.unit(6, "feet"),
  41312. weight: math.unit(220, "lb"),
  41313. name: "Regular",
  41314. image: {
  41315. source: "./media/characters/phillip/regular.svg",
  41316. extra: 1373/1277,
  41317. bottom: 75/1448
  41318. }
  41319. },
  41320. dressed: {
  41321. height: math.unit(6, "feet"),
  41322. weight: math.unit(220, "lb"),
  41323. name: "Dressed",
  41324. image: {
  41325. source: "./media/characters/phillip/dressed.svg",
  41326. extra: 1373/1277,
  41327. bottom: 75/1448
  41328. }
  41329. },
  41330. paw: {
  41331. height: math.unit(1.44, "feet"),
  41332. name: "Paw",
  41333. image: {
  41334. source: "./media/characters/phillip/paw.svg"
  41335. }
  41336. },
  41337. },
  41338. [
  41339. {
  41340. name: "Normal",
  41341. height: math.unit(6, "feet"),
  41342. default: true
  41343. },
  41344. ]
  41345. ))
  41346. characterMakers.push(() => makeCharacter(
  41347. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41348. {
  41349. side: {
  41350. height: math.unit(42, "feet"),
  41351. name: "Side",
  41352. image: {
  41353. source: "./media/characters/uvula/side.svg",
  41354. extra: 683/586,
  41355. bottom: 60/743
  41356. }
  41357. },
  41358. front: {
  41359. height: math.unit(42, "feet"),
  41360. name: "Front",
  41361. image: {
  41362. source: "./media/characters/uvula/front.svg",
  41363. extra: 705/613,
  41364. bottom: 54/759
  41365. }
  41366. },
  41367. maw: {
  41368. height: math.unit(23.5, "feet"),
  41369. name: "Maw",
  41370. image: {
  41371. source: "./media/characters/uvula/maw.svg"
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Original Size",
  41378. height: math.unit(14, "inches")
  41379. },
  41380. {
  41381. name: "Human Size",
  41382. height: math.unit(6, "feet")
  41383. },
  41384. {
  41385. name: "Big",
  41386. height: math.unit(42, "feet"),
  41387. default: true
  41388. },
  41389. {
  41390. name: "Bigger",
  41391. height: math.unit(100, "feet")
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41397. {
  41398. front: {
  41399. height: math.unit(5 + 11/12, "feet"),
  41400. name: "Front",
  41401. image: {
  41402. source: "./media/characters/lannah/front.svg",
  41403. extra: 1208/1113,
  41404. bottom: 97/1305
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(5 + 11/12, "feet"),
  41412. default: true
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41418. {
  41419. front: {
  41420. height: math.unit(6 + 3/12, "feet"),
  41421. weight: math.unit(3.5, "tons"),
  41422. name: "Front",
  41423. image: {
  41424. source: "./media/characters/emberflame/front.svg",
  41425. extra: 1198/672,
  41426. bottom: 82/1280
  41427. }
  41428. },
  41429. side: {
  41430. height: math.unit(6 + 3/12, "feet"),
  41431. weight: math.unit(3.5, "tons"),
  41432. name: "Side",
  41433. image: {
  41434. source: "./media/characters/emberflame/side.svg",
  41435. extra: 938/527,
  41436. bottom: 56/994
  41437. }
  41438. },
  41439. },
  41440. [
  41441. {
  41442. name: "Normal",
  41443. height: math.unit(6 + 3/12, "feet"),
  41444. default: true
  41445. },
  41446. ]
  41447. ))
  41448. characterMakers.push(() => makeCharacter(
  41449. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41450. {
  41451. side: {
  41452. height: math.unit(17.5, "feet"),
  41453. weight: math.unit(35, "tons"),
  41454. name: "Side",
  41455. image: {
  41456. source: "./media/characters/sophie-ambrose/side.svg",
  41457. extra: 1573/1242,
  41458. bottom: 71/1644
  41459. }
  41460. },
  41461. maw: {
  41462. height: math.unit(7.4, "feet"),
  41463. name: "Maw",
  41464. image: {
  41465. source: "./media/characters/sophie-ambrose/maw.svg"
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(17.5, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(280, "feet"),
  41482. weight: math.unit(550, "tons"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/king-mugi/front.svg",
  41486. extra: 1102/947,
  41487. bottom: 104/1206
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "King Mugi",
  41494. height: math.unit(280, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41501. {
  41502. front: {
  41503. height: math.unit(64, "meters"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/nova-fox/front.svg",
  41507. extra: 1310/1246,
  41508. bottom: 65/1375
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Macro",
  41515. height: math.unit(64, "meters"),
  41516. default: true
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(6 + 3/12, "feet"),
  41525. weight: math.unit(170, "lb"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/sam-bat/front.svg",
  41529. extra: 1601/1411,
  41530. bottom: 125/1726
  41531. }
  41532. },
  41533. back: {
  41534. height: math.unit(6 + 3/12, "feet"),
  41535. weight: math.unit(170, "lb"),
  41536. name: "Back",
  41537. image: {
  41538. source: "./media/characters/sam-bat/back.svg",
  41539. extra: 1577/1405,
  41540. bottom: 58/1635
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(6 + 3/12, "feet"),
  41548. default: true
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41554. {
  41555. front: {
  41556. height: math.unit(59, "feet"),
  41557. weight: math.unit(40000, "lb"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/inari/front.svg",
  41561. extra: 1884/1350,
  41562. bottom: 95/1979
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Gigantamax",
  41569. height: math.unit(59, "feet"),
  41570. default: true
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(5 + 8/12, "feet"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/elizabeth/front.svg",
  41582. extra: 1395/1298,
  41583. bottom: 54/1449
  41584. }
  41585. },
  41586. mouth: {
  41587. height: math.unit(1.97, "feet"),
  41588. name: "Mouth",
  41589. image: {
  41590. source: "./media/characters/elizabeth/mouth.svg"
  41591. }
  41592. },
  41593. foot: {
  41594. height: math.unit(1.17, "feet"),
  41595. name: "Foot",
  41596. image: {
  41597. source: "./media/characters/elizabeth/foot.svg"
  41598. }
  41599. },
  41600. },
  41601. [
  41602. {
  41603. name: "Normal",
  41604. height: math.unit(5 + 8/12, "feet"),
  41605. default: true
  41606. },
  41607. {
  41608. name: "Minimacro",
  41609. height: math.unit(18, "feet")
  41610. },
  41611. {
  41612. name: "Macro",
  41613. height: math.unit(180, "feet")
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(5 + 2/12, "feet"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/october-gossamer/front.svg",
  41625. extra: 505/454,
  41626. bottom: 7/512
  41627. }
  41628. },
  41629. back: {
  41630. height: math.unit(5 + 2/12, "feet"),
  41631. name: "Back",
  41632. image: {
  41633. source: "./media/characters/october-gossamer/back.svg",
  41634. extra: 501/454,
  41635. bottom: 11/512
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(5 + 2/12, "feet"),
  41643. default: true
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41649. {
  41650. front: {
  41651. height: math.unit(5, "feet"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/epiglottis/front.svg",
  41655. extra: 923/849,
  41656. bottom: 17/940
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Original Size",
  41663. height: math.unit(10, "inches")
  41664. },
  41665. {
  41666. name: "Human Size",
  41667. height: math.unit(5, "feet"),
  41668. default: true
  41669. },
  41670. {
  41671. name: "Big",
  41672. height: math.unit(25, "feet")
  41673. },
  41674. {
  41675. name: "Bigger",
  41676. height: math.unit(50, "feet")
  41677. },
  41678. {
  41679. name: "oh lawd",
  41680. height: math.unit(75, "feet")
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(2 + 4/12, "feet"),
  41689. weight: math.unit(60, "lb"),
  41690. name: "Front",
  41691. image: {
  41692. source: "./media/characters/lerm/front.svg",
  41693. extra: 796/790,
  41694. bottom: 79/875
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Normal",
  41701. height: math.unit(2 + 4/12, "feet"),
  41702. default: true
  41703. },
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41708. {
  41709. front: {
  41710. height: math.unit(5.5, "feet"),
  41711. weight: math.unit(130, "lb"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/xena-nebadon/front.svg",
  41715. extra: 1828/1730,
  41716. bottom: 79/1907
  41717. }
  41718. },
  41719. },
  41720. [
  41721. {
  41722. name: "Tiny Puppy",
  41723. height: math.unit(3, "inches")
  41724. },
  41725. {
  41726. name: "Normal",
  41727. height: math.unit(5.5, "feet"),
  41728. default: true
  41729. },
  41730. {
  41731. name: "Lotta Lady",
  41732. height: math.unit(12, "feet")
  41733. },
  41734. {
  41735. name: "Pretty Big",
  41736. height: math.unit(100, "feet")
  41737. },
  41738. {
  41739. name: "Big",
  41740. height: math.unit(500, "feet")
  41741. },
  41742. {
  41743. name: "Skyscraper Toys",
  41744. height: math.unit(2500, "feet")
  41745. },
  41746. {
  41747. name: "Plane Catcher",
  41748. height: math.unit(8, "miles")
  41749. },
  41750. {
  41751. name: "Planet Toys",
  41752. height: math.unit(15, "earths")
  41753. },
  41754. {
  41755. name: "Stardust",
  41756. height: math.unit(0.25, "galaxies")
  41757. },
  41758. {
  41759. name: "Snacks",
  41760. height: math.unit(70, "universes")
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(1.6, "meters"),
  41769. weight: math.unit(60, "kg"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/bounty/front.svg",
  41773. extra: 1426/1308,
  41774. bottom: 15/1441
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(1.6, "meters"),
  41782. default: true
  41783. },
  41784. {
  41785. name: "Macro",
  41786. height: math.unit(300, "meters")
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41792. {
  41793. front: {
  41794. height: math.unit(2 + 8/12, "feet"),
  41795. weight: math.unit(15, "lb"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/mochi/front.svg",
  41799. extra: 1022/852,
  41800. bottom: 435/1457
  41801. }
  41802. },
  41803. back: {
  41804. height: math.unit(2 + 8/12, "feet"),
  41805. weight: math.unit(15, "lb"),
  41806. name: "Back",
  41807. image: {
  41808. source: "./media/characters/mochi/back.svg",
  41809. extra: 1335/1119,
  41810. bottom: 39/1374
  41811. }
  41812. },
  41813. bird: {
  41814. height: math.unit(2 + 8/12, "feet"),
  41815. weight: math.unit(15, "lb"),
  41816. name: "Bird",
  41817. image: {
  41818. source: "./media/characters/mochi/bird.svg",
  41819. extra: 1251/1113,
  41820. bottom: 178/1429
  41821. }
  41822. },
  41823. kaiju: {
  41824. height: math.unit(154, "feet"),
  41825. weight: math.unit(1e7, "lb"),
  41826. name: "Kaiju",
  41827. image: {
  41828. source: "./media/characters/mochi/kaiju.svg",
  41829. extra: 460/324,
  41830. bottom: 40/500
  41831. }
  41832. },
  41833. head: {
  41834. height: math.unit(1.21, "feet"),
  41835. name: "Head",
  41836. image: {
  41837. source: "./media/characters/mochi/head.svg"
  41838. }
  41839. },
  41840. alternateTail: {
  41841. height: math.unit(2 + 8/12, "feet"),
  41842. weight: math.unit(45, "lb"),
  41843. name: "Alternate Tail",
  41844. image: {
  41845. source: "./media/characters/mochi/alternate-tail.svg",
  41846. extra: 139/76,
  41847. bottom: 45/184
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Micro",
  41854. height: math.unit(2, "inches")
  41855. },
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(2 + 8/12, "feet"),
  41859. default: true
  41860. },
  41861. {
  41862. name: "Macro",
  41863. height: math.unit(106, "feet")
  41864. },
  41865. ]
  41866. ))
  41867. //characters
  41868. function makeCharacters() {
  41869. const results = [];
  41870. characterMakers.forEach(character => {
  41871. results.push(character());
  41872. });
  41873. return results;
  41874. }