less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

45994 satır
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. }
  1807. //species
  1808. function getSpeciesInfo(speciesList) {
  1809. let result = new Set();
  1810. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1811. result.add(entry)
  1812. });
  1813. return Array.from(result);
  1814. };
  1815. function getSpeciesInfoHelper(species) {
  1816. if (!speciesData[species]) {
  1817. console.warn(species + " doesn't exist");
  1818. return [];
  1819. }
  1820. if (speciesData[species].parents) {
  1821. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1822. } else {
  1823. return [species];
  1824. }
  1825. }
  1826. characterMakers.push(() => makeCharacter(
  1827. {
  1828. name: "Fen",
  1829. species: ["crux"],
  1830. description: {
  1831. title: "Bio",
  1832. text: "Very furry. Sheds on everything."
  1833. },
  1834. tags: [
  1835. "anthro",
  1836. "goo"
  1837. ]
  1838. },
  1839. {
  1840. front: {
  1841. height: math.unit(2.2428, "meter"),
  1842. weight: math.unit(124.738, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/fen/front.svg",
  1846. extra: 1804/1562,
  1847. bottom: 205/2009
  1848. }
  1849. },
  1850. diving: {
  1851. height: math.unit(3.3, "meters"),
  1852. weight: math.unit(124.738, "kg"),
  1853. name: "Diving",
  1854. image: {
  1855. source: "./media/characters/fen/diving.svg"
  1856. }
  1857. },
  1858. maw: {
  1859. height: math.unit(2.83, "feet"),
  1860. name: "Maw",
  1861. image: {
  1862. source: "./media/characters/fen/maw.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(2.2428, "meter"),
  1867. weight: math.unit(124.738, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/fen/back.svg",
  1871. },
  1872. info: {
  1873. description: {
  1874. mode: "append",
  1875. text: "\n\nHe is not currently looking at you."
  1876. }
  1877. }
  1878. },
  1879. full: {
  1880. height: math.unit(0.91, "meter"),
  1881. weight: math.unit(225, "kg"),
  1882. name: "Full",
  1883. image: {
  1884. source: "./media/characters/fen/full.svg",
  1885. extra: 1133/859,
  1886. bottom: 145/1278
  1887. },
  1888. info: {
  1889. description: {
  1890. mode: "append",
  1891. text: "\n\nMunch."
  1892. }
  1893. }
  1894. },
  1895. kneeling: {
  1896. height: math.unit(5.4, "feet"),
  1897. weight: math.unit(124.738, "kg"),
  1898. name: "Kneeling",
  1899. image: {
  1900. source: "./media/characters/fen/kneeling.svg",
  1901. extra: 563 / 507
  1902. }
  1903. },
  1904. goo: {
  1905. height: math.unit(2.8, "feet"),
  1906. weight: math.unit(125, "kg"),
  1907. capacity: math.unit(1, "people"),
  1908. name: "Goo",
  1909. image: {
  1910. source: "./media/characters/fen/goo.svg",
  1911. bottom: 116 / 613
  1912. }
  1913. },
  1914. lounging: {
  1915. height: math.unit(6.5, "feet"),
  1916. weight: math.unit(125, "kg"),
  1917. name: "Lounging",
  1918. image: {
  1919. source: "./media/characters/fen/lounging.svg"
  1920. }
  1921. },
  1922. },
  1923. [
  1924. {
  1925. name: "Small",
  1926. height: math.unit(2.2428, "meter")
  1927. },
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(12, "feet"),
  1931. default: true,
  1932. },
  1933. {
  1934. name: "Big",
  1935. height: math.unit(20, "feet")
  1936. },
  1937. {
  1938. name: "Minimacro",
  1939. height: math.unit(40, "feet"),
  1940. info: {
  1941. description: {
  1942. mode: "append",
  1943. text: "\n\nTOO DAMN BIG"
  1944. }
  1945. }
  1946. },
  1947. {
  1948. name: "Macro",
  1949. height: math.unit(100, "feet"),
  1950. info: {
  1951. description: {
  1952. mode: "append",
  1953. text: "\n\nTOO DAMN BIG"
  1954. }
  1955. }
  1956. },
  1957. {
  1958. name: "Megamacro",
  1959. height: math.unit(2, "miles")
  1960. },
  1961. {
  1962. name: "Gigamacro",
  1963. height: math.unit(10, "earths")
  1964. },
  1965. ]
  1966. ))
  1967. characterMakers.push(() => makeCharacter(
  1968. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1969. {
  1970. front: {
  1971. height: math.unit(183, "cm"),
  1972. weight: math.unit(80, "kg"),
  1973. name: "Front",
  1974. image: {
  1975. source: "./media/characters/sofia-fluttertail/front.svg",
  1976. bottom: 0.01,
  1977. extra: 2154 / 2081
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(183, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front (alt)",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(183, "cm"),
  1990. weight: math.unit(80, "kg"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/back.svg"
  1994. }
  1995. },
  1996. kneeling: {
  1997. height: math.unit(125, "cm"),
  1998. weight: math.unit(80, "kg"),
  1999. name: "Kneeling",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2002. extra: 1033 / 977,
  2003. bottom: 23.7 / 1057
  2004. }
  2005. },
  2006. maw: {
  2007. height: math.unit(183 / 5, "cm"),
  2008. name: "Maw",
  2009. image: {
  2010. source: "./media/characters/sofia-fluttertail/maw.svg"
  2011. }
  2012. },
  2013. mawcloseup: {
  2014. height: math.unit(183 / 5 * 0.41, "cm"),
  2015. name: "Maw (Closeup)",
  2016. image: {
  2017. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(1.17, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/sofia-fluttertail/paws.svg",
  2025. extra: 851 / 851,
  2026. bottom: 17 / 868
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(1.83, "meter")
  2034. },
  2035. {
  2036. name: "Size Thief",
  2037. height: math.unit(18, "feet")
  2038. },
  2039. {
  2040. name: "50 Foot Collie",
  2041. height: math.unit(50, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(96, "feet"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamerger",
  2050. height: math.unit(650, "feet")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "March", species: ["dragon"], 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/march/front.svg",
  2063. extra: 1992/1851,
  2064. bottom: 39/2031
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(0.9, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/march/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(7.9, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(220, "meters")
  2083. },
  2084. {
  2085. name: "Megamacro",
  2086. height: math.unit(2.98, "km"),
  2087. default: true
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(15963, "km")
  2092. },
  2093. {
  2094. name: "Teramacro",
  2095. height: math.unit(2980000000, "km")
  2096. },
  2097. {
  2098. name: "Examacro",
  2099. height: math.unit(250, "parsecs")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(6, "feet"),
  2108. weight: math.unit(60, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/noir/front.svg",
  2112. extra: 1,
  2113. bottom: 0.032
  2114. }
  2115. },
  2116. },
  2117. [
  2118. {
  2119. name: "Normal",
  2120. height: math.unit(6.6, "feet")
  2121. },
  2122. {
  2123. name: "Macro",
  2124. height: math.unit(500, "feet")
  2125. },
  2126. {
  2127. name: "Megamacro",
  2128. height: math.unit(2.5, "km"),
  2129. default: true
  2130. },
  2131. {
  2132. name: "Gigamacro",
  2133. height: math.unit(22500, "km")
  2134. },
  2135. {
  2136. name: "Teramacro",
  2137. height: math.unit(2500000000, "km")
  2138. },
  2139. {
  2140. name: "Examacro",
  2141. height: math.unit(200, "parsecs")
  2142. },
  2143. ]
  2144. ))
  2145. characterMakers.push(() => makeCharacter(
  2146. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2147. {
  2148. front: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(100, "kg"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/okuri/front.svg",
  2154. extra: 1,
  2155. bottom: 0.037
  2156. }
  2157. },
  2158. back: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(100, "kg"),
  2161. name: "Back",
  2162. image: {
  2163. source: "./media/characters/okuri/back.svg",
  2164. extra: 1,
  2165. bottom: 0.007
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(100, "miles"),
  2173. default: true
  2174. },
  2175. ]
  2176. ))
  2177. characterMakers.push(() => makeCharacter(
  2178. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2179. {
  2180. front: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(100, "kg"),
  2183. name: "Front",
  2184. image: {
  2185. source: "./media/characters/manny/front.svg",
  2186. extra: 1,
  2187. bottom: 0.06
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(100, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/manny/back.svg",
  2196. extra: 1,
  2197. bottom: 0.014
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(7, "feet"),
  2205. },
  2206. {
  2207. name: "Macro",
  2208. height: math.unit(78, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro+",
  2213. height: math.unit(300, "meters")
  2214. },
  2215. {
  2216. name: "Macro++",
  2217. height: math.unit(2400, "meters")
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(5167, "meters")
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(41769, "miles")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(100, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/adake/front-1.svg"
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front (Alt)",
  2244. image: {
  2245. source: "./media/characters/adake/front-2.svg",
  2246. extra: 1,
  2247. bottom: 0.01
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/adake/back.svg",
  2256. }
  2257. },
  2258. kneel: {
  2259. height: math.unit(5.385, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Kneeling",
  2262. image: {
  2263. source: "./media/characters/adake/kneel.svg",
  2264. bottom: 0.052
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(7, "feet"),
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(78, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Macro+",
  2280. height: math.unit(300, "meters")
  2281. },
  2282. {
  2283. name: "Macro++",
  2284. height: math.unit(2400, "meters")
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(5167, "meters")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(41769, "miles")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(1.65, "meters"),
  2301. weight: math.unit(50, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/elijah/front.svg",
  2305. extra: 858 / 830,
  2306. bottom: 95.5 / 953.8559
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(1.65, "meters"),
  2311. weight: math.unit(50, "kg"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/elijah/back.svg",
  2315. extra: 895 / 850,
  2316. bottom: 5.3 / 897.956
  2317. }
  2318. },
  2319. frontNsfw: {
  2320. height: math.unit(1.65, "meters"),
  2321. weight: math.unit(50, "kg"),
  2322. name: "Front (NSFW)",
  2323. image: {
  2324. source: "./media/characters/elijah/front-nsfw.svg",
  2325. extra: 858 / 830,
  2326. bottom: 95.5 / 953.8559
  2327. }
  2328. },
  2329. backNsfw: {
  2330. height: math.unit(1.65, "meters"),
  2331. weight: math.unit(50, "kg"),
  2332. name: "Back (NSFW)",
  2333. image: {
  2334. source: "./media/characters/elijah/back-nsfw.svg",
  2335. extra: 895 / 850,
  2336. bottom: 5.3 / 897.956
  2337. }
  2338. },
  2339. dick: {
  2340. height: math.unit(1, "feet"),
  2341. name: "Dick",
  2342. image: {
  2343. source: "./media/characters/elijah/dick.svg"
  2344. }
  2345. },
  2346. beakOpen: {
  2347. height: math.unit(1.25, "feet"),
  2348. name: "Beak (Open)",
  2349. image: {
  2350. source: "./media/characters/elijah/beak-open.svg"
  2351. }
  2352. },
  2353. beakShut: {
  2354. height: math.unit(1.25, "feet"),
  2355. name: "Beak (Shut)",
  2356. image: {
  2357. source: "./media/characters/elijah/beak-shut.svg"
  2358. }
  2359. },
  2360. footFlexing: {
  2361. height: math.unit(1.61, "feet"),
  2362. name: "Foot (Flexing)",
  2363. image: {
  2364. source: "./media/characters/elijah/foot-flexing.svg"
  2365. }
  2366. },
  2367. footStepping: {
  2368. height: math.unit(1.44, "feet"),
  2369. name: "Foot (Stepping)",
  2370. image: {
  2371. source: "./media/characters/elijah/foot-stepping.svg"
  2372. }
  2373. },
  2374. plantigradeLeg: {
  2375. height: math.unit(2.34, "feet"),
  2376. name: "Plantigrade Leg",
  2377. image: {
  2378. source: "./media/characters/elijah/plantigrade-leg.svg"
  2379. }
  2380. },
  2381. plantigradeFootLeft: {
  2382. height: math.unit(0.9, "feet"),
  2383. name: "Plantigrade Foot (Left)",
  2384. image: {
  2385. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2386. }
  2387. },
  2388. plantigradeFootRight: {
  2389. height: math.unit(0.9, "feet"),
  2390. name: "Plantigrade Foot (Right)",
  2391. image: {
  2392. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(1.65, "meters")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(55, "meters"),
  2404. default: true
  2405. },
  2406. {
  2407. name: "Macro+",
  2408. height: math.unit(105, "meters")
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(7 + 2/12, "feet"),
  2417. weight: math.unit(320, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/rai/front.svg",
  2421. extra: 1802/1696,
  2422. bottom: 68/1870
  2423. }
  2424. },
  2425. frontDressed: {
  2426. height: math.unit(7 + 2/12, "feet"),
  2427. weight: math.unit(320, "kg"),
  2428. name: "Front (Dressed)",
  2429. image: {
  2430. source: "./media/characters/rai/front-dressed.svg",
  2431. extra: 1802/1696,
  2432. bottom: 68/1870
  2433. }
  2434. },
  2435. side: {
  2436. height: math.unit(7 + 2/12, "feet"),
  2437. weight: math.unit(320, "kg"),
  2438. name: "Side",
  2439. image: {
  2440. source: "./media/characters/rai/side.svg",
  2441. extra: 1789/1710,
  2442. bottom: 115/1904
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(7 + 2/12, "feet"),
  2447. weight: math.unit(320, "kg"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/rai/back.svg",
  2451. extra: 1770/1707,
  2452. bottom: 28/1798
  2453. }
  2454. },
  2455. feral: {
  2456. height: math.unit(9.5, "feet"),
  2457. weight: math.unit(640, "kg"),
  2458. name: "Feral",
  2459. image: {
  2460. source: "./media/characters/rai/feral.svg",
  2461. extra: 945/553,
  2462. bottom: 176/1121
  2463. }
  2464. },
  2465. dragon: {
  2466. height: math.unit(23, "feet"),
  2467. weight: math.unit(50000, "lb"),
  2468. name: "Dragon",
  2469. image: {
  2470. source: "./media/characters/rai/dragon.svg",
  2471. extra: 2498 / 2030,
  2472. bottom: 85.2 / 2584
  2473. }
  2474. },
  2475. maw: {
  2476. height: math.unit(1.69, "feet"),
  2477. name: "Maw",
  2478. image: {
  2479. source: "./media/characters/rai/maw.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(7 + 2/12, "feet")
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(11, "feet")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(302, "feet"),
  2495. default: true
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2501. {
  2502. frontDressed: {
  2503. height: math.unit(216, "feet"),
  2504. weight: math.unit(7000000, "lb"),
  2505. name: "Front (Dressed)",
  2506. image: {
  2507. source: "./media/characters/jazzy/front-dressed.svg",
  2508. extra: 2738 / 2651,
  2509. bottom: 41.8 / 2786
  2510. }
  2511. },
  2512. backDressed: {
  2513. height: math.unit(216, "feet"),
  2514. weight: math.unit(7000000, "lb"),
  2515. name: "Back (Dressed)",
  2516. image: {
  2517. source: "./media/characters/jazzy/back-dressed.svg",
  2518. extra: 2775 / 2673,
  2519. bottom: 36.8 / 2817
  2520. }
  2521. },
  2522. front: {
  2523. height: math.unit(216, "feet"),
  2524. weight: math.unit(7000000, "lb"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/jazzy/front.svg",
  2528. extra: 2738 / 2651,
  2529. bottom: 41.8 / 2786
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(216, "feet"),
  2534. weight: math.unit(7000000, "lb"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/jazzy/back.svg",
  2538. extra: 2775 / 2673,
  2539. bottom: 36.8 / 2817
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(20, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/jazzy/maw.svg"
  2547. }
  2548. },
  2549. paws: {
  2550. height: math.unit(27.5, "feet"),
  2551. name: "Paws",
  2552. image: {
  2553. source: "./media/characters/jazzy/paws.svg"
  2554. }
  2555. },
  2556. eye: {
  2557. height: math.unit(4.4, "feet"),
  2558. name: "Eye",
  2559. image: {
  2560. source: "./media/characters/jazzy/eye.svg"
  2561. }
  2562. },
  2563. droneOffense: {
  2564. height: math.unit(9.5, "inches"),
  2565. name: "Drone (Offense)",
  2566. image: {
  2567. source: "./media/characters/jazzy/drone-offense.svg"
  2568. }
  2569. },
  2570. droneRecon: {
  2571. height: math.unit(9.5, "inches"),
  2572. name: "Drone (Recon)",
  2573. image: {
  2574. source: "./media/characters/jazzy/drone-recon.svg"
  2575. }
  2576. },
  2577. droneDefense: {
  2578. height: math.unit(9.5, "inches"),
  2579. name: "Drone (Defense)",
  2580. image: {
  2581. source: "./media/characters/jazzy/drone-defense.svg"
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Macro",
  2588. height: math.unit(216, "feet"),
  2589. default: true
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(9 + 6/12, "feet"),
  2598. weight: math.unit(700, "lb"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/flamm/front.svg",
  2602. extra: 1751/1632,
  2603. bottom: 46/1797
  2604. }
  2605. },
  2606. buff: {
  2607. height: math.unit(9 + 6/12, "feet"),
  2608. weight: math.unit(950, "lb"),
  2609. name: "Buff",
  2610. image: {
  2611. source: "./media/characters/flamm/buff.svg",
  2612. extra: 3018/2874,
  2613. bottom: 221/3239
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(9.5, "feet")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(200, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(5 + 3/12, "feet"),
  2634. weight: math.unit(60, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/zephiro/front.svg",
  2638. extra: 2309 / 2162,
  2639. bottom: 0.069
  2640. }
  2641. },
  2642. side: {
  2643. height: math.unit(5 + 3/12, "feet"),
  2644. weight: math.unit(60, "kg"),
  2645. name: "Side",
  2646. image: {
  2647. source: "./media/characters/zephiro/side.svg",
  2648. extra: 2403 / 2279,
  2649. bottom: 0.015
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 3/12, "feet"),
  2654. weight: math.unit(60, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/zephiro/back.svg",
  2658. extra: 2373 / 2244,
  2659. bottom: 0.013
  2660. }
  2661. },
  2662. hand: {
  2663. height: math.unit(0.68, "feet"),
  2664. name: "Hand",
  2665. image: {
  2666. source: "./media/characters/zephiro/hand.svg"
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/zephiro/paw.svg"
  2674. }
  2675. },
  2676. beans: {
  2677. height: math.unit(0.93, "feet"),
  2678. name: "Beans",
  2679. image: {
  2680. source: "./media/characters/zephiro/beans.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Micro",
  2687. height: math.unit(3, "inches")
  2688. },
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(5 + 3 / 12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(118, "feet")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(5, "feet"),
  2705. weight: math.unit(90, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/fory/front.svg",
  2709. extra: 2862 / 2674,
  2710. bottom: 180 / 3043.8
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(5, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/fory/back.svg",
  2719. extra: 2962 / 2791,
  2720. bottom: 106 / 3071.8
  2721. }
  2722. },
  2723. foot: {
  2724. height: math.unit(2.14, "feet"),
  2725. name: "Foot",
  2726. image: {
  2727. source: "./media/characters/fory/foot.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(5, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(50, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(10, "miles")
  2744. },
  2745. {
  2746. name: "Gigamacro",
  2747. height: math.unit(5, "earths")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(7, "feet"),
  2756. weight: math.unit(90, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/kurrikage/front.svg",
  2760. extra: 1845/1733,
  2761. bottom: 119/1964
  2762. }
  2763. },
  2764. back: {
  2765. height: math.unit(7, "feet"),
  2766. weight: math.unit(90, "kg"),
  2767. name: "Back",
  2768. image: {
  2769. source: "./media/characters/kurrikage/back.svg",
  2770. extra: 1790/1677,
  2771. bottom: 61/1851
  2772. }
  2773. },
  2774. dressed: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(90, "kg"),
  2777. name: "Dressed",
  2778. image: {
  2779. source: "./media/characters/kurrikage/dressed.svg",
  2780. extra: 1845/1733,
  2781. bottom: 119/1964
  2782. }
  2783. },
  2784. foot: {
  2785. height: math.unit(1.5, "feet"),
  2786. name: "Foot",
  2787. image: {
  2788. source: "./media/characters/kurrikage/foot.svg"
  2789. }
  2790. },
  2791. staff: {
  2792. height: math.unit(6.7, "feet"),
  2793. name: "Staff",
  2794. image: {
  2795. source: "./media/characters/kurrikage/staff.svg"
  2796. }
  2797. },
  2798. peek: {
  2799. height: math.unit(1.05, "feet"),
  2800. name: "Peeking",
  2801. image: {
  2802. source: "./media/characters/kurrikage/peek.svg",
  2803. bottom: 0.08
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(12, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Big",
  2815. height: math.unit(20, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(500, "feet")
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(20, "miles")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/shingo/front.svg",
  2836. extra: 1900/1825,
  2837. bottom: 82/1982
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/shingo/side.svg",
  2846. extra: 1930/1865,
  2847. bottom: 16/1946
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/shingo/back.svg",
  2856. extra: 1922/1852,
  2857. bottom: 16/1938
  2858. }
  2859. },
  2860. frontDressed: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(150, "lb"),
  2863. name: "Front-dressed",
  2864. image: {
  2865. source: "./media/characters/shingo/front-dressed.svg",
  2866. extra: 1900/1825,
  2867. bottom: 82/1982
  2868. }
  2869. },
  2870. paw: {
  2871. height: math.unit(1.29, "feet"),
  2872. name: "Paw",
  2873. image: {
  2874. source: "./media/characters/shingo/paw.svg"
  2875. }
  2876. },
  2877. hand: {
  2878. height: math.unit(1.07, "feet"),
  2879. name: "Hand",
  2880. image: {
  2881. source: "./media/characters/shingo/hand.svg"
  2882. }
  2883. },
  2884. frontAlt: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front (Alt)",
  2888. image: {
  2889. source: "./media/characters/shingo/front-alt.svg",
  2890. extra: 3511 / 3338,
  2891. bottom: 0.005
  2892. }
  2893. },
  2894. frontAlt2: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Front (Alt 2)",
  2898. image: {
  2899. source: "./media/characters/shingo/front-alt-2.svg",
  2900. extra: 706/681,
  2901. bottom: 11/717
  2902. }
  2903. },
  2904. pawAlt: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Paw (Alt)",
  2907. image: {
  2908. source: "./media/characters/shingo/paw-alt.svg"
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Micro",
  2915. height: math.unit(4, "inches")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(6, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Macro",
  2924. height: math.unit(108, "feet")
  2925. },
  2926. {
  2927. name: "Macro+",
  2928. height: math.unit(1500, "feet")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2934. {
  2935. side: {
  2936. height: math.unit(6, "feet"),
  2937. weight: math.unit(75, "kg"),
  2938. name: "Side",
  2939. image: {
  2940. source: "./media/characters/aigey/side.svg"
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(200, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(100, "miles")
  2953. },
  2954. ]
  2955. )
  2956. )
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(5 + 5 / 12, "feet"),
  2962. weight: math.unit(75, "kg"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/natasha/front.svg",
  2966. extra: 859 / 824,
  2967. bottom: 23 / 879.6
  2968. }
  2969. },
  2970. frontNsfw: {
  2971. height: math.unit(5 + 5 / 12, "feet"),
  2972. weight: math.unit(75, "kg"),
  2973. name: "Front (NSFW)",
  2974. image: {
  2975. source: "./media/characters/natasha/front-nsfw.svg",
  2976. extra: 859 / 824,
  2977. bottom: 23 / 879.6
  2978. }
  2979. },
  2980. frontErect: {
  2981. height: math.unit(5 + 5 / 12, "feet"),
  2982. weight: math.unit(75, "kg"),
  2983. name: "Front (Erect)",
  2984. image: {
  2985. source: "./media/characters/natasha/front-erect.svg",
  2986. extra: 859 / 824,
  2987. bottom: 23 / 879.6
  2988. }
  2989. },
  2990. back: {
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/natasha/back.svg",
  2996. extra: 887.9 / 852.6,
  2997. bottom: 9.7 / 896.4
  2998. }
  2999. },
  3000. backAlt: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Back (Alt)",
  3004. image: {
  3005. source: "./media/characters/natasha/back-alt.svg",
  3006. extra: 1236.7 / 1192,
  3007. bottom: 22.3 / 1258.2
  3008. }
  3009. },
  3010. dick: {
  3011. height: math.unit(1.772, "feet"),
  3012. name: "Dick",
  3013. image: {
  3014. source: "./media/characters/natasha/dick.svg"
  3015. }
  3016. },
  3017. paw: {
  3018. height: math.unit(0.250, "meters"),
  3019. name: "Paw",
  3020. image: {
  3021. source: "./media/characters/natasha/paw.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(5 + 5 / 12, "feet")
  3029. },
  3030. {
  3031. name: "Large",
  3032. height: math.unit(12, "feet")
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(100, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(260, "feet")
  3042. },
  3043. {
  3044. name: "Macro++",
  3045. height: math.unit(1, "mile")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/malik/front.svg"
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/malik/side.svg",
  3066. extra: 1.1539
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(75, "kg"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/malik/back.svg"
  3075. }
  3076. },
  3077. },
  3078. [
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(156, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro+",
  3086. height: math.unit(1188, "feet")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/sefer/front.svg",
  3099. extra: 848 / 659,
  3100. bottom: 28.3 / 876.442
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/sefer/back.svg",
  3109. extra: 864 / 695,
  3110. bottom: 10 / 871
  3111. }
  3112. },
  3113. frontDressed: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Front (Dressed)",
  3117. image: {
  3118. source: "./media/characters/sefer/front-dressed.svg",
  3119. extra: 839 / 653,
  3120. bottom: 37.6 / 878
  3121. }
  3122. },
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(6, "feet"),
  3128. default: true
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3134. {
  3135. body: {
  3136. height: math.unit(2.2428, "meter"),
  3137. weight: math.unit(124.738, "kg"),
  3138. name: "Body",
  3139. image: {
  3140. extra: 1225 / 1050,
  3141. source: "./media/characters/north/front.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Micro",
  3148. height: math.unit(4, "inches")
  3149. },
  3150. {
  3151. name: "Macro",
  3152. height: math.unit(63, "meters")
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(101, "miles"),
  3157. default: true
  3158. }
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3163. {
  3164. angled: {
  3165. height: math.unit(4, "meter"),
  3166. weight: math.unit(150, "kg"),
  3167. name: "Angled",
  3168. image: {
  3169. source: "./media/characters/talan/angled-sfw.svg",
  3170. bottom: 29 / 3734
  3171. }
  3172. },
  3173. angledNsfw: {
  3174. height: math.unit(4, "meter"),
  3175. weight: math.unit(150, "kg"),
  3176. name: "Angled (NSFW)",
  3177. image: {
  3178. source: "./media/characters/talan/angled-nsfw.svg",
  3179. bottom: 29 / 3734
  3180. }
  3181. },
  3182. frontNsfw: {
  3183. height: math.unit(4, "meter"),
  3184. weight: math.unit(150, "kg"),
  3185. name: "Front (NSFW)",
  3186. image: {
  3187. source: "./media/characters/talan/front-nsfw.svg",
  3188. bottom: 29 / 3734
  3189. }
  3190. },
  3191. sideNsfw: {
  3192. height: math.unit(4, "meter"),
  3193. weight: math.unit(150, "kg"),
  3194. name: "Side (NSFW)",
  3195. image: {
  3196. source: "./media/characters/talan/side-nsfw.svg",
  3197. bottom: 29 / 3734
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/talan/back.svg"
  3206. }
  3207. },
  3208. dickBottom: {
  3209. height: math.unit(0.621, "meter"),
  3210. name: "Dick (Bottom)",
  3211. image: {
  3212. source: "./media/characters/talan/dick-bottom.svg"
  3213. }
  3214. },
  3215. dickTop: {
  3216. height: math.unit(0.621, "meter"),
  3217. name: "Dick (Top)",
  3218. image: {
  3219. source: "./media/characters/talan/dick-top.svg"
  3220. }
  3221. },
  3222. dickSide: {
  3223. height: math.unit(0.305, "meter"),
  3224. name: "Dick (Side)",
  3225. image: {
  3226. source: "./media/characters/talan/dick-side.svg"
  3227. }
  3228. },
  3229. dickFront: {
  3230. height: math.unit(0.305, "meter"),
  3231. name: "Dick (Front)",
  3232. image: {
  3233. source: "./media/characters/talan/dick-front.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(4, "meters")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(100, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(2, "miles"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(5000, "miles")
  3254. },
  3255. {
  3256. name: "Teramacro",
  3257. height: math.unit(100, "parsecs")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front.svg"
  3270. }
  3271. },
  3272. frontAlt: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(90, "kg"),
  3275. name: "Front (alt)",
  3276. image: {
  3277. source: "./media/characters/gael'rathus/front-alt.svg"
  3278. }
  3279. },
  3280. frontAlt2: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(90, "kg"),
  3283. name: "Front (alt 2)",
  3284. image: {
  3285. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(9, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Large",
  3297. height: math.unit(25, "feet")
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(0.25, "miles")
  3302. },
  3303. {
  3304. name: "Megamacro",
  3305. height: math.unit(10, "miles")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3311. {
  3312. side: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(140, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/sosha/side.svg",
  3318. bottom: 0.042
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(12, "feet"),
  3326. default: true
  3327. }
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3332. {
  3333. side: {
  3334. height: math.unit(5 + 5 / 12, "feet"),
  3335. weight: math.unit(170, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/runnola/side.svg",
  3339. extra: 741 / 448,
  3340. bottom: 0.05
  3341. }
  3342. },
  3343. },
  3344. [
  3345. {
  3346. name: "Small",
  3347. height: math.unit(3, "feet")
  3348. },
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(5 + 5 / 12, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(10, "feet")
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(2, "meter"),
  3365. weight: math.unit(50, "kg"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/kurribird/front.svg",
  3369. bottom: 0.015
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(1.5, "meter"),
  3374. weight: math.unit(50, "kg"),
  3375. name: "Front (Alt)",
  3376. image: {
  3377. source: "./media/characters/kurribird/front-alt.svg",
  3378. extra: 1.45
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(7, "feet")
  3386. },
  3387. {
  3388. name: "Big",
  3389. height: math.unit(12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(2, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(80, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/elbial/front.svg",
  3411. extra: 1643 / 1556,
  3412. bottom: 60.2 / 1696
  3413. }
  3414. },
  3415. side: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(80, "kg"),
  3418. name: "Side",
  3419. image: {
  3420. source: "./media/characters/elbial/side.svg",
  3421. extra: 1630 / 1565,
  3422. bottom: 71.5 / 1697
  3423. }
  3424. },
  3425. back: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Back",
  3429. image: {
  3430. source: "./media/characters/elbial/back.svg",
  3431. extra: 1668 / 1595,
  3432. bottom: 5.6 / 1672
  3433. }
  3434. },
  3435. frontDressed: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Front (Dressed)",
  3439. image: {
  3440. source: "./media/characters/elbial/front-dressed.svg",
  3441. extra: 1653 / 1584,
  3442. bottom: 57 / 1708
  3443. }
  3444. },
  3445. genitals: {
  3446. height: math.unit(2 / 3.367, "meter"),
  3447. name: "Genitals",
  3448. image: {
  3449. source: "./media/characters/elbial/genitals.svg"
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Large",
  3456. height: math.unit(100, "feet")
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(500, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. },
  3467. {
  3468. name: "Gigamacro",
  3469. height: math.unit(25000, "miles")
  3470. },
  3471. {
  3472. name: "Full-Size",
  3473. height: math.unit(8000000, "gigaparsecs")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/noah/front.svg"
  3486. }
  3487. },
  3488. talons: {
  3489. height: math.unit(0.315, "meter"),
  3490. name: "Talons",
  3491. image: {
  3492. source: "./media/characters/noah/talons.svg"
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Large",
  3499. height: math.unit(50, "feet")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(750, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(50, "miles")
  3509. },
  3510. {
  3511. name: "Gigamacro",
  3512. height: math.unit(100000, "miles")
  3513. },
  3514. {
  3515. name: "Full-Size",
  3516. height: math.unit(3000000000, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/natalya/front.svg"
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/natalya/back.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(150, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(5, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(600, "kiloparsecs")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/erestrebah/front.svg",
  3565. extra: 1262/1162,
  3566. bottom: 96/1358
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(50, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/erestrebah/back.svg",
  3575. extra: 1257/1139,
  3576. bottom: 13/1270
  3577. }
  3578. },
  3579. wing: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Wing",
  3583. image: {
  3584. source: "./media/characters/erestrebah/wing.svg",
  3585. extra: 1262/1162,
  3586. bottom: 96/1358
  3587. }
  3588. },
  3589. mouth: {
  3590. height: math.unit(0.39, "feet"),
  3591. name: "Mouth",
  3592. image: {
  3593. source: "./media/characters/erestrebah/mouth.svg"
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(10, "feet")
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(50, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "feet")
  3610. },
  3611. {
  3612. name: "Macro+",
  3613. height: math.unit(750, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(3, "miles")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(2, "meter"),
  3626. weight: math.unit(80, "kg"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/jennifer/front.svg",
  3630. bottom: 0.11,
  3631. extra: 1.16
  3632. }
  3633. },
  3634. frontAlt: {
  3635. height: math.unit(2, "meter"),
  3636. weight: math.unit(80, "kg"),
  3637. name: "Front (Alt)",
  3638. image: {
  3639. source: "./media/characters/jennifer/front-alt.svg"
  3640. }
  3641. }
  3642. },
  3643. [
  3644. {
  3645. name: "Canon Height",
  3646. height: math.unit(120, "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Macro+",
  3651. height: math.unit(300, "feet")
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(20000, "feet")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(50, "kg"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/kalista/front.svg",
  3668. extra: 1947 / 1700,
  3669. bottom: 76.6 / 1412.98
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(50, "kg"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/kalista/back.svg",
  3678. extra: 1366 / 1156,
  3679. bottom: 33.9 / 1362.78
  3680. }
  3681. }
  3682. },
  3683. [
  3684. {
  3685. name: "Uncomfortably Small",
  3686. height: math.unit(10, "feet")
  3687. },
  3688. {
  3689. name: "Small",
  3690. height: math.unit(30, "feet")
  3691. },
  3692. {
  3693. name: "Macro",
  3694. height: math.unit(100, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(2000, "feet")
  3700. },
  3701. {
  3702. name: "True Form",
  3703. height: math.unit(8924, "miles")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(120, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/ggv/front.svg"
  3716. }
  3717. },
  3718. side: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(120, "kg"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/ggv/side.svg"
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Extremely Puny",
  3730. height: math.unit(9 + 5 / 12, "feet")
  3731. },
  3732. {
  3733. name: "Horribly Small",
  3734. height: math.unit(47.7, "miles"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Reasonably Sized",
  3739. height: math.unit(25000, "parsecs")
  3740. },
  3741. {
  3742. name: "Slightly Uncompressed",
  3743. height: math.unit(7.77e31, "parsecs")
  3744. },
  3745. {
  3746. name: "Omniversal",
  3747. height: math.unit(1e300, "meters")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(75, "lb"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/napalm/front.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(75, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/napalm/back.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Standard",
  3774. height: math.unit(55, "feet"),
  3775. default: true
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(7 + 5 / 6, "feet"),
  3784. weight: math.unit(325, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/asana/front.svg",
  3788. extra: 1133 / 1060,
  3789. bottom: 15.2 / 1148.6
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(7 + 5 / 6, "feet"),
  3794. weight: math.unit(325, "lb"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asana/back.svg",
  3798. extra: 1114 / 1043,
  3799. bottom: 5 / 1120
  3800. }
  3801. },
  3802. dressedDark: {
  3803. height: math.unit(7 + 5 / 6, "feet"),
  3804. weight: math.unit(325, "lb"),
  3805. name: "Dressed (Dark)",
  3806. image: {
  3807. source: "./media/characters/asana/dressed-dark.svg",
  3808. extra: 1133 / 1060,
  3809. bottom: 15.2 / 1148.6
  3810. }
  3811. },
  3812. dressedLight: {
  3813. height: math.unit(7 + 5 / 6, "feet"),
  3814. weight: math.unit(325, "lb"),
  3815. name: "Dressed (Light)",
  3816. image: {
  3817. source: "./media/characters/asana/dressed-light.svg",
  3818. extra: 1133 / 1060,
  3819. bottom: 15.2 / 1148.6
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Standard",
  3826. height: math.unit(7 + 5 / 6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Large",
  3831. height: math.unit(10, "meters")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(2500, "meters")
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(5e6, "meters")
  3840. },
  3841. {
  3842. name: "Examacro",
  3843. height: math.unit(5e12, "lightyears")
  3844. },
  3845. {
  3846. name: "Max Size",
  3847. height: math.unit(1e31, "lightyears")
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(60, "kg"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/ebony/front.svg",
  3860. bottom: 0.03,
  3861. extra: 1045 / 810 + 0.03
  3862. }
  3863. },
  3864. side: {
  3865. height: math.unit(2, "meter"),
  3866. weight: math.unit(60, "kg"),
  3867. name: "Side",
  3868. image: {
  3869. source: "./media/characters/ebony/side.svg",
  3870. bottom: 0.03,
  3871. extra: 1045 / 810 + 0.03
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/ebony/back.svg",
  3880. bottom: 0.01,
  3881. extra: 1045 / 810 + 0.01
  3882. }
  3883. },
  3884. },
  3885. [
  3886. // TODO check why I did this lol
  3887. {
  3888. name: "Standard",
  3889. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(13000, "km")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(175, "lb"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/mountain/front.svg",
  3911. extra: 972 / 955,
  3912. bottom: 64 / 1036.6
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(175, "lb"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/mountain/back.svg",
  3921. extra: 970 / 950,
  3922. bottom: 28.25 / 999
  3923. }
  3924. },
  3925. },
  3926. [
  3927. {
  3928. name: "Large",
  3929. height: math.unit(20, "meters")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(300, "meters")
  3934. },
  3935. {
  3936. name: "Gigamacro",
  3937. height: math.unit(10000, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(10e9, "lightyears")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(8, "feet"),
  3951. weight: math.unit(500, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/rick/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(8, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(5, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/ona/front.svg"
  3979. }
  3980. },
  3981. frontAlt: {
  3982. height: math.unit(8, "feet"),
  3983. weight: math.unit(120, "lb"),
  3984. name: "Front (Alt)",
  3985. image: {
  3986. source: "./media/characters/ona/front-alt.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(8, "feet"),
  3991. weight: math.unit(120, "lb"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/ona/back.svg"
  3995. }
  3996. },
  3997. foot: {
  3998. height: math.unit(1.1, "feet"),
  3999. name: "Foot",
  4000. image: {
  4001. source: "./media/characters/ona/foot.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(70, "km"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(681818, "miles")
  4014. },
  4015. {
  4016. name: "Examacro",
  4017. height: math.unit(3800000, "lightyears")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(12, "feet"),
  4026. weight: math.unit(3000, "lb"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/mech/front.svg",
  4030. extra: 2900 / 2770,
  4031. bottom: 110 / 3010
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(12, "feet"),
  4036. weight: math.unit(3000, "lb"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/mech/back.svg",
  4040. extra: 3011 / 2890,
  4041. bottom: 94 / 3105
  4042. }
  4043. },
  4044. maw: {
  4045. height: math.unit(3.07, "feet"),
  4046. name: "Maw",
  4047. image: {
  4048. source: "./media/characters/mech/maw.svg"
  4049. }
  4050. },
  4051. head: {
  4052. height: math.unit(2.82, "feet"),
  4053. name: "Head",
  4054. image: {
  4055. source: "./media/characters/mech/head.svg"
  4056. }
  4057. },
  4058. dick: {
  4059. height: math.unit(1.43, "feet"),
  4060. name: "Dick",
  4061. image: {
  4062. source: "./media/characters/mech/dick.svg"
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(12, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(300, "feet"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Macro+",
  4078. height: math.unit(1500, "feet")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(1.3, "meter"),
  4087. weight: math.unit(30, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/gregory/front.svg",
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(1.3, "meter"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(20, "meter")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2.8, "meter"),
  4111. weight: math.unit(200, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/elory/front.svg",
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(2.8, "meter"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(38, "meter")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(470, "feet"),
  4135. weight: math.unit(924, "tons"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/angelpatamon/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(470, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Deity Size I",
  4150. height: math.unit(28651.2, "km")
  4151. },
  4152. {
  4153. name: "Deity Size II",
  4154. height: math.unit(171907.2, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(7.2, "meter"),
  4163. weight: math.unit(8.2, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/cryae/side.svg",
  4167. extra: 3500 / 1500
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7.2, "meter"),
  4175. default: true
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(6, "feet"),
  4184. weight: math.unit(175, "lb"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/xera/front.svg",
  4188. extra: 2377 / 1972,
  4189. bottom: 75.5 / 2452
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(175, "lb"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/xera/side.svg",
  4198. extra: 2345 / 2019,
  4199. bottom: 39.7 / 2384
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/xera/back.svg",
  4208. extra: 2095 / 1984,
  4209. bottom: 67 / 2166
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Small",
  4216. height: math.unit(10, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(500, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Macro+",
  4225. height: math.unit(10, "km")
  4226. },
  4227. {
  4228. name: "Gigamacro",
  4229. height: math.unit(25000, "km")
  4230. },
  4231. {
  4232. name: "Teramacro",
  4233. height: math.unit(3e6, "km")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/nebula/front.svg",
  4246. extra: 2566 / 2362,
  4247. bottom: 81 / 2644
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(4.5, "meters")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(1500, "meters"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(150, "km")
  4264. },
  4265. {
  4266. name: "Gigamacro",
  4267. height: math.unit(27000, "km")
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(225, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/abysgar/front.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Small",
  4286. height: math.unit(4.5, "meters")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(1250, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(125, "km")
  4296. },
  4297. {
  4298. name: "Gigamacro",
  4299. height: math.unit(26000, "km")
  4300. }
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(180, "lb"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/yakuz/front.svg"
  4312. }
  4313. }
  4314. },
  4315. [
  4316. {
  4317. name: "Small",
  4318. height: math.unit(5, "meters")
  4319. },
  4320. {
  4321. name: "Macro",
  4322. height: math.unit(1500, "meters"),
  4323. default: true
  4324. },
  4325. {
  4326. name: "Megamacro",
  4327. height: math.unit(200, "km")
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(100000, "km")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/mirova/front.svg",
  4344. extra: 3334 / 3071,
  4345. bottom: 42 / 3375.6
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Small",
  4352. height: math.unit(5, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(900, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(135, "km")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(20000, "km")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4371. {
  4372. side: {
  4373. height: math.unit(28.35, "feet"),
  4374. weight: math.unit(99.75, "tons"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/asana-mech/side.svg",
  4378. extra: 923 / 699,
  4379. bottom: 50 / 975
  4380. }
  4381. },
  4382. chaingun: {
  4383. height: math.unit(7, "feet"),
  4384. weight: math.unit(2400, "lb"),
  4385. name: "Chaingun",
  4386. image: {
  4387. source: "./media/characters/asana-mech/chaingun.svg"
  4388. }
  4389. },
  4390. laser: {
  4391. height: math.unit(7.12, "feet"),
  4392. weight: math.unit(2000, "lb"),
  4393. name: "Laser",
  4394. image: {
  4395. source: "./media/characters/asana-mech/laser.svg"
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(28.35, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(2500, "feet")
  4408. },
  4409. {
  4410. name: "Megamacro",
  4411. height: math.unit(25, "miles")
  4412. },
  4413. {
  4414. name: "Examacro",
  4415. height: math.unit(6e8, "lightyears")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5, "meters"),
  4424. weight: math.unit(1000, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/asche/front.svg",
  4428. extra: 1258 / 1190,
  4429. bottom: 47 / 1305
  4430. }
  4431. },
  4432. frontUnderwear: {
  4433. height: math.unit(5, "meters"),
  4434. weight: math.unit(1000, "kg"),
  4435. name: "Front (Underwear)",
  4436. image: {
  4437. source: "./media/characters/asche/front-underwear.svg",
  4438. extra: 1258 / 1190,
  4439. bottom: 47 / 1305
  4440. }
  4441. },
  4442. frontDressed: {
  4443. height: math.unit(5, "meters"),
  4444. weight: math.unit(1000, "kg"),
  4445. name: "Front (Dressed)",
  4446. image: {
  4447. source: "./media/characters/asche/front-dressed.svg",
  4448. extra: 1258 / 1190,
  4449. bottom: 47 / 1305
  4450. }
  4451. },
  4452. frontArmor: {
  4453. height: math.unit(5, "meters"),
  4454. weight: math.unit(1000, "kg"),
  4455. name: "Front (Armored)",
  4456. image: {
  4457. source: "./media/characters/asche/front-armored.svg",
  4458. extra: 1374 / 1308,
  4459. bottom: 23 / 1397
  4460. }
  4461. },
  4462. mp724: {
  4463. height: math.unit(0.96, "meters"),
  4464. weight: math.unit(38, "kg"),
  4465. name: "H&K MP724",
  4466. image: {
  4467. source: "./media/characters/asche/h&k-mp724.svg"
  4468. }
  4469. },
  4470. side: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Side",
  4474. image: {
  4475. source: "./media/characters/asche/side.svg",
  4476. extra: 1717 / 1609,
  4477. bottom: 0.005
  4478. }
  4479. },
  4480. back: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Back",
  4484. image: {
  4485. source: "./media/characters/asche/back.svg",
  4486. extra: 1570 / 1501
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "DEFCON 5",
  4493. height: math.unit(5, "meters")
  4494. },
  4495. {
  4496. name: "DEFCON 4",
  4497. height: math.unit(500, "meters"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "DEFCON 3",
  4502. height: math.unit(5, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 2",
  4506. height: math.unit(500, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 1",
  4510. height: math.unit(500000, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 0",
  4514. height: math.unit(3, "gigaparsecs")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/gale/front.svg"
  4527. }
  4528. },
  4529. frontAlt1: {
  4530. height: math.unit(2, "meters"),
  4531. weight: math.unit(76, "kg"),
  4532. name: "Front (Alt 1)",
  4533. image: {
  4534. source: "./media/characters/gale/front-alt-1.svg"
  4535. }
  4536. },
  4537. frontAlt2: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(76, "kg"),
  4540. name: "Front (Alt 2)",
  4541. image: {
  4542. source: "./media/characters/gale/front-alt-2.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(7, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(150, "feet"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "Macro+",
  4558. height: math.unit(300, "feet")
  4559. },
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(5 + 10/12, "feet"),
  4567. weight: math.unit(67, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/draylen/front.svg",
  4571. extra: 832/777,
  4572. bottom: 85/917
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(5 + 10/12, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(150, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(7 + 9 / 12, "feet"),
  4593. weight: math.unit(379, "lbs"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/chez/front.svg"
  4597. }
  4598. },
  4599. side: {
  4600. height: math.unit(7 + 9 / 12, "feet"),
  4601. weight: math.unit(379, "lbs"),
  4602. name: "Side",
  4603. image: {
  4604. source: "./media/characters/chez/side.svg"
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(7 + 9 / 12, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "God King",
  4616. height: math.unit(9750000, "meters")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(275, "lbs"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/kaylum/front.svg",
  4629. bottom: 0.01,
  4630. extra: 1166 / 1031
  4631. }
  4632. },
  4633. frontWingless: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(275, "lbs"),
  4636. name: "Front (Wingless)",
  4637. image: {
  4638. source: "./media/characters/kaylum/front-wingless.svg",
  4639. bottom: 0.01,
  4640. extra: 1117 / 1031
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(3.05, "meters")
  4648. },
  4649. {
  4650. name: "Master",
  4651. height: math.unit(5.5, "meters")
  4652. },
  4653. {
  4654. name: "Rampage",
  4655. height: math.unit(19, "meters")
  4656. },
  4657. {
  4658. name: "Macro Lite",
  4659. height: math.unit(37, "meters")
  4660. },
  4661. {
  4662. name: "Hyper Predator",
  4663. height: math.unit(61, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(138, "meters"),
  4668. default: true
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(150, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/geta/front.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Micro",
  4687. height: math.unit(3, "inches"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(5 + 5 / 12, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(300, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/tyrnn/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Main Height",
  4711. height: math.unit(355, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Fave. Height",
  4716. height: math.unit(2400, "feet")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(300, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/appledectomy/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(2500, "feet")
  4736. },
  4737. {
  4738. name: "Megamacro",
  4739. height: math.unit(50, "miles"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Gigamacro",
  4744. height: math.unit(5000, "miles")
  4745. },
  4746. {
  4747. name: "Teramacro",
  4748. height: math.unit(250000, "miles")
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(200, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/vulpes/front.svg",
  4761. extra: 573 / 543,
  4762. bottom: 0.033
  4763. }
  4764. },
  4765. side: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(200, "lbs"),
  4768. name: "Side",
  4769. image: {
  4770. source: "./media/characters/vulpes/side.svg",
  4771. extra: 577 / 549,
  4772. bottom: 11 / 588
  4773. }
  4774. },
  4775. back: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(200, "lbs"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/vulpes/back.svg",
  4781. extra: 573 / 549,
  4782. bottom: 20 / 593
  4783. }
  4784. },
  4785. feet: {
  4786. height: math.unit(1.276, "feet"),
  4787. name: "Feet",
  4788. image: {
  4789. source: "./media/characters/vulpes/feet.svg"
  4790. }
  4791. },
  4792. maw: {
  4793. height: math.unit(1.18, "feet"),
  4794. name: "Maw",
  4795. image: {
  4796. source: "./media/characters/vulpes/maw.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Micro",
  4803. height: math.unit(2, "inches")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.3, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(850, "feet")
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(7500, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(570000, "miles")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/front.svg"
  4833. }
  4834. },
  4835. side: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(210, "lbs"),
  4838. name: "Side",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/side.svg"
  4841. }
  4842. },
  4843. back: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(210, "lbs"),
  4846. name: "Back",
  4847. image: {
  4848. source: "./media/characters/rain-fallen/back.svg"
  4849. }
  4850. },
  4851. feral: {
  4852. height: math.unit(9, "feet"),
  4853. weight: math.unit(700, "lbs"),
  4854. name: "Feral",
  4855. image: {
  4856. source: "./media/characters/rain-fallen/feral.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Meddling with Mortals",
  4863. height: math.unit(8 + 8/12, "feet")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(5, "meter")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(150, "meter"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(278e6, "meter")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(2e9, "meter")
  4881. },
  4882. {
  4883. name: "Teramacro",
  4884. height: math.unit(8e12, "meter")
  4885. },
  4886. {
  4887. name: "Devourer",
  4888. height: math.unit(14, "zettameters")
  4889. },
  4890. {
  4891. name: "Scarlet King",
  4892. height: math.unit(18, "yottameters")
  4893. },
  4894. {
  4895. name: "Void",
  4896. height: math.unit(1e88, "yottameters")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4902. {
  4903. standing: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Standing",
  4907. image: {
  4908. source: "./media/characters/zaakira/standing.svg",
  4909. extra: 1599/1504,
  4910. bottom: 39/1638
  4911. }
  4912. },
  4913. laying: {
  4914. height: math.unit(3, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Laying",
  4917. image: {
  4918. source: "./media/characters/zaakira/laying.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(12, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(279, "feet"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4936. {
  4937. femSfw: {
  4938. height: math.unit(8, "feet"),
  4939. weight: math.unit(350, "lb"),
  4940. name: "Fem",
  4941. image: {
  4942. source: "./media/characters/sigvald/fem-sfw.svg",
  4943. extra: 182 / 164,
  4944. bottom: 8.7 / 190.5
  4945. }
  4946. },
  4947. femNsfw: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(350, "lb"),
  4950. name: "Fem (NSFW)",
  4951. image: {
  4952. source: "./media/characters/sigvald/fem-nsfw.svg",
  4953. extra: 182 / 164,
  4954. bottom: 8.7 / 190.5
  4955. }
  4956. },
  4957. maleNsfw: {
  4958. height: math.unit(8, "feet"),
  4959. weight: math.unit(350, "lb"),
  4960. name: "Male (NSFW)",
  4961. image: {
  4962. source: "./media/characters/sigvald/male-nsfw.svg",
  4963. extra: 182 / 164,
  4964. bottom: 8.7 / 190.5
  4965. }
  4966. },
  4967. hermNsfw: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(350, "lb"),
  4970. name: "Herm (NSFW)",
  4971. image: {
  4972. source: "./media/characters/sigvald/herm-nsfw.svg",
  4973. extra: 182 / 164,
  4974. bottom: 8.7 / 190.5
  4975. }
  4976. },
  4977. dick: {
  4978. height: math.unit(2.36, "feet"),
  4979. name: "Dick",
  4980. image: {
  4981. source: "./media/characters/sigvald/dick.svg"
  4982. }
  4983. },
  4984. eye: {
  4985. height: math.unit(0.31, "feet"),
  4986. name: "Eye",
  4987. image: {
  4988. source: "./media/characters/sigvald/eye.svg"
  4989. }
  4990. },
  4991. mouth: {
  4992. height: math.unit(0.92, "feet"),
  4993. name: "Mouth",
  4994. image: {
  4995. source: "./media/characters/sigvald/mouth.svg"
  4996. }
  4997. },
  4998. paws: {
  4999. height: math.unit(2.2, "feet"),
  5000. name: "Paws",
  5001. image: {
  5002. source: "./media/characters/sigvald/paws.svg"
  5003. }
  5004. }
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(8, "feet")
  5010. },
  5011. {
  5012. name: "Large",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Larger",
  5017. height: math.unit(20, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(150, "feet")
  5022. },
  5023. {
  5024. name: "Macro+",
  5025. height: math.unit(200, "feet"),
  5026. default: true
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5032. {
  5033. side: {
  5034. height: math.unit(12, "feet"),
  5035. weight: math.unit(2000, "kg"),
  5036. name: "Side",
  5037. image: {
  5038. source: "./media/characters/scott/side.svg",
  5039. extra: 754 / 724,
  5040. bottom: 0.069
  5041. }
  5042. },
  5043. upright: {
  5044. height: math.unit(12, "feet"),
  5045. weight: math.unit(2000, "kg"),
  5046. name: "Upright",
  5047. image: {
  5048. source: "./media/characters/scott/upright.svg",
  5049. extra: 3881 / 3722,
  5050. bottom: 0.05
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(12, "feet"),
  5058. default: true
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5064. {
  5065. side: {
  5066. height: math.unit(8, "meters"),
  5067. weight: math.unit(84755, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/tobias/side.svg",
  5071. extra: 1474 / 1096,
  5072. bottom: 38.9 / 1513.1235
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(8, "meters"),
  5080. default: true
  5081. },
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5086. {
  5087. front: {
  5088. height: math.unit(5.5, "feet"),
  5089. weight: math.unit(400, "lbs"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/kieran/front.svg",
  5093. extra: 2694 / 2364,
  5094. bottom: 217 / 2908
  5095. }
  5096. },
  5097. side: {
  5098. height: math.unit(5.5, "feet"),
  5099. weight: math.unit(400, "lbs"),
  5100. name: "Side",
  5101. image: {
  5102. source: "./media/characters/kieran/side.svg",
  5103. extra: 875 / 777,
  5104. bottom: 84.6 / 959
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(5.5, "feet"),
  5112. default: true
  5113. },
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5118. {
  5119. side: {
  5120. height: math.unit(2, "meters"),
  5121. weight: math.unit(70, "kg"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/sanya/side.svg",
  5125. bottom: 0.02,
  5126. extra: 1.02
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Small",
  5133. height: math.unit(2, "meters")
  5134. },
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(3, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(16, "meters"),
  5142. default: true
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(2, "meters"),
  5151. weight: math.unit(120, "kg"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/miranda/front.svg",
  5155. extra: 195 / 185,
  5156. bottom: 10.9 / 206.5
  5157. }
  5158. },
  5159. back: {
  5160. height: math.unit(2, "meters"),
  5161. weight: math.unit(120, "kg"),
  5162. name: "Back",
  5163. image: {
  5164. source: "./media/characters/miranda/back.svg",
  5165. extra: 201 / 193,
  5166. bottom: 2.3 / 203.7
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(10, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "James", species: ["deer"], tags: ["anthro"] },
  5180. {
  5181. side: {
  5182. height: math.unit(2, "meters"),
  5183. weight: math.unit(100, "kg"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/james/front.svg",
  5187. extra: 10 / 8.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(8.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(9.5, "feet"),
  5204. weight: math.unit(2500, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/heather/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9.5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6.5, "feet"),
  5224. weight: math.unit(400, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/lukas/side.svg",
  5228. extra: 7.25 / 6.5
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(6.5, "feet"),
  5236. default: true
  5237. }
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5242. {
  5243. side: {
  5244. height: math.unit(5, "feet"),
  5245. weight: math.unit(3000, "lbs"),
  5246. name: "Side",
  5247. image: {
  5248. source: "./media/characters/louise/side.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(5, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5262. {
  5263. side: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(150, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/ramona/side.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(5.3, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(20, "stories")
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(50, "stories")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5290. {
  5291. standing: {
  5292. height: math.unit(5.75, "feet"),
  5293. weight: math.unit(160, "lbs"),
  5294. name: "Standing",
  5295. image: {
  5296. source: "./media/characters/deerpuff/standing.svg",
  5297. extra: 682 / 624
  5298. }
  5299. },
  5300. sitting: {
  5301. height: math.unit(5.75 / 1.79, "feet"),
  5302. weight: math.unit(160, "lbs"),
  5303. name: "Sitting",
  5304. image: {
  5305. source: "./media/characters/deerpuff/sitting.svg",
  5306. bottom: 44 / 400,
  5307. extra: 1
  5308. }
  5309. },
  5310. taurLaying: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Taur (Laying)",
  5314. image: {
  5315. source: "./media/characters/deerpuff/taur-laying.svg"
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Puffball",
  5322. height: math.unit(6, "inches")
  5323. },
  5324. {
  5325. name: "Normalpuff",
  5326. height: math.unit(5.75, "feet")
  5327. },
  5328. {
  5329. name: "Macropuff",
  5330. height: math.unit(1500, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megapuff",
  5335. height: math.unit(500, "miles")
  5336. },
  5337. {
  5338. name: "Gigapuff",
  5339. height: math.unit(250000, "miles")
  5340. },
  5341. {
  5342. name: "Omegapuff",
  5343. height: math.unit(1000, "lightyears")
  5344. },
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5349. {
  5350. stomping: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(170, "lbs"),
  5353. name: "Stomping",
  5354. image: {
  5355. source: "./media/characters/vivian/stomping.svg"
  5356. }
  5357. },
  5358. sitting: {
  5359. height: math.unit(6 / 1.75, "feet"),
  5360. weight: math.unit(170, "lbs"),
  5361. name: "Sitting",
  5362. image: {
  5363. source: "./media/characters/vivian/sitting.svg",
  5364. bottom: 1 / 6.4,
  5365. extra: 1,
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(7, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(10, "stories")
  5378. },
  5379. {
  5380. name: "Macro+",
  5381. height: math.unit(30, "stories")
  5382. },
  5383. {
  5384. name: "Megamacro",
  5385. height: math.unit(10, "miles")
  5386. },
  5387. {
  5388. name: "Megamacro+",
  5389. height: math.unit(2750000, "meters")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(160, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/prince/front.svg",
  5402. extra: 3400 / 3000
  5403. }
  5404. },
  5405. jumping: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(160, "lbs"),
  5408. name: "Jumping",
  5409. image: {
  5410. source: "./media/characters/prince/jump.svg",
  5411. extra: 2555 / 2134
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(7.75, "feet"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Not cute",
  5423. height: math.unit(17, "feet")
  5424. },
  5425. {
  5426. name: "I said NOT",
  5427. height: math.unit(91, "feet")
  5428. },
  5429. {
  5430. name: "Please stop",
  5431. height: math.unit(560, "feet")
  5432. },
  5433. {
  5434. name: "What have you done",
  5435. height: math.unit(2200, "feet")
  5436. },
  5437. {
  5438. name: "Deer God",
  5439. height: math.unit(3.6, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5445. {
  5446. standing: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(300, "lbs"),
  5449. name: "Standing",
  5450. image: {
  5451. source: "./media/characters/psymon/standing.svg",
  5452. extra: 1888 / 1810,
  5453. bottom: 0.05
  5454. }
  5455. },
  5456. slithering: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(300, "lbs"),
  5459. name: "Slithering",
  5460. image: {
  5461. source: "./media/characters/psymon/slithering.svg",
  5462. extra: 1330 / 1224
  5463. }
  5464. },
  5465. slitheringAlt: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(300, "lbs"),
  5468. name: "Slithering (Alt)",
  5469. image: {
  5470. source: "./media/characters/psymon/slithering-alt.svg",
  5471. extra: 1330 / 1224
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(11.25, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(27, "feet")
  5484. },
  5485. {
  5486. name: "Giant",
  5487. height: math.unit(87, "feet")
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(365, "feet")
  5492. },
  5493. {
  5494. name: "Megamacro",
  5495. height: math.unit(3, "miles")
  5496. },
  5497. {
  5498. name: "World Serpent",
  5499. height: math.unit(8000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Daimos", species: ["veilhound"], 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/daimos/front.svg",
  5512. extra: 4160 / 3897,
  5513. bottom: 0.021
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(8, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Big Dog",
  5525. height: math.unit(22, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(127, "feet")
  5530. },
  5531. {
  5532. name: "Megamacro",
  5533. height: math.unit(3600, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5539. {
  5540. side: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(180, "lbs"),
  5543. name: "Side",
  5544. image: {
  5545. source: "./media/characters/blake/side.svg",
  5546. extra: 1212 / 1120,
  5547. bottom: 0.05
  5548. }
  5549. },
  5550. crouched: {
  5551. height: math.unit(6 * 0.57, "feet"),
  5552. weight: math.unit(180, "lbs"),
  5553. name: "Crouched",
  5554. image: {
  5555. source: "./media/characters/blake/crouched.svg",
  5556. extra: 840 / 587,
  5557. bottom: 0.04
  5558. }
  5559. },
  5560. bent: {
  5561. height: math.unit(6 * 0.75, "feet"),
  5562. weight: math.unit(180, "lbs"),
  5563. name: "Bent",
  5564. image: {
  5565. source: "./media/characters/blake/bent.svg",
  5566. extra: 592 / 544,
  5567. bottom: 0.035
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(8 + 1 / 6, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Big Backside",
  5579. height: math.unit(37, "feet")
  5580. },
  5581. {
  5582. name: "Subway Shredder",
  5583. height: math.unit(72, "feet")
  5584. },
  5585. {
  5586. name: "City Carver",
  5587. height: math.unit(1675, "feet")
  5588. },
  5589. {
  5590. name: "Tectonic Tweaker",
  5591. height: math.unit(2300, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/guisetto/front.svg",
  5604. extra: 856 / 817,
  5605. bottom: 0.06
  5606. }
  5607. },
  5608. airborne: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Airborne",
  5612. image: {
  5613. source: "./media/characters/guisetto/airborne.svg",
  5614. extra: 584 / 525
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(10 + 11 / 12, "feet"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Large",
  5626. height: math.unit(35, "feet")
  5627. },
  5628. {
  5629. name: "Macro",
  5630. height: math.unit(475, "feet")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(180, "lbs"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/luxor/front.svg",
  5643. extra: 2940 / 2152
  5644. }
  5645. },
  5646. back: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Back",
  5650. image: {
  5651. source: "./media/characters/luxor/back.svg",
  5652. extra: 1083 / 960
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(5 + 5 / 6, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Lamp",
  5664. height: math.unit(50, "feet")
  5665. },
  5666. {
  5667. name: "Lämp",
  5668. height: math.unit(300, "feet")
  5669. },
  5670. {
  5671. name: "The sun is a lamp",
  5672. height: math.unit(250000, "miles")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(50, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/huoyan/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/huoyan/side.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Chef",
  5699. height: math.unit(9, "feet")
  5700. },
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(65, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(780, "feet")
  5709. },
  5710. {
  5711. name: "Flaming Mountain",
  5712. height: math.unit(4.8, "miles")
  5713. },
  5714. {
  5715. name: "Celestial",
  5716. height: math.unit(765000, "miles")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(5 + 3 / 4, "feet"),
  5725. weight: math.unit(120, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/tails/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(5 + 3 / 4, "feet"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(4, "feet"),
  5745. weight: math.unit(50, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/rainy/front.svg"
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(800, "feet"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(150, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/rainier/front.svg"
  5769. }
  5770. }
  5771. },
  5772. [
  5773. {
  5774. name: "Micro",
  5775. height: math.unit(2, "mm"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(8 + 4/12, "feet"),
  5785. name: "Front",
  5786. image: {
  5787. source: "./media/characters/andy-renard/front.svg",
  5788. extra: 1839/1726,
  5789. bottom: 134/1973
  5790. }
  5791. },
  5792. back: {
  5793. height: math.unit(8 + 4/12, "feet"),
  5794. name: "Back",
  5795. image: {
  5796. source: "./media/characters/andy-renard/back.svg",
  5797. extra: 1838/1710,
  5798. bottom: 105/1943
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Tall",
  5805. height: math.unit(8 + 4/12, "feet")
  5806. },
  5807. {
  5808. name: "Mini Macro",
  5809. height: math.unit(15, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(100, "feet")
  5815. },
  5816. {
  5817. name: "Mega Macro",
  5818. height: math.unit(1000, "feet")
  5819. },
  5820. {
  5821. name: "Giga Macro",
  5822. height: math.unit(10, "miles")
  5823. },
  5824. {
  5825. name: "God Macro",
  5826. height: math.unit(1, "multiverse")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/cimmaron/front-sfw.svg",
  5839. extra: 701 / 676,
  5840. bottom: 0.046
  5841. }
  5842. },
  5843. back: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(210, "lbs"),
  5846. name: "Back",
  5847. image: {
  5848. source: "./media/characters/cimmaron/back-sfw.svg",
  5849. extra: 701 / 676,
  5850. bottom: 0.046
  5851. }
  5852. },
  5853. frontNsfw: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Front (NSFW)",
  5857. image: {
  5858. source: "./media/characters/cimmaron/front-nsfw.svg",
  5859. extra: 701 / 676,
  5860. bottom: 0.046
  5861. }
  5862. },
  5863. backNsfw: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(210, "lbs"),
  5866. name: "Back (NSFW)",
  5867. image: {
  5868. source: "./media/characters/cimmaron/back-nsfw.svg",
  5869. extra: 701 / 676,
  5870. bottom: 0.046
  5871. }
  5872. },
  5873. dick: {
  5874. height: math.unit(1.714, "feet"),
  5875. name: "Dick",
  5876. image: {
  5877. source: "./media/characters/cimmaron/dick.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Macro Mayor",
  5889. height: math.unit(350, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(200, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/akari/front.svg",
  5902. extra: 962 / 901,
  5903. bottom: 0.04
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(5, "inches"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(7, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(140, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/cynosura/front.svg",
  5928. extra: 896 / 847
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(140, "lbs"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/cynosura/back.svg",
  5937. extra: 1365 / 1250
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Micro",
  5944. height: math.unit(4, "inches")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5.75, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Tall",
  5953. height: math.unit(10, "feet")
  5954. },
  5955. {
  5956. name: "Big",
  5957. height: math.unit(20, "feet")
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(50, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(13 + 2/12, "feet"),
  5970. weight: math.unit(800, "kg"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/gin/front.svg",
  5974. extra: 1312/1191,
  5975. bottom: 45/1357
  5976. }
  5977. },
  5978. mouth: {
  5979. height: math.unit(2.39 * 1.8, "feet"),
  5980. name: "Mouth",
  5981. image: {
  5982. source: "./media/characters/gin/mouth.svg"
  5983. }
  5984. },
  5985. hand: {
  5986. height: math.unit(1.57 * 2.19, "feet"),
  5987. name: "Hand",
  5988. image: {
  5989. source: "./media/characters/gin/hand.svg"
  5990. }
  5991. },
  5992. foot: {
  5993. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5994. name: "Foot",
  5995. image: {
  5996. source: "./media/characters/gin/foot.svg"
  5997. }
  5998. },
  5999. sole: {
  6000. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6001. name: "Sole",
  6002. image: {
  6003. source: "./media/characters/gin/sole.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Very Small",
  6010. height: math.unit(13 + 2 / 12, "feet")
  6011. },
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(600, "miles")
  6015. },
  6016. {
  6017. name: "Regular",
  6018. height: math.unit(20, "earths"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(2.2, "solarradii")
  6024. },
  6025. {
  6026. name: "Teramacro",
  6027. height: math.unit(1.2, "galaxies")
  6028. },
  6029. {
  6030. name: "Omegamacro",
  6031. height: math.unit(200, "universes")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6 + 1 / 6, "feet"),
  6040. weight: math.unit(178, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/guy/front.svg"
  6044. }
  6045. }
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(6 + 1 / 6, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Large",
  6055. height: math.unit(25 + 7 / 12, "feet")
  6056. },
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(60 + 9 / 12, "feet")
  6060. },
  6061. {
  6062. name: "Macro+",
  6063. height: math.unit(246, "feet")
  6064. },
  6065. {
  6066. name: "Macro++",
  6067. height: math.unit(878, "feet")
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(9, "feet"),
  6076. weight: math.unit(800, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/tiberius/front.svg",
  6080. extra: 2295 / 2071
  6081. }
  6082. },
  6083. back: {
  6084. height: math.unit(9, "feet"),
  6085. weight: math.unit(800, "lbs"),
  6086. name: "Back",
  6087. image: {
  6088. source: "./media/characters/tiberius/back.svg",
  6089. extra: 2373 / 2160
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(9, "feet"),
  6097. default: true
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6103. {
  6104. front: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(600, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/surgo/front.svg",
  6110. extra: 3591 / 2227
  6111. }
  6112. },
  6113. back: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(600, "lbs"),
  6116. name: "Back",
  6117. image: {
  6118. source: "./media/characters/surgo/back.svg",
  6119. extra: 3557 / 2228
  6120. }
  6121. },
  6122. laying: {
  6123. height: math.unit(6 * 0.85, "feet"),
  6124. weight: math.unit(600, "lbs"),
  6125. name: "Laying",
  6126. image: {
  6127. source: "./media/characters/surgo/laying.svg"
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(6, "feet"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6141. {
  6142. side: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(150, "lbs"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/cibus/side.svg",
  6148. extra: 800 / 400
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(6, "feet"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(240, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/nibbles/front.svg"
  6169. }
  6170. },
  6171. side: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(240, "lbs"),
  6174. name: "Side",
  6175. image: {
  6176. source: "./media/characters/nibbles/side.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(9, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(5 + 1 / 6, "feet"),
  6193. weight: math.unit(130, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/rikky/side.svg",
  6197. extra: 851 / 801
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(5 + 1 / 6, "feet")
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(152, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Megamacro",
  6213. height: math.unit(7, "miles")
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6219. {
  6220. side: {
  6221. height: math.unit(370, "cm"),
  6222. weight: math.unit(350, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/malfressa/side.svg"
  6226. }
  6227. },
  6228. walking: {
  6229. height: math.unit(370, "cm"),
  6230. weight: math.unit(350, "lbs"),
  6231. name: "Walking",
  6232. image: {
  6233. source: "./media/characters/malfressa/walking.svg"
  6234. }
  6235. },
  6236. feral: {
  6237. height: math.unit(2500, "cm"),
  6238. weight: math.unit(100000, "lbs"),
  6239. name: "Feral",
  6240. image: {
  6241. source: "./media/characters/malfressa/feral.svg",
  6242. extra: 2108 / 837,
  6243. bottom: 0.02
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(370, "cm")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(300, "meters"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(60, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/jaro/front.svg"
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(60, "kg"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/jaro/back.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Micro",
  6282. height: math.unit(7, "inches")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5.5, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Minimacro",
  6291. height: math.unit(20, "feet")
  6292. },
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(200, "meters")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(195, "lb"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/rogue/front.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(90, "feet"),
  6315. default: true
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(5 + 8 / 12, "feet"),
  6324. weight: math.unit(140, "lb"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/piper/front.svg",
  6328. extra: 3948/3655,
  6329. bottom: 0/3948
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Micro",
  6336. height: math.unit(2, "inches")
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(5 + 8 / 12, "feet")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(250, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(7, "miles")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(220, "lb"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/gemini/front.svg"
  6362. }
  6363. },
  6364. back: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(220, "lb"),
  6367. name: "Back",
  6368. image: {
  6369. source: "./media/characters/gemini/back.svg"
  6370. }
  6371. },
  6372. kneeling: {
  6373. height: math.unit(6 / 1.5, "feet"),
  6374. weight: math.unit(220, "lb"),
  6375. name: "Kneeling",
  6376. image: {
  6377. source: "./media/characters/gemini/kneeling.svg",
  6378. bottom: 0.02
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(300, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(6900, "meters")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6396. {
  6397. anthro: {
  6398. height: math.unit(2.35, "meters"),
  6399. weight: math.unit(73, "kg"),
  6400. name: "Anthro",
  6401. image: {
  6402. source: "./media/characters/alicia/anthro.svg",
  6403. extra: 2571 / 2385,
  6404. bottom: 75 / 2648
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(1.32, "feet"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/alicia/paw.svg"
  6412. }
  6413. },
  6414. feral: {
  6415. height: math.unit(1.69, "meters"),
  6416. weight: math.unit(73, "kg"),
  6417. name: "Feral",
  6418. image: {
  6419. source: "./media/characters/alicia/feral.svg",
  6420. extra: 2123 / 1715,
  6421. bottom: 222 / 2349
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(2.35, "meters")
  6429. },
  6430. {
  6431. name: "Macro",
  6432. height: math.unit(60, "meters"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Megamacro",
  6437. height: math.unit(10000, "kilometers")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(7, "feet"),
  6446. weight: math.unit(250, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/archy/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Micro",
  6456. height: math.unit(1, "inch")
  6457. },
  6458. {
  6459. name: "Shorty",
  6460. height: math.unit(5, "feet")
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(7, "feet")
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(600, "meters"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Megamacro",
  6473. height: math.unit(1, "mile")
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(1.65, "meters"),
  6482. weight: math.unit(74, "kg"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/berri/front.svg",
  6486. extra: 857 / 837,
  6487. bottom: 18 / 877
  6488. }
  6489. },
  6490. bum: {
  6491. height: math.unit(1.46, "feet"),
  6492. name: "Bum",
  6493. image: {
  6494. source: "./media/characters/berri/bum.svg"
  6495. }
  6496. },
  6497. mouth: {
  6498. height: math.unit(0.44, "feet"),
  6499. name: "Mouth",
  6500. image: {
  6501. source: "./media/characters/berri/mouth.svg"
  6502. }
  6503. },
  6504. paw: {
  6505. height: math.unit(0.826, "feet"),
  6506. name: "Paw",
  6507. image: {
  6508. source: "./media/characters/berri/paw.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(1.65, "meters")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(60, "m"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(9.213, "km")
  6525. },
  6526. {
  6527. name: "Planet Eater",
  6528. height: math.unit(489, "megameters")
  6529. },
  6530. {
  6531. name: "Teramacro",
  6532. height: math.unit(2471635000000, "meters")
  6533. },
  6534. {
  6535. name: "Examacro",
  6536. height: math.unit(8.0624e+26, "meters")
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.72, "meters"),
  6545. weight: math.unit(68, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/lexi/front.svg"
  6549. }
  6550. }
  6551. },
  6552. [
  6553. {
  6554. name: "Very Smol",
  6555. height: math.unit(10, "mm")
  6556. },
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(6.8, "cm"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(1.72, "m")
  6565. }
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(1.69, "meters"),
  6573. weight: math.unit(68, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/martin/front.svg",
  6577. extra: 596 / 581
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Micro",
  6584. height: math.unit(6.85, "cm"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.69, "m")
  6590. }
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(1.69, "meters"),
  6598. weight: math.unit(68, "kg"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/juno/front.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Micro",
  6608. height: math.unit(7, "cm")
  6609. },
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(1.89, "m")
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(353, "meters"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(1.93, "meters"),
  6626. weight: math.unit(83, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/samantha/front.svg"
  6630. }
  6631. },
  6632. frontClothed: {
  6633. height: math.unit(1.93, "meters"),
  6634. weight: math.unit(83, "kg"),
  6635. name: "Front (Clothed)",
  6636. image: {
  6637. source: "./media/characters/samantha/front-clothed.svg"
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(1.93, "meters"),
  6642. weight: math.unit(83, "kg"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/samantha/back.svg"
  6646. }
  6647. },
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(1.93, "m")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(74, "meters"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Macro+",
  6661. height: math.unit(223, "meters"),
  6662. },
  6663. {
  6664. name: "Megamacro",
  6665. height: math.unit(8381, "meters"),
  6666. },
  6667. {
  6668. name: "Megamacro+",
  6669. height: math.unit(12000, "kilometers")
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(1.92, "meters"),
  6678. weight: math.unit(80, "kg"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/dr-clay/front.svg"
  6682. }
  6683. },
  6684. frontClothed: {
  6685. height: math.unit(1.92, "meters"),
  6686. weight: math.unit(80, "kg"),
  6687. name: "Front (Clothed)",
  6688. image: {
  6689. source: "./media/characters/dr-clay/front-clothed.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(1.92, "m")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(214, "meters"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Macro+",
  6705. height: math.unit(12.237, "meters"),
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(557, "megameters"),
  6710. },
  6711. {
  6712. name: "Unimaginable",
  6713. height: math.unit(120e9, "lightyears")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(80, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Teramacro",
  6732. height: math.unit(500000, "lightyears"),
  6733. default: true
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6739. {
  6740. crux: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Crux",
  6744. image: {
  6745. source: "./media/characters/vemus/crux.svg",
  6746. extra: 1074/936,
  6747. bottom: 23/1097
  6748. }
  6749. },
  6750. skunkTanuki: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Skunk-Tanuki",
  6754. image: {
  6755. source: "./media/characters/vemus/skunk-tanuki.svg",
  6756. extra: 926/893,
  6757. bottom: 20/946
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(3.75, "meters"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Big",
  6769. height: math.unit(8, "meters")
  6770. },
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(100, "meters")
  6774. },
  6775. {
  6776. name: "Macro+",
  6777. height: math.unit(1500, "meters")
  6778. },
  6779. {
  6780. name: "Stellar",
  6781. height: math.unit(14e8, "meters")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(70, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/beherit/front.svg",
  6794. extra: 1408 / 1242
  6795. }
  6796. }
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(6, "feet")
  6802. },
  6803. {
  6804. name: "Lorg",
  6805. height: math.unit(25, "feet"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Lorger",
  6810. height: math.unit(75, "feet")
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(200, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(2, "meters"),
  6823. weight: math.unit(150, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/everett/front.svg",
  6827. extra: 2038 / 1737,
  6828. bottom: 0.03
  6829. }
  6830. },
  6831. paw: {
  6832. height: math.unit(2 / 3.6, "meters"),
  6833. name: "Paw",
  6834. image: {
  6835. source: "./media/characters/everett/paw.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(15, "feet"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Lorg",
  6847. height: math.unit(70, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Lorger",
  6852. height: math.unit(250, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(500, "meters")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(2, "meters"),
  6865. weight: math.unit(86, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/rose/front.svg",
  6869. extra: 1785/1636,
  6870. bottom: 30/1815
  6871. }
  6872. },
  6873. frontSporty: {
  6874. height: math.unit(2, "meters"),
  6875. weight: math.unit(86, "kg"),
  6876. name: "Front (Sporty)",
  6877. image: {
  6878. source: "./media/characters/rose/front-sporty.svg",
  6879. extra: 350/335,
  6880. bottom: 10/360
  6881. }
  6882. },
  6883. frontAlt: {
  6884. height: math.unit(1.6, "meters"),
  6885. weight: math.unit(86, "kg"),
  6886. name: "Front (Alt)",
  6887. image: {
  6888. source: "./media/characters/rose/front-alt.svg",
  6889. extra: 299/283,
  6890. bottom: 3/302
  6891. }
  6892. },
  6893. plush: {
  6894. height: math.unit(2, "meters"),
  6895. weight: math.unit(86/3, "kg"),
  6896. name: "Plush",
  6897. image: {
  6898. source: "./media/characters/rose/plush.svg",
  6899. extra: 361/337,
  6900. bottom: 11/372
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "True Micro",
  6907. height: math.unit(9, "cm")
  6908. },
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(16, "cm")
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.85, "meters"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Mini-Macro",
  6920. height: math.unit(5, "meters")
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(15, "meters")
  6925. },
  6926. {
  6927. name: "True Macro",
  6928. height: math.unit(40, "meters")
  6929. },
  6930. {
  6931. name: "City Scale",
  6932. height: math.unit(1, "km")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(2, "meters"),
  6941. weight: math.unit(350, "lbs"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/regal/front.svg"
  6945. }
  6946. },
  6947. back: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(350, "lbs"),
  6950. name: "Back",
  6951. image: {
  6952. source: "./media/characters/regal/back.svg"
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(350, "feet"),
  6960. default: true
  6961. }
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(4 + 11 / 12, "feet"),
  6969. weight: math.unit(100, "lbs"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/opal/front.svg"
  6973. }
  6974. },
  6975. frontAlt: {
  6976. height: math.unit(4 + 11 / 12, "feet"),
  6977. weight: math.unit(100, "lbs"),
  6978. name: "Front (Alt)",
  6979. image: {
  6980. source: "./media/characters/opal/front-alt.svg"
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Small",
  6987. height: math.unit(4 + 11 / 12, "feet")
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(20, "feet"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(120, "feet")
  6997. },
  6998. {
  6999. name: "Megamacro",
  7000. height: math.unit(80, "miles")
  7001. },
  7002. {
  7003. name: "True Size",
  7004. height: math.unit(100000, "lightyears")
  7005. },
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(200, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/vector-wuff/front.svg"
  7017. }
  7018. }
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(2.8, "meters")
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(450, "meters"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Megamacro",
  7032. height: math.unit(15, "kilometers")
  7033. }
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(256, "lbs"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/dannik/front.svg"
  7045. }
  7046. }
  7047. },
  7048. [
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(69.57, "meters"),
  7052. default: true
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7058. {
  7059. front: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(120, "lbs"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/azura-saharah/front.svg"
  7065. }
  7066. },
  7067. back: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(120, "lbs"),
  7070. name: "Back",
  7071. image: {
  7072. source: "./media/characters/azura-saharah/back.svg"
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7086. {
  7087. side: {
  7088. height: math.unit(5 + 4 / 12, "feet"),
  7089. weight: math.unit(163, "lbs"),
  7090. name: "Side",
  7091. image: {
  7092. source: "./media/characters/kennedy/side.svg"
  7093. }
  7094. }
  7095. },
  7096. [
  7097. {
  7098. name: "Standard Doggo",
  7099. height: math.unit(5 + 4 / 12, "feet")
  7100. },
  7101. {
  7102. name: "Big Doggo",
  7103. height: math.unit(25 + 3 / 12, "feet"),
  7104. default: true
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(90, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/odi-lunar/front.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Micro",
  7123. height: math.unit(3, "inches"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5.5, "feet")
  7129. }
  7130. ]
  7131. ))
  7132. characterMakers.push(() => makeCharacter(
  7133. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7134. {
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(220, "lbs"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/mandake/back.svg"
  7141. }
  7142. }
  7143. },
  7144. [
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(7, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Macro",
  7152. height: math.unit(78, "feet")
  7153. },
  7154. {
  7155. name: "Macro+",
  7156. height: math.unit(300, "meters")
  7157. },
  7158. {
  7159. name: "Macro++",
  7160. height: math.unit(2400, "feet")
  7161. },
  7162. {
  7163. name: "Megamacro",
  7164. height: math.unit(5167, "meters")
  7165. },
  7166. {
  7167. name: "Gigamacro",
  7168. height: math.unit(41769, "miles")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(120, "lbs"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/yozey/front.svg"
  7181. }
  7182. },
  7183. frontAlt: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(120, "lbs"),
  7186. name: "Front (Alt)",
  7187. image: {
  7188. source: "./media/characters/yozey/front-alt.svg"
  7189. }
  7190. },
  7191. side: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(120, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/yozey/side.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Micro",
  7203. height: math.unit(3, "inches"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6, "feet")
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(103, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/valeska-voss/front.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Mini-Sized Sub",
  7227. height: math.unit(3.1, "inches")
  7228. },
  7229. {
  7230. name: "Mid-Sized Sub",
  7231. height: math.unit(6.2, "inches")
  7232. },
  7233. {
  7234. name: "Full-Sized Sub",
  7235. height: math.unit(9.3, "inches")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(5 + 2 / 12, "foot"),
  7240. default: true
  7241. },
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(160, "lbs"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/gene-zeta/front.svg",
  7253. extra: 3006 / 2826,
  7254. bottom: 182 / 3188
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Micro",
  7261. height: math.unit(6, "inches")
  7262. },
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(5 + 11 / 12, "foot"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(140, "feet")
  7271. },
  7272. {
  7273. name: "Supercharged",
  7274. height: math.unit(2500, "feet")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(350, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/razinox/front.svg",
  7287. extra: 1686 / 1548,
  7288. bottom: 28.2 / 1868
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(350, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/razinox/back.svg",
  7297. extra: 1660 / 1590,
  7298. bottom: 15 / 1665
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(10 + 8 / 12, "foot")
  7306. },
  7307. {
  7308. name: "Minimacro",
  7309. height: math.unit(15, "foot")
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(60, "foot"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(5, "miles")
  7319. },
  7320. {
  7321. name: "Gigamacro",
  7322. height: math.unit(6000, "miles")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(150, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/cobalt/front.svg"
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(8 + 1 / 12, "foot")
  7342. },
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(111, "foot"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Supracosmic",
  7350. height: math.unit(1e42, "feet")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(140, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/amanda/front.svg"
  7363. }
  7364. }
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(5, "inches"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(2.75, "meters"),
  7379. weight: math.unit(1200, "lb"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/teal/front.svg",
  7383. extra: 2463 / 2320,
  7384. bottom: 166 / 2629
  7385. }
  7386. },
  7387. back: {
  7388. height: math.unit(2.75, "meters"),
  7389. weight: math.unit(1200, "lb"),
  7390. name: "Back",
  7391. image: {
  7392. source: "./media/characters/teal/back.svg",
  7393. extra: 2580 / 2489,
  7394. bottom: 151 / 2731
  7395. }
  7396. },
  7397. sitting: {
  7398. height: math.unit(1.9, "meters"),
  7399. weight: math.unit(1200, "lb"),
  7400. name: "Sitting",
  7401. image: {
  7402. source: "./media/characters/teal/sitting.svg",
  7403. extra: 623 / 590,
  7404. bottom: 121 / 744
  7405. }
  7406. },
  7407. standing: {
  7408. height: math.unit(2.75, "meters"),
  7409. weight: math.unit(1200, "lb"),
  7410. name: "Standing",
  7411. image: {
  7412. source: "./media/characters/teal/standing.svg",
  7413. extra: 923 / 893,
  7414. bottom: 60 / 983
  7415. }
  7416. },
  7417. stretching: {
  7418. height: math.unit(3.65, "meters"),
  7419. weight: math.unit(1200, "lb"),
  7420. name: "Stretching",
  7421. image: {
  7422. source: "./media/characters/teal/stretching.svg",
  7423. extra: 1276 / 1244,
  7424. bottom: 0 / 1276
  7425. }
  7426. },
  7427. legged: {
  7428. height: math.unit(1.3, "meters"),
  7429. weight: math.unit(100, "lb"),
  7430. name: "Legged",
  7431. image: {
  7432. source: "./media/characters/teal/legged.svg",
  7433. extra: 462 / 437,
  7434. bottom: 24 / 486
  7435. }
  7436. },
  7437. naga: {
  7438. height: math.unit(5.4, "meters"),
  7439. weight: math.unit(4000, "lb"),
  7440. name: "Naga",
  7441. image: {
  7442. source: "./media/characters/teal/naga.svg",
  7443. extra: 1902 / 1858,
  7444. bottom: 0 / 1902
  7445. }
  7446. },
  7447. hand: {
  7448. height: math.unit(0.52, "meters"),
  7449. name: "Hand",
  7450. image: {
  7451. source: "./media/characters/teal/hand.svg"
  7452. }
  7453. },
  7454. maw: {
  7455. height: math.unit(0.43, "meters"),
  7456. name: "Maw",
  7457. image: {
  7458. source: "./media/characters/teal/maw.svg"
  7459. }
  7460. },
  7461. slit: {
  7462. height: math.unit(0.25, "meters"),
  7463. name: "Slit",
  7464. image: {
  7465. source: "./media/characters/teal/slit.svg"
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(2.75, "meters"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(300, "feet")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(2000, "feet")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7487. {
  7488. frontCat: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(180, "lbs"),
  7491. name: "Front (Cat)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/front-cat.svg"
  7494. }
  7495. },
  7496. frontCatAlt: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(180, "lbs"),
  7499. name: "Front (Alt, Cat)",
  7500. image: {
  7501. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7502. }
  7503. },
  7504. frontWerewolf: {
  7505. height: math.unit(6 * 1.2, "feet"),
  7506. weight: math.unit(225, "lbs"),
  7507. name: "Front (Werewolf)",
  7508. image: {
  7509. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7510. }
  7511. },
  7512. backWerewolf: {
  7513. height: math.unit(6 * 1.2, "feet"),
  7514. weight: math.unit(225, "lbs"),
  7515. name: "Back (Werewolf)",
  7516. image: {
  7517. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Nano",
  7524. height: math.unit(1, "micrometer")
  7525. },
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(1, "inch")
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(6, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(60, "feet")
  7538. }
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(165, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/fluoresce/front.svg"
  7550. }
  7551. }
  7552. },
  7553. [
  7554. {
  7555. name: "Micro",
  7556. height: math.unit(6, "cm")
  7557. },
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 7 / 12, "feet"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(56, "feet")
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(1.9, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(9 + 6 / 12, "feet"),
  7578. weight: math.unit(523, "lbs"),
  7579. name: "Side",
  7580. image: {
  7581. source: "./media/characters/aurora/side.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(9 + 6 / 12, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(96, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(243, "feet")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(194, "cm"),
  7606. weight: math.unit(90, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/ranek/front.svg"
  7610. }
  7611. },
  7612. side: {
  7613. height: math.unit(194, "cm"),
  7614. weight: math.unit(90, "kg"),
  7615. name: "Side",
  7616. image: {
  7617. source: "./media/characters/ranek/side.svg"
  7618. }
  7619. },
  7620. back: {
  7621. height: math.unit(194, "cm"),
  7622. weight: math.unit(90, "kg"),
  7623. name: "Back",
  7624. image: {
  7625. source: "./media/characters/ranek/back.svg"
  7626. }
  7627. },
  7628. feral: {
  7629. height: math.unit(30, "cm"),
  7630. weight: math.unit(1.6, "lbs"),
  7631. name: "Feral",
  7632. image: {
  7633. source: "./media/characters/ranek/feral.svg"
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(194, "cm"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(100, "meters")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(5 + 6 / 12, "feet"),
  7654. weight: math.unit(153, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/andrew-cooper/front.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Nano",
  7664. height: math.unit(1, "mm")
  7665. },
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(2, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 6 / 12, "feet"),
  7673. default: true
  7674. }
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(180, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/akane-sato/front.svg",
  7686. extra: 1219 / 1140
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(180, "lbs"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/akane-sato/back.svg",
  7695. extra: 1219 / 1170
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(2.5, "meters")
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(250, "meters"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(25, "km")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(65, "kg"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/rook/front.svg",
  7724. extra: 960 / 950
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(8.8, "feet")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(88, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Megamacro",
  7740. height: math.unit(8, "miles")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(12 + 2 / 12, "feet"),
  7749. weight: math.unit(808, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/prodigy/front.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(12 + 2 / 12, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(143, "feet")
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(400, "feet")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(225, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/daniel/front.svg"
  7781. }
  7782. },
  7783. leaning: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(225, "lbs"),
  7786. name: "Leaning",
  7787. image: {
  7788. source: "./media/characters/daniel/leaning.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(1000, "feet"),
  7796. default: true
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(88, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/chiros/front.svg",
  7809. extra: 306 / 226
  7810. }
  7811. },
  7812. side: {
  7813. height: math.unit(6, "feet"),
  7814. weight: math.unit(88, "lbs"),
  7815. name: "Side",
  7816. image: {
  7817. source: "./media/characters/chiros/side.svg",
  7818. extra: 306 / 226
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(6, "cm"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(100, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/selka/front.svg",
  7839. extra: 947 / 887
  7840. }
  7841. }
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(5, "cm"),
  7847. default: true
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(8 + 3 / 12, "feet"),
  7856. weight: math.unit(424, "lbs"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/verin/front.svg",
  7860. extra: 1845 / 1550
  7861. }
  7862. },
  7863. frontArmored: {
  7864. height: math.unit(8 + 3 / 12, "feet"),
  7865. weight: math.unit(424, "lbs"),
  7866. name: "Front (Armored)",
  7867. image: {
  7868. source: "./media/characters/verin/front-armor.svg",
  7869. extra: 1845 / 1550,
  7870. bottom: 0.01
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(8 + 3 / 12, "feet"),
  7875. weight: math.unit(424, "lbs"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/verin/back.svg",
  7879. bottom: 0.1,
  7880. extra: 1
  7881. }
  7882. },
  7883. foot: {
  7884. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7885. name: "Foot",
  7886. image: {
  7887. source: "./media/characters/verin/foot.svg"
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(8 + 3 / 12, "feet")
  7895. },
  7896. {
  7897. name: "Minimacro",
  7898. height: math.unit(21, "feet"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(626, "feet")
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(2.718, "meters"),
  7912. weight: math.unit(150, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/sovrim-terraquian/front.svg"
  7916. }
  7917. },
  7918. back: {
  7919. height: math.unit(2.718, "meters"),
  7920. weight: math.unit(150, "lbs"),
  7921. name: "Back",
  7922. image: {
  7923. source: "./media/characters/sovrim-terraquian/back.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(2, "inches")
  7931. },
  7932. {
  7933. name: "Small",
  7934. height: math.unit(1, "meter")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(Math.E, "meters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(20, "meters")
  7944. },
  7945. {
  7946. name: "Macro+",
  7947. height: math.unit(400, "meters")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(7, "feet"),
  7956. weight: math.unit(489, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/reece-silvermane/front.svg",
  7960. bottom: 0.02,
  7961. extra: 1
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(1.5, "miles"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(78, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/kane/front.svg",
  7982. extra: 978 / 899
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(2.1, "m"),
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(1, "km"),
  7994. default: true
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(200, "kg"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/tegon/front.svg",
  8007. bottom: 0.01,
  8008. extra: 1
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(1, "inch")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(6 + 3 / 12, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(300, "feet")
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(69, "miles")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8034. {
  8035. side: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(2304, "lbs"),
  8038. name: "Side",
  8039. image: {
  8040. source: "./media/characters/arcturax/side.svg",
  8041. extra: 790 / 376,
  8042. bottom: 0.01
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inch")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(6, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(39, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Megamacro",
  8062. height: math.unit(7, "miles")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(50, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/sentri/front.svg",
  8075. extra: 1750 / 1570,
  8076. bottom: 0.025
  8077. }
  8078. },
  8079. frontAlt: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(50, "lbs"),
  8082. name: "Front (Alt)",
  8083. image: {
  8084. source: "./media/characters/sentri/front-alt.svg",
  8085. extra: 1750 / 1570,
  8086. bottom: 0.025
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(15, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(2500, "feet")
  8099. }
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(5 + 8 / 12, "feet"),
  8107. weight: math.unit(130, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/corvin/front.svg",
  8111. extra: 1803 / 1629
  8112. }
  8113. },
  8114. frontShirt: {
  8115. height: math.unit(5 + 8 / 12, "feet"),
  8116. weight: math.unit(130, "lbs"),
  8117. name: "Front (Shirt)",
  8118. image: {
  8119. source: "./media/characters/corvin/front-shirt.svg",
  8120. extra: 1803 / 1629
  8121. }
  8122. },
  8123. frontPoncho: {
  8124. height: math.unit(5 + 8 / 12, "feet"),
  8125. weight: math.unit(130, "lbs"),
  8126. name: "Front (Poncho)",
  8127. image: {
  8128. source: "./media/characters/corvin/front-poncho.svg",
  8129. extra: 1803 / 1629
  8130. }
  8131. },
  8132. side: {
  8133. height: math.unit(5 + 8 / 12, "feet"),
  8134. weight: math.unit(130, "lbs"),
  8135. name: "Side",
  8136. image: {
  8137. source: "./media/characters/corvin/side.svg",
  8138. extra: 1012 / 945
  8139. }
  8140. },
  8141. back: {
  8142. height: math.unit(5 + 8 / 12, "feet"),
  8143. weight: math.unit(130, "lbs"),
  8144. name: "Back",
  8145. image: {
  8146. source: "./media/characters/corvin/back.svg",
  8147. extra: 1803 / 1629
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5 + 8 / 12, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(300, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(500, "miles")
  8168. }
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(135, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/q/front.svg",
  8180. extra: 854 / 752,
  8181. bottom: 0.005
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(130, "lbs"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/q/back.svg",
  8190. extra: 854 / 752
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(90, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Extra Macro",
  8202. height: math.unit(300, "feet"),
  8203. },
  8204. {
  8205. name: "BIG WALF",
  8206. height: math.unit(750, "feet"),
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(150, "lbs"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/carley/front.svg",
  8219. extra: 3927 / 3540,
  8220. bottom: 29.2 / 735
  8221. }
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(6 + 3 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(185, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Megamacro",
  8236. height: math.unit(8, "miles"),
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(3, "feet"),
  8245. weight: math.unit(28, "lbs"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/citrine/front.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(3, "feet"),
  8256. default: true
  8257. }
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8262. {
  8263. front: {
  8264. height: math.unit(14, "feet"),
  8265. weight: math.unit(1450, "kg"),
  8266. capacity: math.unit(15, "people"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/aura-starwind/front.svg",
  8270. extra: 1440/1327,
  8271. bottom: 11/1451
  8272. }
  8273. },
  8274. side: {
  8275. height: math.unit(14, "feet"),
  8276. weight: math.unit(1450, "kg"),
  8277. capacity: math.unit(15, "people"),
  8278. name: "Side",
  8279. image: {
  8280. source: "./media/characters/aura-starwind/side.svg",
  8281. extra: 1654 / 1497
  8282. }
  8283. },
  8284. taur: {
  8285. height: math.unit(18, "feet"),
  8286. weight: math.unit(5500, "kg"),
  8287. capacity: math.unit(50, "people"),
  8288. name: "Taur",
  8289. image: {
  8290. source: "./media/characters/aura-starwind/taur.svg",
  8291. extra: 1760 / 1650
  8292. }
  8293. },
  8294. feral: {
  8295. height: math.unit(46, "feet"),
  8296. weight: math.unit(25000, "kg"),
  8297. capacity: math.unit(120, "people"),
  8298. name: "Feral",
  8299. image: {
  8300. source: "./media/characters/aura-starwind/feral.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(14, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(50, "meters")
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(5000, "meters")
  8317. },
  8318. {
  8319. name: "Gigamacro",
  8320. height: math.unit(100000, "kilometers")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2 + 7 / 12, "feet"),
  8329. weight: math.unit(32, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/rivet/front.svg",
  8333. extra: 1716 / 1658,
  8334. bottom: 0.03
  8335. }
  8336. },
  8337. foot: {
  8338. height: math.unit(0.551, "feet"),
  8339. name: "Rivet's Foot",
  8340. image: {
  8341. source: "./media/characters/rivet/foot.svg"
  8342. },
  8343. rename: true
  8344. }
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(1.5, "inches"),
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(2 + 7 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(85, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(2.2, "km")
  8363. }
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(5 + 9 / 12, "feet"),
  8371. weight: math.unit(150, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/coffee/front.svg",
  8375. extra: 3666 / 3032,
  8376. bottom: 0.04
  8377. }
  8378. },
  8379. foot: {
  8380. height: math.unit(1.29, "feet"),
  8381. name: "Foot",
  8382. image: {
  8383. source: "./media/characters/coffee/foot.svg"
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inches"),
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(5 + 9 / 12, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(800, "feet")
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(25, "miles")
  8404. }
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/chari-gal/front.svg",
  8416. extra: 1568 / 1385,
  8417. bottom: 0.047
  8418. }
  8419. },
  8420. gigantamax: {
  8421. height: math.unit(6 * 16, "feet"),
  8422. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8423. name: "Gigantamax",
  8424. image: {
  8425. source: "./media/characters/chari-gal/gigantamax.svg",
  8426. extra: 1124 / 888,
  8427. bottom: 0.03
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(5 + 7 / 12, "feet")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(200, "feet"),
  8439. default: true
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(150, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/nova/front.svg",
  8452. extra: 5000 / 4722,
  8453. bottom: 0.02
  8454. }
  8455. }
  8456. },
  8457. [
  8458. {
  8459. name: "Micro-",
  8460. height: math.unit(0.8, "inches")
  8461. },
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(2, "inches"),
  8465. default: true
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(3 + 1 / 12, "feet"),
  8474. weight: math.unit(21.7, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/argent/front.svg",
  8478. extra: 1471 / 1331,
  8479. bottom: 100.8 / 1575.5
  8480. }
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(2, "inches")
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(3 + 1 / 12, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(120, "feet")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8501. {
  8502. lamp: {
  8503. height: math.unit(7 * 1559 / 989, "feet"),
  8504. name: "Magic Lamp",
  8505. image: {
  8506. source: "./media/characters/mira-al-cul/lamp.svg",
  8507. extra: 1617 / 1559
  8508. }
  8509. },
  8510. front: {
  8511. height: math.unit(7, "feet"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/mira-al-cul/front.svg",
  8515. extra: 1044 / 990
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Heavily Restricted",
  8522. height: math.unit(7 * 1559 / 989, "feet")
  8523. },
  8524. {
  8525. name: "Freshly Freed",
  8526. height: math.unit(50 * 1559 / 989, "feet")
  8527. },
  8528. {
  8529. name: "World Encompassing",
  8530. height: math.unit(10000 * 1559 / 989, "miles")
  8531. },
  8532. {
  8533. name: "Galactic",
  8534. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8535. },
  8536. {
  8537. name: "Palmed Universe",
  8538. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Multiversal Matriarch",
  8543. height: math.unit(8.87e10, "yottameters")
  8544. },
  8545. {
  8546. name: "Void Mother",
  8547. height: math.unit(3.14e110, "yottaparsecs")
  8548. },
  8549. {
  8550. name: "Toying with Transcendence",
  8551. height: math.unit(1e307, "meters")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8557. {
  8558. front: {
  8559. height: math.unit(17 + 1 / 12, "feet"),
  8560. weight: math.unit(476.2 * 5, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kuro-shi-uchū/front.svg",
  8564. extra: 2329 / 1835,
  8565. bottom: 0.02
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Micro",
  8572. height: math.unit(2, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(12, "meters")
  8577. },
  8578. {
  8579. name: "Planetary",
  8580. height: math.unit(0.00929, "AU"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Universal",
  8585. height: math.unit(20, "gigaparsecs")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5 + 2 / 12, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/katherine/front.svg",
  8598. extra: 2075 / 1969
  8599. }
  8600. },
  8601. dress: {
  8602. height: math.unit(5 + 2 / 12, "feet"),
  8603. weight: math.unit(120, "lbs"),
  8604. name: "Dress",
  8605. image: {
  8606. source: "./media/characters/katherine/dress.svg",
  8607. extra: 2258 / 2064
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(1, "inches"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(5 + 2 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(100, "meters")
  8624. },
  8625. {
  8626. name: "Megamacro",
  8627. height: math.unit(80, "miles")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(7 + 8 / 12, "feet"),
  8636. weight: math.unit(250, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/yevis/front.svg",
  8640. extra: 1938 / 1755
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Mortal",
  8647. height: math.unit(7 + 8 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Battle",
  8651. height: math.unit(25 + 11 / 12, "feet")
  8652. },
  8653. {
  8654. name: "Wrath",
  8655. height: math.unit(1654 + 11 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Planet Destroyer",
  8659. height: math.unit(12000, "miles")
  8660. },
  8661. {
  8662. name: "Galaxy Conqueror",
  8663. height: math.unit(1.45, "zettameters"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Universal War",
  8668. height: math.unit(184, "gigaparsecs")
  8669. },
  8670. {
  8671. name: "Eternity War",
  8672. height: math.unit(1.98e55, "yottaparsecs")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(5 + 8 / 12, "feet"),
  8681. weight: math.unit(63, "kg"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/xavier/front.svg",
  8685. extra: 944 / 883
  8686. }
  8687. },
  8688. frontStretch: {
  8689. height: math.unit(5 + 8 / 12, "feet"),
  8690. weight: math.unit(63, "kg"),
  8691. name: "Stretching",
  8692. image: {
  8693. source: "./media/characters/xavier/front-stretch.svg",
  8694. extra: 962 / 820
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(5 + 8 / 12, "feet")
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(100, "meters"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "McLargeHuge",
  8710. height: math.unit(10, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(5 + 5 / 12, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/joshii/front.svg",
  8723. extra: 765 / 653,
  8724. bottom: 51 / 816
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8729. name: "Foot",
  8730. image: {
  8731. source: "./media/characters/joshii/foot.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(2, "inches"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5 + 5 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(785, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(24.5, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/goddess-elizabeth/front.svg",
  8764. extra: 1800 / 1525,
  8765. bottom: 0.005
  8766. }
  8767. },
  8768. foot: {
  8769. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8770. name: "Foot",
  8771. image: {
  8772. source: "./media/characters/goddess-elizabeth/foot.svg"
  8773. }
  8774. },
  8775. mouth: {
  8776. height: math.unit(6, "feet"),
  8777. name: "Mouth",
  8778. image: {
  8779. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(12, "feet")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(80, "miles"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(15000, "parsecs")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(5 + 9 / 12, "feet"),
  8804. weight: math.unit(144, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/kara/front.svg"
  8808. }
  8809. },
  8810. feet: {
  8811. height: math.unit(6 / 6.765, "feet"),
  8812. name: "Kara's Feet",
  8813. rename: true,
  8814. image: {
  8815. source: "./media/characters/kara/feet.svg"
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 9 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(174, "feet"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(18, "feet"),
  8836. weight: math.unit(4050, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/tyrone/front.svg",
  8840. extra: 2405 / 2270,
  8841. bottom: 182 / 2587
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(18, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(300, "feet")
  8854. },
  8855. {
  8856. name: "Megamacro",
  8857. height: math.unit(15, "km")
  8858. },
  8859. {
  8860. name: "Gigamacro",
  8861. height: math.unit(500, "km")
  8862. },
  8863. {
  8864. name: "Teramacro",
  8865. height: math.unit(0.5, "gigameters")
  8866. },
  8867. {
  8868. name: "Omnimacro",
  8869. height: math.unit(1e252, "yottauniverse")
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(7 + 8 / 12, "feet"),
  8878. weight: math.unit(120, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/danny/front.svg",
  8882. extra: 1490 / 1350
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(7 + 8 / 12, "feet"),
  8887. weight: math.unit(120, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/danny/back.svg",
  8891. extra: 1490 / 1350
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. default: true
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(3.5, "inches"),
  8908. weight: math.unit(19, "grams"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/mallow/front.svg",
  8912. extra: 471 / 431
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(3.5, "inches"),
  8917. weight: math.unit(19, "grams"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/mallow/back.svg",
  8921. extra: 471 / 431
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(3.5, "inches"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(9, "feet"),
  8938. weight: math.unit(230, "kg"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/starry-aqua/front.svg"
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(9, "feet"),
  8946. weight: math.unit(230, "kg"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/starry-aqua/back.svg"
  8950. }
  8951. },
  8952. hand: {
  8953. height: math.unit(9 * 0.1168, "feet"),
  8954. name: "Hand",
  8955. image: {
  8956. source: "./media/characters/starry-aqua/hand.svg"
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(9 * 0.18, "feet"),
  8961. name: "Foot",
  8962. image: {
  8963. source: "./media/characters/starry-aqua/foot.svg"
  8964. }
  8965. }
  8966. },
  8967. [
  8968. {
  8969. name: "Micro",
  8970. height: math.unit(3, "inches")
  8971. },
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(9, "feet")
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Megamacro",
  8983. height: math.unit(3200, "feet")
  8984. }
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(15, "feet"),
  8992. weight: math.unit(5026, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/luka-towers/front.svg",
  8996. extra: 1269/1133,
  8997. bottom: 51/1320
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Normal",
  9004. height: math.unit(15, "feet"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Minimacro",
  9009. height: math.unit(25, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(320, "feet")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(35000, "feet")
  9018. },
  9019. {
  9020. name: "Gigamacro",
  9021. height: math.unit(4000, "miles")
  9022. },
  9023. {
  9024. name: "Teramacro",
  9025. height: math.unit(15000, "miles")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/natalie-nightring/front.svg",
  9038. extra: 1,
  9039. bottom: 0.06
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Uh Oh",
  9046. height: math.unit(0.1, "mm")
  9047. },
  9048. {
  9049. name: "Small",
  9050. height: math.unit(3, "inches")
  9051. },
  9052. {
  9053. name: "Human Scale",
  9054. height: math.unit(6, "feet")
  9055. },
  9056. {
  9057. name: "Librarian",
  9058. height: math.unit(50, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Immense",
  9063. height: math.unit(200, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(180, "lbs"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/danni-rosie/front.svg",
  9076. extra: 1260 / 1128,
  9077. bottom: 0.022
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(2, "inches"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(5 + 9 / 12, "feet"),
  9094. weight: math.unit(220, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/samantha-kruse/front.svg",
  9098. extra: (985 / 935),
  9099. bottom: 0.03
  9100. }
  9101. },
  9102. frontUndressed: {
  9103. height: math.unit(5 + 9 / 12, "feet"),
  9104. weight: math.unit(220, "lb"),
  9105. name: "Front (Undressed)",
  9106. image: {
  9107. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9108. extra: (973 / 923),
  9109. bottom: 0.025
  9110. }
  9111. },
  9112. fat: {
  9113. height: math.unit(5 + 9 / 12, "feet"),
  9114. weight: math.unit(900, "lb"),
  9115. name: "Front (Fat)",
  9116. image: {
  9117. source: "./media/characters/samantha-kruse/fat.svg",
  9118. extra: 2688 / 2561
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. default: true
  9127. }
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9132. {
  9133. back: {
  9134. height: math.unit(5 + 4 / 12, "feet"),
  9135. weight: math.unit(4963, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/amelia-rosie/back.svg",
  9139. extra: 1113 / 963,
  9140. bottom: 0.01
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Level 0",
  9147. height: math.unit(5 + 4 / 12, "feet")
  9148. },
  9149. {
  9150. name: "Level 1",
  9151. height: math.unit(164597, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Level 2",
  9156. height: math.unit(956243, "miles")
  9157. },
  9158. {
  9159. name: "Level 3",
  9160. height: math.unit(29421709423, "miles")
  9161. },
  9162. {
  9163. name: "Level 4",
  9164. height: math.unit(154, "lightyears")
  9165. },
  9166. {
  9167. name: "Level 5",
  9168. height: math.unit(4738272, "lightyears")
  9169. },
  9170. {
  9171. name: "Level 6",
  9172. height: math.unit(145787152896, "lightyears")
  9173. },
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(5 + 11 / 12, "feet"),
  9181. weight: math.unit(65, "kg"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/rook-kitara/front.svg",
  9185. extra: 1347 / 1274,
  9186. bottom: 0.005
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Totally Unfair",
  9193. height: math.unit(1.8, "mm")
  9194. },
  9195. {
  9196. name: "Lap Rookie",
  9197. height: math.unit(1.4, "feet")
  9198. },
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(5 + 11 / 12, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "How Did This Happen",
  9206. height: math.unit(80, "miles")
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(7, "feet"),
  9215. weight: math.unit(300, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/pisces/front.svg",
  9219. extra: 2255 / 2115,
  9220. bottom: 0.03
  9221. }
  9222. },
  9223. back: {
  9224. height: math.unit(7, "feet"),
  9225. weight: math.unit(300, "lb"),
  9226. name: "Back",
  9227. image: {
  9228. source: "./media/characters/pisces/back.svg",
  9229. extra: 2146 / 2055,
  9230. bottom: 0.04
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(7, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Swimming Pool",
  9242. height: math.unit(12.2, "meters")
  9243. },
  9244. {
  9245. name: "Olympic Swimming Pool",
  9246. height: math.unit(56.3, "meters")
  9247. },
  9248. {
  9249. name: "Lake Superior",
  9250. height: math.unit(93900, "meters")
  9251. },
  9252. {
  9253. name: "Mediterranean Sea",
  9254. height: math.unit(644457, "meters")
  9255. },
  9256. {
  9257. name: "World's Oceans",
  9258. height: math.unit(4567491, "meters")
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(2.3, "meters"),
  9267. weight: math.unit(120, "kg"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/zelas/front.svg"
  9271. }
  9272. },
  9273. side: {
  9274. height: math.unit(2.3, "meters"),
  9275. weight: math.unit(120, "kg"),
  9276. name: "Side",
  9277. image: {
  9278. source: "./media/characters/zelas/side.svg"
  9279. }
  9280. },
  9281. back: {
  9282. height: math.unit(2.3, "meters"),
  9283. weight: math.unit(120, "kg"),
  9284. name: "Back",
  9285. image: {
  9286. source: "./media/characters/zelas/back.svg"
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(1.116, "feet"),
  9291. name: "Foot",
  9292. image: {
  9293. source: "./media/characters/zelas/foot.svg"
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(2.3, "meters")
  9301. },
  9302. {
  9303. name: "Macro",
  9304. height: math.unit(30, "meters"),
  9305. default: true
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(1, "inch"),
  9314. weight: math.unit(0.21, "grams"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/talbot/front.svg",
  9318. extra: 594 / 544
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(1, "inch"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(3 + 3 / 12, "feet"),
  9335. weight: math.unit(51.8, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/fliss/front.svg",
  9339. extra: 840 / 640
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Teeny Tiny",
  9346. height: math.unit(1, "mm")
  9347. },
  9348. {
  9349. name: "Small",
  9350. height: math.unit(1, "inch"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Standard Sylveon",
  9355. height: math.unit(3 + 3 / 12, "feet")
  9356. },
  9357. {
  9358. name: "Large Nuisance",
  9359. height: math.unit(33, "feet")
  9360. },
  9361. {
  9362. name: "City Filler",
  9363. height: math.unit(3000, "feet")
  9364. },
  9365. {
  9366. name: "New Horizon",
  9367. height: math.unit(6000, "miles")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(5, "cm"),
  9376. weight: math.unit(1.94, "g"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/fleta/front.svg",
  9380. extra: 835 / 803
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(5, "cm"),
  9385. weight: math.unit(1.94, "g"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/fleta/back.svg",
  9389. extra: 835 / 803
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(5, "cm"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(225, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/dominic/front.svg",
  9410. extra: 1770 / 1620,
  9411. bottom: 0.025
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(6, "feet"),
  9416. weight: math.unit(225, "lb"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/dominic/back.svg",
  9420. extra: 1745 / 1620,
  9421. bottom: 0.065
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Nano",
  9428. height: math.unit(0.1, "mm")
  9429. },
  9430. {
  9431. name: "Micro-",
  9432. height: math.unit(1, "mm")
  9433. },
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(4, "inches")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(6 + 4 / 12, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(115, "feet")
  9446. },
  9447. {
  9448. name: "Macro+",
  9449. height: math.unit(955, "feet")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(8990, "feet")
  9454. },
  9455. {
  9456. name: "Gigmacro",
  9457. height: math.unit(9310, "miles")
  9458. },
  9459. {
  9460. name: "Teramacro",
  9461. height: math.unit(1567005010, "miles")
  9462. },
  9463. {
  9464. name: "Examacro",
  9465. height: math.unit(1425, "parsecs")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(400, "feet"),
  9474. weight: math.unit(44444444, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/major-colonel/front.svg"
  9478. }
  9479. },
  9480. back: {
  9481. height: math.unit(400, "feet"),
  9482. weight: math.unit(44444444, "lb"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/major-colonel/back.svg"
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(400, "feet"),
  9493. default: true
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9499. {
  9500. catFront: {
  9501. height: math.unit(6, "feet"),
  9502. weight: math.unit(120, "lb"),
  9503. name: "Front (Cat Side)",
  9504. image: {
  9505. source: "./media/characters/axel-lycan/cat-front.svg",
  9506. extra: 430 / 402,
  9507. bottom: 43 / 472.35
  9508. }
  9509. },
  9510. catBack: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(120, "lb"),
  9513. name: "Back (Cat Side)",
  9514. image: {
  9515. source: "./media/characters/axel-lycan/cat-back.svg",
  9516. extra: 447 / 419,
  9517. bottom: 23.3 / 469
  9518. }
  9519. },
  9520. wolfFront: {
  9521. height: math.unit(6, "feet"),
  9522. weight: math.unit(120, "lb"),
  9523. name: "Front (Wolf Side)",
  9524. image: {
  9525. source: "./media/characters/axel-lycan/wolf-front.svg",
  9526. extra: 485 / 456,
  9527. bottom: 19 / 504
  9528. }
  9529. },
  9530. wolfBack: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(120, "lb"),
  9533. name: "Back (Wolf Side)",
  9534. image: {
  9535. source: "./media/characters/axel-lycan/wolf-back.svg",
  9536. extra: 475 / 438,
  9537. bottom: 39.2 / 514
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(1, "km"),
  9545. default: true
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 9 / 12, "feet"),
  9554. weight: math.unit(175, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/vanrel-hyena/front.svg",
  9558. extra: 1086 / 1010,
  9559. bottom: 0.04
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. default: true
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(103, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/abbott-absol/front.svg",
  9580. extra: 2010 / 1842
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Megamicro",
  9587. height: math.unit(0.1, "mm")
  9588. },
  9589. {
  9590. name: "Micro",
  9591. height: math.unit(1, "inch")
  9592. },
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(6, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(264, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/hector/front.svg",
  9609. extra: 2280 / 2130,
  9610. bottom: 0.07
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(12.25, "foot"),
  9618. default: true
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(160, "feet")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/sal/front.svg",
  9635. extra: 1846 / 1699,
  9636. bottom: 0.04
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(10, "miles"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9650. {
  9651. front: {
  9652. height: math.unit(3, "meters"),
  9653. weight: math.unit(450, "kg"),
  9654. name: "front",
  9655. image: {
  9656. source: "./media/characters/ranger/front.svg",
  9657. extra: 2401 / 2243,
  9658. bottom: 0.05
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(3, "meters"),
  9666. default: true
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(14, "feet"),
  9675. weight: math.unit(800, "kg"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/theresa/front.svg",
  9679. extra: 3575 / 3346,
  9680. bottom: 0.03
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(14, "feet"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9694. {
  9695. front: {
  9696. height: math.unit(6, "feet"),
  9697. weight: math.unit(3, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/ine/front.svg",
  9701. extra: 678 / 539,
  9702. bottom: 0.023
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(2.265, "feet"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(5, "feet"),
  9719. weight: math.unit(30, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/vial/front.svg",
  9723. extra: 1365 / 1277,
  9724. bottom: 0.04
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(5, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9738. {
  9739. side: {
  9740. height: math.unit(3.4, "meters"),
  9741. weight: math.unit(1000, "lb"),
  9742. name: "Side",
  9743. image: {
  9744. source: "./media/characters/rovoska/side.svg",
  9745. extra: 4403 / 1515
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(3.4, "meters"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(8, "feet"),
  9762. weight: math.unit(315, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/gunner-rotthbauer/front.svg"
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(8, "feet"),
  9770. weight: math.unit(315, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/gunner-rotthbauer/back.svg"
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Micro",
  9780. height: math.unit(3.5, "inches")
  9781. },
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(8, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(250, "feet")
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(1, "AU")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(5 + 5 / 12, "feet"),
  9802. weight: math.unit(140, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/allatia/front.svg",
  9806. extra: 1227 / 1180,
  9807. bottom: 0.027
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(5 + 5 / 12, "feet")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(250, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(8, "miles")
  9824. }
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(120, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/tene/front.svg",
  9836. extra: 1728 / 1578,
  9837. bottom: 0.022
  9838. }
  9839. },
  9840. stomping: {
  9841. height: math.unit(2.025, "meters"),
  9842. weight: math.unit(120, "lb"),
  9843. name: "Stomping",
  9844. image: {
  9845. source: "./media/characters/tene/stomping.svg",
  9846. extra: 938 / 873,
  9847. bottom: 0.01
  9848. }
  9849. },
  9850. sitting: {
  9851. height: math.unit(1, "meter"),
  9852. weight: math.unit(120, "lb"),
  9853. name: "Sitting",
  9854. image: {
  9855. source: "./media/characters/tene/sitting.svg",
  9856. extra: 437 / 415,
  9857. bottom: 0.1
  9858. }
  9859. },
  9860. feral: {
  9861. height: math.unit(3.9, "feet"),
  9862. weight: math.unit(250, "lb"),
  9863. name: "Feral",
  9864. image: {
  9865. source: "./media/characters/tene/feral.svg",
  9866. extra: 717 / 458,
  9867. bottom: 0.179
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(6, "feet")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(300, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(5, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9889. {
  9890. side: {
  9891. height: math.unit(6, "feet"),
  9892. name: "Side",
  9893. image: {
  9894. source: "./media/characters/evander/side.svg",
  9895. extra: 877 / 477
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(0.83, "meters"),
  9903. default: true
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(12, "feet"),
  9912. weight: math.unit(1000, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9916. extra: 1762 / 1611
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(12, "feet"),
  9921. weight: math.unit(1000, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9925. extra: 1762 / 1611
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(12, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Kaiju",
  9937. height: math.unit(150, "feet")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(150, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/zero-alurus/front.svg"
  9950. }
  9951. },
  9952. back: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Back",
  9956. image: {
  9957. source: "./media/characters/zero-alurus/back.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 10 / 12, "feet")
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(60, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Macro+",
  9973. height: math.unit(450, "feet")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(200, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/mega-shi/front.svg",
  9986. extra: 1279 / 1250,
  9987. bottom: 0.02
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(200, "lb"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/mega-shi/back.svg",
  9996. extra: 1279 / 1250,
  9997. bottom: 0.02
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Micro",
  10004. height: math.unit(16 + 6 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Third Dimension",
  10008. height: math.unit(40, "meters")
  10009. },
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(660, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Megamacro",
  10017. height: math.unit(10, "miles")
  10018. },
  10019. {
  10020. name: "Planetary Launch",
  10021. height: math.unit(500, "miles")
  10022. },
  10023. {
  10024. name: "Interstellar",
  10025. height: math.unit(1e9, "miles")
  10026. },
  10027. {
  10028. name: "Leaving the Universe",
  10029. height: math.unit(1, "gigaparsec")
  10030. },
  10031. {
  10032. name: "Travelling Universes",
  10033. height: math.unit(30e15, "parsecs")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/odyssey/front.svg",
  10046. extra: 1782 / 1582,
  10047. bottom: 0.01
  10048. }
  10049. },
  10050. side: {
  10051. height: math.unit(5.7, "feet"),
  10052. weight: math.unit(140, "lb"),
  10053. name: "Side",
  10054. image: {
  10055. source: "./media/characters/odyssey/side.svg",
  10056. extra: 6462 / 5700
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(5 + 4 / 12, "feet")
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(1, "km")
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(3000, "km")
  10072. },
  10073. {
  10074. name: "Gigamacro",
  10075. height: math.unit(1, "AU"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Omniversal",
  10080. height: math.unit(100e14, "lightyears")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(6, "feet"),
  10089. weight: math.unit(300, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/mekuto/front.svg",
  10093. extra: 921 / 832,
  10094. bottom: 0.03
  10095. }
  10096. },
  10097. hand: {
  10098. height: math.unit(6 / 10.24, "feet"),
  10099. name: "Hand",
  10100. image: {
  10101. source: "./media/characters/mekuto/hand.svg"
  10102. }
  10103. },
  10104. foot: {
  10105. height: math.unit(6 / 5.05, "feet"),
  10106. name: "Foot",
  10107. image: {
  10108. source: "./media/characters/mekuto/foot.svg"
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Minimicro",
  10115. height: math.unit(0.2, "inches")
  10116. },
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1.5, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(5 + 11 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Minimacro",
  10128. height: math.unit(17 + 9 / 12, "feet")
  10129. },
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(177.5, "feet")
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(152, "miles")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6.5, "inches"),
  10145. weight: math.unit(13, "oz"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/dafydd-tomos/front.svg",
  10149. extra: 2990 / 2603,
  10150. bottom: 0.03
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Micro",
  10157. height: math.unit(6.5, "inches"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/splinter/front.svg",
  10171. extra: 2990 / 2882,
  10172. bottom: 0.04
  10173. }
  10174. },
  10175. back: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(150, "lb"),
  10178. name: "Back",
  10179. image: {
  10180. source: "./media/characters/splinter/back.svg",
  10181. extra: 2990 / 2882,
  10182. bottom: 0.04
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(6, "feet")
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(230, "meters"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(4 + 10 / 12, "feet"),
  10203. weight: math.unit(480, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/snow-gabumon/front.svg",
  10207. extra: 1140 / 963,
  10208. bottom: 0.058
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(4 + 10 / 12, "feet"),
  10213. weight: math.unit(480, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/snow-gabumon/back.svg",
  10217. extra: 1115 / 962,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. frontUndresed: {
  10222. height: math.unit(4 + 10 / 12, "feet"),
  10223. weight: math.unit(480, "lb"),
  10224. name: "Front (Undressed)",
  10225. image: {
  10226. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10227. extra: 1061 / 960,
  10228. bottom: 0.045
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(1, "inch")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(4 + 10 / 12, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(200, "feet")
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(120, "miles")
  10249. },
  10250. {
  10251. name: "Gigamacro",
  10252. height: math.unit(9800, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(1.7, "meters"),
  10261. weight: math.unit(140, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/moody/front.svg",
  10265. extra: 3226 / 3007,
  10266. bottom: 0.087
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(1, "mm")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(1.7, "meters"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(80, "meters")
  10283. },
  10284. {
  10285. name: "Macro+",
  10286. height: math.unit(500, "meters")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/zyas/front.svg",
  10299. extra: 1180 / 1120,
  10300. bottom: 0.045
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(10, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(500, "feet")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(5, "miles")
  10317. },
  10318. {
  10319. name: "Teramacro",
  10320. height: math.unit(150000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/cuon/front.svg",
  10333. extra: 1390 / 1320,
  10334. bottom: 0.008
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(3, "inches")
  10342. },
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(18 + 9 / 12, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(360, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(360, "miles")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(2.4, "meters"),
  10363. weight: math.unit(70, "kg"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/nyanuxk/front.svg",
  10367. extra: 1172 / 1084,
  10368. bottom: 0.065
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(2.4, "meters"),
  10373. weight: math.unit(70, "kg"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/nyanuxk/side.svg",
  10377. extra: 1190 / 1132,
  10378. bottom: 0.007
  10379. }
  10380. },
  10381. back: {
  10382. height: math.unit(2.4, "meters"),
  10383. weight: math.unit(70, "kg"),
  10384. name: "Back",
  10385. image: {
  10386. source: "./media/characters/nyanuxk/back.svg",
  10387. extra: 1200 / 1141,
  10388. bottom: 0.015
  10389. }
  10390. },
  10391. foot: {
  10392. height: math.unit(0.52, "meters"),
  10393. name: "Foot",
  10394. image: {
  10395. source: "./media/characters/nyanuxk/foot.svg"
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(2, "cm")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(2.4, "meters"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Smaller Macro",
  10411. height: math.unit(120, "meters")
  10412. },
  10413. {
  10414. name: "Bigger Macro",
  10415. height: math.unit(1.2, "km")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(15, "kilometers")
  10420. },
  10421. {
  10422. name: "Gigamacro",
  10423. height: math.unit(2000, "km")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(500000, "km")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10433. {
  10434. side: {
  10435. height: math.unit(6, "feet"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/ailbhe/side.svg",
  10439. extra: 757 / 464,
  10440. bottom: 0.041
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(1.07, "meters"),
  10448. default: true
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(120, "kg"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/zevulfius/front.svg",
  10461. extra: 965 / 903
  10462. }
  10463. },
  10464. side: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(120, "kg"),
  10467. name: "Side",
  10468. image: {
  10469. source: "./media/characters/zevulfius/side.svg",
  10470. extra: 939 / 900
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(120, "kg"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/zevulfius/back.svg",
  10479. extra: 918 / 854,
  10480. bottom: 0.005
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(6 / 3.72, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/zevulfius/foot.svg"
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(750, "meters")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(20, "km"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Gigamacro",
  10503. height: math.unit(2000, "km")
  10504. },
  10505. {
  10506. name: "Teramacro",
  10507. height: math.unit(250000, "km")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(100, "feet"),
  10516. weight: math.unit(350, "kg"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/rikes/front.svg",
  10520. extra: 1565 / 1483,
  10521. bottom: 0.017
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(100, "feet"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(8, "feet"),
  10538. weight: math.unit(356, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/adam-silver-mane/front.svg",
  10542. extra: 1036/937,
  10543. bottom: 63/1099
  10544. }
  10545. },
  10546. side: {
  10547. height: math.unit(8, "feet"),
  10548. weight: math.unit(356, "lb"),
  10549. name: "Side",
  10550. image: {
  10551. source: "./media/characters/adam-silver-mane/side.svg",
  10552. extra: 997/901,
  10553. bottom: 59/1056
  10554. }
  10555. },
  10556. frontNsfw: {
  10557. height: math.unit(8, "feet"),
  10558. weight: math.unit(356, "lb"),
  10559. name: "Front (NSFW)",
  10560. image: {
  10561. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10562. extra: 1036/937,
  10563. bottom: 63/1099
  10564. }
  10565. },
  10566. sideNsfw: {
  10567. height: math.unit(8, "feet"),
  10568. weight: math.unit(356, "lb"),
  10569. name: "Side (NSFW)",
  10570. image: {
  10571. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10572. extra: 997/901,
  10573. bottom: 59/1056
  10574. }
  10575. },
  10576. dick: {
  10577. height: math.unit(2.1, "feet"),
  10578. name: "Dick",
  10579. image: {
  10580. source: "./media/characters/adam-silver-mane/dick.svg"
  10581. }
  10582. },
  10583. taur: {
  10584. height: math.unit(16, "feet"),
  10585. weight: math.unit(1500, "kg"),
  10586. name: "Taur",
  10587. image: {
  10588. source: "./media/characters/adam-silver-mane/taur.svg",
  10589. extra: 1713 / 1571,
  10590. bottom: 0.01
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(8, "feet")
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(80, "feet")
  10602. },
  10603. {
  10604. name: "MDA",
  10605. height: math.unit(80, "meters")
  10606. },
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(800, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(8000, "feet")
  10615. },
  10616. {
  10617. name: "Gigamacro",
  10618. height: math.unit(800, "miles")
  10619. },
  10620. {
  10621. name: "Teramacro",
  10622. height: math.unit(80000, "miles")
  10623. },
  10624. {
  10625. name: "Celestial",
  10626. height: math.unit(8e6, "miles")
  10627. },
  10628. {
  10629. name: "Star Dragon",
  10630. height: math.unit(800000, "parsecs")
  10631. },
  10632. {
  10633. name: "Godly",
  10634. height: math.unit(800, "teraparsecs")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/ky'owin/front.svg",
  10647. extra: 3888 / 3068,
  10648. bottom: 0.015
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(6 + 8 / 12, "feet")
  10656. },
  10657. {
  10658. name: "Large",
  10659. height: math.unit(68, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(132, "feet")
  10664. },
  10665. {
  10666. name: "Macro+",
  10667. height: math.unit(340, "feet")
  10668. },
  10669. {
  10670. name: "Macro++",
  10671. height: math.unit(680, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(1, "mile")
  10677. },
  10678. {
  10679. name: "Megamacro+",
  10680. height: math.unit(10, "miles")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(4, "feet"),
  10689. weight: math.unit(50, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/mal/front.svg",
  10693. extra: 785 / 724,
  10694. bottom: 0.07
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(4, "inches")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(4, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(200, "feet")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/jordan-deware/front.svg",
  10723. extra: 1191 / 1012
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Nano",
  10730. height: math.unit(0.01, "mm")
  10731. },
  10732. {
  10733. name: "Minimicro",
  10734. height: math.unit(1, "mm")
  10735. },
  10736. {
  10737. name: "Micro",
  10738. height: math.unit(0.5, "inches")
  10739. },
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(4, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Minimacro",
  10747. height: math.unit(40, "meters")
  10748. },
  10749. {
  10750. name: "Small Macro",
  10751. height: math.unit(400, "meters")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(4, "miles")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(40, "miles")
  10760. },
  10761. {
  10762. name: "Megamacro+",
  10763. height: math.unit(400, "miles")
  10764. },
  10765. {
  10766. name: "Gigamacro",
  10767. height: math.unit(400000, "miles")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10773. {
  10774. side: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/kimiko/side.svg",
  10780. extra: 600 / 358
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(15, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(220, "feet")
  10793. },
  10794. {
  10795. name: "Macro+",
  10796. height: math.unit(1450, "feet")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(11500, "feet")
  10801. },
  10802. {
  10803. name: "Gigamacro",
  10804. height: math.unit(9500, "miles")
  10805. },
  10806. {
  10807. name: "Teramacro",
  10808. height: math.unit(2208005005, "miles")
  10809. },
  10810. {
  10811. name: "Examacro",
  10812. height: math.unit(2750, "parsecs")
  10813. },
  10814. {
  10815. name: "Zettamacro",
  10816. height: math.unit(101500, "parsecs")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(70, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/andrew-sleepy/front.svg"
  10829. }
  10830. },
  10831. side: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(70, "kg"),
  10834. name: "Side",
  10835. image: {
  10836. source: "./media/characters/andrew-sleepy/side.svg"
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(1, "mm"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/judio/front.svg",
  10857. extra: 1258 / 1110
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(5 + 6 / 12, "feet")
  10865. },
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(1000, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(10, "miles")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(68, "kg"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/nomaxice/front.svg",
  10886. extra: 1498 / 1073,
  10887. bottom: 0.075
  10888. }
  10889. },
  10890. foot: {
  10891. height: math.unit(1.1, "feet"),
  10892. name: "Foot",
  10893. image: {
  10894. source: "./media/characters/nomaxice/foot.svg"
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Micro",
  10901. height: math.unit(8, "cm")
  10902. },
  10903. {
  10904. name: "Norm",
  10905. height: math.unit(1.82, "m")
  10906. },
  10907. {
  10908. name: "Norm+",
  10909. height: math.unit(8.8, "feet")
  10910. },
  10911. {
  10912. name: "Big",
  10913. height: math.unit(8, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(18, "meters")
  10919. },
  10920. {
  10921. name: "Macro+",
  10922. height: math.unit(88, "meters")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(12, "feet"),
  10931. weight: math.unit(1.5, "tons"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/dydros/front.svg",
  10935. extra: 863 / 800,
  10936. bottom: 0.015
  10937. }
  10938. },
  10939. back: {
  10940. height: math.unit(12, "feet"),
  10941. weight: math.unit(1.5, "tons"),
  10942. name: "Back",
  10943. image: {
  10944. source: "./media/characters/dydros/back.svg",
  10945. extra: 900 / 843,
  10946. bottom: 0.005
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(12, "feet"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(100, "kg"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/riggi/front.svg",
  10967. extra: 5787 / 5303
  10968. }
  10969. },
  10970. hyper: {
  10971. height: math.unit(6 * 5 / 3, "feet"),
  10972. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10973. name: "Hyper",
  10974. image: {
  10975. source: "./media/characters/riggi/hyper.svg",
  10976. extra: 3595 / 3485
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(50, "feet")
  10984. },
  10985. {
  10986. name: "Default",
  10987. height: math.unit(200, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Loom",
  10992. height: math.unit(10000, "feet")
  10993. },
  10994. {
  10995. name: "Cruising Altitude",
  10996. height: math.unit(30000, "feet")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(100, "miles")
  11001. },
  11002. {
  11003. name: "Continent Sized",
  11004. height: math.unit(2800, "miles")
  11005. },
  11006. {
  11007. name: "Earth Sized",
  11008. height: math.unit(8000, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(250, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/alexi/front.svg",
  11021. extra: 3483 / 3291,
  11022. bottom: 0.04
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(250, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/alexi/back.svg",
  11031. extra: 3533 / 3356,
  11032. bottom: 0.021
  11033. }
  11034. },
  11035. frontTransforming: {
  11036. height: math.unit(8.58, "feet"),
  11037. weight: math.unit(1300, "lb"),
  11038. name: "Transforming",
  11039. image: {
  11040. source: "./media/characters/alexi/front-transforming.svg",
  11041. extra: 437 / 409,
  11042. bottom: 19 / 458.66
  11043. }
  11044. },
  11045. frontTransformed: {
  11046. height: math.unit(12.5, "feet"),
  11047. weight: math.unit(4000, "lb"),
  11048. name: "Transformed",
  11049. image: {
  11050. source: "./media/characters/alexi/front-transformed.svg",
  11051. extra: 639 / 614,
  11052. bottom: 30.55 / 671
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(14, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Minimacro",
  11064. height: math.unit(30, "meters")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(500, "meters")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(9000, "km")
  11073. },
  11074. {
  11075. name: "Teramacro",
  11076. height: math.unit(384000, "km")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/kayroo/front.svg",
  11089. extra: 1153 / 1038,
  11090. bottom: 0.06
  11091. }
  11092. },
  11093. foot: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Foot",
  11097. image: {
  11098. source: "./media/characters/kayroo/foot.svg"
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(8, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Minimacro",
  11110. height: math.unit(250, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(2800, "feet")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(5200, "feet")
  11119. },
  11120. {
  11121. name: "Gigamacro",
  11122. height: math.unit(27000, "feet")
  11123. },
  11124. {
  11125. name: "Omega",
  11126. height: math.unit(45000, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(18, "feet"),
  11135. weight: math.unit(5800, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/rhys/front.svg",
  11139. extra: 3386 / 3090,
  11140. bottom: 0.07
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(18, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Working Size",
  11152. height: math.unit(200, "feet")
  11153. },
  11154. {
  11155. name: "Demolition Size",
  11156. height: math.unit(2000, "feet")
  11157. },
  11158. {
  11159. name: "Maximum Licensed Size",
  11160. height: math.unit(5, "miles")
  11161. },
  11162. {
  11163. name: "Maximum Observed Size",
  11164. height: math.unit(10, "yottameters")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(250, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/toto/front.svg",
  11177. extra: 527 / 479,
  11178. bottom: 0.05
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(3, "feet")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(10, "feet")
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(150, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(1200, "feet")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "King", species: ["lion"], tags: ["anthro"] },
  11204. {
  11205. back: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/king/back.svg"
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Micro",
  11217. height: math.unit(2, "inches")
  11218. },
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(8, "feet")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(200, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(50, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(11, "feet"),
  11239. weight: math.unit(1400, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/cordite/front.svg",
  11243. extra: 1919/1827,
  11244. bottom: 40/1959
  11245. }
  11246. },
  11247. side: {
  11248. height: math.unit(11, "feet"),
  11249. weight: math.unit(1400, "lb"),
  11250. name: "Side",
  11251. image: {
  11252. source: "./media/characters/cordite/side.svg",
  11253. extra: 1908/1793,
  11254. bottom: 38/1946
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(11, "feet"),
  11259. weight: math.unit(1400, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/cordite/back.svg",
  11263. extra: 1938/1837,
  11264. bottom: 10/1948
  11265. }
  11266. },
  11267. feral: {
  11268. height: math.unit(2, "feet"),
  11269. weight: math.unit(90, "lb"),
  11270. name: "Feral",
  11271. image: {
  11272. source: "./media/characters/cordite/feral.svg",
  11273. extra: 1260 / 755,
  11274. bottom: 0.05
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(11, "feet"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/pianostrong/front.svg",
  11295. extra: 6577 / 6254,
  11296. bottom: 0.02
  11297. }
  11298. },
  11299. side: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/pianostrong/side.svg",
  11305. extra: 6106 / 5730
  11306. }
  11307. },
  11308. back: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Back",
  11312. image: {
  11313. source: "./media/characters/pianostrong/back.svg",
  11314. extra: 6085 / 5733,
  11315. bottom: 0.01
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(100, "feet")
  11323. },
  11324. {
  11325. name: "Macro+",
  11326. height: math.unit(300, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro++",
  11331. height: math.unit(1000, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/kona/front.svg",
  11344. extra: 2960 / 2629,
  11345. bottom: 0.005
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(11 + 8 / 12, "feet")
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(850, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro+",
  11361. height: math.unit(1.5, "km"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(80, "miles")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(3500, "miles")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11376. {
  11377. side: {
  11378. height: math.unit(1.9, "meters"),
  11379. weight: math.unit(326, "kg"),
  11380. name: "Side",
  11381. image: {
  11382. source: "./media/characters/levi/side.svg",
  11383. extra: 1704 / 1334,
  11384. bottom: 0.02
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(1.9, "meters"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(20, "meters")
  11397. },
  11398. {
  11399. name: "Macro+",
  11400. height: math.unit(200, "meters")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(2, "km")
  11405. },
  11406. {
  11407. name: "Megamacro+",
  11408. height: math.unit(20, "km")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(2500, "km")
  11413. },
  11414. {
  11415. name: "Gigamacro+",
  11416. height: math.unit(120000, "km")
  11417. },
  11418. {
  11419. name: "Teramacro",
  11420. height: math.unit(7.77e6, "km")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6 + 4/12, "feet"),
  11429. weight: math.unit(190, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/bmc/front.svg",
  11433. extra: 1626/1472,
  11434. bottom: 79/1705
  11435. }
  11436. },
  11437. back: {
  11438. height: math.unit(6 + 4/12, "feet"),
  11439. weight: math.unit(190, "lb"),
  11440. name: "Back",
  11441. image: {
  11442. source: "./media/characters/bmc/back.svg",
  11443. extra: 1640/1479,
  11444. bottom: 45/1685
  11445. }
  11446. },
  11447. frontArmor: {
  11448. height: math.unit(6 + 4/12, "feet"),
  11449. weight: math.unit(190, "lb"),
  11450. name: "Front-armor",
  11451. image: {
  11452. source: "./media/characters/bmc/front-armor.svg",
  11453. extra: 1538/1468,
  11454. bottom: 79/1617
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Human-sized",
  11461. height: math.unit(6 + 4 / 12, "feet")
  11462. },
  11463. {
  11464. name: "Interactive Size",
  11465. height: math.unit(25, "feet")
  11466. },
  11467. {
  11468. name: "Small",
  11469. height: math.unit(250, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(1250, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Good Day",
  11478. height: math.unit(88, "miles")
  11479. },
  11480. {
  11481. name: "Largest Measured Size",
  11482. height: math.unit(105.960, "galaxies")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(20, "feet"),
  11491. weight: math.unit(2016, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/sven-the-kaiju/front.svg",
  11495. extra: 1277/1250,
  11496. bottom: 35/1312
  11497. }
  11498. },
  11499. mouth: {
  11500. height: math.unit(1.85, "feet"),
  11501. name: "Mouth",
  11502. image: {
  11503. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Fairy",
  11510. height: math.unit(6, "inches")
  11511. },
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(20, "feet"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Rampage",
  11519. height: math.unit(200, "feet")
  11520. },
  11521. {
  11522. name: "Archfey Forest Guardian",
  11523. height: math.unit(1, "mile")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(4, "meters"),
  11532. weight: math.unit(2, "tons"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/marik/front.svg",
  11536. extra: 1057 / 1003,
  11537. bottom: 0.08
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(4, "meters"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Macro",
  11549. height: math.unit(20, "meters")
  11550. },
  11551. {
  11552. name: "Megamacro",
  11553. height: math.unit(50, "km")
  11554. },
  11555. {
  11556. name: "Gigamacro",
  11557. height: math.unit(100, "km")
  11558. },
  11559. {
  11560. name: "Alpha Macro",
  11561. height: math.unit(7.88e7, "yottameters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(110, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/mel/front.svg",
  11574. extra: 736 / 617,
  11575. bottom: 0.017
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Pico",
  11582. height: math.unit(3, "pm")
  11583. },
  11584. {
  11585. name: "Nano",
  11586. height: math.unit(3, "nm")
  11587. },
  11588. {
  11589. name: "Micro",
  11590. height: math.unit(0.3, "mm"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Micro+",
  11595. height: math.unit(3, "mm")
  11596. },
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(5 + 10.5 / 12, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11605. {
  11606. kaiju: {
  11607. height: math.unit(1.75, "meters"),
  11608. weight: math.unit(55, "kg"),
  11609. name: "Kaiju",
  11610. image: {
  11611. source: "./media/characters/lykonous/kaiju.svg",
  11612. extra: 1055 / 946,
  11613. bottom: 0.135
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(2.5, "meters"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Kaiju Dragon",
  11625. height: math.unit(60, "meters")
  11626. },
  11627. {
  11628. name: "Mega Kaiju",
  11629. height: math.unit(120, "km")
  11630. },
  11631. {
  11632. name: "Giga Kaiju",
  11633. height: math.unit(200, "megameters")
  11634. },
  11635. {
  11636. name: "Terra Kaiju",
  11637. height: math.unit(400, "gigameters")
  11638. },
  11639. {
  11640. name: "Kaiju Dragon God",
  11641. height: math.unit(13000, "exaparsecs")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11647. {
  11648. front: {
  11649. height: math.unit(6, "feet"),
  11650. weight: math.unit(150, "lb"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/blü/front.svg",
  11654. extra: 1883 / 1564,
  11655. bottom: 0.031
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(13, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Big Boi",
  11667. height: math.unit(150, "meters")
  11668. },
  11669. {
  11670. name: "Mini Stomper",
  11671. height: math.unit(300, "meters")
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(1000, "meters")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(11000, "meters")
  11680. },
  11681. {
  11682. name: "Gigamacro",
  11683. height: math.unit(11000, "km")
  11684. },
  11685. {
  11686. name: "Teramacro",
  11687. height: math.unit(420000, "km")
  11688. },
  11689. {
  11690. name: "Examacro",
  11691. height: math.unit(120, "parsecs")
  11692. },
  11693. {
  11694. name: "God Tho",
  11695. height: math.unit(98000000000, "parsecs")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11701. {
  11702. taurFront: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(200, "lb"),
  11705. name: "Taur (Front)",
  11706. image: {
  11707. source: "./media/characters/scales/taur-front.svg",
  11708. extra: 1,
  11709. bottom: 0.05
  11710. }
  11711. },
  11712. taurBack: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(200, "lb"),
  11715. name: "Taur (Back)",
  11716. image: {
  11717. source: "./media/characters/scales/taur-back.svg",
  11718. extra: 1,
  11719. bottom: 0.08
  11720. }
  11721. },
  11722. anthro: {
  11723. height: math.unit(6 * 7 / 12, "feet"),
  11724. weight: math.unit(100, "lb"),
  11725. name: "Anthro",
  11726. image: {
  11727. source: "./media/characters/scales/anthro.svg",
  11728. extra: 1,
  11729. bottom: 0.06
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Normal",
  11736. height: math.unit(12, "feet"),
  11737. default: true
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(6, "feet"),
  11746. weight: math.unit(150, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/koragos/front.svg",
  11750. extra: 841 / 794,
  11751. bottom: 0.035
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(6, "feet"),
  11756. weight: math.unit(150, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/koragos/back.svg",
  11760. extra: 841 / 810,
  11761. bottom: 0.022
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(6 + 11 / 12, "feet"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Macro",
  11773. height: math.unit(490, "feet")
  11774. },
  11775. {
  11776. name: "Megamacro",
  11777. height: math.unit(10, "miles")
  11778. },
  11779. {
  11780. name: "Gigamacro",
  11781. height: math.unit(50, "miles")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(250, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/xylrem/front.svg",
  11794. extra: 3323 / 3050,
  11795. bottom: 0.065
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Micro",
  11802. height: math.unit(4, "feet")
  11803. },
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(16, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(2720, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(25000, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(8, "feet"),
  11824. weight: math.unit(250, "kg"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/ikideru/front.svg",
  11828. extra: 930 / 870,
  11829. bottom: 0.087
  11830. }
  11831. },
  11832. back: {
  11833. height: math.unit(8, "feet"),
  11834. weight: math.unit(250, "kg"),
  11835. name: "Back",
  11836. image: {
  11837. source: "./media/characters/ikideru/back.svg",
  11838. extra: 919 / 852,
  11839. bottom: 0.055
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Rare",
  11846. height: math.unit(8, "feet"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Playful Loom",
  11851. height: math.unit(80, "feet")
  11852. },
  11853. {
  11854. name: "City Leaner",
  11855. height: math.unit(230, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(2500, "feet")
  11860. },
  11861. {
  11862. name: "Gigamacro",
  11863. height: math.unit(26400, "feet")
  11864. },
  11865. {
  11866. name: "Tectonic Shifter",
  11867. height: math.unit(1.7, "megameters")
  11868. },
  11869. {
  11870. name: "Planet Carer",
  11871. height: math.unit(21, "megameters")
  11872. },
  11873. {
  11874. name: "God",
  11875. height: math.unit(11157.22, "parsecs")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(120, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/neo/front.svg"
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(2, "inches"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Human Size",
  11899. height: math.unit(5 + 8 / 12, "feet")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(13 + 10 / 12, "feet"),
  11908. weight: math.unit(5320, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/chauncey-chantz/front.svg",
  11912. extra: 1587 / 1435,
  11913. bottom: 0.02
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(13 + 10 / 12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(45, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(250, "miles")
  11930. },
  11931. {
  11932. name: "Planetary",
  11933. height: math.unit(10000, "miles")
  11934. },
  11935. {
  11936. name: "Galactic",
  11937. height: math.unit(40000, "parsecs")
  11938. },
  11939. {
  11940. name: "Universal",
  11941. height: math.unit(1, "yottameter")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/epifox/front.svg",
  11954. extra: 1,
  11955. bottom: 0.075
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(6, "inches")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(12, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(3810, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(500, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(1.8796, "m"),
  11984. weight: math.unit(230, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/colin-t/front.svg",
  11988. extra: 1272 / 1193,
  11989. bottom: 0.07
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Micro",
  11996. height: math.unit(0.571, "meters")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(1.8796, "meters"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Tall",
  12005. height: math.unit(4, "meters")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(67.241, "meters")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(371.856, "meters")
  12014. },
  12015. {
  12016. name: "Planetary",
  12017. height: math.unit(12631.5689, "km")
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(1.85, "meters"),
  12026. weight: math.unit(80, "kg"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/matvei/front.svg",
  12030. extra: 614 / 594,
  12031. bottom: 0.01
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(1.85, "meters"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(5 + 9 / 12, "feet"),
  12048. weight: math.unit(70, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/quincy/front.svg",
  12052. extra: 3041 / 2751
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(5 + 9 / 12, "feet"),
  12057. weight: math.unit(70, "lb"),
  12058. name: "Back",
  12059. image: {
  12060. source: "./media/characters/quincy/back.svg",
  12061. extra: 3041 / 2751
  12062. }
  12063. },
  12064. flying: {
  12065. height: math.unit(5 + 4 / 12, "feet"),
  12066. weight: math.unit(70, "lb"),
  12067. name: "Flying",
  12068. image: {
  12069. source: "./media/characters/quincy/flying.svg",
  12070. extra: 1044 / 930
  12071. }
  12072. },
  12073. },
  12074. [
  12075. {
  12076. name: "Micro",
  12077. height: math.unit(3, "cm")
  12078. },
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(5 + 9 / 12, "feet")
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(200, "meters"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Megamacro",
  12090. height: math.unit(1000, "meters")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(3 + 11/12, "feet"),
  12099. weight: math.unit(50, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/vanrel/front.svg",
  12103. extra: 1104/949,
  12104. bottom: 52/1156
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(3 + 11/12, "feet"),
  12109. weight: math.unit(50, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/vanrel/back.svg",
  12113. extra: 1119/976,
  12114. bottom: 37/1156
  12115. }
  12116. },
  12117. tome: {
  12118. height: math.unit(1.35, "feet"),
  12119. weight: math.unit(10, "lb"),
  12120. name: "Vanrel's Tome",
  12121. rename: true,
  12122. image: {
  12123. source: "./media/characters/vanrel/tome.svg"
  12124. }
  12125. },
  12126. beans: {
  12127. height: math.unit(0.89, "feet"),
  12128. name: "Beans",
  12129. image: {
  12130. source: "./media/characters/vanrel/beans.svg"
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(3 + 11/12, "feet"),
  12138. default: true
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(7 + 5 / 12, "feet"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/kuiper-vanrel/front.svg",
  12150. extra: 1219/1169,
  12151. bottom: 69/1288
  12152. }
  12153. },
  12154. back: {
  12155. height: math.unit(7 + 5 / 12, "feet"),
  12156. name: "Back",
  12157. image: {
  12158. source: "./media/characters/kuiper-vanrel/back.svg",
  12159. extra: 1236/1193,
  12160. bottom: 27/1263
  12161. }
  12162. },
  12163. foot: {
  12164. height: math.unit(0.55, "meters"),
  12165. name: "Foot",
  12166. image: {
  12167. source: "./media/characters/kuiper-vanrel/foot.svg",
  12168. }
  12169. },
  12170. battle: {
  12171. height: math.unit(6.824, "feet"),
  12172. name: "Battle",
  12173. image: {
  12174. source: "./media/characters/kuiper-vanrel/battle.svg",
  12175. extra: 1466 / 1327,
  12176. bottom: 29 / 1492.5
  12177. }
  12178. },
  12179. meerkui: {
  12180. height: math.unit(18, "inches"),
  12181. name: "Meerkui",
  12182. image: {
  12183. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12184. extra: 1354/1289,
  12185. bottom: 69/1423
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(7 + 5 / 12, "feet"),
  12193. default: true
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(8 + 5 / 12, "feet"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/keset-vanrel/front.svg",
  12205. extra: 1231/1148,
  12206. bottom: 82/1313
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(8 + 5 / 12, "feet"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/keset-vanrel/back.svg",
  12214. extra: 1240/1174,
  12215. bottom: 33/1273
  12216. }
  12217. },
  12218. hand: {
  12219. height: math.unit(0.6, "meters"),
  12220. name: "Hand",
  12221. image: {
  12222. source: "./media/characters/keset-vanrel/hand.svg"
  12223. }
  12224. },
  12225. foot: {
  12226. height: math.unit(0.94978, "meters"),
  12227. name: "Foot",
  12228. image: {
  12229. source: "./media/characters/keset-vanrel/foot.svg"
  12230. }
  12231. },
  12232. battle: {
  12233. height: math.unit(7.408, "feet"),
  12234. name: "Battle",
  12235. image: {
  12236. source: "./media/characters/keset-vanrel/battle.svg",
  12237. extra: 1890 / 1386,
  12238. bottom: 73.28 / 1970
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(8 + 5 / 12, "feet"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/neos/front.svg",
  12259. extra: 1696 / 992,
  12260. bottom: 0.14
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(54, "cm"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Macro",
  12272. height: math.unit(100, "m")
  12273. },
  12274. {
  12275. name: "Megamacro",
  12276. height: math.unit(10, "km")
  12277. },
  12278. {
  12279. name: "Megamacro+",
  12280. height: math.unit(100, "km")
  12281. },
  12282. {
  12283. name: "Gigamacro",
  12284. height: math.unit(100, "Mm")
  12285. },
  12286. {
  12287. name: "Teramacro",
  12288. height: math.unit(100, "Gm")
  12289. },
  12290. {
  12291. name: "Examacro",
  12292. height: math.unit(100, "Em")
  12293. },
  12294. {
  12295. name: "Godly",
  12296. height: math.unit(10000, "Ym")
  12297. },
  12298. {
  12299. name: "Beyond Godly",
  12300. height: math.unit(25, "multiverses")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12306. {
  12307. feminine: {
  12308. height: math.unit(5, "feet"),
  12309. weight: math.unit(100, "lb"),
  12310. name: "Feminine",
  12311. image: {
  12312. source: "./media/characters/sammy-mouse/feminine.svg",
  12313. extra: 2526 / 2425,
  12314. bottom: 0.123
  12315. }
  12316. },
  12317. masculine: {
  12318. height: math.unit(5, "feet"),
  12319. weight: math.unit(100, "lb"),
  12320. name: "Masculine",
  12321. image: {
  12322. source: "./media/characters/sammy-mouse/masculine.svg",
  12323. extra: 2526 / 2425,
  12324. bottom: 0.123
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(5, "inches")
  12332. },
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(5, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(60, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(4, "feet"),
  12349. weight: math.unit(50, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/kole/front.svg",
  12353. extra: 1423 / 1303,
  12354. bottom: 0.025
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(4, "feet"),
  12359. weight: math.unit(50, "lb"),
  12360. name: "Back",
  12361. image: {
  12362. source: "./media/characters/kole/back.svg",
  12363. extra: 1426 / 1280,
  12364. bottom: 0.02
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(4, "feet"),
  12372. default: true
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(2.5, "feet"),
  12381. weight: math.unit(32, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/rufran/front.svg",
  12385. extra: 1313/885,
  12386. bottom: 94/1407
  12387. }
  12388. },
  12389. side: {
  12390. height: math.unit(2.5, "feet"),
  12391. weight: math.unit(32, "lb"),
  12392. name: "Side",
  12393. image: {
  12394. source: "./media/characters/rufran/side.svg",
  12395. extra: 1109/852,
  12396. bottom: 118/1227
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(2.5, "feet"),
  12401. weight: math.unit(32, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/rufran/back.svg",
  12405. extra: 1280/878,
  12406. bottom: 131/1411
  12407. }
  12408. },
  12409. mouth: {
  12410. height: math.unit(1.13, "feet"),
  12411. name: "Mouth",
  12412. image: {
  12413. source: "./media/characters/rufran/mouth.svg"
  12414. }
  12415. },
  12416. foot: {
  12417. height: math.unit(1.33, "feet"),
  12418. name: "Foot",
  12419. image: {
  12420. source: "./media/characters/rufran/foot.svg"
  12421. }
  12422. },
  12423. koboldFront: {
  12424. height: math.unit(2 + 6 / 12, "feet"),
  12425. weight: math.unit(20, "lb"),
  12426. name: "Front (Kobold)",
  12427. image: {
  12428. source: "./media/characters/rufran/kobold-front.svg",
  12429. extra: 2041 / 1839,
  12430. bottom: 0.055
  12431. }
  12432. },
  12433. koboldBack: {
  12434. height: math.unit(2 + 6 / 12, "feet"),
  12435. weight: math.unit(20, "lb"),
  12436. name: "Back (Kobold)",
  12437. image: {
  12438. source: "./media/characters/rufran/kobold-back.svg",
  12439. extra: 2054 / 1839,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. koboldHand: {
  12444. height: math.unit(0.2166, "meters"),
  12445. name: "Hand (Kobold)",
  12446. image: {
  12447. source: "./media/characters/rufran/kobold-hand.svg"
  12448. }
  12449. },
  12450. koboldFoot: {
  12451. height: math.unit(0.185, "meters"),
  12452. name: "Foot (Kobold)",
  12453. image: {
  12454. source: "./media/characters/rufran/kobold-foot.svg"
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Micro",
  12461. height: math.unit(1, "inch")
  12462. },
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(2 + 6 / 12, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Big",
  12470. height: math.unit(60, "feet")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(325, "feet")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(0.3, "meters"),
  12483. weight: math.unit(3.5, "kg"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/chip/front.svg",
  12487. extra: 748 / 674
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "inch"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12501. {
  12502. side: {
  12503. height: math.unit(2.3, "meters"),
  12504. weight: math.unit(3500, "lb"),
  12505. name: "Side",
  12506. image: {
  12507. source: "./media/characters/torvid/side.svg",
  12508. extra: 1972 / 722,
  12509. bottom: 0.035
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(2.3, "meters"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(2, "meters"),
  12526. weight: math.unit(150.5, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/susan/front.svg",
  12530. extra: 693 / 635,
  12531. bottom: 0.05
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(505, "miles"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(6, "feet"),
  12548. weight: math.unit(150, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/raindrops/front.svg",
  12552. extra: 2655 / 2461,
  12553. bottom: 49 / 2705
  12554. }
  12555. },
  12556. back: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Back",
  12560. image: {
  12561. source: "./media/characters/raindrops/back.svg",
  12562. extra: 2574 / 2400,
  12563. bottom: 65 / 2634
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(6, "inches")
  12571. },
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(6 + 2 / 12, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(131, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(15, "miles")
  12584. },
  12585. {
  12586. name: "Gigamacro",
  12587. height: math.unit(4000, "miles")
  12588. },
  12589. {
  12590. name: "Teramacro",
  12591. height: math.unit(315000, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(2.794, "meters"),
  12600. weight: math.unit(325, "kg"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/tezwa/front.svg",
  12604. extra: 2083 / 1906,
  12605. bottom: 0.031
  12606. }
  12607. },
  12608. foot: {
  12609. height: math.unit(0.687, "meters"),
  12610. name: "Foot",
  12611. image: {
  12612. source: "./media/characters/tezwa/foot.svg"
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(9 + 2 / 12, "feet"),
  12620. default: true
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(58, "feet"),
  12629. weight: math.unit(89000, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/typhus/front.svg",
  12633. extra: 816 / 800,
  12634. bottom: 0.065
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(58, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(12, "feet"),
  12651. weight: math.unit(6, "tonnes"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/lyra-von-wulf/front.svg",
  12655. extra: 1,
  12656. bottom: 0.10
  12657. }
  12658. },
  12659. frontMecha: {
  12660. height: math.unit(12, "feet"),
  12661. weight: math.unit(12, "tonnes"),
  12662. name: "Front (Mecha)",
  12663. image: {
  12664. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12665. extra: 1,
  12666. bottom: 0.042
  12667. }
  12668. },
  12669. maw: {
  12670. height: math.unit(2.2, "feet"),
  12671. name: "Maw",
  12672. image: {
  12673. source: "./media/characters/lyra-von-wulf/maw.svg"
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(12, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Classic",
  12685. height: math.unit(50, "feet")
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(500, "feet")
  12690. },
  12691. {
  12692. name: "Megamacro",
  12693. height: math.unit(1, "mile")
  12694. },
  12695. {
  12696. name: "Gigamacro",
  12697. height: math.unit(400, "miles")
  12698. },
  12699. {
  12700. name: "Teramacro",
  12701. height: math.unit(22000, "miles")
  12702. },
  12703. {
  12704. name: "Solarmacro",
  12705. height: math.unit(8600000, "miles")
  12706. },
  12707. {
  12708. name: "Galactic",
  12709. height: math.unit(1057000, "lightyears")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(6 + 10 / 12, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/dixon/front.svg",
  12722. extra: 3361 / 3209,
  12723. bottom: 0.01
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 10 / 12, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Big",
  12735. height: math.unit(12, "meters")
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(500, "meters")
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(2, "km")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(185, "cm"),
  12752. weight: math.unit(68, "kg"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/kauko/front.svg",
  12756. extra: 1455 / 1421,
  12757. bottom: 0.03
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(185, "cm"),
  12762. weight: math.unit(68, "kg"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/kauko/back.svg",
  12766. extra: 1455 / 1421,
  12767. bottom: 0.004
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(185, "cm"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "kg"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/varg/front.svg",
  12788. extra: 1108 / 1018,
  12789. bottom: 0.0375
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(5, "meters")
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(200, "meters")
  12801. },
  12802. {
  12803. name: "Megamacro",
  12804. height: math.unit(20, "kilometers")
  12805. },
  12806. {
  12807. name: "True Size",
  12808. height: math.unit(211, "km"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Gigamacro",
  12813. height: math.unit(1000, "km")
  12814. },
  12815. {
  12816. name: "Gigamacro+",
  12817. height: math.unit(8000, "km")
  12818. },
  12819. {
  12820. name: "Teramacro",
  12821. height: math.unit(1000000, "km")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(7 + 7 / 12, "feet"),
  12830. weight: math.unit(267, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/dayza/front.svg",
  12834. extra: 1262 / 1200,
  12835. bottom: 0.035
  12836. }
  12837. },
  12838. side: {
  12839. height: math.unit(7 + 7 / 12, "feet"),
  12840. weight: math.unit(267, "lb"),
  12841. name: "Side",
  12842. image: {
  12843. source: "./media/characters/dayza/side.svg",
  12844. extra: 1295 / 1245,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(7 + 7 / 12, "feet"),
  12850. weight: math.unit(267, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/dayza/back.svg",
  12854. extra: 1241 / 1170
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(155, "feet")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6 + 5 / 12, "feet"),
  12875. weight: math.unit(160, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/xanthos/front.svg",
  12879. extra: 1,
  12880. bottom: 0.04
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(6 + 5 / 12, "feet"),
  12885. weight: math.unit(160, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/xanthos/back.svg",
  12889. extra: 1,
  12890. bottom: 0.03
  12891. }
  12892. },
  12893. hand: {
  12894. height: math.unit(0.928, "feet"),
  12895. name: "Hand",
  12896. image: {
  12897. source: "./media/characters/xanthos/hand.svg"
  12898. }
  12899. },
  12900. foot: {
  12901. height: math.unit(1.286, "feet"),
  12902. name: "Foot",
  12903. image: {
  12904. source: "./media/characters/xanthos/foot.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(6 + 5 / 12, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Normal+",
  12916. height: math.unit(6, "meters")
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(40, "feet")
  12921. },
  12922. {
  12923. name: "Macro+",
  12924. height: math.unit(200, "meters")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(20, "km")
  12929. },
  12930. {
  12931. name: "Megamacro+",
  12932. height: math.unit(100, "km")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(200, "megameters")
  12937. },
  12938. {
  12939. name: "Gigamacro+",
  12940. height: math.unit(1.5, "gigameters")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(6 + 3 / 12, "feet"),
  12949. weight: math.unit(215, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/grynn/front.svg",
  12953. extra: 4627 / 4209,
  12954. bottom: 0.047
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Micro",
  12961. height: math.unit(6, "inches")
  12962. },
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(6 + 3 / 12, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Big",
  12970. height: math.unit(104, "feet")
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(944, "feet")
  12975. },
  12976. {
  12977. name: "Macro+",
  12978. height: math.unit(9480, "feet")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(78752, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro+",
  12986. height: math.unit(630128, "feet")
  12987. },
  12988. {
  12989. name: "Megamacro++",
  12990. height: math.unit(3150695, "feet")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(7 + 5 / 12, "feet"),
  12999. weight: math.unit(450, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/mocha-aura/front.svg",
  13003. extra: 1907 / 1817,
  13004. bottom: 0.04
  13005. }
  13006. },
  13007. back: {
  13008. height: math.unit(7 + 5 / 12, "feet"),
  13009. weight: math.unit(450, "lb"),
  13010. name: "Back",
  13011. image: {
  13012. source: "./media/characters/mocha-aura/back.svg",
  13013. extra: 1900 / 1825,
  13014. bottom: 0.045
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Nano",
  13021. height: math.unit(1, "nm")
  13022. },
  13023. {
  13024. name: "Megamicro",
  13025. height: math.unit(1, "mm")
  13026. },
  13027. {
  13028. name: "Micro",
  13029. height: math.unit(3, "inches")
  13030. },
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(7 + 5 / 12, "feet"),
  13034. default: true
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(30, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro",
  13042. height: math.unit(3500, "feet")
  13043. },
  13044. {
  13045. name: "Teramacro",
  13046. height: math.unit(500000, "miles")
  13047. },
  13048. {
  13049. name: "Petamacro",
  13050. height: math.unit(50000000000000000, "parsecs")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/ilisha-devya/front.svg",
  13063. extra: 1,
  13064. bottom: 0.175
  13065. }
  13066. },
  13067. back: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Back",
  13071. image: {
  13072. source: "./media/characters/ilisha-devya/back.svg",
  13073. extra: 1,
  13074. bottom: 0.015
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(500, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(10, "miles")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(100000, "miles")
  13091. },
  13092. {
  13093. name: "Examacro",
  13094. height: math.unit(1e9, "lightyears")
  13095. },
  13096. {
  13097. name: "Omniversal",
  13098. height: math.unit(1e33, "lightyears")
  13099. },
  13100. {
  13101. name: "Beyond Infinite",
  13102. height: math.unit(1e100, "lightyears")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13108. {
  13109. Side: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Side",
  13113. image: {
  13114. source: "./media/characters/mira/side.svg",
  13115. extra: 900 / 799,
  13116. bottom: 0.02
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Human Size",
  13123. height: math.unit(6, "feet")
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(100, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(10, "miles")
  13133. },
  13134. {
  13135. name: "Gigamacro",
  13136. height: math.unit(25000, "miles")
  13137. },
  13138. {
  13139. name: "Teramacro",
  13140. height: math.unit(300, "AU")
  13141. },
  13142. {
  13143. name: "Full Size",
  13144. height: math.unit(4.5e10, "lightyears")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(6, "feet"),
  13153. weight: math.unit(150, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/holly/front.svg",
  13157. extra: 639 / 606
  13158. }
  13159. },
  13160. back: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Back",
  13164. image: {
  13165. source: "./media/characters/holly/back.svg",
  13166. extra: 623 / 598
  13167. }
  13168. },
  13169. frontWorking: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front (Working)",
  13173. image: {
  13174. source: "./media/characters/holly/front-working.svg",
  13175. extra: 607 / 577,
  13176. bottom: 0.048
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(12 + 3 / 12, "feet"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/porter/front.svg",
  13197. extra: 1,
  13198. bottom: 0.01
  13199. }
  13200. },
  13201. frontRobes: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front (Robes)",
  13205. image: {
  13206. source: "./media/characters/porter/front-robes.svg",
  13207. extra: 1.01,
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(11 + 9 / 12, "feet"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13222. {
  13223. legendary: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Legendary",
  13227. image: {
  13228. source: "./media/characters/lucy/legendary.svg",
  13229. extra: 1355 / 1100,
  13230. bottom: 0.045
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Legendary",
  13237. height: math.unit(86882 * 2, "miles"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/drusilla/front.svg",
  13251. extra: 678 / 635,
  13252. bottom: 0.03
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/drusilla/back.svg",
  13261. extra: 678 / 635,
  13262. bottom: 0.005
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(100, "feet")
  13270. },
  13271. {
  13272. name: "Canon Height",
  13273. height: math.unit(2000, "feet"),
  13274. default: true
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(180, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/renard-thatch/front.svg",
  13287. extra: 2411 / 2275,
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. frontPosing: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(180, "lb"),
  13294. name: "Front (Posing)",
  13295. image: {
  13296. source: "./media/characters/renard-thatch/front-posing.svg",
  13297. extra: 2381 / 2261,
  13298. bottom: 0.01
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(180, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/renard-thatch/back.svg",
  13307. extra: 2428 / 2288
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(3, "inches")
  13315. },
  13316. {
  13317. name: "Default",
  13318. height: math.unit(6, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(75, "feet")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(1450, "feet"),
  13332. weight: math.unit(1.21e6, "tons"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/sekvra/front.svg",
  13336. extra: 1,
  13337. bottom: 0.03
  13338. }
  13339. },
  13340. frontClothed: {
  13341. height: math.unit(1450, "feet"),
  13342. weight: math.unit(1.21e6, "tons"),
  13343. name: "Front (Clothed)",
  13344. image: {
  13345. source: "./media/characters/sekvra/front-clothed.svg",
  13346. extra: 1,
  13347. bottom: 0.03
  13348. }
  13349. },
  13350. side: {
  13351. height: math.unit(1450, "feet"),
  13352. weight: math.unit(1.21e6, "tons"),
  13353. name: "Side",
  13354. image: {
  13355. source: "./media/characters/sekvra/side.svg",
  13356. extra: 1,
  13357. bottom: 0.025
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(1450, "feet"),
  13362. weight: math.unit(1.21e6, "tons"),
  13363. name: "Back",
  13364. image: {
  13365. source: "./media/characters/sekvra/back.svg",
  13366. extra: 1,
  13367. bottom: 0.005
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(1450, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(15000, "feet")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/carmine/front.svg",
  13392. extra: 1,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. frontArmor: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Front (Armor)",
  13400. image: {
  13401. source: "./media/characters/carmine/front-armor.svg",
  13402. extra: 1,
  13403. bottom: 0.035
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Large",
  13410. height: math.unit(1, "mile")
  13411. },
  13412. {
  13413. name: "Huge",
  13414. height: math.unit(40, "miles"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Colossal",
  13419. height: math.unit(2500, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/elyssia/front.svg",
  13432. extra: 2201 / 2035,
  13433. bottom: 0.05
  13434. }
  13435. },
  13436. frontClothed: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front (Clothed)",
  13440. image: {
  13441. source: "./media/characters/elyssia/front-clothed.svg",
  13442. extra: 2201 / 2035,
  13443. bottom: 0.05
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/elyssia/back.svg",
  13452. extra: 2201 / 2035,
  13453. bottom: 0.013
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Smaller",
  13460. height: math.unit(150, "feet")
  13461. },
  13462. {
  13463. name: "Standard",
  13464. height: math.unit(1400, "feet"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Distracted",
  13469. height: math.unit(15000, "feet")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(7 + 4/12, "feet"),
  13478. weight: math.unit(690, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/geno-maxwell/front.svg",
  13482. extra: 984/856,
  13483. bottom: 87/1071
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(7 + 4/12, "feet"),
  13488. weight: math.unit(690, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/geno-maxwell/back.svg",
  13492. extra: 981/854,
  13493. bottom: 57/1038
  13494. }
  13495. },
  13496. frontCostume: {
  13497. height: math.unit(7 + 4/12, "feet"),
  13498. weight: math.unit(690, "lb"),
  13499. name: "Front (Costume)",
  13500. image: {
  13501. source: "./media/characters/geno-maxwell/front-costume.svg",
  13502. extra: 984/856,
  13503. bottom: 87/1071
  13504. }
  13505. },
  13506. backcostume: {
  13507. height: math.unit(7 + 4/12, "feet"),
  13508. weight: math.unit(690, "lb"),
  13509. name: "Back (Costume)",
  13510. image: {
  13511. source: "./media/characters/geno-maxwell/back-costume.svg",
  13512. extra: 981/854,
  13513. bottom: 57/1038
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(3, "inches")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(7 + 4 / 12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(220, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(11, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(7 + 4/12, "feet"),
  13542. weight: math.unit(750, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/regena-maxwell/front.svg",
  13546. extra: 984/856,
  13547. bottom: 87/1071
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(7 + 4/12, "feet"),
  13552. weight: math.unit(750, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/regena-maxwell/back.svg",
  13556. extra: 981/854,
  13557. bottom: 57/1038
  13558. }
  13559. },
  13560. frontCostume: {
  13561. height: math.unit(7 + 4/12, "feet"),
  13562. weight: math.unit(750, "lb"),
  13563. name: "Front (Costume)",
  13564. image: {
  13565. source: "./media/characters/regena-maxwell/front-costume.svg",
  13566. extra: 984/856,
  13567. bottom: 87/1071
  13568. }
  13569. },
  13570. backcostume: {
  13571. height: math.unit(7 + 4/12, "feet"),
  13572. weight: math.unit(750, "lb"),
  13573. name: "Back (Costume)",
  13574. image: {
  13575. source: "./media/characters/regena-maxwell/back-costume.svg",
  13576. extra: 981/854,
  13577. bottom: 57/1038
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(7 + 4 / 12, "feet"),
  13585. default: true
  13586. },
  13587. {
  13588. name: "Macro",
  13589. height: math.unit(220, "feet")
  13590. },
  13591. {
  13592. name: "Megamacro",
  13593. height: math.unit(11, "miles")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13606. extra: 860 / 690,
  13607. bottom: 0.03
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(1.7, "meters"),
  13615. default: true
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/quilly/front.svg",
  13628. extra: 890 / 776
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Gigamacro",
  13635. height: math.unit(404090, "miles"),
  13636. default: true
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(7 + 8 / 12, "feet"),
  13645. weight: math.unit(350, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/tempest/front.svg",
  13649. extra: 1175 / 1086,
  13650. bottom: 0.02
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(7 + 8 / 12, "feet"),
  13658. default: true
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13664. {
  13665. side: {
  13666. height: math.unit(4 + 5 / 12, "feet"),
  13667. weight: math.unit(80, "lb"),
  13668. name: "Side",
  13669. image: {
  13670. source: "./media/characters/rodger/side.svg",
  13671. extra: 1235 / 1118
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(1, "inch")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(4 + 5 / 12, "feet"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(120, "feet")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(150, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/danyel/front.svg",
  13700. extra: 1185 / 1123,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Shrunken",
  13708. height: math.unit(0.5, "mm")
  13709. },
  13710. {
  13711. name: "Micro",
  13712. height: math.unit(1, "mm"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Upsized",
  13717. height: math.unit(5 + 5 / 12, "feet")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(5 + 6 / 12, "feet"),
  13726. weight: math.unit(200, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/vivian-bijoux/front.svg",
  13730. extra: 1738/1733,
  13731. bottom: 162/1900
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(5 + 6 / 12, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Bad Dream",
  13743. height: math.unit(500, "feet")
  13744. },
  13745. {
  13746. name: "Nightmare",
  13747. height: math.unit(500, "miles")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6 + 1 / 12, "feet"),
  13756. weight: math.unit(260, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/zeta/front.svg",
  13760. extra: 1968 / 1889,
  13761. bottom: 0.06
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(6 + 1 / 12, "feet"),
  13766. weight: math.unit(260, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/zeta/back.svg",
  13770. extra: 1944 / 1858,
  13771. bottom: 0.03
  13772. }
  13773. },
  13774. hand: {
  13775. height: math.unit(1.112, "feet"),
  13776. name: "Hand",
  13777. image: {
  13778. source: "./media/characters/zeta/hand.svg"
  13779. }
  13780. },
  13781. foot: {
  13782. height: math.unit(1.48, "feet"),
  13783. name: "Foot",
  13784. image: {
  13785. source: "./media/characters/zeta/foot.svg"
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(6, "inches")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(6 + 1 / 12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Macro",
  13801. height: math.unit(20, "feet")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(150, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/jamie-larsen/front.svg",
  13814. extra: 962 / 933,
  13815. bottom: 0.02
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(150, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/jamie-larsen/back.svg",
  13824. extra: 997 / 946
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(28 + 7 / 12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro+",
  13836. height: math.unit(180, "feet")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(10, "miles")
  13841. },
  13842. {
  13843. name: "Gigamacro",
  13844. height: math.unit(200000, "miles")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(120, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/vance/front.svg",
  13857. extra: 1980 / 1890,
  13858. bottom: 0.09
  13859. }
  13860. },
  13861. back: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(120, "lb"),
  13864. name: "Back",
  13865. image: {
  13866. source: "./media/characters/vance/back.svg",
  13867. extra: 2081 / 1994,
  13868. bottom: 0.014
  13869. }
  13870. },
  13871. hand: {
  13872. height: math.unit(0.88, "feet"),
  13873. name: "Hand",
  13874. image: {
  13875. source: "./media/characters/vance/hand.svg"
  13876. }
  13877. },
  13878. foot: {
  13879. height: math.unit(0.64, "feet"),
  13880. name: "Foot",
  13881. image: {
  13882. source: "./media/characters/vance/foot.svg"
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Small",
  13889. height: math.unit(90, "feet"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Macro",
  13894. height: math.unit(100, "meters")
  13895. },
  13896. {
  13897. name: "Megamacro",
  13898. height: math.unit(15, "miles")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(180, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/xochitl/front.svg",
  13911. extra: 2297 / 2261,
  13912. bottom: 0.065
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(180, "lb"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/xochitl/back.svg",
  13921. extra: 2386 / 2354,
  13922. bottom: 0.01
  13923. }
  13924. },
  13925. foot: {
  13926. height: math.unit(6 / 5 * 1.15, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Foot",
  13929. image: {
  13930. source: "./media/characters/xochitl/foot.svg"
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Macro",
  13937. height: math.unit(80, "feet")
  13938. },
  13939. {
  13940. name: "Macro+",
  13941. height: math.unit(400, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Gigamacro",
  13946. height: math.unit(80000, "miles")
  13947. },
  13948. {
  13949. name: "Gigamacro+",
  13950. height: math.unit(400000, "miles")
  13951. },
  13952. {
  13953. name: "Teramacro",
  13954. height: math.unit(300, "AU")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/vincent/front.svg",
  13967. extra: 1130 / 1080,
  13968. bottom: 0.055
  13969. }
  13970. },
  13971. beak: {
  13972. height: math.unit(6 * 0.1, "feet"),
  13973. name: "Beak",
  13974. image: {
  13975. source: "./media/characters/vincent/beak.svg"
  13976. }
  13977. },
  13978. hand: {
  13979. height: math.unit(6 * 0.85, "feet"),
  13980. weight: math.unit(150, "lb"),
  13981. name: "Hand",
  13982. image: {
  13983. source: "./media/characters/vincent/hand.svg"
  13984. }
  13985. },
  13986. foot: {
  13987. height: math.unit(6 * 0.19, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Foot",
  13990. image: {
  13991. source: "./media/characters/vincent/foot.svg"
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Base",
  13998. height: math.unit(6 + 5 / 12, "feet"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(300, "feet")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(2, "miles")
  14008. },
  14009. {
  14010. name: "Gigamacro",
  14011. height: math.unit(1000, "miles")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(2, "meters"),
  14020. weight: math.unit(500, "kg"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/coatl/front.svg",
  14024. extra: 3948 / 3500,
  14025. bottom: 0.082
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Normal",
  14032. height: math.unit(4, "meters")
  14033. },
  14034. {
  14035. name: "Macro",
  14036. height: math.unit(100, "meters"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Macro+",
  14041. height: math.unit(300, "meters")
  14042. },
  14043. {
  14044. name: "Megamacro",
  14045. height: math.unit(3, "gigameters")
  14046. },
  14047. {
  14048. name: "Megamacro+",
  14049. height: math.unit(300, "terameters")
  14050. },
  14051. {
  14052. name: "Megamacro++",
  14053. height: math.unit(3, "lightyears")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(50, "kg"),
  14063. name: "front",
  14064. image: {
  14065. source: "./media/characters/shiroryu/front.svg",
  14066. extra: 1990 / 1935
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Mortal Mingling",
  14073. height: math.unit(3, "meters")
  14074. },
  14075. {
  14076. name: "Kaiju-ish",
  14077. height: math.unit(250, "meters")
  14078. },
  14079. {
  14080. name: "Somewhat Godly",
  14081. height: math.unit(400, "km"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Planetary",
  14086. height: math.unit(300, "megameters")
  14087. },
  14088. {
  14089. name: "Galaxy-dwarfing",
  14090. height: math.unit(450, "kiloparsecs")
  14091. },
  14092. {
  14093. name: "Universe Eater",
  14094. height: math.unit(150, "gigaparsecs")
  14095. },
  14096. {
  14097. name: "Almost Immeasurable",
  14098. height: math.unit(1.3e266, "yottaparsecs")
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(6, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/umeko/front.svg",
  14111. extra: 1,
  14112. bottom: 0.019
  14113. }
  14114. },
  14115. frontArmored: {
  14116. height: math.unit(6, "feet"),
  14117. weight: math.unit(150, "lb"),
  14118. name: "Front (Armored)",
  14119. image: {
  14120. source: "./media/characters/umeko/front-armored.svg",
  14121. extra: 1,
  14122. bottom: 0.021
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(220, "feet"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Guardian Dragon",
  14134. height: math.unit(50, "miles")
  14135. },
  14136. {
  14137. name: "Cosmic",
  14138. height: math.unit(800000, "miles")
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(150, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/cassidy/front.svg",
  14151. extra: 1,
  14152. bottom: 0.043
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Canon Height",
  14159. height: math.unit(120, "feet"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Macro+",
  14164. height: math.unit(400, "feet")
  14165. },
  14166. {
  14167. name: "Macro++",
  14168. height: math.unit(4000, "feet")
  14169. },
  14170. {
  14171. name: "Megamacro",
  14172. height: math.unit(3, "miles")
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14178. {
  14179. front: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(150, "lb"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/isaac/front.svg",
  14185. extra: 896 / 815,
  14186. bottom: 0.11
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Human Size",
  14193. height: math.unit(8, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(400, "feet")
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(50, "miles")
  14203. },
  14204. {
  14205. name: "Canon Height",
  14206. height: math.unit(200, "AU")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(72, "kg"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/sleekit/front.svg",
  14219. extra: 4693 / 4487,
  14220. bottom: 0.012
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Minimum Height",
  14227. height: math.unit(10, "meters")
  14228. },
  14229. {
  14230. name: "Smaller",
  14231. height: math.unit(25, "meters")
  14232. },
  14233. {
  14234. name: "Larger",
  14235. height: math.unit(38, "meters"),
  14236. default: true
  14237. },
  14238. {
  14239. name: "Maximum height",
  14240. height: math.unit(100, "meters")
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(150, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/nillia/front.svg",
  14253. extra: 2195 / 2037,
  14254. bottom: 0.005
  14255. }
  14256. },
  14257. back: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Back",
  14261. image: {
  14262. source: "./media/characters/nillia/back.svg",
  14263. extra: 2195 / 2037,
  14264. bottom: 0.005
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Canon Height",
  14271. height: math.unit(489, "feet"),
  14272. default: true
  14273. }
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/mesmyriza/front.svg",
  14285. extra: 2067 / 1784,
  14286. bottom: 0.035
  14287. }
  14288. },
  14289. foot: {
  14290. height: math.unit(6 / (250 / 35), "feet"),
  14291. name: "Foot",
  14292. image: {
  14293. source: "./media/characters/mesmyriza/foot.svg"
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Macro",
  14300. height: math.unit(457, "meters"),
  14301. default: true
  14302. },
  14303. {
  14304. name: "Megamacro",
  14305. height: math.unit(8, "megameters")
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(250, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/saudade/front.svg",
  14318. extra: 1172 / 1139,
  14319. bottom: 0.035
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(3, "inches")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(50, "feet")
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(2800, "feet")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(5 + 4 / 12, "feet"),
  14348. weight: math.unit(100, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/keireer/front.svg",
  14352. extra: 716 / 666,
  14353. bottom: 0.05
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(5 + 4 / 12, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(90, "kg"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/mirja/front.svg",
  14374. extra: 1789 / 1683,
  14375. bottom: 0.05
  14376. }
  14377. },
  14378. frontDressed: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(90, "lb"),
  14381. name: "Front (Dressed)",
  14382. image: {
  14383. source: "./media/characters/mirja/front-dressed.svg",
  14384. extra: 1789 / 1683,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(90, "lb"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/mirja/back.svg",
  14394. extra: 953 / 917,
  14395. bottom: 0.017
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "\"Incognito\"",
  14402. height: math.unit(3, "meters")
  14403. },
  14404. {
  14405. name: "Strolling Size",
  14406. height: math.unit(15, "km")
  14407. },
  14408. {
  14409. name: "Larger Strolling Size",
  14410. height: math.unit(400, "km")
  14411. },
  14412. {
  14413. name: "Preferred Size",
  14414. height: math.unit(5000, "km")
  14415. },
  14416. {
  14417. name: "True Size",
  14418. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14419. default: true
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(15, "feet"),
  14428. weight: math.unit(880, "kg"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/nightraver/front.svg",
  14432. extra: 2444 / 2160,
  14433. bottom: 0.027
  14434. }
  14435. },
  14436. back: {
  14437. height: math.unit(15, "feet"),
  14438. weight: math.unit(880, "kg"),
  14439. name: "Back",
  14440. image: {
  14441. source: "./media/characters/nightraver/back.svg",
  14442. extra: 2309 / 2180,
  14443. bottom: 0.005
  14444. }
  14445. },
  14446. sole: {
  14447. height: math.unit(2.878, "feet"),
  14448. name: "Sole",
  14449. image: {
  14450. source: "./media/characters/nightraver/sole.svg"
  14451. }
  14452. },
  14453. foot: {
  14454. height: math.unit(2.285, "feet"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/nightraver/foot.svg"
  14458. }
  14459. },
  14460. maw: {
  14461. height: math.unit(2.67, "feet"),
  14462. name: "Maw",
  14463. image: {
  14464. source: "./media/characters/nightraver/maw.svg"
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Micro",
  14471. height: math.unit(1, "cm")
  14472. },
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(15, "feet"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(300, "feet")
  14481. },
  14482. {
  14483. name: "Megamacro",
  14484. height: math.unit(300, "miles")
  14485. },
  14486. {
  14487. name: "Gigamacro",
  14488. height: math.unit(10000, "miles")
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14494. {
  14495. side: {
  14496. height: math.unit(2, "inches"),
  14497. weight: math.unit(5, "grams"),
  14498. name: "Side",
  14499. image: {
  14500. source: "./media/characters/arc/side.svg"
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Micro",
  14507. height: math.unit(2, "inches"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(1.1938, "meters"),
  14517. weight: math.unit(54, "kg"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/nebula-shahar/front.svg",
  14521. extra: 1642 / 1436,
  14522. bottom: 0.06
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Megamicro",
  14529. height: math.unit(0.3, "mm")
  14530. },
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(3, "cm")
  14534. },
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(138, "cm"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(30, "m")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(5.24, "feet"),
  14551. weight: math.unit(150, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/shayla/front.svg",
  14555. extra: 1512 / 1414,
  14556. bottom: 0.01
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(5.24, "feet"),
  14561. weight: math.unit(150, "lb"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/shayla/back.svg",
  14565. extra: 1512 / 1414
  14566. }
  14567. },
  14568. hand: {
  14569. height: math.unit(0.7781496062992126, "feet"),
  14570. name: "Hand",
  14571. image: {
  14572. source: "./media/characters/shayla/hand.svg"
  14573. }
  14574. },
  14575. foot: {
  14576. height: math.unit(1.4206036745406823, "feet"),
  14577. name: "Foot",
  14578. image: {
  14579. source: "./media/characters/shayla/foot.svg"
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Micro",
  14586. height: math.unit(0.32, "feet")
  14587. },
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(5.24, "feet"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Macro",
  14595. height: math.unit(492.12, "feet")
  14596. },
  14597. {
  14598. name: "Megamacro",
  14599. height: math.unit(186.41, "miles")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(2.2, "m"),
  14608. weight: math.unit(120, "kg"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/pia-jr/front.svg",
  14612. extra: 1000 / 970,
  14613. bottom: 0.035
  14614. }
  14615. },
  14616. hand: {
  14617. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14618. name: "Hand",
  14619. image: {
  14620. source: "./media/characters/pia-jr/hand.svg"
  14621. }
  14622. },
  14623. paw: {
  14624. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14625. name: "Paw",
  14626. image: {
  14627. source: "./media/characters/pia-jr/paw.svg"
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Micro",
  14634. height: math.unit(1.2, "cm")
  14635. },
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(2.2, "m"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Macro",
  14643. height: math.unit(180, "m")
  14644. },
  14645. {
  14646. name: "Megamacro",
  14647. height: math.unit(420, "km")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(2, "m"),
  14656. weight: math.unit(115, "kg"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/pia-sr/front.svg",
  14660. extra: 760 / 730,
  14661. bottom: 0.015
  14662. }
  14663. },
  14664. back: {
  14665. height: math.unit(2, "m"),
  14666. weight: math.unit(115, "kg"),
  14667. name: "Back",
  14668. image: {
  14669. source: "./media/characters/pia-sr/back.svg",
  14670. extra: 760 / 730,
  14671. bottom: 0.01
  14672. }
  14673. },
  14674. hand: {
  14675. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14676. name: "Hand",
  14677. image: {
  14678. source: "./media/characters/pia-sr/hand.svg"
  14679. }
  14680. },
  14681. foot: {
  14682. height: math.unit(1.83, "feet"),
  14683. name: "Foot",
  14684. image: {
  14685. source: "./media/characters/pia-sr/foot.svg"
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Micro",
  14692. height: math.unit(88, "mm")
  14693. },
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(2, "m"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro",
  14701. height: math.unit(200, "m")
  14702. },
  14703. {
  14704. name: "Megamacro",
  14705. height: math.unit(420, "km")
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(8 + 2 / 12, "feet"),
  14714. weight: math.unit(300, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/kibibyte/front.svg",
  14718. extra: 2221 / 2098,
  14719. bottom: 0.04
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Normal",
  14726. height: math.unit(8 + 2 / 12, "feet"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Socialable Macro",
  14731. height: math.unit(50, "feet")
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(300, "feet")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(500, "miles")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/felix/front.svg",
  14752. extra: 762 / 722,
  14753. bottom: 0.02
  14754. }
  14755. },
  14756. frontClothed: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(150, "lb"),
  14759. name: "Front (Clothed)",
  14760. image: {
  14761. source: "./media/characters/felix/front-clothed.svg",
  14762. extra: 762 / 722,
  14763. bottom: 0.02
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(6 + 8 / 12, "feet"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Macro",
  14775. height: math.unit(2600, "feet")
  14776. },
  14777. {
  14778. name: "Megamacro",
  14779. height: math.unit(450, "miles")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(6 + 1 / 12, "feet"),
  14788. weight: math.unit(250, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/tobo/front.svg",
  14792. extra: 608 / 586,
  14793. bottom: 0.023
  14794. }
  14795. },
  14796. back: {
  14797. height: math.unit(6 + 1 / 12, "feet"),
  14798. weight: math.unit(250, "lb"),
  14799. name: "Back",
  14800. image: {
  14801. source: "./media/characters/tobo/back.svg",
  14802. extra: 608 / 586
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Nano",
  14809. height: math.unit(2, "nm")
  14810. },
  14811. {
  14812. name: "Megamicro",
  14813. height: math.unit(0.1, "mm")
  14814. },
  14815. {
  14816. name: "Micro",
  14817. height: math.unit(1, "inch"),
  14818. default: true
  14819. },
  14820. {
  14821. name: "Human-sized",
  14822. height: math.unit(6 + 1 / 12, "feet")
  14823. },
  14824. {
  14825. name: "Macro",
  14826. height: math.unit(250, "feet")
  14827. },
  14828. {
  14829. name: "Megamacro",
  14830. height: math.unit(75, "miles")
  14831. },
  14832. {
  14833. name: "Texas-sized",
  14834. height: math.unit(750, "miles")
  14835. },
  14836. {
  14837. name: "Teramacro",
  14838. height: math.unit(50000, "miles")
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(269, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/danny-kapowsky/front.svg",
  14851. extra: 766 / 736,
  14852. bottom: 0.044
  14853. }
  14854. },
  14855. back: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(269, "lb"),
  14858. name: "Back",
  14859. image: {
  14860. source: "./media/characters/danny-kapowsky/back.svg",
  14861. extra: 797 / 760,
  14862. bottom: 0.025
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Macro",
  14869. height: math.unit(150, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro+",
  14874. height: math.unit(200, "feet")
  14875. },
  14876. {
  14877. name: "Macro++",
  14878. height: math.unit(300, "feet")
  14879. },
  14880. {
  14881. name: "Macro+++",
  14882. height: math.unit(400, "feet")
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14888. {
  14889. side: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(170, "lb"),
  14892. name: "Side",
  14893. image: {
  14894. source: "./media/characters/finn/side.svg",
  14895. extra: 1953 / 1807,
  14896. bottom: 0.057
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(14445, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(5 + 6 / 12, "feet"),
  14913. weight: math.unit(125, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/roy/front.svg",
  14917. extra: 1,
  14918. bottom: 0.11
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Micro",
  14925. height: math.unit(3, "inches"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(5 + 6 / 12, "feet")
  14931. },
  14932. {
  14933. name: "Lesser Macro",
  14934. height: math.unit(60, "feet")
  14935. },
  14936. {
  14937. name: "Greater Macro",
  14938. height: math.unit(120, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(100, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/aevsivs/front.svg",
  14951. extra: 1,
  14952. bottom: 0.03
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(100, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/aevsivs/back.svg"
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Micro",
  14967. height: math.unit(2, "inches"),
  14968. default: true
  14969. },
  14970. {
  14971. name: "Normal",
  14972. height: math.unit(5, "feet")
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(5 + 7 / 12, "feet"),
  14981. weight: math.unit(159, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/hildegard/front.svg",
  14985. extra: 289 / 269,
  14986. bottom: 7.63 / 297.8
  14987. }
  14988. },
  14989. back: {
  14990. height: math.unit(5 + 7 / 12, "feet"),
  14991. weight: math.unit(159, "lb"),
  14992. name: "Back",
  14993. image: {
  14994. source: "./media/characters/hildegard/back.svg",
  14995. extra: 280 / 260,
  14996. bottom: 2.3 / 282
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(5 + 7 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15010. {
  15011. bernard: {
  15012. height: math.unit(2 + 7 / 12, "feet"),
  15013. weight: math.unit(66, "lb"),
  15014. name: "Bernard",
  15015. rename: true,
  15016. image: {
  15017. source: "./media/characters/bernard-wilder/bernard.svg",
  15018. extra: 192 / 128,
  15019. bottom: 0.05
  15020. }
  15021. },
  15022. wilder: {
  15023. height: math.unit(5 + 8 / 12, "feet"),
  15024. weight: math.unit(143, "lb"),
  15025. name: "Wilder",
  15026. rename: true,
  15027. image: {
  15028. source: "./media/characters/bernard-wilder/wilder.svg",
  15029. extra: 361 / 312,
  15030. bottom: 0.02
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(2 + 7 / 12, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15044. {
  15045. anthro: {
  15046. height: math.unit(6 + 1 / 12, "feet"),
  15047. weight: math.unit(155, "lb"),
  15048. name: "Anthro",
  15049. image: {
  15050. source: "./media/characters/hearth/anthro.svg",
  15051. extra: 260 / 250,
  15052. bottom: 0.02
  15053. }
  15054. },
  15055. feral: {
  15056. height: math.unit(3.78, "feet"),
  15057. weight: math.unit(35, "kg"),
  15058. name: "Feral",
  15059. image: {
  15060. source: "./media/characters/hearth/feral.svg",
  15061. extra: 153 / 135,
  15062. bottom: 0.03
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(6 + 1 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(6, "feet"),
  15079. weight: math.unit(182, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/ingrid/front.svg",
  15083. extra: 294 / 268,
  15084. bottom: 0.027
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(6, "feet"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15098. {
  15099. eevee: {
  15100. height: math.unit(2 + 10 / 12, "feet"),
  15101. weight: math.unit(86, "lb"),
  15102. name: "Malgam",
  15103. image: {
  15104. source: "./media/characters/malgam/eevee.svg",
  15105. extra: 218 / 180,
  15106. bottom: 0.2
  15107. }
  15108. },
  15109. sylveon: {
  15110. height: math.unit(4, "feet"),
  15111. weight: math.unit(101, "lb"),
  15112. name: "Future Malgam",
  15113. rename: true,
  15114. image: {
  15115. source: "./media/characters/malgam/sylveon.svg",
  15116. extra: 371 / 325,
  15117. bottom: 0.015
  15118. }
  15119. },
  15120. gigantamax: {
  15121. height: math.unit(50, "feet"),
  15122. name: "Gigantamax Malgam",
  15123. rename: true,
  15124. image: {
  15125. source: "./media/characters/malgam/gigantamax.svg"
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(2 + 10 / 12, "feet"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15139. {
  15140. front: {
  15141. height: math.unit(5 + 11 / 12, "feet"),
  15142. weight: math.unit(188, "lb"),
  15143. name: "Front",
  15144. image: {
  15145. source: "./media/characters/fleur/front.svg",
  15146. extra: 309 / 283,
  15147. bottom: 0.007
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(5 + 11 / 12, "feet"),
  15155. default: true
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(5 + 4 / 12, "feet"),
  15164. weight: math.unit(122, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/jude/front.svg",
  15168. extra: 288 / 273,
  15169. bottom: 0.03
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(5 + 4 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(5 + 11 / 12, "feet"),
  15186. weight: math.unit(190, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/seara/front.svg",
  15190. extra: 1,
  15191. bottom: 0.05
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(5 + 11 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(16 + 5 / 12, "feet"),
  15208. weight: math.unit(524, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/caspian/front.svg",
  15212. extra: 1,
  15213. bottom: 0.04
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(16 + 5 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(5 + 7 / 12, "feet"),
  15230. weight: math.unit(170, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/mika/front.svg",
  15234. extra: 1,
  15235. bottom: 0.016
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(5 + 7 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(6 + 2 / 12, "feet"),
  15252. weight: math.unit(268, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/sol/front.svg",
  15256. extra: 247 / 231,
  15257. bottom: 0.05
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(6 + 2 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15271. {
  15272. buizel: {
  15273. height: math.unit(2 + 5 / 12, "feet"),
  15274. weight: math.unit(87, "lb"),
  15275. name: "Buizel",
  15276. image: {
  15277. source: "./media/characters/umiko/buizel.svg",
  15278. extra: 172 / 157,
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. floatzel: {
  15283. height: math.unit(5 + 9 / 12, "feet"),
  15284. weight: math.unit(250, "lb"),
  15285. name: "Floatzel",
  15286. image: {
  15287. source: "./media/characters/umiko/floatzel.svg",
  15288. extra: 262 / 248
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(2 + 5 / 12, "feet"),
  15296. default: true
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6 + 2 / 12, "feet"),
  15305. weight: math.unit(146, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/iliac/front.svg",
  15309. extra: 389 / 365,
  15310. bottom: 0.035
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(6 + 2 / 12, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(170, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/topaz/front.svg",
  15331. extra: 317 / 303,
  15332. bottom: 0.055
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(6, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(5 + 11 / 12, "feet"),
  15349. weight: math.unit(144, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/gabriel/front.svg",
  15353. extra: 285 / 262,
  15354. bottom: 0.004
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(5 + 11 / 12, "feet"),
  15362. default: true
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15368. {
  15369. side: {
  15370. height: math.unit(6 + 5 / 12, "feet"),
  15371. weight: math.unit(300, "lb"),
  15372. name: "Side",
  15373. image: {
  15374. source: "./media/characters/tempest-suicune/side.svg",
  15375. extra: 195 / 154,
  15376. bottom: 0.04
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(6 + 5 / 12, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(7 + 2 / 12, "feet"),
  15393. weight: math.unit(322, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/vulcan/front.svg",
  15397. extra: 154 / 147,
  15398. bottom: 0.04
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(7 + 2 / 12, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(5 + 10 / 12, "feet"),
  15415. weight: math.unit(264, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/gault/front.svg",
  15419. extra: 161 / 140,
  15420. bottom: 0.028
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(5 + 10 / 12, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/shard/front.svg",
  15441. extra: 273 / 238,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(3 + 6 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15456. {
  15457. front: {
  15458. height: math.unit(5 + 11 / 12, "feet"),
  15459. weight: math.unit(146, "lb"),
  15460. name: "Front",
  15461. image: {
  15462. source: "./media/characters/ashe/front.svg",
  15463. extra: 400 / 373,
  15464. bottom: 0.01
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(5 + 11 / 12, "feet"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(5 + 5 / 12, "feet"),
  15481. weight: math.unit(135, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/beatrix/front.svg",
  15485. extra: 392 / 379,
  15486. bottom: 0.01
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(6, "feet"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/ignatius/front.svg",
  15507. extra: 245 / 222,
  15508. bottom: 0.01
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(5 + 5 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6 + 2 / 12, "feet"),
  15525. weight: math.unit(138, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/mei-li/front.svg",
  15529. extra: 237 / 229,
  15530. bottom: 0.03
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(6 + 2 / 12, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(2 + 4 / 12, "feet"),
  15547. weight: math.unit(62, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/puru/front.svg",
  15551. extra: 206 / 149,
  15552. bottom: 0.06
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(2 + 4 / 12, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15566. {
  15567. anthro: {
  15568. height: math.unit(5 + 8/12, "feet"),
  15569. weight: math.unit(200, "lb"),
  15570. energyNeed: math.unit(2000, "kcal"),
  15571. name: "Anthro",
  15572. image: {
  15573. source: "./media/characters/kee/anthro.svg",
  15574. extra: 3251/3184,
  15575. bottom: 250/3501
  15576. }
  15577. },
  15578. taur: {
  15579. height: math.unit(11, "feet"),
  15580. weight: math.unit(500, "lb"),
  15581. energyNeed: math.unit(5000, "kcal"),
  15582. name: "Taur",
  15583. image: {
  15584. source: "./media/characters/kee/taur.svg",
  15585. extra: 1362/1320,
  15586. bottom: 83/1445
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(5 + 8/12, "feet"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Macro",
  15598. height: math.unit(35, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15604. {
  15605. anthro: {
  15606. height: math.unit(7, "feet"),
  15607. weight: math.unit(190, "lb"),
  15608. name: "Anthro",
  15609. image: {
  15610. source: "./media/characters/cobalt-dracha/anthro.svg",
  15611. extra: 231 / 225,
  15612. bottom: 0.04
  15613. }
  15614. },
  15615. feral: {
  15616. height: math.unit(9 + 7 / 12, "feet"),
  15617. weight: math.unit(294, "lb"),
  15618. name: "Feral",
  15619. image: {
  15620. source: "./media/characters/cobalt-dracha/feral.svg",
  15621. extra: 692 / 633,
  15622. bottom: 0.05
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Normal",
  15629. height: math.unit(7, "feet"),
  15630. default: true
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15636. {
  15637. fallen: {
  15638. height: math.unit(11 + 8 / 12, "feet"),
  15639. weight: math.unit(485, "lb"),
  15640. name: "Java (Fallen)",
  15641. rename: true,
  15642. image: {
  15643. source: "./media/characters/java/fallen.svg",
  15644. extra: 226 / 208,
  15645. bottom: 0.005
  15646. }
  15647. },
  15648. godkin: {
  15649. height: math.unit(10 + 6 / 12, "feet"),
  15650. weight: math.unit(328, "lb"),
  15651. name: "Java (Godkin)",
  15652. rename: true,
  15653. image: {
  15654. source: "./media/characters/java/godkin.svg",
  15655. extra: 270 / 262,
  15656. bottom: 0.02
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(11 + 8 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(7 + 8 / 12, "feet"),
  15673. weight: math.unit(320, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/skoll/front.svg",
  15677. extra: 232 / 220,
  15678. bottom: 0.02
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(7 + 8 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(5 + 9 / 12, "feet"),
  15695. weight: math.unit(170, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/purna/front.svg",
  15699. extra: 239 / 229,
  15700. bottom: 0.01
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 9 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(5 + 9 / 12, "feet"),
  15717. weight: math.unit(142, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/kuva/front.svg",
  15721. extra: 281 / 271,
  15722. bottom: 0.006
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(5 + 9 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15736. {
  15737. anthro: {
  15738. height: math.unit(9 + 2 / 12, "feet"),
  15739. weight: math.unit(270, "lb"),
  15740. name: "Anthro",
  15741. image: {
  15742. source: "./media/characters/embra/anthro.svg",
  15743. extra: 200 / 187,
  15744. bottom: 0.02
  15745. }
  15746. },
  15747. feral: {
  15748. height: math.unit(18 + 8 / 12, "feet"),
  15749. weight: math.unit(576, "lb"),
  15750. name: "Feral",
  15751. image: {
  15752. source: "./media/characters/embra/feral.svg",
  15753. extra: 152 / 137,
  15754. bottom: 0.037
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(9 + 2 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15768. {
  15769. anthro: {
  15770. height: math.unit(10 + 9 / 12, "feet"),
  15771. weight: math.unit(224, "lb"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/grottos/anthro.svg",
  15775. extra: 350 / 332,
  15776. bottom: 0.045
  15777. }
  15778. },
  15779. feral: {
  15780. height: math.unit(20 + 7 / 12, "feet"),
  15781. weight: math.unit(629, "lb"),
  15782. name: "Feral",
  15783. image: {
  15784. source: "./media/characters/grottos/feral.svg",
  15785. extra: 207 / 190,
  15786. bottom: 0.05
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(10 + 9 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15800. {
  15801. anthro: {
  15802. height: math.unit(9 + 6 / 12, "feet"),
  15803. weight: math.unit(298, "lb"),
  15804. name: "Anthro",
  15805. image: {
  15806. source: "./media/characters/frifna/anthro.svg",
  15807. extra: 282 / 269,
  15808. bottom: 0.015
  15809. }
  15810. },
  15811. feral: {
  15812. height: math.unit(16 + 2 / 12, "feet"),
  15813. weight: math.unit(624, "lb"),
  15814. name: "Feral",
  15815. image: {
  15816. source: "./media/characters/frifna/feral.svg"
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(9 + 6 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(6 + 2 / 12, "feet"),
  15833. weight: math.unit(168, "lb"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/elise/front.svg",
  15837. extra: 276 / 271
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(6 + 2 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(5 + 10 / 12, "feet"),
  15854. weight: math.unit(210, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/glade/front.svg",
  15858. extra: 258 / 247,
  15859. bottom: 0.008
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(5 + 10 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(5 + 10 / 12, "feet"),
  15876. weight: math.unit(129, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/rina/front.svg",
  15880. extra: 266 / 255,
  15881. bottom: 0.005
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(5 + 10 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(6 + 1 / 12, "feet"),
  15898. weight: math.unit(192, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/veronica/front.svg",
  15902. extra: 319 / 309,
  15903. bottom: 0.005
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(6 + 1 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(9 + 3 / 12, "feet"),
  15920. weight: math.unit(1100, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/braxton/front.svg",
  15924. extra: 1057 / 984,
  15925. bottom: 0.05
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(9 + 3 / 12, "feet")
  15933. },
  15934. {
  15935. name: "Giant",
  15936. height: math.unit(300, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Macro",
  15941. height: math.unit(700, "feet")
  15942. },
  15943. {
  15944. name: "Megamacro",
  15945. height: math.unit(6000, "feet")
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(6 + 7 / 12, "feet"),
  15954. weight: math.unit(150, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/blue-feyonics/front.svg",
  15958. extra: 1403 / 1306,
  15959. bottom: 0.047
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(6 + 7 / 12, "feet"),
  15967. default: true
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(1.8, "meters"),
  15976. weight: math.unit(60, "kg"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/maxwell/front.svg",
  15980. extra: 2060 / 1873
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(1, "mm")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(1.8, "meter"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(30, "meters")
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(10, "km")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(150, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/jack/front.svg",
  16013. extra: 1754 / 1640,
  16014. bottom: 0.01
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(80000, "feet"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Max size",
  16026. height: math.unit(10, "lightyears")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16032. {
  16033. urban: {
  16034. height: math.unit(5, "feet"),
  16035. weight: math.unit(240, "lb"),
  16036. name: "Urban",
  16037. image: {
  16038. source: "./media/characters/cafat/urban.svg",
  16039. extra: 1223/1126,
  16040. bottom: 205/1428
  16041. }
  16042. },
  16043. summer: {
  16044. height: math.unit(5, "feet"),
  16045. weight: math.unit(240, "lb"),
  16046. name: "Summer",
  16047. image: {
  16048. source: "./media/characters/cafat/summer.svg",
  16049. extra: 1223/1126,
  16050. bottom: 205/1428
  16051. }
  16052. },
  16053. winter: {
  16054. height: math.unit(5, "feet"),
  16055. weight: math.unit(240, "lb"),
  16056. name: "Winter",
  16057. image: {
  16058. source: "./media/characters/cafat/winter.svg",
  16059. extra: 1223/1126,
  16060. bottom: 205/1428
  16061. }
  16062. },
  16063. lingerie: {
  16064. height: math.unit(5, "feet"),
  16065. weight: math.unit(240, "lb"),
  16066. name: "Lingerie",
  16067. image: {
  16068. source: "./media/characters/cafat/lingerie.svg",
  16069. extra: 1223/1126,
  16070. bottom: 205/1428
  16071. }
  16072. },
  16073. upright: {
  16074. height: math.unit(6.3, "feet"),
  16075. weight: math.unit(240, "lb"),
  16076. name: "Upright",
  16077. image: {
  16078. source: "./media/characters/cafat/upright.svg",
  16079. bottom: 0.01
  16080. }
  16081. },
  16082. uprightFull: {
  16083. height: math.unit(6.3, "feet"),
  16084. weight: math.unit(240, "lb"),
  16085. name: "Upright (Full)",
  16086. image: {
  16087. source: "./media/characters/cafat/upright-full.svg",
  16088. bottom: 0.01
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Small",
  16095. height: math.unit(5, "feet"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Large",
  16100. height: math.unit(13, "feet")
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(6, "feet"),
  16109. weight: math.unit(150, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/verin-raharra/front.svg",
  16113. extra: 5019 / 4835,
  16114. bottom: 0.023
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(7 + 5 / 12, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Upsized",
  16126. height: math.unit(20, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(7, "feet"),
  16135. weight: math.unit(230, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/nakata/front.svg",
  16139. extra: 1.005,
  16140. bottom: 0.01
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(7, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Big",
  16152. height: math.unit(14, "feet")
  16153. },
  16154. {
  16155. name: "Macro",
  16156. height: math.unit(400, "feet")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(4.91, "feet"),
  16165. weight: math.unit(100, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/lily/front.svg",
  16169. extra: 1585 / 1415,
  16170. bottom: 0.02
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(4.91, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16184. {
  16185. laying: {
  16186. height: math.unit(4 + 4 / 12, "feet"),
  16187. weight: math.unit(600, "lb"),
  16188. name: "Laying",
  16189. image: {
  16190. source: "./media/characters/sheila/laying.svg",
  16191. extra: 1333 / 1265,
  16192. bottom: 0.16
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(4 + 4 / 12, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(190, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/sax/front.svg",
  16213. extra: 1187 / 973,
  16214. bottom: 0.042
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(4, "inches"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/pandora/front.svg",
  16235. extra: 2720 / 2556,
  16236. bottom: 0.015
  16237. }
  16238. },
  16239. back: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(150, "lb"),
  16242. name: "Back",
  16243. image: {
  16244. source: "./media/characters/pandora/back.svg",
  16245. extra: 2720 / 2556,
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. beans: {
  16250. height: math.unit(6 / 8, "feet"),
  16251. name: "Beans",
  16252. image: {
  16253. source: "./media/characters/pandora/beans.svg"
  16254. }
  16255. },
  16256. collar: {
  16257. height: math.unit(0.31, "feet"),
  16258. name: "Collar",
  16259. image: {
  16260. source: "./media/characters/pandora/collar.svg"
  16261. }
  16262. },
  16263. skirt: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Skirt",
  16267. image: {
  16268. source: "./media/characters/pandora/skirt.svg",
  16269. extra: 1622 / 1525,
  16270. bottom: 0.015
  16271. }
  16272. },
  16273. hoodie: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Hoodie",
  16277. image: {
  16278. source: "./media/characters/pandora/hoodie.svg",
  16279. extra: 1622 / 1525,
  16280. bottom: 0.015
  16281. }
  16282. },
  16283. casual: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Casual",
  16287. image: {
  16288. source: "./media/characters/pandora/casual.svg",
  16289. extra: 1622 / 1525,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6, "feet")
  16298. },
  16299. {
  16300. name: "Big Steppy",
  16301. height: math.unit(1, "km"),
  16302. default: true
  16303. },
  16304. {
  16305. name: "Galactic Steppy",
  16306. height: math.unit(2, "gigameters")
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16312. {
  16313. side: {
  16314. height: math.unit(10, "feet"),
  16315. weight: math.unit(800, "kg"),
  16316. name: "Side",
  16317. image: {
  16318. source: "./media/characters/venio-darcony/side.svg",
  16319. extra: 1373 / 1003,
  16320. bottom: 0.037
  16321. }
  16322. },
  16323. front: {
  16324. height: math.unit(19, "feet"),
  16325. weight: math.unit(800, "kg"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/venio-darcony/front.svg"
  16329. }
  16330. },
  16331. back: {
  16332. height: math.unit(19, "feet"),
  16333. weight: math.unit(800, "kg"),
  16334. name: "Back",
  16335. image: {
  16336. source: "./media/characters/venio-darcony/back.svg"
  16337. }
  16338. },
  16339. sideNsfw: {
  16340. height: math.unit(10, "feet"),
  16341. weight: math.unit(800, "kg"),
  16342. name: "Side (NSFW)",
  16343. image: {
  16344. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16345. extra: 1373 / 1003,
  16346. bottom: 0.037
  16347. }
  16348. },
  16349. frontNsfw: {
  16350. height: math.unit(19, "feet"),
  16351. weight: math.unit(800, "kg"),
  16352. name: "Front (NSFW)",
  16353. image: {
  16354. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16355. }
  16356. },
  16357. backNsfw: {
  16358. height: math.unit(19, "feet"),
  16359. weight: math.unit(800, "kg"),
  16360. name: "Back (NSFW)",
  16361. image: {
  16362. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16363. }
  16364. },
  16365. sideArmored: {
  16366. height: math.unit(10, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Side (Armored)",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/side-armored.svg",
  16371. extra: 1373 / 1003,
  16372. bottom: 0.037
  16373. }
  16374. },
  16375. frontArmored: {
  16376. height: math.unit(19, "feet"),
  16377. weight: math.unit(900, "kg"),
  16378. name: "Front (Armored)",
  16379. image: {
  16380. source: "./media/characters/venio-darcony/front-armored.svg"
  16381. }
  16382. },
  16383. backArmored: {
  16384. height: math.unit(19, "feet"),
  16385. weight: math.unit(900, "kg"),
  16386. name: "Back (Armored)",
  16387. image: {
  16388. source: "./media/characters/venio-darcony/back-armored.svg"
  16389. }
  16390. },
  16391. sword: {
  16392. height: math.unit(10, "feet"),
  16393. weight: math.unit(50, "lb"),
  16394. name: "Sword",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/sword.svg"
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(10, "feet")
  16404. },
  16405. {
  16406. name: "Macro",
  16407. height: math.unit(130, "feet"),
  16408. default: true
  16409. },
  16410. {
  16411. name: "Macro+",
  16412. height: math.unit(240, "feet")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/veski/front.svg",
  16425. extra: 1299 / 1225,
  16426. bottom: 0.04
  16427. }
  16428. },
  16429. back: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Back",
  16433. image: {
  16434. source: "./media/characters/veski/back.svg",
  16435. extra: 1299 / 1225,
  16436. bottom: 0.008
  16437. }
  16438. },
  16439. maw: {
  16440. height: math.unit(1.5 * 1.21, "feet"),
  16441. name: "Maw",
  16442. image: {
  16443. source: "./media/characters/veski/maw.svg"
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Macro",
  16450. height: math.unit(2, "km"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(5 + 7 / 12, "feet"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/isabelle/front.svg",
  16463. extra: 2130 / 1976,
  16464. bottom: 0.05
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Supermicro",
  16471. height: math.unit(10, "micrometers")
  16472. },
  16473. {
  16474. name: "Micro",
  16475. height: math.unit(1, "inch")
  16476. },
  16477. {
  16478. name: "Tiny",
  16479. height: math.unit(5, "inches")
  16480. },
  16481. {
  16482. name: "Standard",
  16483. height: math.unit(5 + 7 / 12, "inches")
  16484. },
  16485. {
  16486. name: "Macro",
  16487. height: math.unit(80, "meters"),
  16488. default: true
  16489. },
  16490. {
  16491. name: "Megamacro",
  16492. height: math.unit(250, "meters")
  16493. },
  16494. {
  16495. name: "Gigamacro",
  16496. height: math.unit(5, "km")
  16497. },
  16498. {
  16499. name: "Cosmic",
  16500. height: math.unit(2.5e6, "miles")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/hanzo/front.svg",
  16513. extra: 374 / 344,
  16514. bottom: 0.02
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(8, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(7, "feet"),
  16531. weight: math.unit(130, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/anna/front.svg",
  16535. extra: 169 / 145,
  16536. bottom: 0.06
  16537. }
  16538. },
  16539. full: {
  16540. height: math.unit(4.96, "feet"),
  16541. weight: math.unit(220, "lb"),
  16542. name: "Full",
  16543. image: {
  16544. source: "./media/characters/anna/full.svg",
  16545. extra: 138 / 114,
  16546. bottom: 0.15
  16547. }
  16548. },
  16549. tongue: {
  16550. height: math.unit(2.53, "feet"),
  16551. name: "Tongue",
  16552. image: {
  16553. source: "./media/characters/anna/tongue.svg"
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(7, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(7, "feet"),
  16570. weight: math.unit(150, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/ian-corvid/front.svg",
  16574. extra: 150 / 142,
  16575. bottom: 0.02
  16576. }
  16577. },
  16578. back: {
  16579. height: math.unit(7, "feet"),
  16580. weight: math.unit(150, "lb"),
  16581. name: "Back",
  16582. image: {
  16583. source: "./media/characters/ian-corvid/back.svg",
  16584. extra: 150 / 143,
  16585. bottom: 0.01
  16586. }
  16587. },
  16588. stomping: {
  16589. height: math.unit(7, "feet"),
  16590. weight: math.unit(150, "lb"),
  16591. name: "Stomping",
  16592. image: {
  16593. source: "./media/characters/ian-corvid/stomping.svg",
  16594. extra: 76 / 72
  16595. }
  16596. },
  16597. sitting: {
  16598. height: math.unit(7 / 1.8, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Sitting",
  16601. image: {
  16602. source: "./media/characters/ian-corvid/sitting.svg",
  16603. extra: 1400 / 1269,
  16604. bottom: 0.15
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Tiny Microw",
  16611. height: math.unit(1, "inch")
  16612. },
  16613. {
  16614. name: "Microw",
  16615. height: math.unit(6, "inches")
  16616. },
  16617. {
  16618. name: "Crow",
  16619. height: math.unit(7 + 1 / 12, "feet"),
  16620. default: true
  16621. },
  16622. {
  16623. name: "Macrow",
  16624. height: math.unit(176, "feet")
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(5 + 7 / 12, "feet"),
  16633. weight: math.unit(147, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/natalie-kellon/front.svg",
  16637. extra: 1214 / 1141,
  16638. bottom: 0.02
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Micro",
  16645. height: math.unit(1 / 16, "inch")
  16646. },
  16647. {
  16648. name: "Tiny",
  16649. height: math.unit(4, "inches")
  16650. },
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(5 + 7 / 12, "feet"),
  16654. default: true
  16655. },
  16656. {
  16657. name: "Amazon",
  16658. height: math.unit(12, "feet")
  16659. },
  16660. {
  16661. name: "Giantess",
  16662. height: math.unit(160, "meters")
  16663. },
  16664. {
  16665. name: "Titaness",
  16666. height: math.unit(800, "meters")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(6, "feet"),
  16675. weight: math.unit(150, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/alluria/front.svg",
  16679. extra: 806 / 738,
  16680. bottom: 0.01
  16681. }
  16682. },
  16683. side: {
  16684. height: math.unit(6, "feet"),
  16685. weight: math.unit(150, "lb"),
  16686. name: "Side",
  16687. image: {
  16688. source: "./media/characters/alluria/side.svg",
  16689. extra: 800 / 750,
  16690. }
  16691. },
  16692. back: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(150, "lb"),
  16695. name: "Back",
  16696. image: {
  16697. source: "./media/characters/alluria/back.svg",
  16698. extra: 806 / 738,
  16699. }
  16700. },
  16701. frontMaid: {
  16702. height: math.unit(6, "feet"),
  16703. weight: math.unit(150, "lb"),
  16704. name: "Front (Maid)",
  16705. image: {
  16706. source: "./media/characters/alluria/front-maid.svg",
  16707. extra: 806 / 738,
  16708. bottom: 0.01
  16709. }
  16710. },
  16711. sideMaid: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(150, "lb"),
  16714. name: "Side (Maid)",
  16715. image: {
  16716. source: "./media/characters/alluria/side-maid.svg",
  16717. extra: 800 / 750,
  16718. bottom: 0.005
  16719. }
  16720. },
  16721. backMaid: {
  16722. height: math.unit(6, "feet"),
  16723. weight: math.unit(150, "lb"),
  16724. name: "Back (Maid)",
  16725. image: {
  16726. source: "./media/characters/alluria/back-maid.svg",
  16727. extra: 806 / 738,
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Micro",
  16734. height: math.unit(6, "inches"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(6, "feet"),
  16744. weight: math.unit(150, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/kyle/front.svg",
  16748. extra: 1069 / 962,
  16749. bottom: 77.228 / 1727.45
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Macro",
  16756. height: math.unit(150, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(300, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/duncan/front.svg",
  16770. extra: 1650 / 1482,
  16771. bottom: 0.05
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Macro",
  16778. height: math.unit(100, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(5 + 4 / 12, "feet"),
  16788. weight: math.unit(220, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/memory/front.svg",
  16792. extra: 3641 / 3545,
  16793. bottom: 0.03
  16794. }
  16795. },
  16796. back: {
  16797. height: math.unit(5 + 4 / 12, "feet"),
  16798. weight: math.unit(220, "lb"),
  16799. name: "Back",
  16800. image: {
  16801. source: "./media/characters/memory/back.svg",
  16802. extra: 3641 / 3545,
  16803. bottom: 0.025
  16804. }
  16805. },
  16806. frontSkirt: {
  16807. height: math.unit(5 + 4 / 12, "feet"),
  16808. weight: math.unit(220, "lb"),
  16809. name: "Front (Skirt)",
  16810. image: {
  16811. source: "./media/characters/memory/front-skirt.svg",
  16812. extra: 3641 / 3545,
  16813. bottom: 0.03
  16814. }
  16815. },
  16816. frontDress: {
  16817. height: math.unit(5 + 4 / 12, "feet"),
  16818. weight: math.unit(220, "lb"),
  16819. name: "Front (Dress)",
  16820. image: {
  16821. source: "./media/characters/memory/front-dress.svg",
  16822. extra: 3641 / 3545,
  16823. bottom: 0.03
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Micro",
  16830. height: math.unit(6, "inches"),
  16831. default: true
  16832. },
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(5 + 4 / 12, "feet")
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(4 + 11 / 12, "feet"),
  16844. weight: math.unit(100, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/luno/front.svg",
  16848. extra: 1535 / 1487,
  16849. bottom: 0.03
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Micro",
  16856. height: math.unit(3, "inches")
  16857. },
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(4 + 11 / 12, "feet"),
  16861. default: true
  16862. },
  16863. {
  16864. name: "Macro",
  16865. height: math.unit(300, "feet")
  16866. },
  16867. {
  16868. name: "Megamacro",
  16869. height: math.unit(700, "miles")
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(6 + 2 / 12, "feet"),
  16878. weight: math.unit(170, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/jamesy/front.svg",
  16882. extra: 440 / 382,
  16883. bottom: 0.005
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Micro",
  16890. height: math.unit(3, "inches")
  16891. },
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 2 / 12, "feet"),
  16895. default: true
  16896. },
  16897. {
  16898. name: "Macro",
  16899. height: math.unit(300, "feet")
  16900. },
  16901. {
  16902. name: "Megamacro",
  16903. height: math.unit(700, "miles")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(6, "feet"),
  16912. weight: math.unit(160, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/mark/front.svg",
  16916. extra: 3300 / 3100,
  16917. bottom: 136.42 / 3440.47
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Macro",
  16924. height: math.unit(120, "meters")
  16925. },
  16926. {
  16927. name: "Bigger Macro",
  16928. height: math.unit(350, "meters")
  16929. },
  16930. {
  16931. name: "Megamacro",
  16932. height: math.unit(8, "km"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Continental",
  16937. height: math.unit(4550, "km")
  16938. },
  16939. {
  16940. name: "Planetary",
  16941. height: math.unit(65000, "km")
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(6, "feet"),
  16950. weight: math.unit(400, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/mac/front.svg",
  16954. extra: 1048 / 987.7,
  16955. bottom: 60 / 1107.6,
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Macro",
  16962. height: math.unit(500, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(5 + 2 / 12, "feet"),
  16972. weight: math.unit(190, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/bari/front.svg",
  16976. extra: 3156 / 2880,
  16977. bottom: 0.03
  16978. }
  16979. },
  16980. back: {
  16981. height: math.unit(5 + 2 / 12, "feet"),
  16982. weight: math.unit(190, "lb"),
  16983. name: "Back",
  16984. image: {
  16985. source: "./media/characters/bari/back.svg",
  16986. extra: 3260 / 2834,
  16987. bottom: 0.025
  16988. }
  16989. },
  16990. frontPlush: {
  16991. height: math.unit(5 + 2 / 12, "feet"),
  16992. weight: math.unit(190, "lb"),
  16993. name: "Front (Plush)",
  16994. image: {
  16995. source: "./media/characters/bari/front-plush.svg",
  16996. extra: 1112 / 1061,
  16997. bottom: 0.002
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Micro",
  17004. height: math.unit(3, "inches")
  17005. },
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5 + 2 / 12, "feet"),
  17009. default: true
  17010. },
  17011. {
  17012. name: "Macro",
  17013. height: math.unit(20, "feet")
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6 + 1 / 12, "feet"),
  17022. weight: math.unit(275, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/hunter-misha-raven/front.svg"
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Mortal",
  17032. height: math.unit(6 + 1 / 12, "feet")
  17033. },
  17034. {
  17035. name: "Divine",
  17036. height: math.unit(1.12134e34, "parsecs"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(6 + 3 / 12, "feet"),
  17046. weight: math.unit(220, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/max-calore/front.svg",
  17050. extra: 1700 / 1648,
  17051. bottom: 0.01
  17052. }
  17053. },
  17054. back: {
  17055. height: math.unit(6 + 3 / 12, "feet"),
  17056. weight: math.unit(220, "lb"),
  17057. name: "Back",
  17058. image: {
  17059. source: "./media/characters/max-calore/back.svg",
  17060. extra: 1700 / 1648,
  17061. bottom: 0.01
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(6 + 3 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17075. {
  17076. side: {
  17077. height: math.unit(2 + 8 / 12, "feet"),
  17078. weight: math.unit(99, "lb"),
  17079. name: "Side",
  17080. image: {
  17081. source: "./media/characters/aspen/side.svg",
  17082. extra: 152 / 138,
  17083. bottom: 0.032
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(2 + 8 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17097. {
  17098. side: {
  17099. height: math.unit(3 + 2 / 12, "feet"),
  17100. weight: math.unit(224, "lb"),
  17101. name: "Side",
  17102. image: {
  17103. source: "./media/characters/sheila-feral-wolf/side.svg",
  17104. extra: 179 / 166,
  17105. bottom: 0.03
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(3 + 2 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17119. {
  17120. side: {
  17121. height: math.unit(1 + 9 / 12, "feet"),
  17122. weight: math.unit(38, "lb"),
  17123. name: "Side",
  17124. image: {
  17125. source: "./media/characters/michelle/side.svg",
  17126. extra: 147 / 136.7,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(1 + 9 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(1 + 1 / 12, "feet"),
  17144. weight: math.unit(18, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/nino/front.svg"
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(1 + 1 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(1, "feet"),
  17164. weight: math.unit(16, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/viola/front.svg"
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(1, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6 + 5 / 12, "feet"),
  17184. weight: math.unit(580, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/atlas/front.svg",
  17188. extra: 298.5 / 290,
  17189. bottom: 0.015
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(6 + 5 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17203. {
  17204. side: {
  17205. height: math.unit(1 + 10 / 12, "feet"),
  17206. weight: math.unit(25, "lb"),
  17207. name: "Side",
  17208. image: {
  17209. source: "./media/characters/davy/side.svg",
  17210. extra: 200 / 170,
  17211. bottom: 0.01
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(1 + 10 / 12, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17225. {
  17226. side: {
  17227. height: math.unit(4 + 8 / 12, "feet"),
  17228. weight: math.unit(166, "lb"),
  17229. name: "Side",
  17230. image: {
  17231. source: "./media/characters/fiona/side.svg",
  17232. extra: 232 / 220,
  17233. bottom: 0.03
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(4 + 8 / 12, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17247. {
  17248. front: {
  17249. height: math.unit(2, "feet"),
  17250. weight: math.unit(62, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/lyla/front.svg",
  17254. bottom: 0.1
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(2, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17268. {
  17269. side: {
  17270. height: math.unit(1.8, "feet"),
  17271. weight: math.unit(44, "lb"),
  17272. name: "Side",
  17273. image: {
  17274. source: "./media/characters/perseus/side.svg",
  17275. bottom: 0.21
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(1.8, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17289. {
  17290. side: {
  17291. height: math.unit(4 + 2 / 12, "feet"),
  17292. weight: math.unit(20, "lb"),
  17293. name: "Side",
  17294. image: {
  17295. source: "./media/characters/remus/side.svg"
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(4 + 2 / 12, "feet"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(4 + 11 / 12, "feet"),
  17312. weight: math.unit(114, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/raf/front.svg",
  17316. extra: 1504/1339,
  17317. bottom: 26/1530
  17318. }
  17319. },
  17320. side: {
  17321. height: math.unit(4 + 11 / 12, "feet"),
  17322. weight: math.unit(114, "lb"),
  17323. name: "Side",
  17324. image: {
  17325. source: "./media/characters/raf/side.svg",
  17326. extra: 1466/1316,
  17327. bottom: 29/1495
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Micro",
  17334. height: math.unit(2, "inches")
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(4 + 11 / 12, "feet"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(70, "feet")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(1.5, "meters"),
  17352. weight: math.unit(68, "kg"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/liam-einarr/front.svg",
  17356. extra: 2822 / 2666
  17357. }
  17358. },
  17359. back: {
  17360. height: math.unit(1.5, "meters"),
  17361. weight: math.unit(68, "kg"),
  17362. name: "Back",
  17363. image: {
  17364. source: "./media/characters/liam-einarr/back.svg",
  17365. extra: 2822 / 2666,
  17366. bottom: 0.015
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(1.5, "meters"),
  17374. default: true
  17375. },
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(150, "meters")
  17379. },
  17380. {
  17381. name: "Megamacro",
  17382. height: math.unit(35, "km")
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(6, "feet"),
  17391. weight: math.unit(75, "kg"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/linda/front.svg",
  17395. extra: 930 / 874,
  17396. bottom: 0.004
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(6, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(6 + 8 / 12, "feet"),
  17413. weight: math.unit(220, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/caylex/front.svg",
  17417. extra: 821 / 772,
  17418. bottom: 0.07
  17419. }
  17420. },
  17421. back: {
  17422. height: math.unit(6 + 8 / 12, "feet"),
  17423. weight: math.unit(220, "lb"),
  17424. name: "Back",
  17425. image: {
  17426. source: "./media/characters/caylex/back.svg",
  17427. extra: 821 / 772,
  17428. bottom: 0.022
  17429. }
  17430. },
  17431. hand: {
  17432. height: math.unit(1.25, "feet"),
  17433. name: "Hand",
  17434. image: {
  17435. source: "./media/characters/caylex/hand.svg"
  17436. }
  17437. },
  17438. foot: {
  17439. height: math.unit(1.6, "feet"),
  17440. name: "Foot",
  17441. image: {
  17442. source: "./media/characters/caylex/foot.svg"
  17443. }
  17444. },
  17445. armored: {
  17446. height: math.unit(6 + 8 / 12, "feet"),
  17447. weight: math.unit(250, "lb"),
  17448. name: "Armored",
  17449. image: {
  17450. source: "./media/characters/caylex/armored.svg",
  17451. extra: 1420 / 1310,
  17452. bottom: 0.045
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(6 + 8 / 12, "feet"),
  17460. default: true
  17461. },
  17462. {
  17463. name: "Normal+",
  17464. height: math.unit(12, "feet")
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17470. {
  17471. front: {
  17472. height: math.unit(7 + 6 / 12, "feet"),
  17473. weight: math.unit(288, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/alana/front.svg",
  17477. extra: 679 / 653,
  17478. bottom: 22.5 / 701
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(7 + 6 / 12, "feet")
  17486. },
  17487. {
  17488. name: "Large",
  17489. height: math.unit(50, "feet")
  17490. },
  17491. {
  17492. name: "Macro",
  17493. height: math.unit(100, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Macro+",
  17498. height: math.unit(200, "feet")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(6 + 1 / 12, "feet"),
  17507. weight: math.unit(210, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/hasani/front.svg",
  17511. extra: 244 / 232,
  17512. bottom: 0.01
  17513. }
  17514. },
  17515. back: {
  17516. height: math.unit(6 + 1 / 12, "feet"),
  17517. weight: math.unit(210, "lb"),
  17518. name: "Back",
  17519. image: {
  17520. source: "./media/characters/hasani/back.svg",
  17521. extra: 244 / 232,
  17522. bottom: 0.01
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(6 + 1 / 12, "feet")
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(175, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(1.82, "meters"),
  17543. weight: math.unit(140, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/nita/front.svg",
  17547. extra: 2473 / 2363,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(1.82, "m")
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(300, "m")
  17560. },
  17561. {
  17562. name: "Mistake Canon",
  17563. height: math.unit(0.5, "miles"),
  17564. default: true
  17565. },
  17566. {
  17567. name: "Big Mistake",
  17568. height: math.unit(13, "miles")
  17569. },
  17570. {
  17571. name: "Playing God",
  17572. height: math.unit(2450, "miles")
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(4, "feet"),
  17581. weight: math.unit(120, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/shiriko/front.svg",
  17585. extra: 970/934,
  17586. bottom: 5/975
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(4, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(6, "feet"),
  17603. name: "front",
  17604. image: {
  17605. source: "./media/characters/deja/front.svg",
  17606. extra: 926 / 840,
  17607. bottom: 0.07
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Planck Length",
  17614. height: math.unit(1.6e-35, "meters")
  17615. },
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(30.48, "meters"),
  17619. default: true
  17620. },
  17621. {
  17622. name: "Universal",
  17623. height: math.unit(8.8e26, "meters")
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17629. {
  17630. side: {
  17631. height: math.unit(8, "feet"),
  17632. weight: math.unit(6300, "lb"),
  17633. name: "Side",
  17634. image: {
  17635. source: "./media/characters/anima/side.svg",
  17636. bottom: 0.035
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(8, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(8, "feet"),
  17653. weight: math.unit(350, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/bianca/front.svg",
  17657. extra: 234 / 225,
  17658. bottom: 0.03
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(8, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(6, "feet"),
  17675. weight: math.unit(150, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/adinia/front.svg",
  17679. extra: 1845 / 1672,
  17680. bottom: 0.02
  17681. }
  17682. },
  17683. back: {
  17684. height: math.unit(6, "feet"),
  17685. weight: math.unit(150, "lb"),
  17686. name: "Back",
  17687. image: {
  17688. source: "./media/characters/adinia/back.svg",
  17689. extra: 1845 / 1672,
  17690. bottom: 0.002
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(11 + 5 / 12, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(3, "meters"),
  17707. weight: math.unit(200, "kg"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/lykasa/front.svg",
  17711. extra: 1076 / 976,
  17712. bottom: 0.06
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(3, "meters")
  17720. },
  17721. {
  17722. name: "Kaiju",
  17723. height: math.unit(120, "meters"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Mega Kaiju",
  17728. height: math.unit(240, "km")
  17729. },
  17730. {
  17731. name: "Giga Kaiju",
  17732. height: math.unit(400, "megameters")
  17733. },
  17734. {
  17735. name: "Tera Kaiju",
  17736. height: math.unit(800, "gigameters")
  17737. },
  17738. {
  17739. name: "Kaiju Dragon Goddess",
  17740. height: math.unit(26, "zettaparsecs")
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17746. {
  17747. side: {
  17748. height: math.unit(283 / 124 * 6, "feet"),
  17749. weight: math.unit(35000, "lb"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/malfaren/side.svg",
  17753. extra: 2500 / 1010,
  17754. bottom: 0.01
  17755. }
  17756. },
  17757. front: {
  17758. height: math.unit(22.36, "feet"),
  17759. weight: math.unit(35000, "lb"),
  17760. name: "Front",
  17761. image: {
  17762. source: "./media/characters/malfaren/front.svg",
  17763. extra: 1631 / 1476,
  17764. bottom: 0.01
  17765. }
  17766. },
  17767. maw: {
  17768. height: math.unit(6.9, "feet"),
  17769. name: "Maw",
  17770. image: {
  17771. source: "./media/characters/malfaren/maw.svg"
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Big",
  17778. height: math.unit(283 / 162 * 6, "feet"),
  17779. },
  17780. {
  17781. name: "Bigger",
  17782. height: math.unit(283 / 124 * 6, "feet")
  17783. },
  17784. {
  17785. name: "Massive",
  17786. height: math.unit(283 / 92 * 6, "feet"),
  17787. default: true
  17788. },
  17789. {
  17790. name: "👀💦",
  17791. height: math.unit(283 / 73 * 6, "feet"),
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17797. {
  17798. front: {
  17799. height: math.unit(1.7, "m"),
  17800. weight: math.unit(70, "kg"),
  17801. name: "Front",
  17802. image: {
  17803. source: "./media/characters/kernel/front.svg",
  17804. extra: 222 / 210,
  17805. bottom: 0.007
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Nano",
  17812. height: math.unit(17, "micrometers")
  17813. },
  17814. {
  17815. name: "Micro",
  17816. height: math.unit(1.7, "mm")
  17817. },
  17818. {
  17819. name: "Small",
  17820. height: math.unit(1.7, "cm")
  17821. },
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(1.7, "m"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(1.75, "meters"),
  17834. weight: math.unit(65, "kg"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/jayne-folest/front.svg",
  17838. extra: 2115 / 2007,
  17839. bottom: 0.02
  17840. }
  17841. },
  17842. back: {
  17843. height: math.unit(1.75, "meters"),
  17844. weight: math.unit(65, "kg"),
  17845. name: "Back",
  17846. image: {
  17847. source: "./media/characters/jayne-folest/back.svg",
  17848. extra: 2115 / 2007,
  17849. bottom: 0.005
  17850. }
  17851. },
  17852. frontClothed: {
  17853. height: math.unit(1.75, "meters"),
  17854. weight: math.unit(65, "kg"),
  17855. name: "Front (Clothed)",
  17856. image: {
  17857. source: "./media/characters/jayne-folest/front-clothed.svg",
  17858. extra: 2115 / 2007,
  17859. bottom: 0.035
  17860. }
  17861. },
  17862. hand: {
  17863. height: math.unit(1 / 1.260, "feet"),
  17864. name: "Hand",
  17865. image: {
  17866. source: "./media/characters/jayne-folest/hand.svg"
  17867. }
  17868. },
  17869. foot: {
  17870. height: math.unit(1 / 0.918, "feet"),
  17871. name: "Foot",
  17872. image: {
  17873. source: "./media/characters/jayne-folest/foot.svg"
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Micro",
  17880. height: math.unit(4, "cm")
  17881. },
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(1.75, "meters")
  17885. },
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(47.5, "meters"),
  17889. default: true
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(180, "cm"),
  17898. weight: math.unit(70, "kg"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/algier/front.svg",
  17902. extra: 596 / 572,
  17903. bottom: 0.04
  17904. }
  17905. },
  17906. back: {
  17907. height: math.unit(180, "cm"),
  17908. weight: math.unit(70, "kg"),
  17909. name: "Back",
  17910. image: {
  17911. source: "./media/characters/algier/back.svg",
  17912. extra: 596 / 572,
  17913. bottom: 0.025
  17914. }
  17915. },
  17916. frontdressed: {
  17917. height: math.unit(180, "cm"),
  17918. weight: math.unit(150, "kg"),
  17919. name: "Front-dressed",
  17920. image: {
  17921. source: "./media/characters/algier/front-dressed.svg",
  17922. extra: 596 / 572,
  17923. bottom: 0.038
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Micro",
  17930. height: math.unit(5, "cm")
  17931. },
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(180, "cm"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(64, "m")
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17945. {
  17946. upright: {
  17947. height: math.unit(7, "feet"),
  17948. weight: math.unit(300, "lb"),
  17949. name: "Upright",
  17950. image: {
  17951. source: "./media/characters/pretzel/upright.svg",
  17952. extra: 534 / 522,
  17953. bottom: 0.065
  17954. }
  17955. },
  17956. sprawling: {
  17957. height: math.unit(3.75, "feet"),
  17958. weight: math.unit(300, "lb"),
  17959. name: "Sprawling",
  17960. image: {
  17961. source: "./media/characters/pretzel/sprawling.svg",
  17962. extra: 314 / 281,
  17963. bottom: 0.1
  17964. }
  17965. },
  17966. tongue: {
  17967. height: math.unit(2, "feet"),
  17968. name: "Tongue",
  17969. image: {
  17970. source: "./media/characters/pretzel/tongue.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(7, "feet"),
  17978. default: true
  17979. },
  17980. {
  17981. name: "Oversized",
  17982. height: math.unit(15, "feet")
  17983. },
  17984. {
  17985. name: "Huge",
  17986. height: math.unit(30, "feet")
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(250, "feet")
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17996. {
  17997. sideFront: {
  17998. height: math.unit(5 + 2 / 12, "feet"),
  17999. weight: math.unit(120, "lb"),
  18000. name: "Front Side",
  18001. image: {
  18002. source: "./media/characters/roxi/side-front.svg",
  18003. extra: 2924 / 2717,
  18004. bottom: 0.08
  18005. }
  18006. },
  18007. sideBack: {
  18008. height: math.unit(5 + 2 / 12, "feet"),
  18009. weight: math.unit(120, "lb"),
  18010. name: "Back Side",
  18011. image: {
  18012. source: "./media/characters/roxi/side-back.svg",
  18013. extra: 2904 / 2693,
  18014. bottom: 0.06
  18015. }
  18016. },
  18017. front: {
  18018. height: math.unit(5 + 2 / 12, "feet"),
  18019. weight: math.unit(120, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/roxi/front.svg",
  18023. extra: 2028 / 1907,
  18024. bottom: 0.01
  18025. }
  18026. },
  18027. frontAlt: {
  18028. height: math.unit(5 + 2 / 12, "feet"),
  18029. weight: math.unit(120, "lb"),
  18030. name: "Front (Alt)",
  18031. image: {
  18032. source: "./media/characters/roxi/front-alt.svg",
  18033. extra: 1828 / 1798,
  18034. bottom: 0.01
  18035. }
  18036. },
  18037. sitting: {
  18038. height: math.unit(2.8, "feet"),
  18039. weight: math.unit(120, "lb"),
  18040. name: "Sitting",
  18041. image: {
  18042. source: "./media/characters/roxi/sitting.svg",
  18043. extra: 2660 / 2462,
  18044. bottom: 0.1
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Normal",
  18051. height: math.unit(5 + 2 / 12, "feet"),
  18052. default: true
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18058. {
  18059. side: {
  18060. height: math.unit(55, "feet"),
  18061. weight: math.unit(153, "tons"),
  18062. name: "Side",
  18063. image: {
  18064. source: "./media/characters/shadow/side.svg",
  18065. extra: 701 / 628,
  18066. bottom: 0.02
  18067. }
  18068. },
  18069. flying: {
  18070. height: math.unit(145, "feet"),
  18071. weight: math.unit(153, "tons"),
  18072. name: "Flying",
  18073. image: {
  18074. source: "./media/characters/shadow/flying.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(55, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(200, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/marcie/front.svg",
  18095. extra: 960 / 876,
  18096. bottom: 58 / 1017.87
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Macro",
  18103. height: math.unit(1, "mile"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(7, "feet"),
  18113. weight: math.unit(200, "lb"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/kachina/front.svg",
  18117. extra: 1290.68 / 1119,
  18118. bottom: 36.5 / 1327.18
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(7, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18132. {
  18133. looking: {
  18134. height: math.unit(2, "meters"),
  18135. weight: math.unit(300, "kg"),
  18136. name: "Looking",
  18137. image: {
  18138. source: "./media/characters/kash/looking.svg",
  18139. extra: 474 / 344,
  18140. bottom: 0.03
  18141. }
  18142. },
  18143. side: {
  18144. height: math.unit(2, "meters"),
  18145. weight: math.unit(300, "kg"),
  18146. name: "Side",
  18147. image: {
  18148. source: "./media/characters/kash/side.svg",
  18149. extra: 302 / 251,
  18150. bottom: 0.03
  18151. }
  18152. },
  18153. front: {
  18154. height: math.unit(2, "meters"),
  18155. weight: math.unit(300, "kg"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/kash/front.svg",
  18159. extra: 495 / 360,
  18160. bottom: 0.015
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(2, "meters"),
  18168. default: true
  18169. },
  18170. {
  18171. name: "Big",
  18172. height: math.unit(3, "meters")
  18173. },
  18174. {
  18175. name: "Large",
  18176. height: math.unit(5, "meters")
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18182. {
  18183. feeding: {
  18184. height: math.unit(6.7, "feet"),
  18185. weight: math.unit(350, "lb"),
  18186. name: "Feeding",
  18187. image: {
  18188. source: "./media/characters/lalim/feeding.svg",
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(6.7, "feet"),
  18196. default: true
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(9.5, "feet"),
  18205. weight: math.unit(600, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/de'vout/front.svg",
  18209. extra: 1443 / 1328,
  18210. bottom: 0.025
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(9.5, "feet"),
  18215. weight: math.unit(600, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/de'vout/back.svg",
  18219. extra: 1443 / 1328
  18220. }
  18221. },
  18222. frontDressed: {
  18223. height: math.unit(9.5, "feet"),
  18224. weight: math.unit(600, "lb"),
  18225. name: "Front (Dressed",
  18226. image: {
  18227. source: "./media/characters/de'vout/front-dressed.svg",
  18228. extra: 1443 / 1328,
  18229. bottom: 0.025
  18230. }
  18231. },
  18232. backDressed: {
  18233. height: math.unit(9.5, "feet"),
  18234. weight: math.unit(600, "lb"),
  18235. name: "Back (Dressed",
  18236. image: {
  18237. source: "./media/characters/de'vout/back-dressed.svg",
  18238. extra: 1443 / 1328
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(9.5, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(8, "feet"),
  18255. weight: math.unit(225, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/talana/front.svg",
  18259. extra: 1410 / 1300,
  18260. bottom: 0.015
  18261. }
  18262. },
  18263. frontDressed: {
  18264. height: math.unit(8, "feet"),
  18265. weight: math.unit(225, "lb"),
  18266. name: "Front (Dressed",
  18267. image: {
  18268. source: "./media/characters/talana/front-dressed.svg",
  18269. extra: 1410 / 1300,
  18270. bottom: 0.015
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(8, "feet"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18284. {
  18285. side: {
  18286. height: math.unit(7.2, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Side",
  18289. image: {
  18290. source: "./media/characters/xeauvok/side.svg",
  18291. extra: 1975 / 1523,
  18292. bottom: 0.07
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(7.2, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18306. {
  18307. side: {
  18308. height: math.unit(10, "feet"),
  18309. weight: math.unit(900, "kg"),
  18310. name: "Side",
  18311. image: {
  18312. source: "./media/characters/zara/side.svg",
  18313. extra: 504 / 498
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(10, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18327. {
  18328. side: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(150, "lb"),
  18331. name: "Side",
  18332. image: {
  18333. source: "./media/characters/richard-dragon/side.svg",
  18334. extra: 845 / 340,
  18335. bottom: 0.017
  18336. }
  18337. },
  18338. maw: {
  18339. height: math.unit(2.97, "feet"),
  18340. name: "Maw",
  18341. image: {
  18342. source: "./media/characters/richard-dragon/maw.svg"
  18343. }
  18344. },
  18345. },
  18346. [
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18351. {
  18352. front: {
  18353. height: math.unit(4, "feet"),
  18354. weight: math.unit(100, "lb"),
  18355. name: "Front",
  18356. image: {
  18357. source: "./media/characters/richard-smeargle/front.svg",
  18358. extra: 2952 / 2820,
  18359. bottom: 0.028
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(4, "feet"),
  18367. default: true
  18368. },
  18369. {
  18370. name: "Dynamax",
  18371. height: math.unit(20, "meters")
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(6, "feet"),
  18380. weight: math.unit(110, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/klay/front.svg",
  18384. extra: 962 / 883,
  18385. bottom: 0.04
  18386. }
  18387. },
  18388. back: {
  18389. height: math.unit(6, "feet"),
  18390. weight: math.unit(110, "lb"),
  18391. name: "Back",
  18392. image: {
  18393. source: "./media/characters/klay/back.svg",
  18394. extra: 962 / 883
  18395. }
  18396. },
  18397. beans: {
  18398. height: math.unit(1.15, "feet"),
  18399. name: "Beans",
  18400. image: {
  18401. source: "./media/characters/klay/beans.svg"
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Micro",
  18408. height: math.unit(6, "inches")
  18409. },
  18410. {
  18411. name: "Mini",
  18412. height: math.unit(3, "feet")
  18413. },
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(6, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Big",
  18421. height: math.unit(25, "feet")
  18422. },
  18423. {
  18424. name: "Macro",
  18425. height: math.unit(100, "feet")
  18426. },
  18427. {
  18428. name: "Megamacro",
  18429. height: math.unit(400, "feet")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(6, "feet"),
  18438. weight: math.unit(160, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/marcus/front.svg",
  18442. extra: 734 / 676,
  18443. bottom: 0.03
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Little",
  18450. height: math.unit(6, "feet")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(110, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(250, "feet")
  18460. },
  18461. {
  18462. name: "Megamacro",
  18463. height: math.unit(1000, "feet")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(7, "feet"),
  18472. weight: math.unit(275, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/claude-delroute/front.svg",
  18476. extra: 230 / 214,
  18477. bottom: 0.007
  18478. }
  18479. },
  18480. side: {
  18481. height: math.unit(7, "feet"),
  18482. weight: math.unit(275, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/claude-delroute/side.svg",
  18486. extra: 222 / 214,
  18487. bottom: 0.01
  18488. }
  18489. },
  18490. back: {
  18491. height: math.unit(7, "feet"),
  18492. weight: math.unit(275, "lb"),
  18493. name: "Back",
  18494. image: {
  18495. source: "./media/characters/claude-delroute/back.svg",
  18496. extra: 230 / 214,
  18497. bottom: 0.015
  18498. }
  18499. },
  18500. maw: {
  18501. height: math.unit(0.6407, "meters"),
  18502. name: "Maw",
  18503. image: {
  18504. source: "./media/characters/claude-delroute/maw.svg"
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(7, "feet"),
  18512. default: true
  18513. },
  18514. {
  18515. name: "Lorge",
  18516. height: math.unit(20, "feet")
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(8 + 4 / 12, "feet"),
  18525. weight: math.unit(600, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/dragonien/front.svg",
  18529. extra: 100 / 94,
  18530. bottom: 3.3 / 103.3445
  18531. }
  18532. },
  18533. back: {
  18534. height: math.unit(8 + 4 / 12, "feet"),
  18535. weight: math.unit(600, "lb"),
  18536. name: "Back",
  18537. image: {
  18538. source: "./media/characters/dragonien/back.svg",
  18539. extra: 776 / 746,
  18540. bottom: 6.4 / 782.0616
  18541. }
  18542. },
  18543. foot: {
  18544. height: math.unit(1.54, "feet"),
  18545. name: "Foot",
  18546. image: {
  18547. source: "./media/characters/dragonien/foot.svg",
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(8 + 4 / 12, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "Macro",
  18559. height: math.unit(200, "feet")
  18560. },
  18561. {
  18562. name: "Megamacro",
  18563. height: math.unit(1, "mile")
  18564. },
  18565. {
  18566. name: "Gigamacro",
  18567. height: math.unit(1000, "miles")
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18573. {
  18574. front: {
  18575. height: math.unit(5 + 2 / 12, "feet"),
  18576. weight: math.unit(110, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/desta/front.svg",
  18580. extra: 767 / 726,
  18581. bottom: 11.7 / 779
  18582. }
  18583. },
  18584. back: {
  18585. height: math.unit(5 + 2 / 12, "feet"),
  18586. weight: math.unit(110, "lb"),
  18587. name: "Back",
  18588. image: {
  18589. source: "./media/characters/desta/back.svg",
  18590. extra: 777 / 728,
  18591. bottom: 6 / 784
  18592. }
  18593. },
  18594. frontAlt: {
  18595. height: math.unit(5 + 2 / 12, "feet"),
  18596. weight: math.unit(110, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/desta/front-alt.svg",
  18600. extra: 1482 / 1417
  18601. }
  18602. },
  18603. side: {
  18604. height: math.unit(5 + 2 / 12, "feet"),
  18605. weight: math.unit(110, "lb"),
  18606. name: "Side",
  18607. image: {
  18608. source: "./media/characters/desta/side.svg",
  18609. extra: 2579 / 2491,
  18610. bottom: 0.053
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Micro",
  18617. height: math.unit(6, "inches")
  18618. },
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(5 + 2 / 12, "feet"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(62, "feet")
  18627. },
  18628. {
  18629. name: "Megamacro",
  18630. height: math.unit(1800, "feet")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(10, "feet"),
  18639. weight: math.unit(700, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/storm-alystar/front.svg",
  18643. extra: 2112 / 1898,
  18644. bottom: 0.034
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Micro",
  18651. height: math.unit(3.5, "inches")
  18652. },
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(10, "feet"),
  18656. default: true
  18657. },
  18658. {
  18659. name: "Macro",
  18660. height: math.unit(400, "feet")
  18661. },
  18662. {
  18663. name: "Deific",
  18664. height: math.unit(60, "miles")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(2.35, "meters"),
  18673. weight: math.unit(119, "kg"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/ilia/front.svg",
  18677. extra: 1285 / 1255,
  18678. bottom: 0.06
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(2.35, "meters")
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(140, "meters"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "Megamacro",
  18694. height: math.unit(100, "miles")
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(6 + 5 / 12, "feet"),
  18703. weight: math.unit(190, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/kingdead/front.svg",
  18707. extra: 1228 / 1177
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Micro",
  18714. height: math.unit(7, "inches")
  18715. },
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6 + 5 / 12, "feet")
  18719. },
  18720. {
  18721. name: "Macro",
  18722. height: math.unit(150, "feet"),
  18723. default: true
  18724. },
  18725. {
  18726. name: "Megamacro",
  18727. height: math.unit(200, "miles")
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(8, "feet"),
  18736. weight: math.unit(600, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/kyrehx/front.svg",
  18740. extra: 1195 / 1095,
  18741. bottom: 0.034
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Micro",
  18748. height: math.unit(2, "inches")
  18749. },
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(8, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(255, "feet")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18766. weight: math.unit(184, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/xang/front.svg",
  18770. extra: 845 / 755
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18778. default: true
  18779. },
  18780. {
  18781. name: "Macro",
  18782. height: math.unit(0.935 * 146, "feet")
  18783. },
  18784. {
  18785. name: "Megamacro",
  18786. height: math.unit(0.935 * 3, "miles")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18792. {
  18793. frontDressed: {
  18794. height: math.unit(5 + 7 / 12, "feet"),
  18795. weight: math.unit(140, "lb"),
  18796. name: "Front (Dressed)",
  18797. image: {
  18798. source: "./media/characters/doc-weardno/front-dressed.svg",
  18799. extra: 263 / 234
  18800. }
  18801. },
  18802. backDressed: {
  18803. height: math.unit(5 + 7 / 12, "feet"),
  18804. weight: math.unit(140, "lb"),
  18805. name: "Back (Dressed)",
  18806. image: {
  18807. source: "./media/characters/doc-weardno/back-dressed.svg",
  18808. extra: 266 / 238
  18809. }
  18810. },
  18811. front: {
  18812. height: math.unit(5 + 7 / 12, "feet"),
  18813. weight: math.unit(140, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/doc-weardno/front.svg",
  18817. extra: 254 / 233
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Micro",
  18824. height: math.unit(3, "inches")
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 7 / 12, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(25, "feet")
  18834. },
  18835. {
  18836. name: "Megamacro",
  18837. height: math.unit(2, "miles")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6 + 2 / 12, "feet"),
  18846. weight: math.unit(153, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/seth-whilst/front.svg",
  18850. bottom: 0.07
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Micro",
  18857. height: math.unit(5, "inches")
  18858. },
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(6 + 2 / 12, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(3, "inches"),
  18871. weight: math.unit(8, "grams"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/pocket-jabari/front.svg",
  18875. extra: 1024 / 974,
  18876. bottom: 0.039
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Minimicro",
  18883. height: math.unit(8, "mm")
  18884. },
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(3, "inches"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(3, "feet")
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(15, "feet"),
  18901. weight: math.unit(3280, "lb"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/sapphy/front.svg",
  18905. extra: 671 / 577,
  18906. bottom: 0.085
  18907. }
  18908. },
  18909. back: {
  18910. height: math.unit(15, "feet"),
  18911. weight: math.unit(3280, "lb"),
  18912. name: "Back",
  18913. image: {
  18914. source: "./media/characters/sapphy/back.svg",
  18915. extra: 631 / 607,
  18916. bottom: 0.045
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(15, "feet")
  18924. },
  18925. {
  18926. name: "Casual Macro",
  18927. height: math.unit(120, "feet")
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(2150, "feet"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Megamacro",
  18936. height: math.unit(8, "miles")
  18937. },
  18938. {
  18939. name: "Galaxy Mom",
  18940. height: math.unit(6, "megalightyears")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6, "feet"),
  18949. weight: math.unit(170, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/kiro/front.svg",
  18953. extra: 1064 / 1012,
  18954. bottom: 0.052
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Micro",
  18961. height: math.unit(6, "inches")
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(72, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(5 + 9 / 12, "feet"),
  18979. weight: math.unit(175, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/irishfox/front.svg",
  18983. extra: 1912 / 1680,
  18984. bottom: 0.02
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Nano",
  18991. height: math.unit(1, "mm")
  18992. },
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(2, "inches")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 9 / 12, "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(45, "feet")
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(6 + 1 / 12, "feet"),
  19013. weight: math.unit(75, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/aronai-sieyes/front.svg",
  19017. extra: 1556 / 1480,
  19018. bottom: 0.015
  19019. }
  19020. },
  19021. side: {
  19022. height: math.unit(6 + 1 / 12, "feet"),
  19023. weight: math.unit(75, "lb"),
  19024. name: "Side",
  19025. image: {
  19026. source: "./media/characters/aronai-sieyes/side.svg",
  19027. extra: 1433 / 1390,
  19028. bottom: 0.0393
  19029. }
  19030. },
  19031. back: {
  19032. height: math.unit(6 + 1 / 12, "feet"),
  19033. weight: math.unit(75, "lb"),
  19034. name: "Back",
  19035. image: {
  19036. source: "./media/characters/aronai-sieyes/back.svg",
  19037. extra: 1544 / 1494,
  19038. bottom: 0.02
  19039. }
  19040. },
  19041. frontClothed: {
  19042. height: math.unit(6 + 1 / 12, "feet"),
  19043. weight: math.unit(75, "lb"),
  19044. name: "Front (Clothed)",
  19045. image: {
  19046. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  19047. extra: 1582 / 1527
  19048. }
  19049. },
  19050. feral: {
  19051. height: math.unit(18, "feet"),
  19052. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19053. name: "Feral",
  19054. image: {
  19055. source: "./media/characters/aronai-sieyes/feral.svg",
  19056. extra: 1530 / 1240,
  19057. bottom: 0.035
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Micro",
  19064. height: math.unit(2, "inches")
  19065. },
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. default: true
  19070. }
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(12, "feet"),
  19078. weight: math.unit(410, "kg"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/xuna/front.svg",
  19082. extra: 2184 / 1980
  19083. }
  19084. },
  19085. side: {
  19086. height: math.unit(12, "feet"),
  19087. weight: math.unit(410, "kg"),
  19088. name: "Side",
  19089. image: {
  19090. source: "./media/characters/xuna/side.svg",
  19091. extra: 2184 / 1980
  19092. }
  19093. },
  19094. back: {
  19095. height: math.unit(12, "feet"),
  19096. weight: math.unit(410, "kg"),
  19097. name: "Back",
  19098. image: {
  19099. source: "./media/characters/xuna/back.svg",
  19100. extra: 2184 / 1980
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Nano glow",
  19107. height: math.unit(10, "nm")
  19108. },
  19109. {
  19110. name: "Micro floof",
  19111. height: math.unit(0.3, "m")
  19112. },
  19113. {
  19114. name: "Huggable softy boi",
  19115. height: math.unit(3.6576, "m"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Admirable floof",
  19120. height: math.unit(80, "meters")
  19121. },
  19122. {
  19123. name: "Gentle macro",
  19124. height: math.unit(300, "meters")
  19125. },
  19126. {
  19127. name: "Very careful floof",
  19128. height: math.unit(3200, "meters")
  19129. },
  19130. {
  19131. name: "The mega floof",
  19132. height: math.unit(36000, "meters")
  19133. },
  19134. {
  19135. name: "Giga-fur-Wicker",
  19136. height: math.unit(4800000, "meters")
  19137. },
  19138. {
  19139. name: "Licky world",
  19140. height: math.unit(20000000, "meters")
  19141. },
  19142. {
  19143. name: "Floofy cyan sun",
  19144. height: math.unit(1500000000, "meters")
  19145. },
  19146. {
  19147. name: "Milky Wicker",
  19148. height: math.unit(1000000000000000000000, "meters")
  19149. },
  19150. {
  19151. name: "The observing Wicker",
  19152. height: math.unit(999999999999999999999999999, "meters")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(5 + 9 / 12, "feet"),
  19161. weight: math.unit(150, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/arokha-sieyes/front.svg",
  19165. extra: 1425 / 1284,
  19166. bottom: 0.05
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(5 + 9 / 12, "feet")
  19174. },
  19175. {
  19176. name: "Macro",
  19177. height: math.unit(30, "meters"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(6, "feet"),
  19187. weight: math.unit(180, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/arokh-sieyes/front.svg",
  19191. extra: 1830 / 1769,
  19192. bottom: 0.01
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(6, "feet")
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(30, "meters"),
  19204. default: true
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19210. {
  19211. side: {
  19212. height: math.unit(13 + 1 / 12, "feet"),
  19213. weight: math.unit(8.5, "tonnes"),
  19214. name: "Side",
  19215. image: {
  19216. source: "./media/characters/goldeneye/side.svg",
  19217. extra: 1182 / 778,
  19218. bottom: 0.067
  19219. }
  19220. },
  19221. paw: {
  19222. height: math.unit(3.4, "feet"),
  19223. name: "Paw",
  19224. image: {
  19225. source: "./media/characters/goldeneye/paw.svg"
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(13 + 1 / 12, "feet"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19239. {
  19240. front: {
  19241. height: math.unit(6 + 1 / 12, "feet"),
  19242. weight: math.unit(210, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/leonardo-lycheborne/front.svg",
  19246. extra: 776/723,
  19247. bottom: 34/810
  19248. }
  19249. },
  19250. side: {
  19251. height: math.unit(6 + 1 / 12, "feet"),
  19252. weight: math.unit(210, "lb"),
  19253. name: "Side",
  19254. image: {
  19255. source: "./media/characters/leonardo-lycheborne/side.svg",
  19256. extra: 780/728,
  19257. bottom: 12/792
  19258. }
  19259. },
  19260. back: {
  19261. height: math.unit(6 + 1 / 12, "feet"),
  19262. weight: math.unit(210, "lb"),
  19263. name: "Back",
  19264. image: {
  19265. source: "./media/characters/leonardo-lycheborne/back.svg",
  19266. extra: 775/721,
  19267. bottom: 17/792
  19268. }
  19269. },
  19270. hand: {
  19271. height: math.unit(1.08, "feet"),
  19272. name: "Hand",
  19273. image: {
  19274. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19275. }
  19276. },
  19277. foot: {
  19278. height: math.unit(1.32, "feet"),
  19279. name: "Foot",
  19280. image: {
  19281. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19282. }
  19283. },
  19284. maw: {
  19285. height: math.unit(1, "feet"),
  19286. name: "Maw",
  19287. image: {
  19288. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19289. }
  19290. },
  19291. were: {
  19292. height: math.unit(20, "feet"),
  19293. weight: math.unit(7800, "lb"),
  19294. name: "Were",
  19295. image: {
  19296. source: "./media/characters/leonardo-lycheborne/were.svg",
  19297. extra: 1224/1165,
  19298. bottom: 72/1296
  19299. }
  19300. },
  19301. feral: {
  19302. height: math.unit(7.5, "feet"),
  19303. weight: math.unit(600, "lb"),
  19304. name: "Feral",
  19305. image: {
  19306. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19307. extra: 797/702,
  19308. bottom: 139/936
  19309. }
  19310. },
  19311. taur: {
  19312. height: math.unit(11, "feet"),
  19313. weight: math.unit(3300, "lb"),
  19314. name: "Taur",
  19315. image: {
  19316. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19317. extra: 1271/1197,
  19318. bottom: 47/1318
  19319. }
  19320. },
  19321. barghest: {
  19322. height: math.unit(11, "feet"),
  19323. weight: math.unit(1300, "lb"),
  19324. name: "Barghest",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19327. extra: 1291/1204,
  19328. bottom: 37/1328
  19329. }
  19330. },
  19331. dick: {
  19332. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19333. name: "Dick",
  19334. image: {
  19335. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19336. }
  19337. },
  19338. dickWere: {
  19339. height: math.unit((20) / 3.8, "feet"),
  19340. name: "Dick (Were)",
  19341. image: {
  19342. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(6 + 1 / 12, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(10, "feet"),
  19359. weight: math.unit(350, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/jet/front.svg",
  19363. extra: 2050 / 1980,
  19364. bottom: 0.013
  19365. }
  19366. },
  19367. back: {
  19368. height: math.unit(10, "feet"),
  19369. weight: math.unit(350, "lb"),
  19370. name: "Back",
  19371. image: {
  19372. source: "./media/characters/jet/back.svg",
  19373. extra: 2050 / 1980,
  19374. bottom: 0.013
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Micro",
  19381. height: math.unit(6, "inches")
  19382. },
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(10, "feet"),
  19386. default: true
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(100, "feet")
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(15, "feet"),
  19399. weight: math.unit(2800, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/tanarath/front.svg",
  19403. extra: 2392 / 2220,
  19404. bottom: 0.03
  19405. }
  19406. },
  19407. back: {
  19408. height: math.unit(15, "feet"),
  19409. weight: math.unit(2800, "lb"),
  19410. name: "Back",
  19411. image: {
  19412. source: "./media/characters/tanarath/back.svg",
  19413. extra: 2392 / 2220,
  19414. bottom: 0.03
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(15, "feet"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19428. {
  19429. front: {
  19430. height: math.unit(7 + 1 / 12, "feet"),
  19431. weight: math.unit(175, "lb"),
  19432. name: "Front",
  19433. image: {
  19434. source: "./media/characters/patty-cattybatty/front.svg",
  19435. extra: 908 / 874,
  19436. bottom: 0.025
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Micro",
  19443. height: math.unit(1, "inch")
  19444. },
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(7 + 1 / 12, "feet")
  19448. },
  19449. {
  19450. name: "Mini Macro",
  19451. height: math.unit(155, "feet")
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(1077, "feet")
  19456. },
  19457. {
  19458. name: "Mega Macro",
  19459. height: math.unit(47650, "feet"),
  19460. default: true
  19461. },
  19462. {
  19463. name: "Giga Macro",
  19464. height: math.unit(440, "miles")
  19465. },
  19466. {
  19467. name: "Tera Macro",
  19468. height: math.unit(8700, "miles")
  19469. },
  19470. {
  19471. name: "Planetary Macro",
  19472. height: math.unit(32700, "miles")
  19473. },
  19474. {
  19475. name: "Solar Macro",
  19476. height: math.unit(550000, "miles")
  19477. },
  19478. {
  19479. name: "Celestial Macro",
  19480. height: math.unit(2.5, "AU")
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(4 + 5 / 12, "feet"),
  19489. weight: math.unit(90, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/cappu/front.svg",
  19493. extra: 1247 / 1152,
  19494. bottom: 0.012
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(4 + 5 / 12, "feet"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19508. {
  19509. frontDressed: {
  19510. height: math.unit(70, "cm"),
  19511. weight: math.unit(6, "kg"),
  19512. name: "Front (Dressed)",
  19513. image: {
  19514. source: "./media/characters/sebi/front-dressed.svg",
  19515. extra: 713.5 / 686.5,
  19516. bottom: 0.003
  19517. }
  19518. },
  19519. front: {
  19520. height: math.unit(70, "cm"),
  19521. weight: math.unit(5, "kg"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/sebi/front.svg",
  19525. extra: 713.5 / 686.5,
  19526. bottom: 0.003
  19527. }
  19528. }
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(70, "cm"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(8, "meters")
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(6, "feet"),
  19547. weight: math.unit(150, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/typhek/front.svg",
  19551. extra: 1948 / 1929,
  19552. bottom: 0.025
  19553. }
  19554. },
  19555. side: {
  19556. height: math.unit(6, "feet"),
  19557. weight: math.unit(150, "lb"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/typhek/side.svg",
  19561. extra: 2034 / 2010,
  19562. bottom: 0.003
  19563. }
  19564. },
  19565. back: {
  19566. height: math.unit(6, "feet"),
  19567. weight: math.unit(150, "lb"),
  19568. name: "Back",
  19569. image: {
  19570. source: "./media/characters/typhek/back.svg",
  19571. extra: 2005 / 1978,
  19572. bottom: 0.004
  19573. }
  19574. },
  19575. palm: {
  19576. height: math.unit(1.2, "feet"),
  19577. name: "Palm",
  19578. image: {
  19579. source: "./media/characters/typhek/palm.svg"
  19580. }
  19581. },
  19582. fist: {
  19583. height: math.unit(1.1, "feet"),
  19584. name: "Fist",
  19585. image: {
  19586. source: "./media/characters/typhek/fist.svg"
  19587. }
  19588. },
  19589. foot: {
  19590. height: math.unit(1.57, "feet"),
  19591. name: "Foot",
  19592. image: {
  19593. source: "./media/characters/typhek/foot.svg"
  19594. }
  19595. },
  19596. sole: {
  19597. height: math.unit(2.05, "feet"),
  19598. name: "Sole",
  19599. image: {
  19600. source: "./media/characters/typhek/sole.svg"
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Macro",
  19607. height: math.unit(40, "stories"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Megamacro",
  19612. height: math.unit(1, "mile")
  19613. },
  19614. {
  19615. name: "Gigamacro",
  19616. height: math.unit(4000, "solarradii")
  19617. },
  19618. {
  19619. name: "Universal",
  19620. height: math.unit(1.1, "universes")
  19621. }
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19626. {
  19627. side: {
  19628. height: math.unit(5 + 7 / 12, "feet"),
  19629. weight: math.unit(150, "lb"),
  19630. name: "Side",
  19631. image: {
  19632. source: "./media/characters/kassy/side.svg",
  19633. extra: 1280 / 1225,
  19634. bottom: 0.002
  19635. }
  19636. },
  19637. front: {
  19638. height: math.unit(5 + 7 / 12, "feet"),
  19639. weight: math.unit(150, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kassy/front.svg",
  19643. extra: 1280 / 1225,
  19644. bottom: 0.025
  19645. }
  19646. },
  19647. back: {
  19648. height: math.unit(5 + 7 / 12, "feet"),
  19649. weight: math.unit(150, "lb"),
  19650. name: "Back",
  19651. image: {
  19652. source: "./media/characters/kassy/back.svg",
  19653. extra: 1280 / 1225,
  19654. bottom: 0.002
  19655. }
  19656. },
  19657. foot: {
  19658. height: math.unit(1.266, "feet"),
  19659. name: "Foot",
  19660. image: {
  19661. source: "./media/characters/kassy/foot.svg"
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(5 + 7 / 12, "feet")
  19669. },
  19670. {
  19671. name: "Macro",
  19672. height: math.unit(137, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Megamacro",
  19677. height: math.unit(1, "mile")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(6 + 1 / 12, "feet"),
  19686. weight: math.unit(200, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/neil/front.svg",
  19690. extra: 1326 / 1250,
  19691. bottom: 0.023
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(6 + 1 / 12, "feet"),
  19699. default: true
  19700. },
  19701. {
  19702. name: "Macro",
  19703. height: math.unit(200, "feet")
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(5 + 9 / 12, "feet"),
  19712. weight: math.unit(190, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/atticus/front.svg",
  19716. extra: 2934 / 2785,
  19717. bottom: 0.025
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(5 + 9 / 12, "feet"),
  19725. default: true
  19726. },
  19727. {
  19728. name: "Macro",
  19729. height: math.unit(180, "feet")
  19730. },
  19731. ]
  19732. ))
  19733. characterMakers.push(() => makeCharacter(
  19734. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19735. {
  19736. side: {
  19737. height: math.unit(9, "feet"),
  19738. weight: math.unit(650, "lb"),
  19739. name: "Side",
  19740. image: {
  19741. source: "./media/characters/milo/side.svg",
  19742. extra: 2644 / 2310,
  19743. bottom: 0.032
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(9, "feet"),
  19751. default: true
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(300, "feet")
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19761. {
  19762. side: {
  19763. height: math.unit(8, "meters"),
  19764. weight: math.unit(90000, "kg"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/ijzer/side.svg",
  19768. extra: 2756 / 1600,
  19769. bottom: 0.01
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Small",
  19776. height: math.unit(3, "meters")
  19777. },
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(8, "meters"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Normal+",
  19785. height: math.unit(10, "meters")
  19786. },
  19787. {
  19788. name: "Bigger",
  19789. height: math.unit(24, "meters")
  19790. },
  19791. {
  19792. name: "Huge",
  19793. height: math.unit(80, "meters")
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(6 + 2 / 12, "feet"),
  19802. weight: math.unit(153, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/luca-cervicum/front.svg",
  19806. extra: 370 / 327,
  19807. bottom: 0.015
  19808. }
  19809. },
  19810. back: {
  19811. height: math.unit(6 + 2 / 12, "feet"),
  19812. weight: math.unit(153, "lb"),
  19813. name: "Back",
  19814. image: {
  19815. source: "./media/characters/luca-cervicum/back.svg",
  19816. extra: 367 / 333,
  19817. bottom: 0.005
  19818. }
  19819. },
  19820. frontGear: {
  19821. height: math.unit(6 + 2 / 12, "feet"),
  19822. weight: math.unit(173, "lb"),
  19823. name: "Front (Gear)",
  19824. image: {
  19825. source: "./media/characters/luca-cervicum/front-gear.svg",
  19826. extra: 377 / 333,
  19827. bottom: 0.006
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(6 + 2 / 12, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(6 + 1 / 12, "feet"),
  19844. weight: math.unit(304, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/oliver/front.svg",
  19848. extra: 157 / 143,
  19849. bottom: 0.08
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(6 + 1 / 12, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(5 + 7 / 12, "feet"),
  19866. weight: math.unit(140, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/shane/front.svg",
  19870. extra: 304 / 289,
  19871. bottom: 0.005
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(5 + 7 / 12, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19885. {
  19886. front: {
  19887. height: math.unit(5 + 9 / 12, "feet"),
  19888. weight: math.unit(178, "lb"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/shin/front.svg",
  19892. extra: 159 / 151,
  19893. bottom: 0.015
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(5 + 9 / 12, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(5 + 10 / 12, "feet"),
  19910. weight: math.unit(168, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/xerxes/front.svg",
  19914. extra: 282 / 260,
  19915. bottom: 0.045
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 10 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(6 + 7 / 12, "feet"),
  19932. weight: math.unit(208, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/chaska/front.svg",
  19936. extra: 332 / 319,
  19937. bottom: 0.015
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(6 + 7 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(5 + 8 / 12, "feet"),
  19954. weight: math.unit(208, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/enuk/front.svg",
  19958. extra: 437 / 406,
  19959. bottom: 0.02
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(5 + 8 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(5 + 10 / 12, "feet"),
  19976. weight: math.unit(252, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/bruun/front.svg",
  19980. extra: 197 / 187,
  19981. bottom: 0.012
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 10 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(6 + 10 / 12, "feet"),
  19998. weight: math.unit(255, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/alexeev/front.svg",
  20002. extra: 213 / 200,
  20003. bottom: 0.05
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(6 + 10 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(2 + 8 / 12, "feet"),
  20020. weight: math.unit(22, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/evelyn/front.svg",
  20024. extra: 208 / 180
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(2 + 8 / 12, "feet"),
  20032. default: true
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(5 + 9 / 12, "feet"),
  20041. weight: math.unit(139, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/inca/front.svg",
  20045. extra: 294 / 291,
  20046. bottom: 0.03
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(5 + 9 / 12, "feet"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(5 + 1 / 12, "feet"),
  20063. weight: math.unit(84, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/magdalene/front.svg",
  20067. extra: 293 / 273
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(5 + 1 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(6 + 3 / 12, "feet"),
  20084. weight: math.unit(185, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/mera/front.svg",
  20088. extra: 291 / 277,
  20089. bottom: 0.03
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(6 + 3 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(6 + 7 / 12, "feet"),
  20106. weight: math.unit(160, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/ceres/front.svg",
  20110. extra: 1023 / 950,
  20111. bottom: 0.027
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(6 + 7 / 12, "feet"),
  20116. weight: math.unit(160, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/ceres/back.svg",
  20120. extra: 1023 / 950
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(6 + 7 / 12, "feet"),
  20128. default: true
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20134. {
  20135. front: {
  20136. height: math.unit(5 + 10 / 12, "feet"),
  20137. weight: math.unit(150, "lb"),
  20138. name: "Front",
  20139. image: {
  20140. source: "./media/characters/kris/front.svg",
  20141. extra: 885 / 803,
  20142. bottom: 0.03
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(5 + 10 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(7, "feet"),
  20159. weight: math.unit(120, "kg"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/taluthus/front.svg",
  20163. extra: 903 / 833,
  20164. bottom: 0.015
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(7, "feet"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(300, "feet")
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(5 + 9 / 12, "feet"),
  20185. weight: math.unit(145, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/dawn/front.svg",
  20189. extra: 2094 / 2016,
  20190. bottom: 0.025
  20191. }
  20192. },
  20193. back: {
  20194. height: math.unit(5 + 9 / 12, "feet"),
  20195. weight: math.unit(160, "lb"),
  20196. name: "Back",
  20197. image: {
  20198. source: "./media/characters/dawn/back.svg",
  20199. extra: 2112 / 2080,
  20200. bottom: 0.005
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(6 + 7 / 12, "feet"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20214. {
  20215. anthro: {
  20216. height: math.unit(8 + 3 / 12, "feet"),
  20217. weight: math.unit(450, "lb"),
  20218. name: "Anthro",
  20219. image: {
  20220. source: "./media/characters/arador/anthro.svg",
  20221. extra: 1835 / 1718,
  20222. bottom: 0.025
  20223. }
  20224. },
  20225. feral: {
  20226. height: math.unit(4, "feet"),
  20227. weight: math.unit(200, "lb"),
  20228. name: "Feral",
  20229. image: {
  20230. source: "./media/characters/arador/feral.svg",
  20231. extra: 1683 / 1514,
  20232. bottom: 0.07
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(8 + 3 / 12, "feet")
  20240. },
  20241. {
  20242. name: "Macro",
  20243. height: math.unit(82.5, "feet"),
  20244. default: true
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(5 + 10 / 12, "feet"),
  20253. weight: math.unit(125, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/dharsi/front.svg",
  20257. extra: 716 / 630,
  20258. bottom: 0.035
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Nano",
  20265. height: math.unit(100, "nm")
  20266. },
  20267. {
  20268. name: "Micro",
  20269. height: math.unit(2, "inches")
  20270. },
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 10 / 12, "feet"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(1000, "feet")
  20279. },
  20280. {
  20281. name: "Megamacro",
  20282. height: math.unit(10, "miles")
  20283. },
  20284. {
  20285. name: "Gigamacro",
  20286. height: math.unit(3000, "miles")
  20287. },
  20288. {
  20289. name: "Teramacro",
  20290. height: math.unit(500000, "miles")
  20291. },
  20292. {
  20293. name: "Teramacro+",
  20294. height: math.unit(30, "galaxies")
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(6, "feet"),
  20303. weight: math.unit(150, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/deathy/front.svg",
  20307. extra: 1552 / 1463,
  20308. bottom: 0.025
  20309. }
  20310. },
  20311. side: {
  20312. height: math.unit(6, "feet"),
  20313. weight: math.unit(150, "lb"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/deathy/side.svg",
  20317. extra: 1604 / 1455,
  20318. bottom: 0.025
  20319. }
  20320. },
  20321. back: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(150, "lb"),
  20324. name: "Back",
  20325. image: {
  20326. source: "./media/characters/deathy/back.svg",
  20327. extra: 1580 / 1463,
  20328. bottom: 0.005
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Micro",
  20335. height: math.unit(5, "millimeters")
  20336. },
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(6 + 5 / 12, "feet"),
  20340. default: true
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20346. {
  20347. front: {
  20348. height: math.unit(16, "feet"),
  20349. weight: math.unit(4000, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/juniper/front.svg",
  20353. bottom: 0.04
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(16, "feet"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20367. {
  20368. front: {
  20369. height: math.unit(6, "feet"),
  20370. weight: math.unit(150, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/hipster/front.svg",
  20374. extra: 1312 / 1209,
  20375. bottom: 0.025
  20376. }
  20377. },
  20378. back: {
  20379. height: math.unit(6, "feet"),
  20380. weight: math.unit(150, "lb"),
  20381. name: "Back",
  20382. image: {
  20383. source: "./media/characters/hipster/back.svg",
  20384. extra: 1281 / 1196,
  20385. bottom: 0.01
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Micro",
  20392. height: math.unit(1, "mm")
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(4, "inches"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(500, "feet")
  20402. },
  20403. {
  20404. name: "Megamacro",
  20405. height: math.unit(1000, "miles")
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20411. {
  20412. front: {
  20413. height: math.unit(6, "feet"),
  20414. weight: math.unit(150, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/tendirmuldr/front.svg",
  20418. extra: 1878 / 1772,
  20419. bottom: 0.015
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Megamacro",
  20426. height: math.unit(1500, "miles"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20433. {
  20434. front: {
  20435. height: math.unit(14, "feet"),
  20436. weight: math.unit(12000, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/mort/front.svg",
  20440. extra: 365 / 318,
  20441. bottom: 0.01
  20442. }
  20443. },
  20444. side: {
  20445. height: math.unit(14, "feet"),
  20446. weight: math.unit(12000, "lb"),
  20447. name: "Side",
  20448. image: {
  20449. source: "./media/characters/mort/side.svg",
  20450. extra: 365 / 318,
  20451. bottom: 0.052
  20452. },
  20453. default: true
  20454. },
  20455. back: {
  20456. height: math.unit(14, "feet"),
  20457. weight: math.unit(12000, "lb"),
  20458. name: "Back",
  20459. image: {
  20460. source: "./media/characters/mort/back.svg",
  20461. extra: 371 / 332,
  20462. bottom: 0.18
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(14, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20476. {
  20477. front: {
  20478. height: math.unit(8, "feet"),
  20479. weight: math.unit(1, "ton"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/lycoa/front.svg",
  20483. extra: 1875 / 1789,
  20484. bottom: 0.022
  20485. }
  20486. },
  20487. back: {
  20488. height: math.unit(8, "feet"),
  20489. weight: math.unit(1, "ton"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/lycoa/back.svg",
  20493. extra: 1835 / 1781,
  20494. bottom: 0.03
  20495. }
  20496. },
  20497. head: {
  20498. height: math.unit(2.1, "feet"),
  20499. name: "Head",
  20500. image: {
  20501. source: "./media/characters/lycoa/head.svg"
  20502. }
  20503. },
  20504. tailmaw: {
  20505. height: math.unit(1.9, "feet"),
  20506. name: "Tailmaw",
  20507. image: {
  20508. source: "./media/characters/lycoa/tailmaw.svg"
  20509. }
  20510. },
  20511. tentacles: {
  20512. height: math.unit(2.1, "feet"),
  20513. name: "Tentacles",
  20514. image: {
  20515. source: "./media/characters/lycoa/tentacles.svg"
  20516. }
  20517. },
  20518. dick: {
  20519. height: math.unit(1.73, "feet"),
  20520. name: "Dick",
  20521. image: {
  20522. source: "./media/characters/lycoa/dick.svg"
  20523. }
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Normal",
  20529. height: math.unit(8, "feet"),
  20530. default: true
  20531. },
  20532. {
  20533. name: "Macro",
  20534. height: math.unit(30, "feet")
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20540. {
  20541. front: {
  20542. height: math.unit(4 + 2 / 12, "feet"),
  20543. weight: math.unit(70, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/naldara/front.svg",
  20547. extra: 841 / 720,
  20548. bottom: 0.04
  20549. }
  20550. },
  20551. naga: {
  20552. height: math.unit(23, "feet"),
  20553. weight: math.unit(15000, "kg"),
  20554. name: "Naga",
  20555. image: {
  20556. source: "./media/characters/naldara/naga.svg",
  20557. extra: 3290 / 2959,
  20558. bottom: 124 / 3432
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(4 + 2 / 12, "feet"),
  20566. default: true
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(13 + 7 / 12, "feet"),
  20575. weight: math.unit(1500, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/briar/front.svg",
  20579. extra: 626 / 596,
  20580. bottom: 0.08
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(13 + 7 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20594. {
  20595. side: {
  20596. height: math.unit(10, "feet"),
  20597. weight: math.unit(500, "lb"),
  20598. name: "Side",
  20599. image: {
  20600. source: "./media/characters/vanguard/side.svg",
  20601. extra: 502 / 425,
  20602. bottom: 0.087
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(10, "feet"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20616. {
  20617. front: {
  20618. height: math.unit(7.5, "feet"),
  20619. weight: math.unit(2, "lb"),
  20620. name: "Front",
  20621. image: {
  20622. source: "./media/characters/artemis/front.svg",
  20623. extra: 1192 / 1075,
  20624. bottom: 0.07
  20625. }
  20626. },
  20627. frontNsfw: {
  20628. height: math.unit(7.5, "feet"),
  20629. weight: math.unit(2, "lb"),
  20630. name: "Front (NSFW)",
  20631. image: {
  20632. source: "./media/characters/artemis/front-nsfw.svg",
  20633. extra: 1192 / 1075,
  20634. bottom: 0.07
  20635. }
  20636. },
  20637. frontNsfwer: {
  20638. height: math.unit(7.5, "feet"),
  20639. weight: math.unit(2, "lb"),
  20640. name: "Front (NSFW-er)",
  20641. image: {
  20642. source: "./media/characters/artemis/front-nsfwer.svg",
  20643. extra: 1192 / 1075,
  20644. bottom: 0.07
  20645. }
  20646. },
  20647. side: {
  20648. height: math.unit(7.5, "feet"),
  20649. weight: math.unit(2, "lb"),
  20650. name: "Side",
  20651. image: {
  20652. source: "./media/characters/artemis/side.svg",
  20653. extra: 1192 / 1075,
  20654. bottom: 0.07
  20655. }
  20656. },
  20657. sideNsfw: {
  20658. height: math.unit(7.5, "feet"),
  20659. weight: math.unit(2, "lb"),
  20660. name: "Side (NSFW)",
  20661. image: {
  20662. source: "./media/characters/artemis/side-nsfw.svg",
  20663. extra: 1192 / 1075,
  20664. bottom: 0.07
  20665. }
  20666. },
  20667. sideNsfwer: {
  20668. height: math.unit(7.5, "feet"),
  20669. weight: math.unit(2, "lb"),
  20670. name: "Side (NSFW-er)",
  20671. image: {
  20672. source: "./media/characters/artemis/side-nsfwer.svg",
  20673. extra: 1192 / 1075,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. maw: {
  20678. height: math.unit(1.1, "feet"),
  20679. name: "Maw",
  20680. image: {
  20681. source: "./media/characters/artemis/maw.svg"
  20682. }
  20683. },
  20684. stomach: {
  20685. height: math.unit(0.95, "feet"),
  20686. name: "Stomach",
  20687. image: {
  20688. source: "./media/characters/artemis/stomach.svg"
  20689. }
  20690. },
  20691. dickCanine: {
  20692. height: math.unit(1, "feet"),
  20693. name: "Dick (Canine)",
  20694. image: {
  20695. source: "./media/characters/artemis/dick-canine.svg"
  20696. }
  20697. },
  20698. dickEquine: {
  20699. height: math.unit(0.85, "feet"),
  20700. name: "Dick (Equine)",
  20701. image: {
  20702. source: "./media/characters/artemis/dick-equine.svg"
  20703. }
  20704. },
  20705. dickExotic: {
  20706. height: math.unit(0.85, "feet"),
  20707. name: "Dick (Exotic)",
  20708. image: {
  20709. source: "./media/characters/artemis/dick-exotic.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(7.5, "feet"),
  20717. default: true
  20718. },
  20719. {
  20720. name: "Enlarged",
  20721. height: math.unit(12, "feet")
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 3 / 12, "feet"),
  20730. weight: math.unit(160, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/kira/front.svg",
  20734. extra: 906 / 786,
  20735. bottom: 0.01
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(5 + 3 / 12, "feet"),
  20740. weight: math.unit(160, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/kira/back.svg",
  20744. extra: 882 / 757,
  20745. bottom: 0.005
  20746. }
  20747. },
  20748. frontDressed: {
  20749. height: math.unit(5 + 3 / 12, "feet"),
  20750. weight: math.unit(160, "lb"),
  20751. name: "Front (Dressed)",
  20752. image: {
  20753. source: "./media/characters/kira/front-dressed.svg",
  20754. extra: 906 / 786,
  20755. bottom: 0.01
  20756. }
  20757. },
  20758. beans: {
  20759. height: math.unit(0.92, "feet"),
  20760. name: "Beans",
  20761. image: {
  20762. source: "./media/characters/kira/beans.svg"
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(5 + 3 / 12, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(5 + 4 / 12, "feet"),
  20779. weight: math.unit(145, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/scramble/front.svg",
  20783. extra: 763 / 727,
  20784. bottom: 0.05
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(5 + 4 / 12, "feet"),
  20789. weight: math.unit(145, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/scramble/back.svg",
  20793. extra: 826 / 737,
  20794. bottom: 0.002
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 4 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20808. {
  20809. side: {
  20810. height: math.unit(6 + 2 / 12, "feet"),
  20811. weight: math.unit(190, "lb"),
  20812. name: "Side",
  20813. image: {
  20814. source: "./media/characters/biscuit/side.svg",
  20815. extra: 858 / 791,
  20816. bottom: 0.044
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(6 + 2 / 12, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(5 + 2 / 12, "feet"),
  20833. weight: math.unit(120, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/poffin/front.svg",
  20837. extra: 786 / 680,
  20838. bottom: 0.005
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(5 + 2 / 12, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(6 + 3 / 12, "feet"),
  20855. weight: math.unit(519, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/dhari/front.svg",
  20859. extra: 1048 / 946,
  20860. bottom: 0.015
  20861. }
  20862. },
  20863. back: {
  20864. height: math.unit(6 + 3 / 12, "feet"),
  20865. weight: math.unit(519, "lb"),
  20866. name: "Back",
  20867. image: {
  20868. source: "./media/characters/dhari/back.svg",
  20869. extra: 1048 / 931,
  20870. bottom: 0.005
  20871. }
  20872. },
  20873. frontDressed: {
  20874. height: math.unit(6 + 3 / 12, "feet"),
  20875. weight: math.unit(519, "lb"),
  20876. name: "Front (Dressed)",
  20877. image: {
  20878. source: "./media/characters/dhari/front-dressed.svg",
  20879. extra: 1713 / 1546,
  20880. bottom: 0.02
  20881. }
  20882. },
  20883. backDressed: {
  20884. height: math.unit(6 + 3 / 12, "feet"),
  20885. weight: math.unit(519, "lb"),
  20886. name: "Back (Dressed)",
  20887. image: {
  20888. source: "./media/characters/dhari/back-dressed.svg",
  20889. extra: 1699 / 1537,
  20890. bottom: 0.01
  20891. }
  20892. },
  20893. maw: {
  20894. height: math.unit(0.95, "feet"),
  20895. name: "Maw",
  20896. image: {
  20897. source: "./media/characters/dhari/maw.svg"
  20898. }
  20899. },
  20900. wereFront: {
  20901. height: math.unit(12 + 8 / 12, "feet"),
  20902. weight: math.unit(4000, "lb"),
  20903. name: "Front (Were)",
  20904. image: {
  20905. source: "./media/characters/dhari/were-front.svg",
  20906. extra: 1065 / 969,
  20907. bottom: 0.015
  20908. }
  20909. },
  20910. wereBack: {
  20911. height: math.unit(12 + 8 / 12, "feet"),
  20912. weight: math.unit(4000, "lb"),
  20913. name: "Back (Were)",
  20914. image: {
  20915. source: "./media/characters/dhari/were-back.svg",
  20916. extra: 1065 / 969,
  20917. bottom: 0.012
  20918. }
  20919. },
  20920. wereMaw: {
  20921. height: math.unit(0.625, "meters"),
  20922. name: "Maw (Were)",
  20923. image: {
  20924. source: "./media/characters/dhari/were-maw.svg"
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(6 + 3 / 12, "feet"),
  20932. default: true
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20938. {
  20939. anthro: {
  20940. height: math.unit(5 + 7 / 12, "feet"),
  20941. weight: math.unit(175, "lb"),
  20942. name: "Anthro",
  20943. image: {
  20944. source: "./media/characters/rena-dyne/anthro.svg",
  20945. extra: 1849 / 1785,
  20946. bottom: 0.005
  20947. }
  20948. },
  20949. taur: {
  20950. height: math.unit(15 + 6 / 12, "feet"),
  20951. weight: math.unit(8000, "lb"),
  20952. name: "Taur",
  20953. image: {
  20954. source: "./media/characters/rena-dyne/taur.svg",
  20955. extra: 2315 / 2234,
  20956. bottom: 0.033
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(5 + 7 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(8, "feet"),
  20973. weight: math.unit(600, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/weremeep/front.svg",
  20977. extra: 967 / 862,
  20978. bottom: 0.01
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(8, "feet"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Lorg",
  20990. height: math.unit(12, "feet")
  20991. },
  20992. {
  20993. name: "Oh Lawd She Comin'",
  20994. height: math.unit(20, "feet")
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21000. {
  21001. front: {
  21002. height: math.unit(4, "feet"),
  21003. weight: math.unit(90, "lb"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/reza/front.svg",
  21007. extra: 1183 / 1111,
  21008. bottom: 0.017
  21009. }
  21010. },
  21011. back: {
  21012. height: math.unit(4, "feet"),
  21013. weight: math.unit(90, "lb"),
  21014. name: "Back",
  21015. image: {
  21016. source: "./media/characters/reza/back.svg",
  21017. extra: 1183 / 1111,
  21018. bottom: 0.01
  21019. }
  21020. },
  21021. drake: {
  21022. height: math.unit(30, "feet"),
  21023. weight: math.unit(246960, "lb"),
  21024. name: "Drake",
  21025. image: {
  21026. source: "./media/characters/reza/drake.svg",
  21027. extra: 2350 / 2024,
  21028. bottom: 60.7 / 2403
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(4, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21042. {
  21043. side: {
  21044. height: math.unit(15, "feet"),
  21045. weight: math.unit(14, "tons"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/athea/side.svg",
  21049. extra: 960 / 540,
  21050. bottom: 0.003
  21051. }
  21052. },
  21053. sitting: {
  21054. height: math.unit(6 * 2.85, "feet"),
  21055. weight: math.unit(14, "tons"),
  21056. name: "Sitting",
  21057. image: {
  21058. source: "./media/characters/athea/sitting.svg",
  21059. extra: 621 / 581,
  21060. bottom: 0.075
  21061. }
  21062. },
  21063. maw: {
  21064. height: math.unit(7.59498031496063, "feet"),
  21065. name: "Maw",
  21066. image: {
  21067. source: "./media/characters/athea/maw.svg"
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Lap Cat",
  21074. height: math.unit(2.5, "feet")
  21075. },
  21076. {
  21077. name: "Minimacro",
  21078. height: math.unit(15, "feet"),
  21079. default: true
  21080. },
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(120, "feet")
  21084. },
  21085. {
  21086. name: "Macro+",
  21087. height: math.unit(640, "feet")
  21088. },
  21089. {
  21090. name: "Colossus",
  21091. height: math.unit(2.2, "miles")
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21097. {
  21098. front: {
  21099. height: math.unit(8 + 8 / 12, "feet"),
  21100. weight: math.unit(130, "kg"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/seroko/front.svg",
  21104. extra: 1385 / 1280,
  21105. bottom: 0.025
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(8 + 8 / 12, "feet"),
  21110. weight: math.unit(130, "kg"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/seroko/back.svg",
  21114. extra: 1369 / 1238,
  21115. bottom: 0.018
  21116. }
  21117. },
  21118. frontDressed: {
  21119. height: math.unit(8 + 8 / 12, "feet"),
  21120. weight: math.unit(130, "kg"),
  21121. name: "Front (Dressed)",
  21122. image: {
  21123. source: "./media/characters/seroko/front-dressed.svg",
  21124. extra: 1366 / 1275,
  21125. bottom: 0.03
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(8 + 8 / 12, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(5.5, "feet"),
  21142. weight: math.unit(160, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/quatzi/front.svg",
  21146. extra: 2346 / 2242,
  21147. bottom: 0.015
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(5.5, "feet"),
  21155. default: true
  21156. },
  21157. {
  21158. name: "Big",
  21159. height: math.unit(7.7, "feet")
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21165. {
  21166. front: {
  21167. height: math.unit(5 + 11 / 12, "feet"),
  21168. weight: math.unit(180, "lb"),
  21169. name: "Front",
  21170. image: {
  21171. source: "./media/characters/sen/front.svg",
  21172. extra: 1321 / 1254,
  21173. bottom: 0.015
  21174. }
  21175. },
  21176. side: {
  21177. height: math.unit(5 + 11 / 12, "feet"),
  21178. weight: math.unit(180, "lb"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/sen/side.svg",
  21182. extra: 1321 / 1254,
  21183. bottom: 0.007
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(5 + 11 / 12, "feet"),
  21188. weight: math.unit(180, "lb"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/sen/back.svg",
  21192. extra: 1321 / 1254
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(5 + 11 / 12, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(166.6, "cm"),
  21209. weight: math.unit(66.6, "kg"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/fruity/front.svg",
  21213. extra: 1510 / 1386,
  21214. bottom: 0.04
  21215. }
  21216. },
  21217. back: {
  21218. height: math.unit(166.6, "cm"),
  21219. weight: math.unit(66.6, "lb"),
  21220. name: "Back",
  21221. image: {
  21222. source: "./media/characters/fruity/back.svg",
  21223. extra: 1563 / 1435,
  21224. bottom: 0.005
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(166.6, "cm"),
  21232. default: true
  21233. },
  21234. {
  21235. name: "Demonic",
  21236. height: math.unit(166.6, "feet")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21242. {
  21243. side: {
  21244. height: math.unit(10, "feet"),
  21245. weight: math.unit(500, "lb"),
  21246. name: "Side",
  21247. image: {
  21248. source: "./media/characters/zost/side.svg",
  21249. extra: 966 / 880,
  21250. bottom: 0.075
  21251. }
  21252. },
  21253. mawFront: {
  21254. height: math.unit(1.08, "meters"),
  21255. name: "Maw (Front)",
  21256. image: {
  21257. source: "./media/characters/zost/maw-front.svg"
  21258. }
  21259. },
  21260. mawSide: {
  21261. height: math.unit(2.66, "feet"),
  21262. name: "Maw (Side)",
  21263. image: {
  21264. source: "./media/characters/zost/maw-side.svg"
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(10, "feet"),
  21272. default: true
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21278. {
  21279. front: {
  21280. height: math.unit(5 + 4 / 12, "feet"),
  21281. weight: math.unit(120, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/luci/front.svg",
  21285. extra: 1985 / 1884,
  21286. bottom: 0.04
  21287. }
  21288. },
  21289. back: {
  21290. height: math.unit(5 + 4 / 12, "feet"),
  21291. weight: math.unit(120, "lb"),
  21292. name: "Back",
  21293. image: {
  21294. source: "./media/characters/luci/back.svg",
  21295. extra: 1892 / 1791,
  21296. bottom: 0.002
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(5 + 4 / 12, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(1500, "feet"),
  21313. weight: math.unit(3.8e6, "tons"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/2th/front.svg",
  21317. extra: 3489 / 3350,
  21318. bottom: 0.1
  21319. }
  21320. },
  21321. foot: {
  21322. height: math.unit(461, "feet"),
  21323. name: "Foot",
  21324. image: {
  21325. source: "./media/characters/2th/foot.svg"
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "\"Micro\"",
  21332. height: math.unit(15 + 7 / 12, "feet")
  21333. },
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(1500, "feet"),
  21337. default: true
  21338. },
  21339. {
  21340. name: "Macro",
  21341. height: math.unit(5000, "feet")
  21342. },
  21343. {
  21344. name: "Megamacro",
  21345. height: math.unit(15, "miles")
  21346. },
  21347. {
  21348. name: "Gigamacro",
  21349. height: math.unit(4000, "miles")
  21350. },
  21351. {
  21352. name: "Galactic",
  21353. height: math.unit(50, "AU")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(5 + 6 / 12, "feet"),
  21362. weight: math.unit(220, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/amethyst/front.svg",
  21366. extra: 2078 / 2040,
  21367. bottom: 0.045
  21368. }
  21369. },
  21370. back: {
  21371. height: math.unit(5 + 6 / 12, "feet"),
  21372. weight: math.unit(220, "lb"),
  21373. name: "Back",
  21374. image: {
  21375. source: "./media/characters/amethyst/back.svg",
  21376. extra: 2021 / 1989,
  21377. bottom: 0.02
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(5 + 6 / 12, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(4 + 11 / 12, "feet"),
  21394. weight: math.unit(120, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/yumi-akiyama/front.svg",
  21398. extra: 1327 / 1235,
  21399. bottom: 0.02
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(4 + 11 / 12, "feet"),
  21404. weight: math.unit(120, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/yumi-akiyama/back.svg",
  21408. extra: 1287 / 1245,
  21409. bottom: 0.002
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Galactic",
  21416. height: math.unit(50, "galaxies"),
  21417. default: true
  21418. },
  21419. {
  21420. name: "Universal",
  21421. height: math.unit(100, "universes")
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(8, "feet"),
  21430. weight: math.unit(500, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/rifter-yrmori/front.svg",
  21434. extra: 1180 / 1125,
  21435. bottom: 0.02
  21436. }
  21437. },
  21438. back: {
  21439. height: math.unit(8, "feet"),
  21440. weight: math.unit(500, "lb"),
  21441. name: "Back",
  21442. image: {
  21443. source: "./media/characters/rifter-yrmori/back.svg",
  21444. extra: 1190 / 1145,
  21445. bottom: 0.001
  21446. }
  21447. },
  21448. wings: {
  21449. height: math.unit(7.75, "feet"),
  21450. weight: math.unit(500, "lb"),
  21451. name: "Wings",
  21452. image: {
  21453. source: "./media/characters/rifter-yrmori/wings.svg",
  21454. extra: 1357 / 1285
  21455. }
  21456. },
  21457. maw: {
  21458. height: math.unit(0.8, "feet"),
  21459. name: "Maw",
  21460. image: {
  21461. source: "./media/characters/rifter-yrmori/maw.svg"
  21462. }
  21463. },
  21464. mawfront: {
  21465. height: math.unit(1.45, "feet"),
  21466. name: "Maw (Front)",
  21467. image: {
  21468. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(8, "feet"),
  21476. default: true
  21477. },
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(42, "meters")
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21486. {
  21487. were: {
  21488. height: math.unit(25 + 6 / 12, "feet"),
  21489. weight: math.unit(10000, "lb"),
  21490. name: "Were",
  21491. image: {
  21492. source: "./media/characters/tahajin/were.svg",
  21493. extra: 801 / 770,
  21494. bottom: 0.042
  21495. }
  21496. },
  21497. aquatic: {
  21498. height: math.unit(6 + 4 / 12, "feet"),
  21499. weight: math.unit(160, "lb"),
  21500. name: "Aquatic",
  21501. image: {
  21502. source: "./media/characters/tahajin/aquatic.svg",
  21503. extra: 572 / 542,
  21504. bottom: 0.04
  21505. }
  21506. },
  21507. chow: {
  21508. height: math.unit(8 + 11 / 12, "feet"),
  21509. weight: math.unit(450, "lb"),
  21510. name: "Chow",
  21511. image: {
  21512. source: "./media/characters/tahajin/chow.svg",
  21513. extra: 660 / 640,
  21514. bottom: 0.015
  21515. }
  21516. },
  21517. demiNaga: {
  21518. height: math.unit(6 + 8 / 12, "feet"),
  21519. weight: math.unit(300, "lb"),
  21520. name: "Demi Naga",
  21521. image: {
  21522. source: "./media/characters/tahajin/demi-naga.svg",
  21523. extra: 643 / 615,
  21524. bottom: 0.1
  21525. }
  21526. },
  21527. data: {
  21528. height: math.unit(5, "inches"),
  21529. weight: math.unit(0.1, "lb"),
  21530. name: "Data",
  21531. image: {
  21532. source: "./media/characters/tahajin/data.svg"
  21533. }
  21534. },
  21535. fluu: {
  21536. height: math.unit(5 + 7 / 12, "feet"),
  21537. weight: math.unit(140, "lb"),
  21538. name: "Fluu",
  21539. image: {
  21540. source: "./media/characters/tahajin/fluu.svg",
  21541. extra: 628 / 592,
  21542. bottom: 0.02
  21543. }
  21544. },
  21545. starWarrior: {
  21546. height: math.unit(4 + 5 / 12, "feet"),
  21547. weight: math.unit(50, "lb"),
  21548. name: "Star Warrior",
  21549. image: {
  21550. source: "./media/characters/tahajin/star-warrior.svg"
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(25 + 6 / 12, "feet"),
  21558. default: true
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(8, "feet"),
  21567. weight: math.unit(350, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/gabira/front.svg",
  21571. extra: 608 / 580,
  21572. bottom: 0.03
  21573. }
  21574. },
  21575. back: {
  21576. height: math.unit(8, "feet"),
  21577. weight: math.unit(350, "lb"),
  21578. name: "Back",
  21579. image: {
  21580. source: "./media/characters/gabira/back.svg",
  21581. extra: 608 / 580,
  21582. bottom: 0.03
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(8, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5 + 3 / 12, "feet"),
  21599. weight: math.unit(137, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/sasha-katraine/front.svg",
  21603. bottom: 0.045
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Micro",
  21610. height: math.unit(5, "inches")
  21611. },
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(5 + 3 / 12, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21621. {
  21622. side: {
  21623. height: math.unit(4, "inches"),
  21624. weight: math.unit(200, "grams"),
  21625. name: "Side",
  21626. image: {
  21627. source: "./media/characters/der/side.svg",
  21628. extra: 719 / 400,
  21629. bottom: 30.6 / 749.9187
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Micro",
  21636. height: math.unit(4, "inches"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21643. {
  21644. side: {
  21645. height: math.unit(30, "meters"),
  21646. weight: math.unit(700, "tonnes"),
  21647. name: "Side",
  21648. image: {
  21649. source: "./media/characters/fixerdragon/side.svg",
  21650. extra: (1293.0514 - 116.03) / 1106.86,
  21651. bottom: 116.03 / 1293.0514
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Planck",
  21658. height: math.unit(1.6e-35, "meters")
  21659. },
  21660. {
  21661. name: "Micro",
  21662. height: math.unit(0.4, "meters")
  21663. },
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(30, "meters"),
  21667. default: true
  21668. },
  21669. {
  21670. name: "Megamacro",
  21671. height: math.unit(1.2, "megameters")
  21672. },
  21673. {
  21674. name: "Teramacro",
  21675. height: math.unit(130, "terameters")
  21676. },
  21677. {
  21678. name: "Yottamacro",
  21679. height: math.unit(6200, "yottameters")
  21680. },
  21681. ]
  21682. ));
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(8, "feet"),
  21688. weight: math.unit(250, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/kite/front.svg",
  21692. extra: 2796 / 2659,
  21693. bottom: 0.002
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(8, "feet"),
  21701. default: true
  21702. },
  21703. {
  21704. name: "Macro",
  21705. height: math.unit(360, "feet")
  21706. },
  21707. {
  21708. name: "Megamacro",
  21709. height: math.unit(1500, "feet")
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 11/12, "feet"),
  21718. weight: math.unit(170, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/poojawa-vynar/front.svg",
  21722. extra: 1735/1585,
  21723. bottom: 96/1831
  21724. }
  21725. },
  21726. back: {
  21727. height: math.unit(5 + 11/12, "feet"),
  21728. weight: math.unit(170, "lb"),
  21729. name: "Back",
  21730. image: {
  21731. source: "./media/characters/poojawa-vynar/back.svg",
  21732. extra: 1749/1607,
  21733. bottom: 28/1777
  21734. }
  21735. },
  21736. male: {
  21737. height: math.unit(5 + 11/12, "feet"),
  21738. weight: math.unit(170, "lb"),
  21739. name: "Male",
  21740. image: {
  21741. source: "./media/characters/poojawa-vynar/male.svg",
  21742. extra: 1855/1713,
  21743. bottom: 63/1918
  21744. }
  21745. },
  21746. taur: {
  21747. height: math.unit(5 + 11/12, "feet"),
  21748. weight: math.unit(170, "lb"),
  21749. name: "Taur",
  21750. image: {
  21751. source: "./media/characters/poojawa-vynar/taur.svg",
  21752. extra: 1151/1059,
  21753. bottom: 356/1507
  21754. }
  21755. },
  21756. frontDressed: {
  21757. height: math.unit(5 + 11/12, "feet"),
  21758. weight: math.unit(170, "lb"),
  21759. name: "Front (Dressed)",
  21760. image: {
  21761. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21762. extra: 1735/1585,
  21763. bottom: 96/1831
  21764. }
  21765. },
  21766. backDressed: {
  21767. height: math.unit(5 + 11/12, "feet"),
  21768. weight: math.unit(170, "lb"),
  21769. name: "Back (Dressed)",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21772. extra: 1749/1607,
  21773. bottom: 28/1777
  21774. }
  21775. },
  21776. maleDressed: {
  21777. height: math.unit(5 + 11/12, "feet"),
  21778. weight: math.unit(170, "lb"),
  21779. name: "Male (Dressed)",
  21780. image: {
  21781. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21782. extra: 1855/1713,
  21783. bottom: 63/1918
  21784. }
  21785. },
  21786. taurDressed: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Taur (Dressed)",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21792. extra: 1151/1059,
  21793. bottom: 356/1507
  21794. }
  21795. },
  21796. maw: {
  21797. height: math.unit(1.46, "feet"),
  21798. name: "Maw",
  21799. image: {
  21800. source: "./media/characters/poojawa-vynar/maw.svg"
  21801. }
  21802. },
  21803. head: {
  21804. height: math.unit(2.34, "feet"),
  21805. name: "Head",
  21806. image: {
  21807. source: "./media/characters/poojawa-vynar/head.svg"
  21808. }
  21809. },
  21810. paw: {
  21811. height: math.unit(1.61, "feet"),
  21812. name: "Paw",
  21813. image: {
  21814. source: "./media/characters/poojawa-vynar/paw.svg"
  21815. }
  21816. },
  21817. pawToering: {
  21818. height: math.unit(1.72, "feet"),
  21819. name: "Paw (Toering)",
  21820. image: {
  21821. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21822. }
  21823. },
  21824. toering: {
  21825. height: math.unit(2.9, "inches"),
  21826. name: "Toering",
  21827. image: {
  21828. source: "./media/characters/poojawa-vynar/toering.svg"
  21829. }
  21830. },
  21831. shaft: {
  21832. height: math.unit(0.625, "feet"),
  21833. name: "Shaft",
  21834. image: {
  21835. source: "./media/characters/poojawa-vynar/shaft.svg"
  21836. }
  21837. },
  21838. spade: {
  21839. height: math.unit(0.42, "feet"),
  21840. name: "Spade",
  21841. image: {
  21842. source: "./media/characters/poojawa-vynar/spade.svg"
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Shortstack",
  21849. height: math.unit(4, "feet")
  21850. },
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(5 + 11 / 12, "feet"),
  21854. default: true
  21855. },
  21856. {
  21857. name: "Tauric",
  21858. height: math.unit(4, "meters")
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(293, "meters"),
  21867. weight: math.unit(70400, "tons"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/violette/front.svg",
  21871. extra: 1227 / 1180,
  21872. bottom: 0.005
  21873. }
  21874. },
  21875. back: {
  21876. height: math.unit(293, "meters"),
  21877. weight: math.unit(70400, "tons"),
  21878. name: "Back",
  21879. image: {
  21880. source: "./media/characters/violette/back.svg",
  21881. extra: 1227 / 1180,
  21882. bottom: 0.005
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(293, "meters"),
  21890. default: true
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(1050, "feet"),
  21899. weight: math.unit(200000, "tons"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/alessandra/front.svg",
  21903. extra: 960 / 912,
  21904. bottom: 0.06
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Macro",
  21911. height: math.unit(1050, "feet")
  21912. },
  21913. {
  21914. name: "Macro+",
  21915. height: math.unit(900, "meters"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(5, "feet"),
  21925. weight: math.unit(187, "lb"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/person/front.svg",
  21929. extra: 3087 / 2945,
  21930. bottom: 91 / 3181
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Micro",
  21937. height: math.unit(3, "inches")
  21938. },
  21939. {
  21940. name: "Normal",
  21941. height: math.unit(5, "feet"),
  21942. default: true
  21943. },
  21944. {
  21945. name: "Macro",
  21946. height: math.unit(90, "feet")
  21947. },
  21948. {
  21949. name: "Max Size",
  21950. height: math.unit(280, "feet")
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(4.5, "meters"),
  21959. weight: math.unit(3200, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/ty/front.svg",
  21963. extra: 1038 / 960,
  21964. bottom: 31.156 / 1068
  21965. }
  21966. },
  21967. back: {
  21968. height: math.unit(4.5, "meters"),
  21969. weight: math.unit(3200, "lb"),
  21970. name: "Back",
  21971. image: {
  21972. source: "./media/characters/ty/back.svg",
  21973. extra: 1044 / 966,
  21974. bottom: 7.48 / 1049
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(4.5, "meters"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(5 + 4 / 12, "feet"),
  21991. weight: math.unit(115, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/rocky/front.svg",
  21995. extra: 1012 / 975,
  21996. bottom: 54 / 1066
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(5 + 4 / 12, "feet"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22010. {
  22011. upright: {
  22012. height: math.unit(6, "meters"),
  22013. weight: math.unit(4000, "kg"),
  22014. name: "Upright",
  22015. image: {
  22016. source: "./media/characters/ruin/upright.svg",
  22017. extra: 668 / 661,
  22018. bottom: 42 / 799.8396
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(6, "meters"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(5, "feet"),
  22035. weight: math.unit(106, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/robin/front.svg",
  22039. extra: 862 / 799,
  22040. bottom: 42.4 / 914.8856
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(5, "feet"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22054. {
  22055. side: {
  22056. height: math.unit(3, "feet"),
  22057. weight: math.unit(225, "lb"),
  22058. name: "Side",
  22059. image: {
  22060. source: "./media/characters/saian/side.svg",
  22061. extra: 566 / 356,
  22062. bottom: 79.7 / 643
  22063. }
  22064. },
  22065. maw: {
  22066. height: math.unit(2.85, "feet"),
  22067. name: "Maw",
  22068. image: {
  22069. source: "./media/characters/saian/maw.svg"
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(3, "feet"),
  22077. default: true
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22083. {
  22084. side: {
  22085. height: math.unit(8, "feet"),
  22086. weight: math.unit(300, "lb"),
  22087. name: "Side",
  22088. image: {
  22089. source: "./media/characters/equus-silvermane/side.svg",
  22090. extra: 2176 / 2050,
  22091. bottom: 65.7 / 2245
  22092. }
  22093. },
  22094. front: {
  22095. height: math.unit(8, "feet"),
  22096. weight: math.unit(300, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/equus-silvermane/front.svg",
  22100. extra: 4633 / 4400,
  22101. bottom: 71.3 / 4706.915
  22102. }
  22103. },
  22104. sideStepping: {
  22105. height: math.unit(8, "feet"),
  22106. weight: math.unit(300, "lb"),
  22107. name: "Side (Stepping)",
  22108. image: {
  22109. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22110. extra: 1968 / 1860,
  22111. bottom: 16.4 / 1989
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(8, "feet")
  22119. },
  22120. {
  22121. name: "Minimacro",
  22122. height: math.unit(75, "feet"),
  22123. default: true
  22124. },
  22125. {
  22126. name: "Macro",
  22127. height: math.unit(150, "feet")
  22128. },
  22129. {
  22130. name: "Macro+",
  22131. height: math.unit(1000, "feet")
  22132. },
  22133. {
  22134. name: "Megamacro",
  22135. height: math.unit(1, "mile")
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22141. {
  22142. side: {
  22143. height: math.unit(20, "feet"),
  22144. weight: math.unit(30000, "kg"),
  22145. name: "Side",
  22146. image: {
  22147. source: "./media/characters/windar/side.svg",
  22148. extra: 1491 / 1248,
  22149. bottom: 82.56 / 1568
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(20, "feet"),
  22157. default: true
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22163. {
  22164. side: {
  22165. height: math.unit(15.66, "feet"),
  22166. weight: math.unit(150, "lb"),
  22167. name: "Side",
  22168. image: {
  22169. source: "./media/characters/melody/side.svg",
  22170. extra: 1097 / 944,
  22171. bottom: 11.8 / 1109
  22172. }
  22173. },
  22174. sideOutfit: {
  22175. height: math.unit(15.66, "feet"),
  22176. weight: math.unit(150, "lb"),
  22177. name: "Side (Outfit)",
  22178. image: {
  22179. source: "./media/characters/melody/side-outfit.svg",
  22180. extra: 1097 / 944,
  22181. bottom: 11.8 / 1109
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(15.66, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(8, "feet"),
  22198. weight: math.unit(325, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/windera/front.svg",
  22202. extra: 3180 / 2845,
  22203. bottom: 178 / 3365
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(8, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22217. {
  22218. front: {
  22219. height: math.unit(28.75, "feet"),
  22220. weight: math.unit(2000, "kg"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/sonear/front.svg",
  22224. extra: 1041.1 / 964.9,
  22225. bottom: 53.7 / 1096.6
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(28.75, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22239. {
  22240. side: {
  22241. height: math.unit(25.5, "feet"),
  22242. weight: math.unit(23000, "kg"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/kanara/side.svg"
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(25.5, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22259. {
  22260. side: {
  22261. height: math.unit(10, "feet"),
  22262. weight: math.unit(1000, "kg"),
  22263. name: "Side",
  22264. image: {
  22265. source: "./media/characters/ereus/side.svg",
  22266. extra: 1157 / 959,
  22267. bottom: 153 / 1312.5
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(10, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(4.5, "feet"),
  22284. weight: math.unit(500, "lb"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/e-ter/side.svg",
  22288. extra: 1550 / 1248,
  22289. bottom: 146 / 1694
  22290. }
  22291. },
  22292. },
  22293. [
  22294. {
  22295. name: "Normal",
  22296. height: math.unit(4.5, "feet"),
  22297. default: true
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22303. {
  22304. side: {
  22305. height: math.unit(9.7, "feet"),
  22306. weight: math.unit(4000, "kg"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/yamie/side.svg"
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(9.7, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22323. {
  22324. front: {
  22325. height: math.unit(50, "feet"),
  22326. weight: math.unit(50000, "kg"),
  22327. name: "Front",
  22328. image: {
  22329. source: "./media/characters/anders/front.svg",
  22330. extra: 570 / 539,
  22331. bottom: 14.7 / 586.7
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Large",
  22338. height: math.unit(50, "feet")
  22339. },
  22340. {
  22341. name: "Macro",
  22342. height: math.unit(2000, "feet"),
  22343. default: true
  22344. },
  22345. {
  22346. name: "Megamacro",
  22347. height: math.unit(12, "miles")
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(7 + 2 / 12, "feet"),
  22356. weight: math.unit(300, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/reban/front.svg",
  22360. extra: 516 / 487,
  22361. bottom: 42.82 / 558.356
  22362. }
  22363. },
  22364. dick: {
  22365. height: math.unit(7 / 5, "feet"),
  22366. name: "Dick",
  22367. image: {
  22368. source: "./media/characters/reban/dick.svg"
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Natural Height",
  22375. height: math.unit(7 + 2 / 12, "feet")
  22376. },
  22377. {
  22378. name: "Macro",
  22379. height: math.unit(500, "feet"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Canon Height",
  22384. height: math.unit(50, "AU")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(6, "feet"),
  22393. weight: math.unit(150, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/terrance-keayes/front.svg",
  22397. extra: 1.005,
  22398. bottom: 151 / 1615
  22399. }
  22400. },
  22401. side: {
  22402. height: math.unit(6, "feet"),
  22403. weight: math.unit(150, "lb"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/terrance-keayes/side.svg",
  22407. extra: 1.005,
  22408. bottom: 129.4 / 1544
  22409. }
  22410. },
  22411. back: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(150, "lb"),
  22414. name: "Back",
  22415. image: {
  22416. source: "./media/characters/terrance-keayes/back.svg",
  22417. extra: 1.005,
  22418. bottom: 58.4 / 1557.3
  22419. }
  22420. },
  22421. dick: {
  22422. height: math.unit(6 * 0.208, "feet"),
  22423. name: "Dick",
  22424. image: {
  22425. source: "./media/characters/terrance-keayes/dick.svg"
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Canon Height",
  22432. height: math.unit(35, "miles"),
  22433. default: true
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(6, "feet"),
  22442. weight: math.unit(150, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/ofelia/front.svg",
  22446. extra: 546 / 541,
  22447. bottom: 39 / 583
  22448. }
  22449. },
  22450. back: {
  22451. height: math.unit(6, "feet"),
  22452. weight: math.unit(150, "lb"),
  22453. name: "Back",
  22454. image: {
  22455. source: "./media/characters/ofelia/back.svg",
  22456. extra: 564 / 559.5,
  22457. bottom: 8.69 / 573.02
  22458. }
  22459. },
  22460. maw: {
  22461. height: math.unit(1, "feet"),
  22462. name: "Maw",
  22463. image: {
  22464. source: "./media/characters/ofelia/maw.svg"
  22465. }
  22466. },
  22467. foot: {
  22468. height: math.unit(1.949, "feet"),
  22469. name: "Foot",
  22470. image: {
  22471. source: "./media/characters/ofelia/foot.svg"
  22472. }
  22473. },
  22474. },
  22475. [
  22476. {
  22477. name: "Canon Height",
  22478. height: math.unit(2000, "miles"),
  22479. default: true
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22485. {
  22486. front: {
  22487. height: math.unit(6, "feet"),
  22488. weight: math.unit(150, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/samuel/front.svg",
  22492. extra: 265 / 258,
  22493. bottom: 2 / 266.1566
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Macro",
  22500. height: math.unit(100, "feet"),
  22501. default: true
  22502. },
  22503. {
  22504. name: "Full Size",
  22505. height: math.unit(1000, "miles")
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(6, "feet"),
  22514. weight: math.unit(300, "lb"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/beishir-kiel/front.svg",
  22518. extra: 569 / 547,
  22519. bottom: 41.9 / 609
  22520. }
  22521. },
  22522. maw: {
  22523. height: math.unit(6 * 0.202, "feet"),
  22524. name: "Maw",
  22525. image: {
  22526. source: "./media/characters/beishir-kiel/maw.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Macro",
  22533. height: math.unit(300, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(5 + 7/12, "feet"),
  22543. weight: math.unit(120, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/logan-grey/front.svg",
  22547. extra: 1836/1738,
  22548. bottom: 108/1944
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(5 + 7/12, "feet"),
  22553. weight: math.unit(120, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/logan-grey/back.svg",
  22557. extra: 1880/1794,
  22558. bottom: 24/1904
  22559. }
  22560. },
  22561. frontSfw: {
  22562. height: math.unit(5 + 7/12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Front (SFW)",
  22565. image: {
  22566. source: "./media/characters/logan-grey/front-sfw.svg",
  22567. extra: 1836/1738,
  22568. bottom: 108/1944
  22569. }
  22570. },
  22571. backSfw: {
  22572. height: math.unit(5 + 7/12, "feet"),
  22573. weight: math.unit(120, "lb"),
  22574. name: "Back (SFW)",
  22575. image: {
  22576. source: "./media/characters/logan-grey/back-sfw.svg",
  22577. extra: 1880/1794,
  22578. bottom: 24/1904
  22579. }
  22580. },
  22581. hands: {
  22582. height: math.unit(0.84, "feet"),
  22583. name: "Hands",
  22584. image: {
  22585. source: "./media/characters/logan-grey/hands.svg"
  22586. }
  22587. },
  22588. paws: {
  22589. height: math.unit(0.72, "feet"),
  22590. name: "Paws",
  22591. image: {
  22592. source: "./media/characters/logan-grey/paws.svg"
  22593. }
  22594. },
  22595. cock: {
  22596. height: math.unit(1.45, "feet"),
  22597. name: "Cock",
  22598. image: {
  22599. source: "./media/characters/logan-grey/cock.svg"
  22600. }
  22601. },
  22602. cockAlt: {
  22603. height: math.unit(1.437, "feet"),
  22604. name: "Cock (alt)",
  22605. image: {
  22606. source: "./media/characters/logan-grey/cock-alt.svg"
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5 + 8 / 12, "feet")
  22614. },
  22615. {
  22616. name: "The 500 Foot Femboy",
  22617. height: math.unit(500, "feet"),
  22618. default: true
  22619. },
  22620. {
  22621. name: "Megmacro",
  22622. height: math.unit(20, "miles")
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(8 + 2 / 12, "feet"),
  22631. weight: math.unit(275, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/draganta/front.svg",
  22635. extra: 1177 / 1135,
  22636. bottom: 33.46 / 1212.1
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(8 + 6 / 12, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(150, "feet")
  22649. },
  22650. {
  22651. name: "Megamacro",
  22652. height: math.unit(1000, "miles")
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(1.72, "m"),
  22661. weight: math.unit(80, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/voski/front.svg",
  22665. extra: 2076.22 / 2022.4,
  22666. bottom: 102.7 / 2177.3866
  22667. }
  22668. },
  22669. frontNsfw: {
  22670. height: math.unit(1.72, "m"),
  22671. weight: math.unit(80, "lb"),
  22672. name: "Front (NSFW)",
  22673. image: {
  22674. source: "./media/characters/voski/front-nsfw.svg",
  22675. extra: 2076.22 / 2022.4,
  22676. bottom: 102.7 / 2177.3866
  22677. }
  22678. },
  22679. back: {
  22680. height: math.unit(1.72, "m"),
  22681. weight: math.unit(80, "lb"),
  22682. name: "Back",
  22683. image: {
  22684. source: "./media/characters/voski/back.svg",
  22685. extra: 2104 / 2051,
  22686. bottom: 10.45 / 2113.63
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(1.72, "m")
  22694. },
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(55, "m"),
  22698. default: true
  22699. },
  22700. {
  22701. name: "Macro+",
  22702. height: math.unit(300, "m")
  22703. },
  22704. {
  22705. name: "Macro++",
  22706. height: math.unit(700, "m")
  22707. },
  22708. {
  22709. name: "Macro+++",
  22710. height: math.unit(4500, "m")
  22711. },
  22712. {
  22713. name: "Macro++++",
  22714. height: math.unit(45, "km")
  22715. },
  22716. {
  22717. name: "Macro+++++",
  22718. height: math.unit(1220, "km")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(2.3, "m"),
  22727. weight: math.unit(304, "kg"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/icowom-lee/front.svg",
  22731. extra: 985 / 955,
  22732. bottom: 25.4 / 1012
  22733. }
  22734. },
  22735. fronttentacles: {
  22736. height: math.unit(2.3, "m"),
  22737. weight: math.unit(304, "kg"),
  22738. name: "Front-tentacles",
  22739. image: {
  22740. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22741. extra: 985 / 955,
  22742. bottom: 25.4 / 1012
  22743. }
  22744. },
  22745. back: {
  22746. height: math.unit(2.3, "m"),
  22747. weight: math.unit(304, "kg"),
  22748. name: "Back",
  22749. image: {
  22750. source: "./media/characters/icowom-lee/back.svg",
  22751. extra: 975 / 954,
  22752. bottom: 9.5 / 985
  22753. }
  22754. },
  22755. backtentacles: {
  22756. height: math.unit(2.3, "m"),
  22757. weight: math.unit(304, "kg"),
  22758. name: "Back-tentacles",
  22759. image: {
  22760. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22761. extra: 975 / 954,
  22762. bottom: 9.5 / 985
  22763. }
  22764. },
  22765. frontDressed: {
  22766. height: math.unit(2.3, "m"),
  22767. weight: math.unit(304, "kg"),
  22768. name: "Front (Dressed)",
  22769. image: {
  22770. source: "./media/characters/icowom-lee/front-dressed.svg",
  22771. extra: 3076 / 2933,
  22772. bottom: 51.4 / 3125.1889
  22773. }
  22774. },
  22775. rump: {
  22776. height: math.unit(0.776, "meters"),
  22777. name: "Rump",
  22778. image: {
  22779. source: "./media/characters/icowom-lee/rump.svg"
  22780. }
  22781. },
  22782. genitals: {
  22783. height: math.unit(0.78, "meters"),
  22784. name: "Genitals",
  22785. image: {
  22786. source: "./media/characters/icowom-lee/genitals.svg"
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(2.3, "meters"),
  22794. default: true
  22795. },
  22796. {
  22797. name: "Macro",
  22798. height: math.unit(94, "meters"),
  22799. default: true
  22800. },
  22801. ]
  22802. ))
  22803. characterMakers.push(() => makeCharacter(
  22804. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22805. {
  22806. front: {
  22807. height: math.unit(22, "meters"),
  22808. weight: math.unit(21000, "kg"),
  22809. name: "Front",
  22810. image: {
  22811. source: "./media/characters/shock-diamond/front.svg",
  22812. extra: 2204 / 2053,
  22813. bottom: 65 / 2239.47
  22814. }
  22815. },
  22816. frontNude: {
  22817. height: math.unit(22, "meters"),
  22818. weight: math.unit(21000, "kg"),
  22819. name: "Front (Nude)",
  22820. image: {
  22821. source: "./media/characters/shock-diamond/front-nude.svg",
  22822. extra: 2514 / 2285,
  22823. bottom: 13 / 2527.56
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(3, "meters")
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(22, "meters"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22841. {
  22842. front: {
  22843. height: math.unit(5 + 4 / 12, "feet"),
  22844. weight: math.unit(120, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/rory/front.svg",
  22848. extra: 1318/1241,
  22849. bottom: 42/1360
  22850. }
  22851. },
  22852. back: {
  22853. height: math.unit(5 + 4 / 12, "feet"),
  22854. weight: math.unit(120, "lb"),
  22855. name: "Back",
  22856. image: {
  22857. source: "./media/characters/rory/back.svg",
  22858. extra: 1318/1241,
  22859. bottom: 42/1360
  22860. }
  22861. },
  22862. butt: {
  22863. height: math.unit(1.74, "feet"),
  22864. name: "Butt",
  22865. image: {
  22866. source: "./media/characters/rory/butt.svg"
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(1.02, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/rory/dick.svg"
  22874. }
  22875. },
  22876. paws: {
  22877. height: math.unit(1, "feet"),
  22878. name: "Paws",
  22879. image: {
  22880. source: "./media/characters/rory/paws.svg"
  22881. }
  22882. },
  22883. frontAlt: {
  22884. height: math.unit(5 + 4 / 12, "feet"),
  22885. weight: math.unit(120, "lb"),
  22886. name: "Front (Alt)",
  22887. image: {
  22888. source: "./media/characters/rory/front-alt.svg",
  22889. extra: 589 / 556,
  22890. bottom: 45.7 / 635.76
  22891. }
  22892. },
  22893. frontAltNude: {
  22894. height: math.unit(5 + 4 / 12, "feet"),
  22895. weight: math.unit(120, "lb"),
  22896. name: "Front (Alt, Nude)",
  22897. image: {
  22898. source: "./media/characters/rory/front-alt-nude.svg",
  22899. extra: 589 / 556,
  22900. bottom: 45.7 / 635.76
  22901. }
  22902. },
  22903. side: {
  22904. height: math.unit(5 + 4 / 12, "feet"),
  22905. weight: math.unit(120, "lb"),
  22906. name: "Side",
  22907. image: {
  22908. source: "./media/characters/rory/side.svg",
  22909. extra: 597 / 564,
  22910. bottom: 55 / 653
  22911. }
  22912. },
  22913. backAlt: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Back (Alt)",
  22917. image: {
  22918. source: "./media/characters/rory/back-alt.svg",
  22919. extra: 620 / 585,
  22920. bottom: 8.86 / 630.43
  22921. }
  22922. },
  22923. dickAlt: {
  22924. height: math.unit(0.86, "feet"),
  22925. name: "Dick (Alt)",
  22926. image: {
  22927. source: "./media/characters/rory/dick-alt.svg"
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(5 + 4 / 12, "feet"),
  22935. default: true
  22936. },
  22937. {
  22938. name: "Macro",
  22939. height: math.unit(100, "feet")
  22940. },
  22941. {
  22942. name: "Macro+",
  22943. height: math.unit(140, "feet")
  22944. },
  22945. {
  22946. name: "Macro++",
  22947. height: math.unit(300, "feet")
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(5 + 9 / 12, "feet"),
  22956. weight: math.unit(190, "lb"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/sprisk/front.svg",
  22960. extra: 1225 / 1180,
  22961. bottom: 42.7 / 1266.4
  22962. }
  22963. },
  22964. frontNsfw: {
  22965. height: math.unit(5 + 9 / 12, "feet"),
  22966. weight: math.unit(190, "lb"),
  22967. name: "Front (NSFW)",
  22968. image: {
  22969. source: "./media/characters/sprisk/front-nsfw.svg",
  22970. extra: 1225 / 1180,
  22971. bottom: 42.7 / 1266.4
  22972. }
  22973. },
  22974. back: {
  22975. height: math.unit(5 + 9 / 12, "feet"),
  22976. weight: math.unit(190, "lb"),
  22977. name: "Back",
  22978. image: {
  22979. source: "./media/characters/sprisk/back.svg",
  22980. extra: 1247 / 1200,
  22981. bottom: 5.6 / 1253.04
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Tiny",
  22988. height: math.unit(2, "inches")
  22989. },
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 9 / 12, "feet"),
  22993. default: true
  22994. },
  22995. {
  22996. name: "Mini Macro",
  22997. height: math.unit(18, "feet")
  22998. },
  22999. {
  23000. name: "Macro",
  23001. height: math.unit(100, "feet")
  23002. },
  23003. {
  23004. name: "MACRO",
  23005. height: math.unit(50, "miles")
  23006. },
  23007. {
  23008. name: "M A C R O",
  23009. height: math.unit(300, "miles")
  23010. },
  23011. ]
  23012. ))
  23013. characterMakers.push(() => makeCharacter(
  23014. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23015. {
  23016. side: {
  23017. height: math.unit(15.6, "meters"),
  23018. weight: math.unit(700000, "kg"),
  23019. name: "Side",
  23020. image: {
  23021. source: "./media/characters/bunsen/side.svg",
  23022. extra: 1644 / 358
  23023. }
  23024. },
  23025. foot: {
  23026. height: math.unit(1.611 * 1644 / 358, "meter"),
  23027. name: "Foot",
  23028. image: {
  23029. source: "./media/characters/bunsen/foot.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Small",
  23036. height: math.unit(10, "feet")
  23037. },
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(15.6, "meters"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23047. {
  23048. front: {
  23049. height: math.unit(4 + 11 / 12, "feet"),
  23050. weight: math.unit(140, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/sesh/front.svg",
  23054. extra: 3420 / 3231,
  23055. bottom: 72 / 3949.5
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(4 + 11 / 12, "feet")
  23063. },
  23064. {
  23065. name: "Grown",
  23066. height: math.unit(15, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(1500, "feet")
  23072. },
  23073. {
  23074. name: "Megamacro",
  23075. height: math.unit(30, "miles")
  23076. },
  23077. {
  23078. name: "Continental",
  23079. height: math.unit(3000, "miles")
  23080. },
  23081. {
  23082. name: "Gravity Mass",
  23083. height: math.unit(300000, "miles")
  23084. },
  23085. {
  23086. name: "Planet Buster",
  23087. height: math.unit(30000000, "miles")
  23088. },
  23089. {
  23090. name: "Big",
  23091. height: math.unit(3000000000, "miles")
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(9, "feet"),
  23100. weight: math.unit(350, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/pepper/front.svg",
  23104. extra: 1448 / 1312,
  23105. bottom: 9.4 / 1457.88
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(9, "feet"),
  23110. weight: math.unit(350, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/pepper/back.svg",
  23114. extra: 1423 / 1300,
  23115. bottom: 4.6 / 1429
  23116. }
  23117. },
  23118. maw: {
  23119. height: math.unit(0.932, "feet"),
  23120. name: "Maw",
  23121. image: {
  23122. source: "./media/characters/pepper/maw.svg"
  23123. }
  23124. },
  23125. },
  23126. [
  23127. {
  23128. name: "Normal",
  23129. height: math.unit(9, "feet"),
  23130. default: true
  23131. },
  23132. ]
  23133. ))
  23134. characterMakers.push(() => makeCharacter(
  23135. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23136. {
  23137. front: {
  23138. height: math.unit(6, "feet"),
  23139. weight: math.unit(150, "lb"),
  23140. name: "Front",
  23141. image: {
  23142. source: "./media/characters/maelstrom/front.svg",
  23143. extra: 2100 / 1883,
  23144. bottom: 94 / 2196.7
  23145. }
  23146. },
  23147. },
  23148. [
  23149. {
  23150. name: "Less Kaiju",
  23151. height: math.unit(200, "feet")
  23152. },
  23153. {
  23154. name: "Kaiju",
  23155. height: math.unit(400, "feet"),
  23156. default: true
  23157. },
  23158. {
  23159. name: "Kaiju-er",
  23160. height: math.unit(600, "feet")
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(6 + 5 / 12, "feet"),
  23169. weight: math.unit(180, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/lexir/front.svg",
  23173. extra: 180 / 172,
  23174. bottom: 12 / 192
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(6 + 5 / 12, "feet"),
  23179. weight: math.unit(180, "lb"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/lexir/back.svg",
  23183. extra: 183.84 / 175.5,
  23184. bottom: 3.1 / 187
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Very Smal",
  23191. height: math.unit(1, "nm")
  23192. },
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(6 + 5 / 12, "feet"),
  23196. default: true
  23197. },
  23198. {
  23199. name: "Macro",
  23200. height: math.unit(1, "mile")
  23201. },
  23202. {
  23203. name: "Megamacro",
  23204. height: math.unit(50, "miles")
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(1.5, "meters"),
  23213. weight: math.unit(100, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/maksio/front.svg",
  23217. extra: 1549 / 1531,
  23218. bottom: 123.7 / 1674.5429
  23219. }
  23220. },
  23221. back: {
  23222. height: math.unit(1.5, "meters"),
  23223. weight: math.unit(100, "lb"),
  23224. name: "Back",
  23225. image: {
  23226. source: "./media/characters/maksio/back.svg",
  23227. extra: 1541 / 1509,
  23228. bottom: 97 / 1639
  23229. }
  23230. },
  23231. hand: {
  23232. height: math.unit(0.621, "feet"),
  23233. name: "Hand",
  23234. image: {
  23235. source: "./media/characters/maksio/hand.svg"
  23236. }
  23237. },
  23238. foot: {
  23239. height: math.unit(1.611, "feet"),
  23240. name: "Foot",
  23241. image: {
  23242. source: "./media/characters/maksio/foot.svg"
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Shrunken",
  23249. height: math.unit(10, "cm")
  23250. },
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(150, "cm"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(100, "feet"),
  23263. name: "Front",
  23264. image: {
  23265. source: "./media/characters/erza-bear/front.svg",
  23266. extra: 2449 / 2390,
  23267. bottom: 46 / 2494
  23268. }
  23269. },
  23270. back: {
  23271. height: math.unit(100, "feet"),
  23272. name: "Back",
  23273. image: {
  23274. source: "./media/characters/erza-bear/back.svg",
  23275. extra: 2489 / 2430,
  23276. bottom: 85.4 / 2480
  23277. }
  23278. },
  23279. tail: {
  23280. height: math.unit(42, "feet"),
  23281. name: "Tail",
  23282. image: {
  23283. source: "./media/characters/erza-bear/tail.svg"
  23284. }
  23285. },
  23286. tongue: {
  23287. height: math.unit(8, "feet"),
  23288. name: "Tongue",
  23289. image: {
  23290. source: "./media/characters/erza-bear/tongue.svg"
  23291. }
  23292. },
  23293. dick: {
  23294. height: math.unit(10.5, "feet"),
  23295. name: "Dick",
  23296. image: {
  23297. source: "./media/characters/erza-bear/dick.svg"
  23298. }
  23299. },
  23300. dickVertical: {
  23301. height: math.unit(16.9, "feet"),
  23302. name: "Dick (Vertical)",
  23303. image: {
  23304. source: "./media/characters/erza-bear/dick-vertical.svg"
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Macro",
  23311. height: math.unit(100, "feet"),
  23312. default: true
  23313. },
  23314. ]
  23315. ))
  23316. characterMakers.push(() => makeCharacter(
  23317. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23318. {
  23319. front: {
  23320. height: math.unit(172, "cm"),
  23321. weight: math.unit(73, "kg"),
  23322. name: "Front",
  23323. image: {
  23324. source: "./media/characters/violet-flor/front.svg",
  23325. extra: 1530 / 1442,
  23326. bottom: 61.9 / 1588.8
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(180, "cm"),
  23331. weight: math.unit(73, "kg"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/violet-flor/back.svg",
  23335. extra: 1692 / 1630,
  23336. bottom: 20 / 1712
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(172, "cm"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23350. {
  23351. front: {
  23352. height: math.unit(6, "feet"),
  23353. weight: math.unit(220, "lb"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/lynn-rhea/front.svg",
  23357. extra: 310 / 273
  23358. }
  23359. },
  23360. back: {
  23361. height: math.unit(6, "feet"),
  23362. weight: math.unit(220, "lb"),
  23363. name: "Back",
  23364. image: {
  23365. source: "./media/characters/lynn-rhea/back.svg",
  23366. extra: 310 / 273
  23367. }
  23368. },
  23369. dicks: {
  23370. height: math.unit(0.9, "feet"),
  23371. name: "Dicks",
  23372. image: {
  23373. source: "./media/characters/lynn-rhea/dicks.svg"
  23374. }
  23375. },
  23376. slit: {
  23377. height: math.unit(0.4, "feet"),
  23378. name: "Slit",
  23379. image: {
  23380. source: "./media/characters/lynn-rhea/slit.svg"
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Micro",
  23387. height: math.unit(1, "inch")
  23388. },
  23389. {
  23390. name: "Macro",
  23391. height: math.unit(60, "feet"),
  23392. default: true
  23393. },
  23394. {
  23395. name: "Megamacro",
  23396. height: math.unit(2, "miles")
  23397. },
  23398. {
  23399. name: "Gigamacro",
  23400. height: math.unit(3, "earths")
  23401. },
  23402. {
  23403. name: "Galactic",
  23404. height: math.unit(0.8, "galaxies")
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23410. {
  23411. front: {
  23412. height: math.unit(1600, "feet"),
  23413. weight: math.unit(85758785169, "kg"),
  23414. name: "Front",
  23415. image: {
  23416. source: "./media/characters/valathos/front.svg",
  23417. extra: 1451 / 1339
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(1600, "feet"),
  23425. default: true
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(7 + 5 / 12, "feet"),
  23434. weight: math.unit(300, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/azula/front.svg",
  23438. extra: 3208 / 2880,
  23439. bottom: 80.2 / 3277
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(7 + 5 / 12, "feet"),
  23444. weight: math.unit(300, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/azula/back.svg",
  23448. extra: 3169 / 2822,
  23449. bottom: 150.6 / 3321
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Normal",
  23456. height: math.unit(7 + 5 / 12, "feet"),
  23457. default: true
  23458. },
  23459. {
  23460. name: "Big",
  23461. height: math.unit(20, "feet")
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23467. {
  23468. front: {
  23469. height: math.unit(5 + 1 / 12, "feet"),
  23470. weight: math.unit(110, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/rupert/front.svg",
  23474. extra: 1549 / 1495,
  23475. bottom: 54.2 / 1604.4
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Normal",
  23482. height: math.unit(5 + 1 / 12, "feet"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23489. {
  23490. front: {
  23491. height: math.unit(8 + 4 / 12, "feet"),
  23492. weight: math.unit(350, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/sheera-castellar/front.svg",
  23496. extra: 1957 / 1894,
  23497. bottom: 26.97 / 1975.017
  23498. }
  23499. },
  23500. side: {
  23501. height: math.unit(8 + 4 / 12, "feet"),
  23502. weight: math.unit(350, "lb"),
  23503. name: "Side",
  23504. image: {
  23505. source: "./media/characters/sheera-castellar/side.svg",
  23506. extra: 1957 / 1894
  23507. }
  23508. },
  23509. back: {
  23510. height: math.unit(8 + 4 / 12, "feet"),
  23511. weight: math.unit(350, "lb"),
  23512. name: "Back",
  23513. image: {
  23514. source: "./media/characters/sheera-castellar/back.svg",
  23515. extra: 1957 / 1894
  23516. }
  23517. },
  23518. angled: {
  23519. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23520. weight: math.unit(350, "lb"),
  23521. name: "Angled",
  23522. image: {
  23523. source: "./media/characters/sheera-castellar/angled.svg",
  23524. extra: 1807 / 1707,
  23525. bottom: 68 / 1875
  23526. }
  23527. },
  23528. genitals: {
  23529. height: math.unit(2.2, "feet"),
  23530. name: "Genitals",
  23531. image: {
  23532. source: "./media/characters/sheera-castellar/genitals.svg"
  23533. }
  23534. },
  23535. taur: {
  23536. height: math.unit(10 + 6/12, "feet"),
  23537. name: "Taur",
  23538. image: {
  23539. source: "./media/characters/sheera-castellar/taur.svg",
  23540. extra: 2017/1909,
  23541. bottom: 185/2202
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(8 + 4 / 12, "feet")
  23549. },
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(150, "feet"),
  23553. default: true
  23554. },
  23555. {
  23556. name: "Macro+",
  23557. height: math.unit(800, "feet")
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(6, "feet"),
  23566. weight: math.unit(150, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/jaipur/front.svg",
  23570. extra: 3860 / 3731,
  23571. bottom: 287 / 4140
  23572. }
  23573. },
  23574. back: {
  23575. height: math.unit(6, "feet"),
  23576. weight: math.unit(150, "lb"),
  23577. name: "Back",
  23578. image: {
  23579. source: "./media/characters/jaipur/back.svg",
  23580. extra: 4060 / 3930,
  23581. bottom: 151 / 4200
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Normal",
  23588. height: math.unit(1.85, "meters"),
  23589. default: true
  23590. },
  23591. {
  23592. name: "Macro",
  23593. height: math.unit(150, "meters")
  23594. },
  23595. {
  23596. name: "Macro+",
  23597. height: math.unit(0.5, "miles")
  23598. },
  23599. {
  23600. name: "Macro++",
  23601. height: math.unit(2.5, "miles")
  23602. },
  23603. {
  23604. name: "Macro+++",
  23605. height: math.unit(12, "miles")
  23606. },
  23607. {
  23608. name: "Macro++++",
  23609. height: math.unit(120, "miles")
  23610. },
  23611. {
  23612. name: "Macro+++++",
  23613. height: math.unit(1200, "miles")
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(6, "feet"),
  23622. weight: math.unit(150, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/sheila-wolf/front.svg",
  23626. extra: 1931 / 1808,
  23627. bottom: 29.5 / 1960
  23628. }
  23629. },
  23630. dick: {
  23631. height: math.unit(1.464, "feet"),
  23632. name: "Dick",
  23633. image: {
  23634. source: "./media/characters/sheila-wolf/dick.svg"
  23635. }
  23636. },
  23637. muzzle: {
  23638. height: math.unit(0.513, "feet"),
  23639. name: "Muzzle",
  23640. image: {
  23641. source: "./media/characters/sheila-wolf/muzzle.svg"
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Macro",
  23648. height: math.unit(70, "feet"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(32, "meters"),
  23658. weight: math.unit(300000, "kg"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/almor/front.svg",
  23662. extra: 1408 / 1322,
  23663. bottom: 94.6 / 1506.5
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(32, "meters"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(7, "feet"),
  23680. weight: math.unit(200, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/silver/front.svg",
  23684. extra: 472.1 / 450.5,
  23685. bottom: 26.5 / 499.424
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Normal",
  23692. height: math.unit(7, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Macro",
  23697. height: math.unit(800, "feet")
  23698. },
  23699. {
  23700. name: "Megamacro",
  23701. height: math.unit(250, "miles")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(6, "feet"),
  23710. weight: math.unit(150, "lb"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/pliskin/front.svg",
  23714. extra: 1469 / 1359,
  23715. bottom: 70 / 1540
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Micro",
  23722. height: math.unit(3, "inches")
  23723. },
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(5 + 11 / 12, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(120, "feet")
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23737. {
  23738. front: {
  23739. height: math.unit(6, "feet"),
  23740. weight: math.unit(150, "lb"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/sammy/front.svg",
  23744. extra: 1193 / 1089,
  23745. bottom: 30.5 / 1226
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Macro",
  23752. height: math.unit(1700, "feet"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Examacro",
  23757. height: math.unit(2.5e9, "lightyears")
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23763. {
  23764. front: {
  23765. height: math.unit(21, "meters"),
  23766. weight: math.unit(12, "tonnes"),
  23767. name: "Front",
  23768. image: {
  23769. source: "./media/characters/kuru/front.svg",
  23770. extra: 4301 / 3785,
  23771. bottom: 371.3 / 4691
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Macro",
  23778. height: math.unit(21, "meters"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(23, "meters"),
  23788. weight: math.unit(12.2, "tonnes"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/rakka/front.svg",
  23792. extra: 4670 / 4169,
  23793. bottom: 301 / 4968.7
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Macro",
  23800. height: math.unit(23, "meters"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(6, "feet"),
  23810. weight: math.unit(150, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/rhys-feline/front.svg",
  23814. extra: 2488 / 2308,
  23815. bottom: 35.67 / 2519.19
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Really Small",
  23822. height: math.unit(1, "nm")
  23823. },
  23824. {
  23825. name: "Micro",
  23826. height: math.unit(4, "inches")
  23827. },
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(4 + 10 / 12, "feet"),
  23831. default: true
  23832. },
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(100, "feet")
  23836. },
  23837. {
  23838. name: "Megamacto",
  23839. height: math.unit(50, "miles")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23845. {
  23846. side: {
  23847. height: math.unit(30, "feet"),
  23848. weight: math.unit(35000, "kg"),
  23849. name: "Side",
  23850. image: {
  23851. source: "./media/characters/alydar/side.svg",
  23852. extra: 234 / 222,
  23853. bottom: 6.5 / 241
  23854. }
  23855. },
  23856. front: {
  23857. height: math.unit(30, "feet"),
  23858. weight: math.unit(35000, "kg"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/alydar/front.svg",
  23862. extra: 223.37 / 210.2,
  23863. bottom: 22.3 / 246.76
  23864. }
  23865. },
  23866. top: {
  23867. height: math.unit(64.54, "feet"),
  23868. weight: math.unit(35000, "kg"),
  23869. name: "Top",
  23870. image: {
  23871. source: "./media/characters/alydar/top.svg"
  23872. }
  23873. },
  23874. anthro: {
  23875. height: math.unit(30, "feet"),
  23876. weight: math.unit(9000, "kg"),
  23877. name: "Anthro",
  23878. image: {
  23879. source: "./media/characters/alydar/anthro.svg",
  23880. extra: 432 / 421,
  23881. bottom: 7.18 / 440
  23882. }
  23883. },
  23884. maw: {
  23885. height: math.unit(11.693, "feet"),
  23886. name: "Maw",
  23887. image: {
  23888. source: "./media/characters/alydar/maw.svg"
  23889. }
  23890. },
  23891. head: {
  23892. height: math.unit(11.693, "feet"),
  23893. name: "Head",
  23894. image: {
  23895. source: "./media/characters/alydar/head.svg"
  23896. }
  23897. },
  23898. headAlt: {
  23899. height: math.unit(12.861, "feet"),
  23900. name: "Head (Alt)",
  23901. image: {
  23902. source: "./media/characters/alydar/head-alt.svg"
  23903. }
  23904. },
  23905. wing: {
  23906. height: math.unit(20.712, "feet"),
  23907. name: "Wing",
  23908. image: {
  23909. source: "./media/characters/alydar/wing.svg"
  23910. }
  23911. },
  23912. wingFeather: {
  23913. height: math.unit(9.662, "feet"),
  23914. name: "Wing Feather",
  23915. image: {
  23916. source: "./media/characters/alydar/wing-feather.svg"
  23917. }
  23918. },
  23919. countourFeather: {
  23920. height: math.unit(4.154, "feet"),
  23921. name: "Contour Feather",
  23922. image: {
  23923. source: "./media/characters/alydar/contour-feather.svg"
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Diplomatic",
  23930. height: math.unit(13, "feet"),
  23931. default: true
  23932. },
  23933. {
  23934. name: "Small",
  23935. height: math.unit(30, "feet")
  23936. },
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(95, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Large",
  23944. height: math.unit(285, "feet")
  23945. },
  23946. {
  23947. name: "Incomprehensible",
  23948. height: math.unit(450, "megameters")
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23954. {
  23955. side: {
  23956. height: math.unit(11, "feet"),
  23957. weight: math.unit(1750, "kg"),
  23958. name: "Side",
  23959. image: {
  23960. source: "./media/characters/selicia/side.svg",
  23961. extra: 440 / 396,
  23962. bottom: 24.8 / 465.979
  23963. }
  23964. },
  23965. maw: {
  23966. height: math.unit(4.665, "feet"),
  23967. name: "Maw",
  23968. image: {
  23969. source: "./media/characters/selicia/maw.svg"
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(11, "feet"),
  23977. default: true
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23983. {
  23984. side: {
  23985. height: math.unit(2 + 6 / 12, "feet"),
  23986. weight: math.unit(30, "lb"),
  23987. name: "Side",
  23988. image: {
  23989. source: "./media/characters/layla/side.svg",
  23990. extra: 244 / 188,
  23991. bottom: 18.2 / 262.1
  23992. }
  23993. },
  23994. back: {
  23995. height: math.unit(2 + 6 / 12, "feet"),
  23996. weight: math.unit(30, "lb"),
  23997. name: "Back",
  23998. image: {
  23999. source: "./media/characters/layla/back.svg",
  24000. extra: 308 / 241.5,
  24001. bottom: 8.9 / 316.8
  24002. }
  24003. },
  24004. cumming: {
  24005. height: math.unit(2 + 6 / 12, "feet"),
  24006. weight: math.unit(30, "lb"),
  24007. name: "Cumming",
  24008. image: {
  24009. source: "./media/characters/layla/cumming.svg",
  24010. extra: 342 / 279,
  24011. bottom: 595 / 938
  24012. }
  24013. },
  24014. dickFlaccid: {
  24015. height: math.unit(2.595, "feet"),
  24016. name: "Flaccid Genitals",
  24017. image: {
  24018. source: "./media/characters/layla/dick-flaccid.svg"
  24019. }
  24020. },
  24021. dickErect: {
  24022. height: math.unit(2.359, "feet"),
  24023. name: "Erect Genitals",
  24024. image: {
  24025. source: "./media/characters/layla/dick-erect.svg"
  24026. }
  24027. },
  24028. dragon: {
  24029. height: math.unit(40, "feet"),
  24030. name: "Dragon",
  24031. image: {
  24032. source: "./media/characters/layla/dragon.svg",
  24033. extra: 610/535,
  24034. bottom: 367/977
  24035. }
  24036. },
  24037. taur: {
  24038. height: math.unit(30, "feet"),
  24039. name: "Taur",
  24040. image: {
  24041. source: "./media/characters/layla/taur.svg",
  24042. extra: 1268/1199,
  24043. bottom: 112/1380
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Micro",
  24050. height: math.unit(1, "inch")
  24051. },
  24052. {
  24053. name: "Small",
  24054. height: math.unit(1, "foot")
  24055. },
  24056. {
  24057. name: "Normal",
  24058. height: math.unit(2 + 6 / 12, "feet"),
  24059. default: true
  24060. },
  24061. {
  24062. name: "Macro",
  24063. height: math.unit(200, "feet")
  24064. },
  24065. {
  24066. name: "Megamacro",
  24067. height: math.unit(1000, "miles")
  24068. },
  24069. {
  24070. name: "Planetary",
  24071. height: math.unit(8000, "miles")
  24072. },
  24073. {
  24074. name: "True Layla",
  24075. height: math.unit(200000 * 7, "multiverses")
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24081. {
  24082. back: {
  24083. height: math.unit(10.5, "feet"),
  24084. weight: math.unit(800, "lb"),
  24085. name: "Back",
  24086. image: {
  24087. source: "./media/characters/knox/back.svg",
  24088. extra: 1486 / 1089,
  24089. bottom: 107 / 1601.4
  24090. }
  24091. },
  24092. side: {
  24093. height: math.unit(10.5, "feet"),
  24094. weight: math.unit(800, "lb"),
  24095. name: "Side",
  24096. image: {
  24097. source: "./media/characters/knox/side.svg",
  24098. extra: 244 / 218,
  24099. bottom: 14 / 260
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Compact",
  24106. height: math.unit(10.5, "feet"),
  24107. default: true
  24108. },
  24109. {
  24110. name: "Dynamax",
  24111. height: math.unit(210, "feet")
  24112. },
  24113. {
  24114. name: "Full Macro",
  24115. height: math.unit(850, "feet")
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(28, "feet"),
  24124. weight: math.unit(10500, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/kayda/front.svg",
  24128. extra: 1536 / 1428,
  24129. bottom: 68.7 / 1603
  24130. }
  24131. },
  24132. back: {
  24133. height: math.unit(28, "feet"),
  24134. weight: math.unit(10500, "lb"),
  24135. name: "Back",
  24136. image: {
  24137. source: "./media/characters/kayda/back.svg",
  24138. extra: 1557 / 1464,
  24139. bottom: 39.5 / 1597.49
  24140. }
  24141. },
  24142. dick: {
  24143. height: math.unit(3.858, "feet"),
  24144. name: "Dick",
  24145. image: {
  24146. source: "./media/characters/kayda/dick.svg"
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Macro",
  24153. height: math.unit(28, "feet"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(10 + 11 / 12, "feet"),
  24163. weight: math.unit(1400, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/brian/front.svg",
  24167. extra: 737 / 692,
  24168. bottom: 55.4 / 785
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(10 + 11 / 12, "feet"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(5 + 8 / 12, "feet"),
  24185. weight: math.unit(140, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/khemri/front.svg",
  24189. extra: 4780 / 4059,
  24190. bottom: 80.1 / 4859.25
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Micro",
  24197. height: math.unit(6, "inches")
  24198. },
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 8 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24208. {
  24209. front: {
  24210. height: math.unit(13, "feet"),
  24211. weight: math.unit(1700, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/felix-braveheart/front.svg",
  24215. extra: 1222 / 1157,
  24216. bottom: 53.2 / 1280
  24217. }
  24218. },
  24219. back: {
  24220. height: math.unit(13, "feet"),
  24221. weight: math.unit(1700, "lb"),
  24222. name: "Back",
  24223. image: {
  24224. source: "./media/characters/felix-braveheart/back.svg",
  24225. extra: 1277 / 1203,
  24226. bottom: 50.2 / 1327
  24227. }
  24228. },
  24229. feral: {
  24230. height: math.unit(6, "feet"),
  24231. weight: math.unit(400, "lb"),
  24232. name: "Feral",
  24233. image: {
  24234. source: "./media/characters/felix-braveheart/feral.svg",
  24235. extra: 682 / 625,
  24236. bottom: 6.9 / 688
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(13, "feet"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24250. {
  24251. side: {
  24252. height: math.unit(5 + 11 / 12, "feet"),
  24253. weight: math.unit(1400, "lb"),
  24254. name: "Side",
  24255. image: {
  24256. source: "./media/characters/shadow-blade/side.svg",
  24257. extra: 1726 / 1267,
  24258. bottom: 58.4 / 1785
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(5 + 11 / 12, "feet"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(1 + 6 / 12, "feet"),
  24275. weight: math.unit(25, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/karla-halldor/front.svg",
  24279. extra: 1459 / 1383,
  24280. bottom: 12 / 1472
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(1 + 6 / 12, "feet"),
  24288. default: true
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(6 + 2 / 12, "feet"),
  24297. weight: math.unit(160, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/ariam/front.svg",
  24301. extra: 1073/976,
  24302. bottom: 52/1125
  24303. }
  24304. },
  24305. back: {
  24306. height: math.unit(6 + 2/12, "feet"),
  24307. weight: math.unit(160, "lb"),
  24308. name: "Back",
  24309. image: {
  24310. source: "./media/characters/ariam/back.svg",
  24311. extra: 1103/1023,
  24312. bottom: 9/1112
  24313. }
  24314. },
  24315. dressed: {
  24316. height: math.unit(6 + 2/12, "feet"),
  24317. weight: math.unit(160, "lb"),
  24318. name: "Dressed",
  24319. image: {
  24320. source: "./media/characters/ariam/dressed.svg",
  24321. extra: 1099/1009,
  24322. bottom: 25/1124
  24323. }
  24324. },
  24325. squatting: {
  24326. height: math.unit(4.1, "feet"),
  24327. weight: math.unit(160, "lb"),
  24328. name: "Squatting",
  24329. image: {
  24330. source: "./media/characters/ariam/squatting.svg",
  24331. extra: 2617 / 2112,
  24332. bottom: 61.2 / 2681,
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Normal",
  24339. height: math.unit(6 + 2 / 12, "feet"),
  24340. default: true
  24341. },
  24342. {
  24343. name: "Normal+",
  24344. height: math.unit(4, "meters")
  24345. },
  24346. {
  24347. name: "Macro",
  24348. height: math.unit(50, "meters")
  24349. },
  24350. {
  24351. name: "Macro+",
  24352. height: math.unit(100, "meters")
  24353. },
  24354. {
  24355. name: "Megamacro",
  24356. height: math.unit(20, "km")
  24357. },
  24358. {
  24359. name: "Caretaker",
  24360. height: math.unit(444, "megameters")
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24366. {
  24367. front: {
  24368. height: math.unit(1.67, "meters"),
  24369. weight: math.unit(140, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24373. extra: 438 / 410,
  24374. bottom: 0.75 / 439
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Shrunken",
  24381. height: math.unit(7.6, "cm")
  24382. },
  24383. {
  24384. name: "Human Scale",
  24385. height: math.unit(1.67, "meters")
  24386. },
  24387. {
  24388. name: "Wolxi Scale",
  24389. height: math.unit(36.7, "meters"),
  24390. default: true
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(1.73, "meters"),
  24399. weight: math.unit(240, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/izue-two-mothers/front.svg",
  24403. extra: 469 / 437,
  24404. bottom: 1.24 / 470.6
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Shrunken",
  24411. height: math.unit(7.86, "cm")
  24412. },
  24413. {
  24414. name: "Human Scale",
  24415. height: math.unit(1.73, "meters")
  24416. },
  24417. {
  24418. name: "Wolxi Scale",
  24419. height: math.unit(38, "meters"),
  24420. default: true
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(1.55, "meters"),
  24429. weight: math.unit(120, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/teeku-love-shack/front.svg",
  24433. extra: 387 / 362,
  24434. bottom: 1.51 / 388
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Shrunken",
  24441. height: math.unit(7, "cm")
  24442. },
  24443. {
  24444. name: "Human Scale",
  24445. height: math.unit(1.55, "meters")
  24446. },
  24447. {
  24448. name: "Wolxi Scale",
  24449. height: math.unit(34.1, "meters"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(1.83, "meters"),
  24459. weight: math.unit(135, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/dejma-the-red/front.svg",
  24463. extra: 480 / 458,
  24464. bottom: 1.8 / 482
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Shrunken",
  24471. height: math.unit(8.3, "cm")
  24472. },
  24473. {
  24474. name: "Human Scale",
  24475. height: math.unit(1.83, "meters")
  24476. },
  24477. {
  24478. name: "Wolxi Scale",
  24479. height: math.unit(40, "meters"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(1.78, "meters"),
  24489. weight: math.unit(65, "kg"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/aki/front.svg",
  24493. extra: 452 / 415
  24494. }
  24495. },
  24496. frontNsfw: {
  24497. height: math.unit(1.78, "meters"),
  24498. weight: math.unit(65, "kg"),
  24499. name: "Front (NSFW)",
  24500. image: {
  24501. source: "./media/characters/aki/front-nsfw.svg",
  24502. extra: 452 / 415
  24503. }
  24504. },
  24505. back: {
  24506. height: math.unit(1.78, "meters"),
  24507. weight: math.unit(65, "kg"),
  24508. name: "Back",
  24509. image: {
  24510. source: "./media/characters/aki/back.svg",
  24511. extra: 452 / 415
  24512. }
  24513. },
  24514. rump: {
  24515. height: math.unit(2.05, "feet"),
  24516. name: "Rump",
  24517. image: {
  24518. source: "./media/characters/aki/rump.svg"
  24519. }
  24520. },
  24521. dick: {
  24522. height: math.unit(0.95, "feet"),
  24523. name: "Dick",
  24524. image: {
  24525. source: "./media/characters/aki/dick.svg"
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Micro",
  24532. height: math.unit(15, "cm")
  24533. },
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(178, "cm"),
  24537. default: true
  24538. },
  24539. {
  24540. name: "Macro",
  24541. height: math.unit(214, "m")
  24542. },
  24543. {
  24544. name: "Macro+",
  24545. height: math.unit(534, "m")
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(5 + 5 / 12, "feet"),
  24554. weight: math.unit(120, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/ari/front.svg",
  24558. extra: 714.5 / 682,
  24559. bottom: 8 / 722.5
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(5 + 5 / 12, "feet")
  24567. },
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(100, "feet"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Megamacro",
  24575. height: math.unit(100, "miles")
  24576. },
  24577. {
  24578. name: "Gigamacro",
  24579. height: math.unit(80000, "miles")
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24585. {
  24586. side: {
  24587. height: math.unit(9, "feet"),
  24588. weight: math.unit(400, "kg"),
  24589. name: "Side",
  24590. image: {
  24591. source: "./media/characters/bolt/side.svg",
  24592. extra: 1126 / 896,
  24593. bottom: 60 / 1187.3,
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Micro",
  24600. height: math.unit(5, "inches")
  24601. },
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(9, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(700, "feet")
  24610. },
  24611. {
  24612. name: "Max Size",
  24613. height: math.unit(1.52e22, "yottameters")
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(4.53, "meters"),
  24622. weight: math.unit(3, "tons"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/draekon-sylviar/front.svg",
  24626. extra: 1228 / 1068,
  24627. bottom: 41 / 1270
  24628. }
  24629. },
  24630. tail: {
  24631. height: math.unit(1.772, "meter"),
  24632. name: "Tail",
  24633. image: {
  24634. source: "./media/characters/draekon-sylviar/tail.svg"
  24635. }
  24636. },
  24637. head: {
  24638. height: math.unit(1.331, "meter"),
  24639. name: "Head",
  24640. image: {
  24641. source: "./media/characters/draekon-sylviar/head.svg"
  24642. }
  24643. },
  24644. hand: {
  24645. height: math.unit(0.564, "meter"),
  24646. name: "Hand",
  24647. image: {
  24648. source: "./media/characters/draekon-sylviar/hand.svg"
  24649. }
  24650. },
  24651. foot: {
  24652. height: math.unit(0.621, "meter"),
  24653. name: "Foot",
  24654. image: {
  24655. source: "./media/characters/draekon-sylviar/foot.svg",
  24656. bottom: 32 / 324
  24657. }
  24658. },
  24659. dick: {
  24660. height: math.unit(61, "cm"),
  24661. name: "Dick",
  24662. image: {
  24663. source: "./media/characters/draekon-sylviar/dick.svg"
  24664. }
  24665. },
  24666. dickseparated: {
  24667. height: math.unit(61, "cm"),
  24668. name: "Dick-separated",
  24669. image: {
  24670. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Small",
  24677. height: math.unit(4.53 / 2, "meters"),
  24678. default: true
  24679. },
  24680. {
  24681. name: "Normal",
  24682. height: math.unit(4.53, "meters"),
  24683. default: true
  24684. },
  24685. {
  24686. name: "Large",
  24687. height: math.unit(4.53 * 2, "meters"),
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(6 + 2 / 12, "feet"),
  24696. weight: math.unit(180, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/brawler/front.svg",
  24700. extra: 3301 / 3027,
  24701. bottom: 138 / 3439
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(6 + 2 / 12, "feet"),
  24709. default: true
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24715. {
  24716. front: {
  24717. height: math.unit(11, "feet"),
  24718. weight: math.unit(1000, "lb"),
  24719. name: "Front",
  24720. image: {
  24721. source: "./media/characters/alex/front.svg",
  24722. bottom: 44.5 / 620
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Micro",
  24729. height: math.unit(5, "inches")
  24730. },
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(11, "feet"),
  24734. default: true
  24735. },
  24736. {
  24737. name: "Macro",
  24738. height: math.unit(9.5e9, "feet")
  24739. },
  24740. {
  24741. name: "Max Size",
  24742. height: math.unit(1.4e283, "yottameters")
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24748. {
  24749. female: {
  24750. height: math.unit(29.9, "m"),
  24751. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24752. name: "Female",
  24753. image: {
  24754. source: "./media/characters/zenari/female.svg",
  24755. extra: 3281.6 / 3217,
  24756. bottom: 72.2 / 3353
  24757. }
  24758. },
  24759. male: {
  24760. height: math.unit(27.7, "m"),
  24761. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24762. name: "Male",
  24763. image: {
  24764. source: "./media/characters/zenari/male.svg",
  24765. extra: 3008 / 2991,
  24766. bottom: 54.6 / 3069
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Macro",
  24773. height: math.unit(29.7, "meters"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24780. {
  24781. female: {
  24782. height: math.unit(23.8, "m"),
  24783. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24784. name: "Female",
  24785. image: {
  24786. source: "./media/characters/mactarian/female.svg",
  24787. extra: 2662 / 2569,
  24788. bottom: 73 / 2736
  24789. }
  24790. },
  24791. male: {
  24792. height: math.unit(23.8, "m"),
  24793. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24794. name: "Male",
  24795. image: {
  24796. source: "./media/characters/mactarian/male.svg",
  24797. extra: 2673 / 2600,
  24798. bottom: 76 / 2750
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(23.8, "meters"),
  24806. default: true
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24812. {
  24813. female: {
  24814. height: math.unit(19.3, "m"),
  24815. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24816. name: "Female",
  24817. image: {
  24818. source: "./media/characters/umok/female.svg",
  24819. extra: 2186 / 2078,
  24820. bottom: 87 / 2277
  24821. }
  24822. },
  24823. male: {
  24824. height: math.unit(19.5, "m"),
  24825. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24826. name: "Male",
  24827. image: {
  24828. source: "./media/characters/umok/male.svg",
  24829. extra: 2233 / 2140,
  24830. bottom: 24.4 / 2258
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(19.3, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24844. {
  24845. female: {
  24846. height: math.unit(26.15, "m"),
  24847. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24848. name: "Female",
  24849. image: {
  24850. source: "./media/characters/joraxian/female.svg",
  24851. extra: 2912 / 2824,
  24852. bottom: 36 / 2956
  24853. }
  24854. },
  24855. male: {
  24856. height: math.unit(25.4, "m"),
  24857. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24858. name: "Male",
  24859. image: {
  24860. source: "./media/characters/joraxian/male.svg",
  24861. extra: 2877 / 2721,
  24862. bottom: 82 / 2967
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Macro",
  24869. height: math.unit(26.15, "meters"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24876. {
  24877. female: {
  24878. height: math.unit(21.6, "m"),
  24879. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24880. name: "Female",
  24881. image: {
  24882. source: "./media/characters/sthara/female.svg",
  24883. extra: 2516 / 2347,
  24884. bottom: 21.5 / 2537
  24885. }
  24886. },
  24887. male: {
  24888. height: math.unit(24, "m"),
  24889. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24890. name: "Male",
  24891. image: {
  24892. source: "./media/characters/sthara/male.svg",
  24893. extra: 2732 / 2607,
  24894. bottom: 23 / 2732
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(21.6, "meters"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(6 + 4 / 12, "feet"),
  24911. weight: math.unit(175, "lb"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/luka-bryzant/front.svg",
  24915. extra: 311 / 289,
  24916. bottom: 4 / 315
  24917. }
  24918. },
  24919. back: {
  24920. height: math.unit(6 + 4 / 12, "feet"),
  24921. weight: math.unit(175, "lb"),
  24922. name: "Back",
  24923. image: {
  24924. source: "./media/characters/luka-bryzant/back.svg",
  24925. extra: 311 / 289,
  24926. bottom: 3.8 / 313.7
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Micro",
  24933. height: math.unit(10, "inches")
  24934. },
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(6 + 4 / 12, "feet"),
  24938. default: true
  24939. },
  24940. {
  24941. name: "Large",
  24942. height: math.unit(12, "feet")
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(5 + 7 / 12, "feet"),
  24951. weight: math.unit(185, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/aman-aquila/front.svg",
  24955. extra: 1013 / 976,
  24956. bottom: 45.6 / 1057
  24957. }
  24958. },
  24959. side: {
  24960. height: math.unit(5 + 7 / 12, "feet"),
  24961. weight: math.unit(185, "lb"),
  24962. name: "Side",
  24963. image: {
  24964. source: "./media/characters/aman-aquila/side.svg",
  24965. extra: 1054 / 1011,
  24966. bottom: 15 / 1070
  24967. }
  24968. },
  24969. back: {
  24970. height: math.unit(5 + 7 / 12, "feet"),
  24971. weight: math.unit(185, "lb"),
  24972. name: "Back",
  24973. image: {
  24974. source: "./media/characters/aman-aquila/back.svg",
  24975. extra: 1026 / 970,
  24976. bottom: 12 / 1039
  24977. }
  24978. },
  24979. head: {
  24980. height: math.unit(1.211, "feet"),
  24981. name: "Head",
  24982. image: {
  24983. source: "./media/characters/aman-aquila/head.svg",
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Minimicro",
  24990. height: math.unit(0.057, "inches")
  24991. },
  24992. {
  24993. name: "Micro",
  24994. height: math.unit(7, "inches")
  24995. },
  24996. {
  24997. name: "Mini",
  24998. height: math.unit(3 + 7 / 12, "feet")
  24999. },
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(5 + 7 / 12, "feet"),
  25003. default: true
  25004. },
  25005. {
  25006. name: "Macro",
  25007. height: math.unit(157 + 7 / 12, "feet")
  25008. },
  25009. {
  25010. name: "Megamacro",
  25011. height: math.unit(1557 + 7 / 12, "feet")
  25012. },
  25013. {
  25014. name: "Gigamacro",
  25015. height: math.unit(15557 + 7 / 12, "feet")
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(3 + 2 / 12, "inches"),
  25024. weight: math.unit(0.3, "ounces"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/hiphae/front.svg",
  25028. extra: 1931 / 1683,
  25029. bottom: 24 / 1955
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(3 + 1 / 2, "inches"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(5 + 10 / 12, "feet"),
  25046. weight: math.unit(165, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/nicky/front.svg",
  25050. extra: 3144 / 2886,
  25051. bottom: 45.6 / 3192
  25052. }
  25053. },
  25054. back: {
  25055. height: math.unit(5 + 10 / 12, "feet"),
  25056. weight: math.unit(165, "lb"),
  25057. name: "Back",
  25058. image: {
  25059. source: "./media/characters/nicky/back.svg",
  25060. extra: 3055 / 2804,
  25061. bottom: 28.4 / 3087
  25062. }
  25063. },
  25064. frontclothed: {
  25065. height: math.unit(5 + 10 / 12, "feet"),
  25066. weight: math.unit(165, "lb"),
  25067. name: "Front-clothed",
  25068. image: {
  25069. source: "./media/characters/nicky/front-clothed.svg",
  25070. extra: 3184.9 / 2926.9,
  25071. bottom: 86.5 / 3239.9
  25072. }
  25073. },
  25074. foot: {
  25075. height: math.unit(1.16, "feet"),
  25076. name: "Foot",
  25077. image: {
  25078. source: "./media/characters/nicky/foot.svg"
  25079. }
  25080. },
  25081. feet: {
  25082. height: math.unit(1.34, "feet"),
  25083. name: "Feet",
  25084. image: {
  25085. source: "./media/characters/nicky/feet.svg"
  25086. }
  25087. },
  25088. maw: {
  25089. height: math.unit(0.9, "feet"),
  25090. name: "Maw",
  25091. image: {
  25092. source: "./media/characters/nicky/maw.svg"
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(5 + 10 / 12, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Macro",
  25104. height: math.unit(60, "feet")
  25105. },
  25106. {
  25107. name: "Megamacro",
  25108. height: math.unit(1, "mile")
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25114. {
  25115. side: {
  25116. height: math.unit(10, "feet"),
  25117. weight: math.unit(600, "lb"),
  25118. name: "Side",
  25119. image: {
  25120. source: "./media/characters/blair/side.svg",
  25121. bottom: 16.6 / 475,
  25122. extra: 458 / 431
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Micro",
  25129. height: math.unit(8, "inches")
  25130. },
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(10, "feet"),
  25134. default: true
  25135. },
  25136. {
  25137. name: "Macro",
  25138. height: math.unit(180, "feet")
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(5 + 4 / 12, "feet"),
  25147. weight: math.unit(125, "lb"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/fisher/front.svg",
  25151. extra: 444 / 390,
  25152. bottom: 2 / 444.8
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Micro",
  25159. height: math.unit(4, "inches")
  25160. },
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(5 + 4 / 12, "feet"),
  25164. default: true
  25165. },
  25166. {
  25167. name: "Macro",
  25168. height: math.unit(100, "feet")
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25174. {
  25175. front: {
  25176. height: math.unit(6.71, "feet"),
  25177. weight: math.unit(200, "lb"),
  25178. capacity: math.unit(1000000, "people"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/gliss/front.svg",
  25182. extra: 2347 / 2231,
  25183. bottom: 113 / 2462
  25184. }
  25185. },
  25186. hammerspaceSize: {
  25187. height: math.unit(6.71 * 717, "feet"),
  25188. weight: math.unit(200, "lb"),
  25189. capacity: math.unit(1000000, "people"),
  25190. name: "Hammerspace Size",
  25191. image: {
  25192. source: "./media/characters/gliss/front.svg",
  25193. extra: 2347 / 2231,
  25194. bottom: 113 / 2462
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(6.71, "feet"),
  25202. default: true
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25208. {
  25209. side: {
  25210. height: math.unit(1.44, "m"),
  25211. weight: math.unit(80, "kg"),
  25212. name: "Side",
  25213. image: {
  25214. source: "./media/characters/dune-anderson/side.svg",
  25215. bottom: 49 / 1426
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Wolf-sized",
  25222. height: math.unit(1.44, "meters")
  25223. },
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(5.05, "meters"),
  25227. default: true
  25228. },
  25229. {
  25230. name: "Big",
  25231. height: math.unit(14.4, "meters")
  25232. },
  25233. {
  25234. name: "Huge",
  25235. height: math.unit(144, "meters")
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25241. {
  25242. front: {
  25243. height: math.unit(7, "feet"),
  25244. weight: math.unit(425, "lb"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/hind/front.svg",
  25248. extra: 2091 / 1860,
  25249. bottom: 129 / 2220
  25250. }
  25251. },
  25252. back: {
  25253. height: math.unit(7, "feet"),
  25254. weight: math.unit(425, "lb"),
  25255. name: "Back",
  25256. image: {
  25257. source: "./media/characters/hind/back.svg",
  25258. extra: 2091 / 1860,
  25259. bottom: 24.6 / 2309
  25260. }
  25261. },
  25262. tail: {
  25263. height: math.unit(2.8, "feet"),
  25264. name: "Tail",
  25265. image: {
  25266. source: "./media/characters/hind/tail.svg"
  25267. }
  25268. },
  25269. head: {
  25270. height: math.unit(2.55, "feet"),
  25271. name: "Head",
  25272. image: {
  25273. source: "./media/characters/hind/head.svg"
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "XS",
  25280. height: math.unit(0.7, "feet")
  25281. },
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(7, "feet"),
  25285. default: true
  25286. },
  25287. {
  25288. name: "XL",
  25289. height: math.unit(70, "feet")
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25295. {
  25296. front: {
  25297. height: math.unit(2.1, "meters"),
  25298. weight: math.unit(150, "lb"),
  25299. name: "Front",
  25300. image: {
  25301. source: "./media/characters/tharquench-sizestealer/front.svg",
  25302. extra: 1605/1470,
  25303. bottom: 36/1641
  25304. }
  25305. },
  25306. frontAlt: {
  25307. height: math.unit(2.1, "meters"),
  25308. weight: math.unit(150, "lb"),
  25309. name: "Front (Alt)",
  25310. image: {
  25311. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25312. extra: 2318 / 2063,
  25313. bottom: 93.4 / 2410
  25314. }
  25315. },
  25316. },
  25317. [
  25318. {
  25319. name: "Nano",
  25320. height: math.unit(1, "mm")
  25321. },
  25322. {
  25323. name: "Micro",
  25324. height: math.unit(1, "cm")
  25325. },
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(2.1, "meters"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(7 + 5 / 12, "feet"),
  25338. weight: math.unit(357, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/solex-draconov/front.svg",
  25342. extra: 1993 / 1865,
  25343. bottom: 117 / 2111
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Natural Height",
  25350. height: math.unit(7 + 5 / 12, "feet"),
  25351. default: true
  25352. },
  25353. {
  25354. name: "Macro",
  25355. height: math.unit(350, "feet")
  25356. },
  25357. {
  25358. name: "Macro+",
  25359. height: math.unit(1000, "feet")
  25360. },
  25361. {
  25362. name: "Megamacro",
  25363. height: math.unit(20, "km")
  25364. },
  25365. {
  25366. name: "Megamacro+",
  25367. height: math.unit(1000, "km")
  25368. },
  25369. {
  25370. name: "Gigamacro",
  25371. height: math.unit(2.5, "Gm")
  25372. },
  25373. {
  25374. name: "Teramacro",
  25375. height: math.unit(15, "Tm")
  25376. },
  25377. {
  25378. name: "Galactic",
  25379. height: math.unit(30, "Zm")
  25380. },
  25381. {
  25382. name: "Universal",
  25383. height: math.unit(21000, "Ym")
  25384. },
  25385. {
  25386. name: "Omniversal",
  25387. height: math.unit(9.861e50, "Ym")
  25388. },
  25389. {
  25390. name: "Existential",
  25391. height: math.unit(1e300, "meters")
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25397. {
  25398. side: {
  25399. height: math.unit(25, "feet"),
  25400. weight: math.unit(90000, "lb"),
  25401. name: "Side",
  25402. image: {
  25403. source: "./media/characters/mandarax/side.svg",
  25404. extra: 614 / 332,
  25405. bottom: 55 / 630
  25406. }
  25407. },
  25408. head: {
  25409. height: math.unit(11.4, "feet"),
  25410. name: "Head",
  25411. image: {
  25412. source: "./media/characters/mandarax/head.svg"
  25413. }
  25414. },
  25415. belly: {
  25416. height: math.unit(33, "feet"),
  25417. name: "Belly",
  25418. capacity: math.unit(500, "people"),
  25419. image: {
  25420. source: "./media/characters/mandarax/belly.svg"
  25421. }
  25422. },
  25423. dick: {
  25424. height: math.unit(8.46, "feet"),
  25425. name: "Dick",
  25426. image: {
  25427. source: "./media/characters/mandarax/dick.svg"
  25428. }
  25429. },
  25430. top: {
  25431. height: math.unit(28, "meters"),
  25432. name: "Top",
  25433. image: {
  25434. source: "./media/characters/mandarax/top.svg"
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Normal",
  25441. height: math.unit(25, "feet"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(5, "feet"),
  25451. weight: math.unit(90, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/pixil/front.svg",
  25455. extra: 2000 / 1618,
  25456. bottom: 12.3 / 2011
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(5, "feet"),
  25464. default: true
  25465. },
  25466. {
  25467. name: "Megamacro",
  25468. height: math.unit(10, "miles"),
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25474. {
  25475. front: {
  25476. height: math.unit(7 + 2 / 12, "feet"),
  25477. weight: math.unit(200, "lb"),
  25478. name: "Front",
  25479. image: {
  25480. source: "./media/characters/angel/front.svg",
  25481. extra: 1830 / 1737,
  25482. bottom: 22.6 / 1854,
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(7 + 2 / 12, "feet"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(1000, "feet")
  25495. },
  25496. {
  25497. name: "Megamacro",
  25498. height: math.unit(2, "miles")
  25499. },
  25500. {
  25501. name: "Gigamacro",
  25502. height: math.unit(20, "earths")
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(5, "feet"),
  25511. weight: math.unit(180, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/mekana/front.svg",
  25515. extra: 1671 / 1605,
  25516. bottom: 3.5 / 1691
  25517. }
  25518. },
  25519. side: {
  25520. height: math.unit(5, "feet"),
  25521. weight: math.unit(180, "lb"),
  25522. name: "Side",
  25523. image: {
  25524. source: "./media/characters/mekana/side.svg",
  25525. extra: 1671 / 1605,
  25526. bottom: 3.5 / 1691
  25527. }
  25528. },
  25529. back: {
  25530. height: math.unit(5, "feet"),
  25531. weight: math.unit(180, "lb"),
  25532. name: "Back",
  25533. image: {
  25534. source: "./media/characters/mekana/back.svg",
  25535. extra: 1671 / 1605,
  25536. bottom: 3.5 / 1691
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(5, "feet"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(4 + 6 / 12, "feet"),
  25553. weight: math.unit(80, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/pixie/front.svg",
  25557. extra: 1924 / 1825,
  25558. bottom: 22.4 / 1946
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(4 + 6 / 12, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(40, "feet")
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(2.1, "meters"),
  25579. weight: math.unit(200, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/the-lascivious/front.svg",
  25583. extra: 1 / 0.893,
  25584. bottom: 3.5 / 573.7
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Human Scale",
  25591. height: math.unit(2.1, "meters")
  25592. },
  25593. {
  25594. name: "Wolxi Scale",
  25595. height: math.unit(46.2, "m"),
  25596. default: true
  25597. },
  25598. {
  25599. name: "Boinker of Buildings",
  25600. height: math.unit(10, "km")
  25601. },
  25602. {
  25603. name: "Shagger of Skyscrapers",
  25604. height: math.unit(40, "km")
  25605. },
  25606. {
  25607. name: "Banger of Boroughs",
  25608. height: math.unit(4000, "km")
  25609. },
  25610. {
  25611. name: "Screwer of States",
  25612. height: math.unit(100000, "km")
  25613. },
  25614. {
  25615. name: "Pounder of Planets",
  25616. height: math.unit(2000000, "km")
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(6, "feet"),
  25625. weight: math.unit(150, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/aj/front.svg",
  25629. extra: 2039 / 1562,
  25630. bottom: 40 / 2079
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(11 + 6 / 12, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Megamacro",
  25642. height: math.unit(60, "megameters")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25648. {
  25649. side: {
  25650. height: math.unit(31 + 8 / 12, "feet"),
  25651. weight: math.unit(75000, "kg"),
  25652. name: "Side",
  25653. image: {
  25654. source: "./media/characters/koros/side.svg",
  25655. extra: 1442 / 1297,
  25656. bottom: 122.7 / 1562
  25657. }
  25658. },
  25659. dicksKingsCrown: {
  25660. height: math.unit(6, "feet"),
  25661. name: "Dicks (King's Crown)",
  25662. image: {
  25663. source: "./media/characters/koros/dicks-kings-crown.svg"
  25664. }
  25665. },
  25666. dicksTailSet: {
  25667. height: math.unit(3, "feet"),
  25668. name: "Dicks (Tail Set)",
  25669. image: {
  25670. source: "./media/characters/koros/dicks-tail-set.svg"
  25671. }
  25672. },
  25673. dickCumming: {
  25674. height: math.unit(7.98, "feet"),
  25675. name: "Dick (Cumming)",
  25676. image: {
  25677. source: "./media/characters/koros/dick-cumming.svg"
  25678. }
  25679. },
  25680. dicksBack: {
  25681. height: math.unit(5.9, "feet"),
  25682. name: "Dicks (Back)",
  25683. image: {
  25684. source: "./media/characters/koros/dicks-back.svg"
  25685. }
  25686. },
  25687. dicksFront: {
  25688. height: math.unit(3.72, "feet"),
  25689. name: "Dicks (Front)",
  25690. image: {
  25691. source: "./media/characters/koros/dicks-front.svg"
  25692. }
  25693. },
  25694. dicksPeeking: {
  25695. height: math.unit(3.0, "feet"),
  25696. name: "Dicks (Peeking)",
  25697. image: {
  25698. source: "./media/characters/koros/dicks-peeking.svg"
  25699. }
  25700. },
  25701. eye: {
  25702. height: math.unit(1.7, "feet"),
  25703. name: "Eye",
  25704. image: {
  25705. source: "./media/characters/koros/eye.svg"
  25706. }
  25707. },
  25708. headFront: {
  25709. height: math.unit(11.69, "feet"),
  25710. name: "Head (Front)",
  25711. image: {
  25712. source: "./media/characters/koros/head-front.svg"
  25713. }
  25714. },
  25715. headSide: {
  25716. height: math.unit(14, "feet"),
  25717. name: "Head (Side)",
  25718. image: {
  25719. source: "./media/characters/koros/head-side.svg"
  25720. }
  25721. },
  25722. leg: {
  25723. height: math.unit(17, "feet"),
  25724. name: "Leg",
  25725. image: {
  25726. source: "./media/characters/koros/leg.svg"
  25727. }
  25728. },
  25729. mawSide: {
  25730. height: math.unit(12.8, "feet"),
  25731. name: "Maw (Side)",
  25732. image: {
  25733. source: "./media/characters/koros/maw-side.svg"
  25734. }
  25735. },
  25736. mawSpitting: {
  25737. height: math.unit(17, "feet"),
  25738. name: "Maw (Spitting)",
  25739. image: {
  25740. source: "./media/characters/koros/maw-spitting.svg"
  25741. }
  25742. },
  25743. slit: {
  25744. height: math.unit(2.8, "feet"),
  25745. name: "Slit",
  25746. image: {
  25747. source: "./media/characters/koros/slit.svg"
  25748. }
  25749. },
  25750. stomach: {
  25751. height: math.unit(6.8, "feet"),
  25752. capacity: math.unit(20, "people"),
  25753. name: "Stomach",
  25754. image: {
  25755. source: "./media/characters/koros/stomach.svg"
  25756. }
  25757. },
  25758. wingspanBottom: {
  25759. height: math.unit(114, "feet"),
  25760. name: "Wingspan (Bottom)",
  25761. image: {
  25762. source: "./media/characters/koros/wingspan-bottom.svg"
  25763. }
  25764. },
  25765. wingspanTop: {
  25766. height: math.unit(104, "feet"),
  25767. name: "Wingspan (Top)",
  25768. image: {
  25769. source: "./media/characters/koros/wingspan-top.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(31 + 8 / 12, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(18 + 5 / 12, "feet"),
  25786. weight: math.unit(3750, "kg"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/vexx/front.svg",
  25790. extra: 426 / 396,
  25791. bottom: 31.5 / 458
  25792. }
  25793. },
  25794. maw: {
  25795. height: math.unit(6, "feet"),
  25796. name: "Maw",
  25797. image: {
  25798. source: "./media/characters/vexx/maw.svg"
  25799. }
  25800. },
  25801. },
  25802. [
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(18 + 5 / 12, "feet"),
  25806. default: true
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(17 + 6 / 12, "feet"),
  25815. weight: math.unit(150, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/baadra/front.svg",
  25819. extra: 3137 / 2890,
  25820. bottom: 168.4 / 3305
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(17 + 6 / 12, "feet"),
  25825. weight: math.unit(150, "lb"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/baadra/back.svg",
  25829. extra: 3142 / 2890,
  25830. bottom: 220 / 3371
  25831. }
  25832. },
  25833. head: {
  25834. height: math.unit(5.45, "feet"),
  25835. name: "Head",
  25836. image: {
  25837. source: "./media/characters/baadra/head.svg"
  25838. }
  25839. },
  25840. headAngry: {
  25841. height: math.unit(4.95, "feet"),
  25842. name: "Head (Angry)",
  25843. image: {
  25844. source: "./media/characters/baadra/head-angry.svg"
  25845. }
  25846. },
  25847. headOpen: {
  25848. height: math.unit(6, "feet"),
  25849. name: "Head (Open)",
  25850. image: {
  25851. source: "./media/characters/baadra/head-open.svg"
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(17 + 6 / 12, "feet"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(7 + 3 / 12, "feet"),
  25868. weight: math.unit(180, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/juri/front.svg",
  25872. extra: 1401 / 1237,
  25873. bottom: 18.5 / 1418
  25874. }
  25875. },
  25876. side: {
  25877. height: math.unit(7 + 3 / 12, "feet"),
  25878. weight: math.unit(180, "lb"),
  25879. name: "Side",
  25880. image: {
  25881. source: "./media/characters/juri/side.svg",
  25882. extra: 1424 / 1242,
  25883. bottom: 18.5 / 1447
  25884. }
  25885. },
  25886. sitting: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(180, "lb"),
  25889. name: "Sitting",
  25890. image: {
  25891. source: "./media/characters/juri/sitting.svg",
  25892. extra: 1270 / 1143,
  25893. bottom: 100 / 1343
  25894. }
  25895. },
  25896. back: {
  25897. height: math.unit(7 + 3 / 12, "feet"),
  25898. weight: math.unit(180, "lb"),
  25899. name: "Back",
  25900. image: {
  25901. source: "./media/characters/juri/back.svg",
  25902. extra: 1377 / 1240,
  25903. bottom: 23.7 / 1405
  25904. }
  25905. },
  25906. maw: {
  25907. height: math.unit(2.8, "feet"),
  25908. name: "Maw",
  25909. image: {
  25910. source: "./media/characters/juri/maw.svg"
  25911. }
  25912. },
  25913. stomach: {
  25914. height: math.unit(0.89, "feet"),
  25915. capacity: math.unit(4, "liters"),
  25916. name: "Stomach",
  25917. image: {
  25918. source: "./media/characters/juri/stomach.svg"
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(7 + 3 / 12, "feet"),
  25926. default: true
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25932. {
  25933. fox: {
  25934. height: math.unit(5 + 6 / 12, "feet"),
  25935. weight: math.unit(140, "lb"),
  25936. name: "Fox",
  25937. image: {
  25938. source: "./media/characters/maxene-sita/fox.svg",
  25939. extra: 146 / 138,
  25940. bottom: 2.1 / 148.19
  25941. }
  25942. },
  25943. foxLaying: {
  25944. height: math.unit(1.70, "feet"),
  25945. weight: math.unit(140, "lb"),
  25946. name: "Fox (Laying)",
  25947. image: {
  25948. source: "./media/characters/maxene-sita/fox-laying.svg",
  25949. extra: 910 / 572,
  25950. bottom: 71 / 981
  25951. }
  25952. },
  25953. kitsune: {
  25954. height: math.unit(10, "feet"),
  25955. weight: math.unit(800, "lb"),
  25956. name: "Kitsune",
  25957. image: {
  25958. source: "./media/characters/maxene-sita/kitsune.svg",
  25959. extra: 185 / 176,
  25960. bottom: 4.7 / 189.9
  25961. }
  25962. },
  25963. hellhound: {
  25964. height: math.unit(10, "feet"),
  25965. weight: math.unit(700, "lb"),
  25966. name: "Hellhound",
  25967. image: {
  25968. source: "./media/characters/maxene-sita/hellhound.svg",
  25969. extra: 1600 / 1545,
  25970. bottom: 81 / 1681
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(5 + 6 / 12, "feet"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25984. {
  25985. front: {
  25986. height: math.unit(3 + 4 / 12, "feet"),
  25987. weight: math.unit(70, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/maia/front.svg",
  25991. extra: 227 / 219.5,
  25992. bottom: 40 / 267
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(3 + 4 / 12, "feet"),
  25997. weight: math.unit(70, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/maia/back.svg",
  26001. extra: 237 / 225
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(3 + 4 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26015. {
  26016. front: {
  26017. height: math.unit(5 + 10 / 12, "feet"),
  26018. weight: math.unit(197, "lb"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/jabaro/front.svg",
  26022. extra: 225 / 216,
  26023. bottom: 5.06 / 230
  26024. }
  26025. },
  26026. back: {
  26027. height: math.unit(5 + 10 / 12, "feet"),
  26028. weight: math.unit(197, "lb"),
  26029. name: "Back",
  26030. image: {
  26031. source: "./media/characters/jabaro/back.svg",
  26032. extra: 225 / 219,
  26033. bottom: 1.9 / 227
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(5 + 10 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(5 + 8 / 12, "feet"),
  26050. weight: math.unit(139, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/risa/front.svg",
  26054. extra: 270 / 260,
  26055. bottom: 11.2 / 282
  26056. }
  26057. },
  26058. back: {
  26059. height: math.unit(5 + 8 / 12, "feet"),
  26060. weight: math.unit(139, "lb"),
  26061. name: "Back",
  26062. image: {
  26063. source: "./media/characters/risa/back.svg",
  26064. extra: 264 / 255,
  26065. bottom: 4 / 268
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(5 + 8 / 12, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(2 + 11 / 12, "feet"),
  26082. weight: math.unit(30, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/weatley/front.svg",
  26086. bottom: 10.7 / 414,
  26087. extra: 403.5 / 362
  26088. }
  26089. },
  26090. back: {
  26091. height: math.unit(2 + 11 / 12, "feet"),
  26092. weight: math.unit(30, "lb"),
  26093. name: "Back",
  26094. image: {
  26095. source: "./media/characters/weatley/back.svg",
  26096. bottom: 10.7 / 414,
  26097. extra: 403.5 / 362
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(2 + 11 / 12, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(5 + 2 / 12, "feet"),
  26114. weight: math.unit(50, "kg"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/mercury-crescent/front.svg",
  26118. extra: 1088 / 1033,
  26119. bottom: 18.9 / 1109
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(5 + 2 / 12, "feet"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(2, "feet"),
  26136. weight: math.unit(15, "kg"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/diamond-jones/front.svg",
  26140. extra: 727/723,
  26141. bottom: 46/773
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(2, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26155. {
  26156. front: {
  26157. height: math.unit(3, "feet"),
  26158. weight: math.unit(30, "kg"),
  26159. name: "Front",
  26160. image: {
  26161. source: "./media/characters/sweet-bit/front.svg",
  26162. extra: 675 / 567,
  26163. bottom: 27.7 / 703
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(3, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26177. {
  26178. side: {
  26179. height: math.unit(9.178, "feet"),
  26180. weight: math.unit(500, "lb"),
  26181. name: "Side",
  26182. image: {
  26183. source: "./media/characters/umbrazen/side.svg",
  26184. extra: 1730 / 1473,
  26185. bottom: 34.6 / 1765
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(9.178, "feet"),
  26193. default: true
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(10, "feet"),
  26202. weight: math.unit(750, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/arlist/front.svg",
  26206. extra: 961 / 778,
  26207. bottom: 6.2 / 986
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(10, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 1 / 12, "feet"),
  26224. weight: math.unit(110, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/aradel/front.svg",
  26228. extra: 324 / 303,
  26229. bottom: 3.6 / 329.4
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 1 / 12, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(3 + 8 / 12, "feet"),
  26246. weight: math.unit(50, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/serryn/front.svg",
  26250. extra: 1792 / 1656,
  26251. bottom: 43.5 / 1840
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(3 + 8 / 12, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(7 + 10 / 12, "feet"),
  26268. weight: math.unit(255, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/xavier-thyme/front.svg",
  26272. extra: 3733 / 3642,
  26273. bottom: 131 / 3869
  26274. }
  26275. },
  26276. frontRaven: {
  26277. height: math.unit(7 + 10 / 12, "feet"),
  26278. weight: math.unit(255, "lb"),
  26279. name: "Front (Raven)",
  26280. image: {
  26281. source: "./media/characters/xavier-thyme/front-raven.svg",
  26282. extra: 4385 / 3642,
  26283. bottom: 131 / 4517
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(7 + 10 / 12, "feet"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(1.6, "m"),
  26300. weight: math.unit(50, "kg"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/kiki/front.svg",
  26304. extra: 4682 / 3610,
  26305. bottom: 115 / 4777
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(1.6, "meters"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26319. {
  26320. front: {
  26321. height: math.unit(50, "m"),
  26322. weight: math.unit(500, "tonnes"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/ryoko/front.svg",
  26326. extra: 4632 / 3926,
  26327. bottom: 193 / 4823
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(50, "meters"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(30, "m"),
  26344. weight: math.unit(22, "tonnes"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/elio/front.svg",
  26348. extra: 4582 / 3720,
  26349. bottom: 236 / 4828
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(30, "meters"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6 + 3 / 12, "feet"),
  26366. weight: math.unit(120, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/azura/front.svg",
  26370. extra: 1149 / 1135,
  26371. bottom: 45 / 1194
  26372. }
  26373. },
  26374. frontClothed: {
  26375. height: math.unit(6 + 3 / 12, "feet"),
  26376. weight: math.unit(120, "lb"),
  26377. name: "Front (Clothed)",
  26378. image: {
  26379. source: "./media/characters/azura/front-clothed.svg",
  26380. extra: 1149 / 1135,
  26381. bottom: 45 / 1194
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(6 + 3 / 12, "feet"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Macro",
  26393. height: math.unit(20 + 6 / 12, "feet")
  26394. },
  26395. {
  26396. name: "Megamacro",
  26397. height: math.unit(12, "miles")
  26398. },
  26399. {
  26400. name: "Gigamacro",
  26401. height: math.unit(10000, "miles")
  26402. },
  26403. {
  26404. name: "Teramacro",
  26405. height: math.unit(900000, "miles")
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(12, "feet"),
  26414. weight: math.unit(1, "ton"),
  26415. capacity: math.unit(660000, "gallons"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/zeus/front.svg",
  26419. extra: 5005 / 4717,
  26420. bottom: 363 / 5388
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(12, "feet")
  26428. },
  26429. {
  26430. name: "Preferred Size",
  26431. height: math.unit(0.5, "miles"),
  26432. default: true
  26433. },
  26434. {
  26435. name: "Giga Horse",
  26436. height: math.unit(300, "miles")
  26437. },
  26438. {
  26439. name: "Riding Planets",
  26440. height: math.unit(30, "megameters")
  26441. },
  26442. {
  26443. name: "Cosmic Giant",
  26444. height: math.unit(3, "zettameters")
  26445. },
  26446. {
  26447. name: "Breeding God",
  26448. height: math.unit(9.92e22, "yottameters")
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26454. {
  26455. side: {
  26456. height: math.unit(9, "feet"),
  26457. weight: math.unit(1500, "kg"),
  26458. name: "Side",
  26459. image: {
  26460. source: "./media/characters/fang/side.svg",
  26461. extra: 924 / 866,
  26462. bottom: 47.5 / 972.3
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(9, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Macro",
  26474. height: math.unit(75 + 6 / 12, "feet")
  26475. },
  26476. {
  26477. name: "Teramacro",
  26478. height: math.unit(50000, "miles")
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(10, "feet"),
  26487. weight: math.unit(2, "tons"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/rekhit/front.svg",
  26491. extra: 2796 / 2590,
  26492. bottom: 225 / 3022
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(10, "feet"),
  26500. default: true
  26501. },
  26502. {
  26503. name: "Macro",
  26504. height: math.unit(500, "feet")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(7 + 6.451 / 12, "feet"),
  26513. weight: math.unit(310, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/dahlia-verrick/front.svg",
  26517. extra: 1488 / 1365,
  26518. bottom: 6.2 / 1495
  26519. }
  26520. },
  26521. back: {
  26522. height: math.unit(7 + 6.451 / 12, "feet"),
  26523. weight: math.unit(310, "lb"),
  26524. name: "Back",
  26525. image: {
  26526. source: "./media/characters/dahlia-verrick/back.svg",
  26527. extra: 1472 / 1351,
  26528. bottom: 5.28 / 1477
  26529. }
  26530. },
  26531. frontBusiness: {
  26532. height: math.unit(7 + 6.451 / 12, "feet"),
  26533. weight: math.unit(200, "lb"),
  26534. name: "Front (Business)",
  26535. image: {
  26536. source: "./media/characters/dahlia-verrick/front-business.svg",
  26537. extra: 1478 / 1381,
  26538. bottom: 5.5 / 1484
  26539. }
  26540. },
  26541. frontCasual: {
  26542. height: math.unit(7 + 6.451 / 12, "feet"),
  26543. weight: math.unit(200, "lb"),
  26544. name: "Front (Casual)",
  26545. image: {
  26546. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26547. extra: 1478 / 1381,
  26548. bottom: 5.5 / 1484
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Travel-Sized",
  26555. height: math.unit(7.45, "inches")
  26556. },
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(7 + 6.451 / 12, "feet"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Hitting the Town",
  26564. height: math.unit(37 + 8 / 12, "feet")
  26565. },
  26566. {
  26567. name: "Stomp in the Suburbs",
  26568. height: math.unit(964 + 9.728 / 12, "feet")
  26569. },
  26570. {
  26571. name: "Sit on the City",
  26572. height: math.unit(61747 + 10.592 / 12, "feet")
  26573. },
  26574. {
  26575. name: "Glomp the Globe",
  26576. height: math.unit(252919327 + 4.832 / 12, "feet")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(6 + 4 / 12, "feet"),
  26585. weight: math.unit(320, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/balina-mahigan/front.svg",
  26589. extra: 447 / 428,
  26590. bottom: 18 / 466
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(6 + 4 / 12, "feet"),
  26595. weight: math.unit(320, "lb"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/balina-mahigan/back.svg",
  26599. extra: 445 / 428,
  26600. bottom: 4.07 / 448
  26601. }
  26602. },
  26603. arm: {
  26604. height: math.unit(1.88, "feet"),
  26605. name: "Arm",
  26606. image: {
  26607. source: "./media/characters/balina-mahigan/arm.svg"
  26608. }
  26609. },
  26610. backPort: {
  26611. height: math.unit(0.685, "feet"),
  26612. name: "Back Port",
  26613. image: {
  26614. source: "./media/characters/balina-mahigan/back-port.svg"
  26615. }
  26616. },
  26617. hoofpaw: {
  26618. height: math.unit(1.41, "feet"),
  26619. name: "Hoofpaw",
  26620. image: {
  26621. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26622. }
  26623. },
  26624. leftHandBack: {
  26625. height: math.unit(0.938, "feet"),
  26626. name: "Left Hand (Back)",
  26627. image: {
  26628. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26629. }
  26630. },
  26631. leftHandFront: {
  26632. height: math.unit(0.938, "feet"),
  26633. name: "Left Hand (Front)",
  26634. image: {
  26635. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26636. }
  26637. },
  26638. rightHandBack: {
  26639. height: math.unit(0.95, "feet"),
  26640. name: "Right Hand (Back)",
  26641. image: {
  26642. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26643. }
  26644. },
  26645. rightHandFront: {
  26646. height: math.unit(0.95, "feet"),
  26647. name: "Right Hand (Front)",
  26648. image: {
  26649. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(6 + 4 / 12, "feet"),
  26657. default: true
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(6, "feet"),
  26666. weight: math.unit(320, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/balina-mejeri/front.svg",
  26670. extra: 517 / 488,
  26671. bottom: 44.2 / 561
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(6 + 4 / 12, "feet")
  26679. },
  26680. {
  26681. name: "Business",
  26682. height: math.unit(155, "feet"),
  26683. default: true
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26689. {
  26690. kneeling: {
  26691. height: math.unit(6 + 4 / 12, "feet"),
  26692. weight: math.unit(300 * 20, "lb"),
  26693. name: "Kneeling",
  26694. image: {
  26695. source: "./media/characters/balbarian/kneeling.svg",
  26696. extra: 922 / 862,
  26697. bottom: 42.4 / 965
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(6 + 4 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Treasured",
  26708. height: math.unit(18 + 9 / 12, "feet"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(900, "feet")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(6 + 4 / 12, "feet"),
  26722. weight: math.unit(325, "lb"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/balina-amarini/front.svg",
  26726. extra: 415 / 403,
  26727. bottom: 19 / 433.4
  26728. }
  26729. },
  26730. back: {
  26731. height: math.unit(6 + 4 / 12, "feet"),
  26732. weight: math.unit(325, "lb"),
  26733. name: "Back",
  26734. image: {
  26735. source: "./media/characters/balina-amarini/back.svg",
  26736. extra: 415 / 403,
  26737. bottom: 13.5 / 432
  26738. }
  26739. },
  26740. overdrive: {
  26741. height: math.unit(6 + 4 / 12, "feet"),
  26742. weight: math.unit(400, "lb"),
  26743. name: "Overdrive",
  26744. image: {
  26745. source: "./media/characters/balina-amarini/overdrive.svg",
  26746. extra: 269 / 259,
  26747. bottom: 12 / 282
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Boom",
  26754. height: math.unit(9 + 10 / 12, "feet"),
  26755. default: true
  26756. },
  26757. {
  26758. name: "Macro",
  26759. height: math.unit(280, "feet")
  26760. },
  26761. ]
  26762. ))
  26763. characterMakers.push(() => makeCharacter(
  26764. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26765. {
  26766. goddess: {
  26767. height: math.unit(600, "feet"),
  26768. weight: math.unit(2000000, "tons"),
  26769. name: "Goddess",
  26770. image: {
  26771. source: "./media/characters/lady-kubwa/goddess.svg",
  26772. extra: 1240.5 / 1223,
  26773. bottom: 22 / 1263
  26774. }
  26775. },
  26776. goddesser: {
  26777. height: math.unit(900, "feet"),
  26778. weight: math.unit(20000000, "lb"),
  26779. name: "Goddess-er",
  26780. image: {
  26781. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26782. extra: 899 / 888,
  26783. bottom: 12.6 / 912
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Macro",
  26790. height: math.unit(600, "feet"),
  26791. default: true
  26792. },
  26793. {
  26794. name: "Megamacro",
  26795. height: math.unit(250, "miles")
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(7 + 7 / 12, "feet"),
  26804. weight: math.unit(250, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/tala-grovehorn/front.svg",
  26808. extra: 2636 / 2525,
  26809. bottom: 147 / 2781
  26810. }
  26811. },
  26812. back: {
  26813. height: math.unit(7 + 7 / 12, "feet"),
  26814. weight: math.unit(250, "lb"),
  26815. name: "Back",
  26816. image: {
  26817. source: "./media/characters/tala-grovehorn/back.svg",
  26818. extra: 2635 / 2539,
  26819. bottom: 100 / 2732.8
  26820. }
  26821. },
  26822. mouth: {
  26823. height: math.unit(1.15, "feet"),
  26824. name: "Mouth",
  26825. image: {
  26826. source: "./media/characters/tala-grovehorn/mouth.svg"
  26827. }
  26828. },
  26829. dick: {
  26830. height: math.unit(2.36, "feet"),
  26831. name: "Dick",
  26832. image: {
  26833. source: "./media/characters/tala-grovehorn/dick.svg"
  26834. }
  26835. },
  26836. slit: {
  26837. height: math.unit(0.61, "feet"),
  26838. name: "Slit",
  26839. image: {
  26840. source: "./media/characters/tala-grovehorn/slit.svg"
  26841. }
  26842. },
  26843. },
  26844. [
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(7 + 7 / 12, "feet"),
  26852. weight: math.unit(225, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/epona/front.svg",
  26856. extra: 2445 / 2290,
  26857. bottom: 251 / 2696
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(7 + 7 / 12, "feet"),
  26862. weight: math.unit(225, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/epona/back.svg",
  26866. extra: 2546 / 2408,
  26867. bottom: 44 / 2589
  26868. }
  26869. },
  26870. genitals: {
  26871. height: math.unit(1.5, "feet"),
  26872. name: "Genitals",
  26873. image: {
  26874. source: "./media/characters/epona/genitals.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(7 + 7 / 12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(7, "feet"),
  26891. weight: math.unit(518, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/avia-bloodbourn/front.svg",
  26895. extra: 1466 / 1350,
  26896. bottom: 65 / 1527
  26897. }
  26898. },
  26899. },
  26900. [
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(9.35, "feet"),
  26908. weight: math.unit(600, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/amera/front.svg",
  26912. extra: 891 / 818,
  26913. bottom: 30 / 922.7
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(9.35, "feet"),
  26918. weight: math.unit(600, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/amera/back.svg",
  26922. extra: 876 / 824,
  26923. bottom: 6.8 / 884
  26924. }
  26925. },
  26926. dick: {
  26927. height: math.unit(2.14, "feet"),
  26928. name: "Dick",
  26929. image: {
  26930. source: "./media/characters/amera/dick.svg"
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Normal",
  26937. height: math.unit(9.35, "feet"),
  26938. default: true
  26939. },
  26940. ]
  26941. ))
  26942. characterMakers.push(() => makeCharacter(
  26943. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26944. {
  26945. kneeling: {
  26946. height: math.unit(3 + 4 / 12, "feet"),
  26947. weight: math.unit(90, "lb"),
  26948. name: "Kneeling",
  26949. image: {
  26950. source: "./media/characters/rosewen/kneeling.svg",
  26951. extra: 1835 / 1571,
  26952. bottom: 27.7 / 1862
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(3 + 4 / 12, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(5 + 10 / 12, "feet"),
  26969. weight: math.unit(200, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/sabah/front.svg",
  26973. extra: 849 / 763,
  26974. bottom: 33.9 / 881
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(5 + 10 / 12, "feet"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26988. {
  26989. front: {
  26990. height: math.unit(3 + 5 / 12, "feet"),
  26991. weight: math.unit(40, "kg"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/purple-flame/front.svg",
  26995. extra: 1577 / 1412,
  26996. bottom: 97 / 1694
  26997. }
  26998. },
  26999. frontDressed: {
  27000. height: math.unit(3 + 5 / 12, "feet"),
  27001. weight: math.unit(40, "kg"),
  27002. name: "Front (Dressed)",
  27003. image: {
  27004. source: "./media/characters/purple-flame/front-dressed.svg",
  27005. extra: 1577 / 1412,
  27006. bottom: 97 / 1694
  27007. }
  27008. },
  27009. headphones: {
  27010. height: math.unit(0.85, "feet"),
  27011. name: "Headphones",
  27012. image: {
  27013. source: "./media/characters/purple-flame/headphones.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Really Small",
  27020. height: math.unit(5, "cm")
  27021. },
  27022. {
  27023. name: "Micro",
  27024. height: math.unit(1 + 5 / 12, "feet")
  27025. },
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(3 + 5 / 12, "feet"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Minimacro",
  27033. height: math.unit(125, "feet")
  27034. },
  27035. {
  27036. name: "Macro",
  27037. height: math.unit(0.5, "miles")
  27038. },
  27039. {
  27040. name: "Megamacro",
  27041. height: math.unit(50, "miles")
  27042. },
  27043. {
  27044. name: "Gigantic",
  27045. height: math.unit(750, "miles")
  27046. },
  27047. {
  27048. name: "Planetary",
  27049. height: math.unit(15000, "miles")
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(14, "feet"),
  27058. weight: math.unit(959, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/arsenal/front.svg",
  27062. extra: 2357 / 2157,
  27063. bottom: 93 / 2458
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(14, "feet"),
  27071. default: true
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(6, "feet"),
  27080. weight: math.unit(150, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/adira/front.svg",
  27084. extra: 1078 / 1029,
  27085. bottom: 87 / 1166
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Micro",
  27092. height: math.unit(4, "inches"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(50, "feet")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(16, "feet"),
  27106. weight: math.unit(1000, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/grim/front.svg",
  27110. extra: 622 / 614,
  27111. bottom: 18.1 / 642
  27112. }
  27113. },
  27114. back: {
  27115. height: math.unit(16, "feet"),
  27116. weight: math.unit(1000, "lb"),
  27117. name: "Back",
  27118. image: {
  27119. source: "./media/characters/grim/back.svg",
  27120. extra: 610.6 / 602,
  27121. bottom: 40.8 / 652
  27122. }
  27123. },
  27124. hunched: {
  27125. height: math.unit(9.75, "feet"),
  27126. weight: math.unit(1000, "lb"),
  27127. name: "Hunched",
  27128. image: {
  27129. source: "./media/characters/grim/hunched.svg",
  27130. extra: 304 / 297,
  27131. bottom: 35.4 / 394
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(16, "feet"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(2.3, "meters"),
  27148. weight: math.unit(300, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/sinja/front-sfw.svg",
  27152. extra: 1393 / 1294,
  27153. bottom: 70 / 1463
  27154. }
  27155. },
  27156. frontNsfw: {
  27157. height: math.unit(2.3, "meters"),
  27158. weight: math.unit(300, "lb"),
  27159. name: "Front (NSFW)",
  27160. image: {
  27161. source: "./media/characters/sinja/front-nsfw.svg",
  27162. extra: 1393 / 1294,
  27163. bottom: 70 / 1463
  27164. }
  27165. },
  27166. back: {
  27167. height: math.unit(2.3, "meters"),
  27168. weight: math.unit(300, "lb"),
  27169. name: "Back",
  27170. image: {
  27171. source: "./media/characters/sinja/back.svg",
  27172. extra: 1393 / 1294,
  27173. bottom: 70 / 1463
  27174. }
  27175. },
  27176. head: {
  27177. height: math.unit(1.771, "feet"),
  27178. name: "Head",
  27179. image: {
  27180. source: "./media/characters/sinja/head.svg"
  27181. }
  27182. },
  27183. slit: {
  27184. height: math.unit(0.8, "feet"),
  27185. name: "Slit",
  27186. image: {
  27187. source: "./media/characters/sinja/slit.svg"
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Normal",
  27194. height: math.unit(2.3, "meters")
  27195. },
  27196. {
  27197. name: "Macro",
  27198. height: math.unit(91, "meters"),
  27199. default: true
  27200. },
  27201. {
  27202. name: "Megamacro",
  27203. height: math.unit(91440, "meters")
  27204. },
  27205. {
  27206. name: "Gigamacro",
  27207. height: math.unit(60960000, "meters")
  27208. },
  27209. {
  27210. name: "Teramacro",
  27211. height: math.unit(9144000000, "meters")
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(1.7, "meters"),
  27220. weight: math.unit(130, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/kyu/front.svg",
  27224. extra: 415 / 395,
  27225. bottom: 5 / 420
  27226. }
  27227. },
  27228. head: {
  27229. height: math.unit(1.75, "feet"),
  27230. name: "Head",
  27231. image: {
  27232. source: "./media/characters/kyu/head.svg"
  27233. }
  27234. },
  27235. foot: {
  27236. height: math.unit(0.81, "feet"),
  27237. name: "Foot",
  27238. image: {
  27239. source: "./media/characters/kyu/foot.svg"
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(1.7, "meters")
  27247. },
  27248. {
  27249. name: "Macro",
  27250. height: math.unit(131, "feet"),
  27251. default: true
  27252. },
  27253. {
  27254. name: "Megamacro",
  27255. height: math.unit(91440, "meters")
  27256. },
  27257. {
  27258. name: "Gigamacro",
  27259. height: math.unit(60960000, "meters")
  27260. },
  27261. {
  27262. name: "Teramacro",
  27263. height: math.unit(9144000000, "meters")
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27269. {
  27270. front: {
  27271. height: math.unit(7 + 1 / 12, "feet"),
  27272. weight: math.unit(250, "lb"),
  27273. name: "Front",
  27274. image: {
  27275. source: "./media/characters/joey/front.svg",
  27276. extra: 1791 / 1537,
  27277. bottom: 28 / 1816
  27278. }
  27279. },
  27280. },
  27281. [
  27282. {
  27283. name: "Micro",
  27284. height: math.unit(3, "inches")
  27285. },
  27286. {
  27287. name: "Normal",
  27288. height: math.unit(7 + 1 / 12, "feet"),
  27289. default: true
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27295. {
  27296. front: {
  27297. height: math.unit(165, "cm"),
  27298. weight: math.unit(140, "lb"),
  27299. name: "Front",
  27300. image: {
  27301. source: "./media/characters/sam-evans/front.svg",
  27302. extra: 3417 / 3230,
  27303. bottom: 41.3 / 3417
  27304. }
  27305. },
  27306. frontSixTails: {
  27307. height: math.unit(165, "cm"),
  27308. weight: math.unit(140, "lb"),
  27309. name: "Front-six-tails",
  27310. image: {
  27311. source: "./media/characters/sam-evans/front-six-tails.svg",
  27312. extra: 3417 / 3230,
  27313. bottom: 41.3 / 3417
  27314. }
  27315. },
  27316. back: {
  27317. height: math.unit(165, "cm"),
  27318. weight: math.unit(140, "lb"),
  27319. name: "Back",
  27320. image: {
  27321. source: "./media/characters/sam-evans/back.svg",
  27322. extra: 3227 / 3032,
  27323. bottom: 6.8 / 3234
  27324. }
  27325. },
  27326. face: {
  27327. height: math.unit(0.68, "feet"),
  27328. name: "Face",
  27329. image: {
  27330. source: "./media/characters/sam-evans/face.svg"
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(165, "cm"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Macro",
  27342. height: math.unit(100, "meters")
  27343. },
  27344. {
  27345. name: "Macro+",
  27346. height: math.unit(800, "meters")
  27347. },
  27348. {
  27349. name: "Macro++",
  27350. height: math.unit(3, "km")
  27351. },
  27352. {
  27353. name: "Macro+++",
  27354. height: math.unit(30, "km")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(10, "feet"),
  27363. weight: math.unit(750, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/juliet-a/front.svg",
  27367. extra: 1766 / 1720,
  27368. bottom: 43 / 1809
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(10, "feet"),
  27373. weight: math.unit(750, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/juliet-a/back.svg",
  27377. extra: 1781 / 1734,
  27378. bottom: 35 / 1810,
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(10, "feet"),
  27386. default: true
  27387. },
  27388. {
  27389. name: "Dragon Form",
  27390. height: math.unit(250, "feet")
  27391. },
  27392. {
  27393. name: "Macro",
  27394. height: math.unit(1000, "feet")
  27395. },
  27396. {
  27397. name: "Megamacro",
  27398. height: math.unit(10000, "feet")
  27399. }
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27404. {
  27405. regular: {
  27406. height: math.unit(7 + 3 / 12, "feet"),
  27407. weight: math.unit(260, "lb"),
  27408. name: "Regular",
  27409. image: {
  27410. source: "./media/characters/wild/regular.svg",
  27411. extra: 97.45 / 92,
  27412. bottom: 6.8 / 104.3
  27413. }
  27414. },
  27415. biggums: {
  27416. height: math.unit(8 + 6 / 12, "feet"),
  27417. weight: math.unit(425, "lb"),
  27418. name: "Biggums",
  27419. image: {
  27420. source: "./media/characters/wild/biggums.svg",
  27421. extra: 97.45 / 92,
  27422. bottom: 7.5 / 132.34
  27423. }
  27424. },
  27425. mawRegular: {
  27426. height: math.unit(1.24, "feet"),
  27427. name: "Maw (Regular)",
  27428. image: {
  27429. source: "./media/characters/wild/maw.svg"
  27430. }
  27431. },
  27432. mawBiggums: {
  27433. height: math.unit(1.47, "feet"),
  27434. name: "Maw (Biggums)",
  27435. image: {
  27436. source: "./media/characters/wild/maw.svg"
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(7 + 3 / 12, "feet"),
  27444. default: true
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27450. {
  27451. front: {
  27452. height: math.unit(2.5, "meters"),
  27453. weight: math.unit(200, "kg"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/vidar/front.svg",
  27457. extra: 2994 / 2795,
  27458. bottom: 56 / 3061
  27459. }
  27460. },
  27461. back: {
  27462. height: math.unit(2.5, "meters"),
  27463. weight: math.unit(200, "kg"),
  27464. name: "Back",
  27465. image: {
  27466. source: "./media/characters/vidar/back.svg",
  27467. extra: 3131 / 2928,
  27468. bottom: 13.5 / 3141.5
  27469. }
  27470. },
  27471. feral: {
  27472. height: math.unit(2.5, "meters"),
  27473. weight: math.unit(2000, "kg"),
  27474. name: "Feral",
  27475. image: {
  27476. source: "./media/characters/vidar/feral.svg",
  27477. extra: 2790 / 1765,
  27478. bottom: 6 / 2796
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(2.5, "meters"),
  27486. default: true
  27487. },
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(100, "meters")
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(5 + 9 / 12, "feet"),
  27499. weight: math.unit(120, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/ash/front.svg",
  27503. extra: 2189 / 1961,
  27504. bottom: 5.2 / 2194
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(5 + 9 / 12, "feet"),
  27512. default: true
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(9, "feet"),
  27521. weight: math.unit(10000, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/gygabite/front.svg",
  27525. bottom: 31.7 / 537.8,
  27526. extra: 505 / 370
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(9, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(12, "feet"),
  27543. weight: math.unit(35000, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/p0tat0/front.svg",
  27547. extra: 1065 / 921,
  27548. bottom: 55.7 / 1121.25
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(12, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27562. {
  27563. side: {
  27564. height: math.unit(6.5, "feet"),
  27565. weight: math.unit(800, "lb"),
  27566. name: "Side",
  27567. image: {
  27568. source: "./media/characters/dusk/side.svg",
  27569. extra: 615 / 373,
  27570. bottom: 53 / 664
  27571. }
  27572. },
  27573. sitting: {
  27574. height: math.unit(7, "feet"),
  27575. weight: math.unit(800, "lb"),
  27576. name: "Sitting",
  27577. image: {
  27578. source: "./media/characters/dusk/sitting.svg",
  27579. extra: 753 / 425,
  27580. bottom: 33 / 774
  27581. }
  27582. },
  27583. head: {
  27584. height: math.unit(6.1, "feet"),
  27585. name: "Head",
  27586. image: {
  27587. source: "./media/characters/dusk/head.svg"
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(7, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(15, "feet"),
  27604. weight: math.unit(7000, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/jay-direwolf/front.svg",
  27608. extra: 1810 / 1732,
  27609. bottom: 66 / 1892
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(15, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(4 + 9 / 12, "feet"),
  27626. weight: math.unit(130, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/anchovie/front.svg",
  27630. extra: 382 / 350,
  27631. bottom: 25 / 409
  27632. }
  27633. },
  27634. back: {
  27635. height: math.unit(4 + 9 / 12, "feet"),
  27636. weight: math.unit(130, "lb"),
  27637. name: "Back",
  27638. image: {
  27639. source: "./media/characters/anchovie/back.svg",
  27640. extra: 385 / 352,
  27641. bottom: 16.6 / 402
  27642. }
  27643. },
  27644. frontDressed: {
  27645. height: math.unit(4 + 9 / 12, "feet"),
  27646. weight: math.unit(130, "lb"),
  27647. name: "Front (Dressed)",
  27648. image: {
  27649. source: "./media/characters/anchovie/front-dressed.svg",
  27650. extra: 382 / 350,
  27651. bottom: 25 / 409
  27652. }
  27653. },
  27654. backDressed: {
  27655. height: math.unit(4 + 9 / 12, "feet"),
  27656. weight: math.unit(130, "lb"),
  27657. name: "Back (Dressed)",
  27658. image: {
  27659. source: "./media/characters/anchovie/back-dressed.svg",
  27660. extra: 385 / 352,
  27661. bottom: 16.6 / 402
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Micro",
  27668. height: math.unit(6.4, "inches")
  27669. },
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(4 + 9 / 12, "feet"),
  27673. default: true
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27679. {
  27680. front: {
  27681. height: math.unit(2, "meters"),
  27682. weight: math.unit(180, "lb"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/acidrenamon/front.svg",
  27686. extra: 987 / 890,
  27687. bottom: 22.8 / 1009
  27688. }
  27689. },
  27690. back: {
  27691. height: math.unit(2, "meters"),
  27692. weight: math.unit(180, "lb"),
  27693. name: "Back",
  27694. image: {
  27695. source: "./media/characters/acidrenamon/back.svg",
  27696. extra: 983 / 891,
  27697. bottom: 8.4 / 992
  27698. }
  27699. },
  27700. head: {
  27701. height: math.unit(1.92, "feet"),
  27702. name: "Head",
  27703. image: {
  27704. source: "./media/characters/acidrenamon/head.svg"
  27705. }
  27706. },
  27707. rump: {
  27708. height: math.unit(1.72, "feet"),
  27709. name: "Rump",
  27710. image: {
  27711. source: "./media/characters/acidrenamon/rump.svg"
  27712. }
  27713. },
  27714. tail: {
  27715. height: math.unit(4.2, "feet"),
  27716. name: "Tail",
  27717. image: {
  27718. source: "./media/characters/acidrenamon/tail.svg"
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(2, "meters"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Minimacro",
  27730. height: math.unit(7, "meters")
  27731. },
  27732. {
  27733. name: "Macro",
  27734. height: math.unit(200, "meters")
  27735. },
  27736. {
  27737. name: "Gigamacro",
  27738. height: math.unit(0.2, "earths")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(152, "feet"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/kenzie-lee/front.svg",
  27750. extra: 1869/1774,
  27751. bottom: 128/1997
  27752. }
  27753. },
  27754. side: {
  27755. height: math.unit(86, "feet"),
  27756. name: "Side",
  27757. image: {
  27758. source: "./media/characters/kenzie-lee/side.svg",
  27759. extra: 930/815,
  27760. bottom: 177/1107
  27761. }
  27762. },
  27763. paw: {
  27764. height: math.unit(15, "feet"),
  27765. name: "Paw",
  27766. image: {
  27767. source: "./media/characters/kenzie-lee/paw.svg"
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Micro",
  27774. height: math.unit(1.5, "inches")
  27775. },
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(152, "feet"),
  27779. default: true
  27780. },
  27781. {
  27782. name: "Megamacro",
  27783. height: math.unit(7, "miles")
  27784. },
  27785. {
  27786. name: "Gigamacro",
  27787. height: math.unit(8000, "miles")
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27793. {
  27794. side: {
  27795. height: math.unit(6, "feet"),
  27796. weight: math.unit(150, "lb"),
  27797. name: "Side",
  27798. image: {
  27799. source: "./media/characters/withers/side.svg",
  27800. extra: 1830 / 1728,
  27801. bottom: 96 / 1927
  27802. }
  27803. },
  27804. front: {
  27805. height: math.unit(6, "feet"),
  27806. weight: math.unit(150, "lb"),
  27807. name: "Front",
  27808. image: {
  27809. source: "./media/characters/withers/front.svg",
  27810. extra: 1514 / 1438,
  27811. bottom: 118 / 1632
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Macro",
  27818. height: math.unit(168, "feet"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Megamacro",
  27823. height: math.unit(15, "miles")
  27824. }
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(6 + 7 / 12, "feet"),
  27832. weight: math.unit(250, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/nemoskii/front.svg",
  27836. extra: 2270 / 1734,
  27837. bottom: 86 / 2354
  27838. }
  27839. },
  27840. back: {
  27841. height: math.unit(6 + 7 / 12, "feet"),
  27842. weight: math.unit(250, "lb"),
  27843. name: "Back",
  27844. image: {
  27845. source: "./media/characters/nemoskii/back.svg",
  27846. extra: 1845 / 1788,
  27847. bottom: 10.5 / 1852
  27848. }
  27849. },
  27850. head: {
  27851. height: math.unit(1.31, "feet"),
  27852. name: "Head",
  27853. image: {
  27854. source: "./media/characters/nemoskii/head.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Micro",
  27861. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27862. },
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(6 + 7 / 12, "feet"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit((6 + 7 / 12) * 150, "feet")
  27871. },
  27872. {
  27873. name: "Macro+",
  27874. height: math.unit((6 + 7 / 12) * 500, "feet")
  27875. },
  27876. {
  27877. name: "Megamacro",
  27878. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27879. },
  27880. ]
  27881. ))
  27882. characterMakers.push(() => makeCharacter(
  27883. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27884. {
  27885. front: {
  27886. height: math.unit(1, "mile"),
  27887. weight: math.unit(265261.9, "lb"),
  27888. name: "Front",
  27889. image: {
  27890. source: "./media/characters/shui/front.svg",
  27891. extra: 1633 / 1564,
  27892. bottom: 91.5 / 1726
  27893. }
  27894. },
  27895. },
  27896. [
  27897. {
  27898. name: "Macro",
  27899. height: math.unit(1, "mile"),
  27900. default: true
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(12 + 6 / 12, "feet"),
  27909. weight: math.unit(1342, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/arokh-takakura/front.svg",
  27913. extra: 1089 / 1043,
  27914. bottom: 77.4 / 1176.7
  27915. }
  27916. },
  27917. back: {
  27918. height: math.unit(12 + 6 / 12, "feet"),
  27919. weight: math.unit(1342, "lb"),
  27920. name: "Back",
  27921. image: {
  27922. source: "./media/characters/arokh-takakura/back.svg",
  27923. extra: 1046 / 1019,
  27924. bottom: 102 / 1150
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Big",
  27931. height: math.unit(12 + 6 / 12, "feet"),
  27932. default: true
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(5 + 6 / 12, "feet"),
  27941. weight: math.unit(150, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/theo/front.svg",
  27945. extra: 1184 / 1131,
  27946. bottom: 7.4 / 1191
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Micro",
  27953. height: math.unit(5, "inches")
  27954. },
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(5 + 6 / 12, "feet"),
  27958. default: true
  27959. },
  27960. ]
  27961. ))
  27962. characterMakers.push(() => makeCharacter(
  27963. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27964. {
  27965. front: {
  27966. height: math.unit(5 + 9 / 12, "feet"),
  27967. weight: math.unit(130, "lb"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/cecelia-swift/front.svg",
  27971. extra: 502 / 484,
  27972. bottom: 23 / 523
  27973. }
  27974. },
  27975. back: {
  27976. height: math.unit(5 + 9 / 12, "feet"),
  27977. weight: math.unit(130, "lb"),
  27978. name: "Back",
  27979. image: {
  27980. source: "./media/characters/cecelia-swift/back.svg",
  27981. extra: 499 / 485,
  27982. bottom: 12 / 511
  27983. }
  27984. },
  27985. head: {
  27986. height: math.unit(0.90, "feet"),
  27987. name: "Head",
  27988. image: {
  27989. source: "./media/characters/cecelia-swift/head.svg"
  27990. }
  27991. },
  27992. rump: {
  27993. height: math.unit(1.75, "feet"),
  27994. name: "Rump",
  27995. image: {
  27996. source: "./media/characters/cecelia-swift/rump.svg"
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(5 + 9 / 12, "feet"),
  28004. default: true
  28005. },
  28006. {
  28007. name: "Big",
  28008. height: math.unit(50, "feet")
  28009. },
  28010. {
  28011. name: "Macro",
  28012. height: math.unit(100, "feet")
  28013. },
  28014. {
  28015. name: "Macro+",
  28016. height: math.unit(500, "feet")
  28017. },
  28018. {
  28019. name: "Macro++",
  28020. height: math.unit(1000, "feet")
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(6, "feet"),
  28029. weight: math.unit(150, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/kaunan/front.svg",
  28033. extra: 2890 / 2523,
  28034. bottom: 49 / 2939
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(150, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(175, "cm"),
  28051. weight: math.unit(60, "kg"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/fei/front.svg",
  28055. extra: 1873/1723,
  28056. bottom: 53/1926
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Mortal",
  28063. height: math.unit(175, "cm")
  28064. },
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(3500, "m"),
  28068. default: true
  28069. },
  28070. {
  28071. name: "Stroll",
  28072. height: math.unit(17.5, "km")
  28073. },
  28074. {
  28075. name: "Showoff",
  28076. height: math.unit(175, "km")
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(7, "feet"),
  28085. weight: math.unit(1000, "kg"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/edrax/front.svg",
  28089. extra: 2838 / 2550,
  28090. bottom: 130 / 2968
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Small",
  28097. height: math.unit(7, "feet")
  28098. },
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(1500, "meters")
  28102. },
  28103. {
  28104. name: "Mega",
  28105. height: math.unit(12000000, "km"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Megamacro",
  28110. height: math.unit(10600000, "lightyears")
  28111. },
  28112. {
  28113. name: "Hypermacro",
  28114. height: math.unit(256, "yottameters")
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(10, "feet"),
  28123. weight: math.unit(750, "lb"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/clove/front.svg",
  28127. extra: 1918/1751,
  28128. bottom: 52/1970
  28129. }
  28130. },
  28131. back: {
  28132. height: math.unit(10, "feet"),
  28133. weight: math.unit(750, "lb"),
  28134. name: "Back",
  28135. image: {
  28136. source: "./media/characters/clove/back.svg",
  28137. extra: 1912/1747,
  28138. bottom: 50/1962
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(10, "feet"),
  28146. default: true
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(4, "feet"),
  28155. weight: math.unit(50, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/alex-rabbit/front.svg",
  28159. extra: 507 / 458,
  28160. bottom: 18.5 / 527
  28161. }
  28162. },
  28163. back: {
  28164. height: math.unit(4, "feet"),
  28165. weight: math.unit(50, "lb"),
  28166. name: "Back",
  28167. image: {
  28168. source: "./media/characters/alex-rabbit/back.svg",
  28169. extra: 502 / 460,
  28170. bottom: 18.9 / 521
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(4, "feet"),
  28178. default: true
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(1 + 3 / 12, "feet"),
  28187. weight: math.unit(80, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/zander-rose/front.svg",
  28191. extra: 916 / 797,
  28192. bottom: 17 / 933
  28193. }
  28194. },
  28195. back: {
  28196. height: math.unit(1 + 3 / 12, "feet"),
  28197. weight: math.unit(80, "lb"),
  28198. name: "Back",
  28199. image: {
  28200. source: "./media/characters/zander-rose/back.svg",
  28201. extra: 903 / 779,
  28202. bottom: 31 / 934
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(1 + 3 / 12, "feet"),
  28210. default: true
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28216. {
  28217. anthro: {
  28218. height: math.unit(6, "feet"),
  28219. weight: math.unit(150, "lb"),
  28220. name: "Anthro",
  28221. image: {
  28222. source: "./media/characters/razz/anthro.svg",
  28223. extra: 1437 / 1343,
  28224. bottom: 48 / 1485
  28225. }
  28226. },
  28227. feral: {
  28228. height: math.unit(6, "feet"),
  28229. weight: math.unit(150, "lb"),
  28230. name: "Feral",
  28231. image: {
  28232. source: "./media/characters/razz/feral.svg",
  28233. extra: 2569 / 1385,
  28234. bottom: 95 / 2664
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(6, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(9 + 4 / 12, "feet"),
  28251. weight: math.unit(500, "lb"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/morrigan/front.svg",
  28255. extra: 2707 / 2579,
  28256. bottom: 156 / 2863
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(9 + 4 / 12, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(5, "stories"),
  28273. weight: math.unit(4000, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/jenene/front.svg",
  28277. extra: 1780 / 1710,
  28278. bottom: 57 / 1837
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(5, "stories"),
  28286. default: true
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28292. {
  28293. taurSfw: {
  28294. height: math.unit(10, "meters"),
  28295. weight: math.unit(17500, "kg"),
  28296. name: "Taur",
  28297. image: {
  28298. source: "./media/characters/faey/taur-sfw.svg",
  28299. extra: 1200 / 968,
  28300. bottom: 41 / 1241
  28301. }
  28302. },
  28303. chestmaw: {
  28304. height: math.unit(2.01, "meters"),
  28305. name: "Chestmaw",
  28306. image: {
  28307. source: "./media/characters/faey/chestmaw.svg"
  28308. }
  28309. },
  28310. foot: {
  28311. height: math.unit(2.43, "meters"),
  28312. name: "Foot",
  28313. image: {
  28314. source: "./media/characters/faey/foot.svg"
  28315. }
  28316. },
  28317. jaws: {
  28318. height: math.unit(1.66, "meters"),
  28319. name: "Jaws",
  28320. image: {
  28321. source: "./media/characters/faey/jaws.svg"
  28322. }
  28323. },
  28324. tongues: {
  28325. height: math.unit(2.01, "meters"),
  28326. name: "Tongues",
  28327. image: {
  28328. source: "./media/characters/faey/tongues.svg"
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Small",
  28335. height: math.unit(10, "meters"),
  28336. default: true
  28337. },
  28338. {
  28339. name: "Big",
  28340. height: math.unit(500000, "km")
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(7, "feet"),
  28349. weight: math.unit(275, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/roku/front.svg",
  28353. extra: 903 / 878,
  28354. bottom: 37 / 940
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(7, "feet"),
  28362. default: true
  28363. },
  28364. {
  28365. name: "Macro",
  28366. height: math.unit(500, "feet")
  28367. },
  28368. {
  28369. name: "Megamacro",
  28370. height: math.unit(200, "miles")
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(6 + 2 / 12, "feet"),
  28379. weight: math.unit(150, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/lira/front.svg",
  28383. extra: 1727 / 1605,
  28384. bottom: 26 / 1753
  28385. }
  28386. },
  28387. back: {
  28388. height: math.unit(6 + 2 / 12, "feet"),
  28389. weight: math.unit(150, "lb"),
  28390. name: "Back",
  28391. image: {
  28392. source: "./media/characters/lira/back.svg",
  28393. extra: 1713/1621,
  28394. bottom: 20/1733
  28395. }
  28396. },
  28397. hand: {
  28398. height: math.unit(0.75, "feet"),
  28399. name: "Hand",
  28400. image: {
  28401. source: "./media/characters/lira/hand.svg"
  28402. }
  28403. },
  28404. maw: {
  28405. height: math.unit(0.65, "feet"),
  28406. name: "Maw",
  28407. image: {
  28408. source: "./media/characters/lira/maw.svg"
  28409. }
  28410. },
  28411. pawDigi: {
  28412. height: math.unit(1.6, "feet"),
  28413. name: "Paw Digi",
  28414. image: {
  28415. source: "./media/characters/lira/paw-digi.svg"
  28416. }
  28417. },
  28418. pawPlanti: {
  28419. height: math.unit(1.4, "feet"),
  28420. name: "Paw Planti",
  28421. image: {
  28422. source: "./media/characters/lira/paw-planti.svg"
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(6 + 2 / 12, "feet"),
  28430. default: true
  28431. },
  28432. {
  28433. name: "Macro",
  28434. height: math.unit(100, "feet")
  28435. },
  28436. {
  28437. name: "Macro²",
  28438. height: math.unit(1600, "feet")
  28439. },
  28440. {
  28441. name: "Planetary",
  28442. height: math.unit(20, "earths")
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(6, "feet"),
  28451. weight: math.unit(150, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/hadjet/front.svg",
  28455. extra: 1480 / 1346,
  28456. bottom: 26 / 1506
  28457. }
  28458. },
  28459. frontNsfw: {
  28460. height: math.unit(6, "feet"),
  28461. weight: math.unit(150, "lb"),
  28462. name: "Front (NSFW)",
  28463. image: {
  28464. source: "./media/characters/hadjet/front-nsfw.svg",
  28465. extra: 1440 / 1358,
  28466. bottom: 52 / 1492
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Macro",
  28473. height: math.unit(10, "stories"),
  28474. default: true
  28475. },
  28476. {
  28477. name: "Megamacro",
  28478. height: math.unit(1.5, "miles")
  28479. },
  28480. {
  28481. name: "Megamacro+",
  28482. height: math.unit(5, "miles")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28488. {
  28489. side: {
  28490. height: math.unit(106, "feet"),
  28491. weight: math.unit(500, "tonnes"),
  28492. name: "Side",
  28493. image: {
  28494. source: "./media/characters/kodran/side.svg",
  28495. extra: 553 / 480,
  28496. bottom: 33 / 586
  28497. }
  28498. },
  28499. front: {
  28500. height: math.unit(132, "feet"),
  28501. weight: math.unit(500, "tonnes"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/kodran/front.svg",
  28505. extra: 667 / 643,
  28506. bottom: 42 / 709
  28507. }
  28508. },
  28509. flying: {
  28510. height: math.unit(350, "feet"),
  28511. weight: math.unit(500, "tonnes"),
  28512. name: "Flying",
  28513. image: {
  28514. source: "./media/characters/kodran/flying.svg"
  28515. }
  28516. },
  28517. foot: {
  28518. height: math.unit(33, "feet"),
  28519. name: "Foot",
  28520. image: {
  28521. source: "./media/characters/kodran/foot.svg"
  28522. }
  28523. },
  28524. footFront: {
  28525. height: math.unit(19, "feet"),
  28526. name: "Foot (Front)",
  28527. image: {
  28528. source: "./media/characters/kodran/foot-front.svg",
  28529. extra: 261 / 261,
  28530. bottom: 91 / 352
  28531. }
  28532. },
  28533. headFront: {
  28534. height: math.unit(53, "feet"),
  28535. name: "Head (Front)",
  28536. image: {
  28537. source: "./media/characters/kodran/head-front.svg"
  28538. }
  28539. },
  28540. headSide: {
  28541. height: math.unit(65, "feet"),
  28542. name: "Head (Side)",
  28543. image: {
  28544. source: "./media/characters/kodran/head-side.svg"
  28545. }
  28546. },
  28547. throat: {
  28548. height: math.unit(79, "feet"),
  28549. name: "Throat",
  28550. image: {
  28551. source: "./media/characters/kodran/throat.svg"
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Large",
  28558. height: math.unit(106, "feet"),
  28559. default: true
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28565. {
  28566. side: {
  28567. height: math.unit(11, "feet"),
  28568. weight: math.unit(150, "lb"),
  28569. name: "Side",
  28570. image: {
  28571. source: "./media/characters/pyxaron/side.svg",
  28572. extra: 305 / 195,
  28573. bottom: 17 / 322
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(11, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(6, "feet"),
  28590. weight: math.unit(150, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/meep/front.svg",
  28594. extra: 88 / 80,
  28595. bottom: 6 / 94
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Fun Sized",
  28602. height: math.unit(2, "inches"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Friend Sized",
  28607. height: math.unit(8, "inches")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(15, "feet"),
  28616. weight: math.unit(2500, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/holly-rabbit/front.svg",
  28620. extra: 1433 / 1233,
  28621. bottom: 125 / 1558
  28622. }
  28623. },
  28624. dick: {
  28625. height: math.unit(4.6, "feet"),
  28626. name: "Dick",
  28627. image: {
  28628. source: "./media/characters/holly-rabbit/dick.svg"
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(15, "feet"),
  28636. default: true
  28637. },
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(250, "feet")
  28641. },
  28642. {
  28643. name: "Macro+",
  28644. height: math.unit(2500, "feet")
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(3.02, "meters"),
  28653. weight: math.unit(500, "kg"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/drena/front.svg",
  28657. extra: 282 / 243,
  28658. bottom: 8 / 290
  28659. }
  28660. },
  28661. side: {
  28662. height: math.unit(3.02, "meters"),
  28663. weight: math.unit(500, "kg"),
  28664. name: "Side",
  28665. image: {
  28666. source: "./media/characters/drena/side.svg",
  28667. extra: 280 / 245,
  28668. bottom: 10 / 290
  28669. }
  28670. },
  28671. back: {
  28672. height: math.unit(3.02, "meters"),
  28673. weight: math.unit(500, "kg"),
  28674. name: "Back",
  28675. image: {
  28676. source: "./media/characters/drena/back.svg",
  28677. extra: 278 / 243,
  28678. bottom: 2 / 280
  28679. }
  28680. },
  28681. foot: {
  28682. height: math.unit(0.75, "meters"),
  28683. name: "Foot",
  28684. image: {
  28685. source: "./media/characters/drena/foot.svg"
  28686. }
  28687. },
  28688. maw: {
  28689. height: math.unit(0.82, "meters"),
  28690. name: "Maw",
  28691. image: {
  28692. source: "./media/characters/drena/maw.svg"
  28693. }
  28694. },
  28695. rump: {
  28696. height: math.unit(0.93, "meters"),
  28697. name: "Rump",
  28698. image: {
  28699. source: "./media/characters/drena/rump.svg"
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(3.02, "meters"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(6 + 4 / 12, "feet"),
  28716. weight: math.unit(250, "lb"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/remmyzilla/front.svg",
  28720. extra: 4033 / 3588,
  28721. bottom: 123 / 4156
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(6 + 4 / 12, "feet"),
  28726. weight: math.unit(250, "lb"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/remmyzilla/back.svg",
  28730. extra: 2687 / 2555,
  28731. bottom: 48 / 2735
  28732. }
  28733. },
  28734. paw: {
  28735. height: math.unit(1.73, "feet"),
  28736. name: "Paw",
  28737. image: {
  28738. source: "./media/characters/remmyzilla/paw.svg"
  28739. }
  28740. },
  28741. maw: {
  28742. height: math.unit(1.73, "feet"),
  28743. name: "Maw",
  28744. image: {
  28745. source: "./media/characters/remmyzilla/maw.svg"
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(6 + 4 / 12, "feet")
  28753. },
  28754. {
  28755. name: "Minimacro",
  28756. height: math.unit(12 + 8 / 12, "feet")
  28757. },
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(640, "feet"),
  28761. default: true
  28762. },
  28763. {
  28764. name: "Megamacro",
  28765. height: math.unit(6400, "feet")
  28766. },
  28767. {
  28768. name: "Gigamacro",
  28769. height: math.unit(64000, "miles")
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(2.5, "meters"),
  28778. weight: math.unit(300, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/lawrence/front.svg",
  28782. extra: 357 / 335,
  28783. bottom: 30 / 387
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(2.5, "meters"),
  28788. weight: math.unit(300, "lb"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/lawrence/back.svg",
  28792. extra: 357 / 338,
  28793. bottom: 16 / 373
  28794. }
  28795. },
  28796. head: {
  28797. height: math.unit(0.9, "meter"),
  28798. name: "Head",
  28799. image: {
  28800. source: "./media/characters/lawrence/head.svg"
  28801. }
  28802. },
  28803. maw: {
  28804. height: math.unit(0.7, "meter"),
  28805. name: "Maw",
  28806. image: {
  28807. source: "./media/characters/lawrence/maw.svg"
  28808. }
  28809. },
  28810. footBottom: {
  28811. height: math.unit(0.5, "meter"),
  28812. name: "Foot (Bottom)",
  28813. image: {
  28814. source: "./media/characters/lawrence/foot-bottom.svg"
  28815. }
  28816. },
  28817. footTop: {
  28818. height: math.unit(0.5, "meter"),
  28819. name: "Foot (Top)",
  28820. image: {
  28821. source: "./media/characters/lawrence/foot-top.svg"
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(2.5, "meters"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Macro",
  28833. height: math.unit(95, "meters")
  28834. },
  28835. {
  28836. name: "Megamacro",
  28837. height: math.unit(150, "km")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28843. {
  28844. front: {
  28845. height: math.unit(4.2, "meters"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/sydney/front.svg",
  28849. extra: 1323 / 1277,
  28850. bottom: 111 / 1434
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(4.2, "meters"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28864. {
  28865. back: {
  28866. height: math.unit(201, "feet"),
  28867. name: "Back",
  28868. image: {
  28869. source: "./media/characters/jessica/back.svg",
  28870. extra: 273 / 259,
  28871. bottom: 7 / 280
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(201, "feet"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Megamacro",
  28883. height: math.unit(8, "miles")
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28889. {
  28890. side: {
  28891. height: math.unit(320, "cm"),
  28892. name: "Side",
  28893. image: {
  28894. source: "./media/characters/victoria/side.svg",
  28895. extra: 778 / 346,
  28896. bottom: 56 / 834
  28897. }
  28898. },
  28899. maw: {
  28900. height: math.unit(5.9, "feet"),
  28901. name: "Maw",
  28902. image: {
  28903. source: "./media/characters/victoria/maw.svg"
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(320, "cm"),
  28911. default: true
  28912. },
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28917. {
  28918. front: {
  28919. height: math.unit(5 + 6 / 12, "feet"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/cat/front.svg",
  28923. extra: 1449/1295,
  28924. bottom: 34/1483
  28925. }
  28926. },
  28927. back: {
  28928. height: math.unit(5 + 6 / 12, "feet"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/cat/back.svg",
  28932. extra: 1466/1301,
  28933. bottom: 19/1485
  28934. }
  28935. },
  28936. taur: {
  28937. height: math.unit(7, "feet"),
  28938. name: "Taur",
  28939. image: {
  28940. source: "./media/characters/cat/taur.svg",
  28941. extra: 1389/1233,
  28942. bottom: 83/1472
  28943. }
  28944. },
  28945. lucarioFront: {
  28946. height: math.unit(4, "feet"),
  28947. name: "Lucario (Front)",
  28948. image: {
  28949. source: "./media/characters/cat/lucario-front.svg",
  28950. extra: 1149/1019,
  28951. bottom: 84/1233
  28952. }
  28953. },
  28954. lucarioBack: {
  28955. height: math.unit(4, "feet"),
  28956. name: "Lucario (Back)",
  28957. image: {
  28958. source: "./media/characters/cat/lucario-back.svg",
  28959. extra: 1190/1059,
  28960. bottom: 33/1223
  28961. }
  28962. },
  28963. megaLucario: {
  28964. height: math.unit(4, "feet"),
  28965. name: "Mega Lucario",
  28966. image: {
  28967. source: "./media/characters/cat/mega-lucario.svg",
  28968. extra: 1515 / 1319,
  28969. bottom: 63 / 1578
  28970. }
  28971. },
  28972. nickit: {
  28973. height: math.unit(2, "feet"),
  28974. name: "Nickit",
  28975. image: {
  28976. source: "./media/characters/cat/nickit.svg",
  28977. extra: 1980 / 1585,
  28978. bottom: 102 / 2082
  28979. }
  28980. },
  28981. lopunnyFront: {
  28982. height: math.unit(5, "feet"),
  28983. name: "Lopunny (Front)",
  28984. image: {
  28985. source: "./media/characters/cat/lopunny-front.svg",
  28986. extra: 1782 / 1469,
  28987. bottom: 38 / 1820
  28988. }
  28989. },
  28990. lopunnyBack: {
  28991. height: math.unit(5, "feet"),
  28992. name: "Lopunny (Back)",
  28993. image: {
  28994. source: "./media/characters/cat/lopunny-back.svg",
  28995. extra: 1660 / 1490,
  28996. bottom: 25 / 1685
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Really small",
  29003. height: math.unit(1, "nm")
  29004. },
  29005. {
  29006. name: "Micro",
  29007. height: math.unit(5, "inches")
  29008. },
  29009. {
  29010. name: "Normal",
  29011. height: math.unit(5 + 6 / 12, "feet"),
  29012. default: true
  29013. },
  29014. {
  29015. name: "Macro",
  29016. height: math.unit(50, "feet")
  29017. },
  29018. {
  29019. name: "Macro+",
  29020. height: math.unit(150, "feet")
  29021. },
  29022. {
  29023. name: "Megamacro",
  29024. height: math.unit(100, "miles")
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(63.4, "meters"),
  29033. weight: math.unit(3.28349e+6, "kilograms"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/kirina-violet/front.svg",
  29037. extra: 2812 / 2725,
  29038. bottom: 0 / 2812
  29039. }
  29040. },
  29041. back: {
  29042. height: math.unit(63.4, "meters"),
  29043. weight: math.unit(3.28349e+6, "kilograms"),
  29044. name: "Back",
  29045. image: {
  29046. source: "./media/characters/kirina-violet/back.svg",
  29047. extra: 2812 / 2725,
  29048. bottom: 0 / 2812
  29049. }
  29050. },
  29051. mouth: {
  29052. height: math.unit(4.35, "meters"),
  29053. name: "Mouth",
  29054. image: {
  29055. source: "./media/characters/kirina-violet/mouth.svg"
  29056. }
  29057. },
  29058. paw: {
  29059. height: math.unit(5.6, "meters"),
  29060. name: "Paw",
  29061. image: {
  29062. source: "./media/characters/kirina-violet/paw.svg"
  29063. }
  29064. },
  29065. tail: {
  29066. height: math.unit(18, "meters"),
  29067. name: "Tail",
  29068. image: {
  29069. source: "./media/characters/kirina-violet/tail.svg"
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Macro",
  29076. height: math.unit(63.4, "meters"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(75, "feet"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/cat-gigachu/front.svg",
  29089. extra: 1239/1027,
  29090. bottom: 32/1271
  29091. }
  29092. },
  29093. back: {
  29094. height: math.unit(75, "feet"),
  29095. name: "Back",
  29096. image: {
  29097. source: "./media/characters/cat-gigachu/back.svg",
  29098. extra: 1229/1030,
  29099. bottom: 9/1238
  29100. }
  29101. },
  29102. },
  29103. [
  29104. {
  29105. name: "Dynamax",
  29106. height: math.unit(75, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(6, "feet"),
  29116. weight: math.unit(150, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/sfaiyan/front.svg",
  29120. extra: 999 / 978,
  29121. bottom: 5 / 1004
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(1.82, "meters")
  29129. },
  29130. {
  29131. name: "Giant",
  29132. height: math.unit(2.27, "km"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(179, "cm"),
  29142. weight: math.unit(100, "kg"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/raunehkeli/front.svg",
  29146. extra: 1934 / 1926,
  29147. bottom: 0 / 1934
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(179, "cm")
  29155. },
  29156. {
  29157. name: "Maximum",
  29158. height: math.unit(575, "meters"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29165. {
  29166. front: {
  29167. height: math.unit(6, "feet"),
  29168. weight: math.unit(150, "lb"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29172. extra: 2625 / 2518,
  29173. bottom: 60 / 2685
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Normal",
  29180. height: math.unit(6 + 2 / 12, "feet")
  29181. },
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(1180, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(5 + 6 / 12, "feet"),
  29194. weight: math.unit(108, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/lilith-zott/front.svg",
  29198. extra: 2510 / 2238,
  29199. bottom: 100 / 2610
  29200. }
  29201. },
  29202. frontDressed: {
  29203. height: math.unit(5 + 6 / 12, "feet"),
  29204. weight: math.unit(108, "lb"),
  29205. name: "Front (Dressed)",
  29206. image: {
  29207. source: "./media/characters/lilith-zott/front-dressed.svg",
  29208. extra: 2510 / 2238,
  29209. bottom: 100 / 2610
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Normal",
  29216. height: math.unit(5 + 6 / 12, "feet")
  29217. },
  29218. {
  29219. name: "Macro",
  29220. height: math.unit(1030, "feet"),
  29221. default: true
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(6, "feet"),
  29230. weight: math.unit(150, "lb"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29234. extra: 2567 / 2435,
  29235. bottom: 39 / 2606
  29236. }
  29237. },
  29238. frontSuper: {
  29239. height: math.unit(6, "feet"),
  29240. name: "Front (Super)",
  29241. image: {
  29242. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29243. extra: 2567 / 2435,
  29244. bottom: 39 / 2606
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 10 / 12, "feet")
  29252. },
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(1100, "feet"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(100, "miles"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/sona/front.svg",
  29268. extra: 2433 / 2201,
  29269. bottom: 53 / 2486
  29270. }
  29271. },
  29272. foot: {
  29273. height: math.unit(16.1, "miles"),
  29274. name: "Foot",
  29275. image: {
  29276. source: "./media/characters/sona/foot.svg"
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(100, "miles"),
  29284. default: true
  29285. },
  29286. ]
  29287. ))
  29288. characterMakers.push(() => makeCharacter(
  29289. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29290. {
  29291. front: {
  29292. height: math.unit(6, "feet"),
  29293. weight: math.unit(150, "lb"),
  29294. name: "Front",
  29295. image: {
  29296. source: "./media/characters/bailey/front.svg",
  29297. extra: 1778 / 1724,
  29298. bottom: 30 / 1808
  29299. }
  29300. },
  29301. },
  29302. [
  29303. {
  29304. name: "Micro",
  29305. height: math.unit(4, "inches")
  29306. },
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(5 + 5 / 12, "feet"),
  29310. default: true
  29311. },
  29312. {
  29313. name: "Macro",
  29314. height: math.unit(250, "feet")
  29315. },
  29316. {
  29317. name: "Megamacro",
  29318. height: math.unit(100, "miles")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(5 + 2 / 12, "feet"),
  29327. weight: math.unit(120, "lb"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/snaps/front.svg",
  29331. extra: 2370 / 2177,
  29332. bottom: 48 / 2418
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(5 + 2 / 12, "feet"),
  29337. weight: math.unit(120, "lb"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/snaps/back.svg",
  29341. extra: 2408 / 2258,
  29342. bottom: 15 / 2423
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Micro",
  29349. height: math.unit(9, "inches")
  29350. },
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(5 + 2 / 12, "feet"),
  29354. default: true
  29355. },
  29356. {
  29357. name: "Mini Macro",
  29358. height: math.unit(10, "feet")
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(1.8, "meters"),
  29367. weight: math.unit(85, "kg"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/azteck/front.svg",
  29371. extra: 2815 / 2625,
  29372. bottom: 89 / 2904
  29373. }
  29374. },
  29375. back: {
  29376. height: math.unit(1.8, "meters"),
  29377. weight: math.unit(85, "kg"),
  29378. name: "Back",
  29379. image: {
  29380. source: "./media/characters/azteck/back.svg",
  29381. extra: 2856 / 2648,
  29382. bottom: 85 / 2941
  29383. }
  29384. },
  29385. frontDressed: {
  29386. height: math.unit(1.8, "meters"),
  29387. weight: math.unit(85, "kg"),
  29388. name: "Front (Dressed)",
  29389. image: {
  29390. source: "./media/characters/azteck/front-dressed.svg",
  29391. extra: 2147 / 2003,
  29392. bottom: 68 / 2215
  29393. }
  29394. },
  29395. head: {
  29396. height: math.unit(0.47, "meters"),
  29397. weight: math.unit(85, "kg"),
  29398. name: "Head",
  29399. image: {
  29400. source: "./media/characters/azteck/head.svg"
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Bite sized",
  29407. height: math.unit(16, "cm")
  29408. },
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(1.8, "meters"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(6, "feet"),
  29421. weight: math.unit(150, "lb"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/pidge/front.svg",
  29425. extra: 620 / 588,
  29426. bottom: 9 / 629
  29427. }
  29428. },
  29429. back: {
  29430. height: math.unit(6, "feet"),
  29431. weight: math.unit(150, "lb"),
  29432. name: "Back",
  29433. image: {
  29434. source: "./media/characters/pidge/back.svg",
  29435. extra: 620 / 588,
  29436. bottom: 9 / 629
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Macro",
  29443. height: math.unit(1, "mile"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(150, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/en/front.svg",
  29457. extra: 1697 / 1563,
  29458. bottom: 103 / 1800
  29459. }
  29460. },
  29461. back: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(150, "lb"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/en/back.svg",
  29467. extra: 1700 / 1570,
  29468. bottom: 51 / 1751
  29469. }
  29470. },
  29471. frontDressed: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(150, "lb"),
  29474. name: "Front (Dressed)",
  29475. image: {
  29476. source: "./media/characters/en/front-dressed.svg",
  29477. extra: 1697 / 1563,
  29478. bottom: 103 / 1800
  29479. }
  29480. },
  29481. backDressed: {
  29482. height: math.unit(6, "feet"),
  29483. weight: math.unit(150, "lb"),
  29484. name: "Back (Dressed)",
  29485. image: {
  29486. source: "./media/characters/en/back-dressed.svg",
  29487. extra: 1700 / 1570,
  29488. bottom: 51 / 1751
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Macro",
  29495. height: math.unit(210, "feet"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/haze-orris/front.svg",
  29509. extra: 3975 / 3525,
  29510. bottom: 137 / 4112
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Micro",
  29517. height: math.unit(150, "mm"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6, "feet"),
  29527. weight: math.unit(150, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/casselene-yaro/front.svg",
  29531. extra: 4721 / 4541,
  29532. bottom: 82 / 4803
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/casselene-yaro/back.svg",
  29541. extra: 4569 / 4377,
  29542. bottom: 69 / 4638
  29543. }
  29544. },
  29545. frontDressed: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Front-dressed",
  29549. image: {
  29550. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29551. extra: 4721 / 4541,
  29552. bottom: 82 / 4803
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Macro",
  29559. height: math.unit(190, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/myra-rue-delore/front.svg",
  29573. extra: 1340 / 1308,
  29574. bottom: 67 / 1407
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/myra-rue-delore/back.svg",
  29583. extra: 1341 / 1310,
  29584. bottom: 40 / 1381
  29585. }
  29586. },
  29587. frontDressed: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Front (Dressed)",
  29591. image: {
  29592. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29593. extra: 1340 / 1308,
  29594. bottom: 67 / 1407
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Macro",
  29601. height: math.unit(150, "feet"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(10, "feet"),
  29611. weight: math.unit(15015, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/fem!plat/front.svg",
  29615. extra: 2799 / 2604,
  29616. bottom: 149 / 2948
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Normal",
  29623. height: math.unit(10, "feet"),
  29624. default: true
  29625. },
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(100, "feet")
  29629. },
  29630. {
  29631. name: "Megamacro",
  29632. height: math.unit(1000, "feet")
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(15 + 5 / 12, "feet"),
  29641. weight: math.unit(4600, "lb"),
  29642. name: "Front",
  29643. image: {
  29644. source: "./media/characters/neapolitan-ananassa/front.svg",
  29645. extra: 2903 / 2736,
  29646. bottom: 0 / 2903
  29647. }
  29648. },
  29649. side: {
  29650. height: math.unit(15 + 5 / 12, "feet"),
  29651. weight: math.unit(4600, "lb"),
  29652. name: "Side",
  29653. image: {
  29654. source: "./media/characters/neapolitan-ananassa/side.svg",
  29655. extra: 2925 / 2719,
  29656. bottom: 0 / 2925
  29657. }
  29658. },
  29659. back: {
  29660. height: math.unit(15 + 5 / 12, "feet"),
  29661. weight: math.unit(4600, "lb"),
  29662. name: "Back",
  29663. image: {
  29664. source: "./media/characters/neapolitan-ananassa/back.svg",
  29665. extra: 2903 / 2736,
  29666. bottom: 0 / 2903
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(15 + 5 / 12, "feet"),
  29674. default: true
  29675. },
  29676. {
  29677. name: "Post-Millenium",
  29678. height: math.unit(35 + 5 / 12, "feet")
  29679. },
  29680. {
  29681. name: "Post-Era",
  29682. height: math.unit(450 + 5 / 12, "feet")
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(300, "meters"),
  29691. weight: math.unit(125000, "tonnes"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/pazuzu/front.svg",
  29695. extra: 877 / 794,
  29696. bottom: 47 / 924
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Macro",
  29703. height: math.unit(300, "meters"),
  29704. default: true
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29710. {
  29711. side: {
  29712. height: math.unit(10 + 7 / 12, "feet"),
  29713. weight: math.unit(2.5, "tons"),
  29714. name: "Side",
  29715. image: {
  29716. source: "./media/characters/aasha/side.svg",
  29717. extra: 1345 / 1245,
  29718. bottom: 111 / 1456
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(10 + 7 / 12, "feet"),
  29723. weight: math.unit(2.5, "tons"),
  29724. name: "Back",
  29725. image: {
  29726. source: "./media/characters/aasha/back.svg",
  29727. extra: 1133 / 1057,
  29728. bottom: 257 / 1390
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(10 + 7 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(6 + 3 / 12, "feet"),
  29745. name: "Front",
  29746. image: {
  29747. source: "./media/characters/nevan/front.svg",
  29748. extra: 704 / 704,
  29749. bottom: 28 / 732
  29750. }
  29751. },
  29752. back: {
  29753. height: math.unit(6 + 3 / 12, "feet"),
  29754. name: "Back",
  29755. image: {
  29756. source: "./media/characters/nevan/back.svg",
  29757. extra: 714 / 714,
  29758. bottom: 21 / 735
  29759. }
  29760. },
  29761. frontFlaccid: {
  29762. height: math.unit(6 + 3 / 12, "feet"),
  29763. name: "Front (Flaccid)",
  29764. image: {
  29765. source: "./media/characters/nevan/front-flaccid.svg",
  29766. extra: 704 / 704,
  29767. bottom: 28 / 732
  29768. }
  29769. },
  29770. frontErect: {
  29771. height: math.unit(6 + 3 / 12, "feet"),
  29772. name: "Front (Erect)",
  29773. image: {
  29774. source: "./media/characters/nevan/front-erect.svg",
  29775. extra: 704 / 704,
  29776. bottom: 28 / 732
  29777. }
  29778. },
  29779. backFlaccid: {
  29780. height: math.unit(6 + 3 / 12, "feet"),
  29781. name: "Back (Flaccid)",
  29782. image: {
  29783. source: "./media/characters/nevan/back-flaccid.svg",
  29784. extra: 714 / 714,
  29785. bottom: 21 / 735
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Normal",
  29792. height: math.unit(6 + 3 / 12, "feet"),
  29793. default: true
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(4, "feet"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/arhan/front.svg",
  29805. extra: 3368 / 3133,
  29806. bottom: 0 / 3368
  29807. }
  29808. },
  29809. side: {
  29810. height: math.unit(4, "feet"),
  29811. name: "Side",
  29812. image: {
  29813. source: "./media/characters/arhan/side.svg",
  29814. extra: 3347 / 3105,
  29815. bottom: 0 / 3347
  29816. }
  29817. },
  29818. tongue: {
  29819. height: math.unit(1.42, "feet"),
  29820. name: "Tongue",
  29821. image: {
  29822. source: "./media/characters/arhan/tongue.svg"
  29823. }
  29824. },
  29825. head: {
  29826. height: math.unit(0.85, "feet"),
  29827. name: "Head",
  29828. image: {
  29829. source: "./media/characters/arhan/head.svg"
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Normal",
  29836. height: math.unit(4, "feet"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(5 + 7.5 / 12, "feet"),
  29846. weight: math.unit(120, "lb"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/digi-duncan/front.svg",
  29850. extra: 330 / 326,
  29851. bottom: 16 / 346
  29852. }
  29853. },
  29854. side: {
  29855. height: math.unit(5 + 7.5 / 12, "feet"),
  29856. weight: math.unit(120, "lb"),
  29857. name: "Side",
  29858. image: {
  29859. source: "./media/characters/digi-duncan/side.svg",
  29860. extra: 341 / 337,
  29861. bottom: 1 / 342
  29862. }
  29863. },
  29864. back: {
  29865. height: math.unit(5 + 7.5 / 12, "feet"),
  29866. weight: math.unit(120, "lb"),
  29867. name: "Back",
  29868. image: {
  29869. source: "./media/characters/digi-duncan/back.svg",
  29870. extra: 330 / 326,
  29871. bottom: 12 / 342
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Speck",
  29878. height: math.unit(0.25, "mm")
  29879. },
  29880. {
  29881. name: "Micro",
  29882. height: math.unit(5, "mm")
  29883. },
  29884. {
  29885. name: "Tiny",
  29886. height: math.unit(0.5, "inches"),
  29887. default: true
  29888. },
  29889. {
  29890. name: "Human",
  29891. height: math.unit(5 + 7.5 / 12, "feet")
  29892. },
  29893. {
  29894. name: "Minigiant",
  29895. height: math.unit(8 + 5.25, "feet")
  29896. },
  29897. {
  29898. name: "Giant",
  29899. height: math.unit(2000, "feet")
  29900. },
  29901. {
  29902. name: "Mega",
  29903. height: math.unit(371.1, "miles")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(2, "meters"),
  29912. weight: math.unit(350, "kg"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29916. extra: 898 / 838,
  29917. bottom: 9 / 907
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Micro",
  29924. height: math.unit(8, "meters")
  29925. },
  29926. {
  29927. name: "Normal",
  29928. height: math.unit(50, "meters"),
  29929. default: true
  29930. },
  29931. {
  29932. name: "Macro",
  29933. height: math.unit(500, "meters")
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(6 + 6 / 12, "feet"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/khardesh/front.svg",
  29945. extra: 888 / 797,
  29946. bottom: 25 / 913
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(6 + 6 / 12, "feet"),
  29954. default: true
  29955. },
  29956. {
  29957. name: "Normal+",
  29958. height: math.unit(4, "meters")
  29959. },
  29960. {
  29961. name: "Macro",
  29962. height: math.unit(50, "meters")
  29963. },
  29964. {
  29965. name: "Macro+",
  29966. height: math.unit(100, "meters")
  29967. },
  29968. {
  29969. name: "Megamacro",
  29970. height: math.unit(20, "km")
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/kosho/front.svg",
  29983. extra: 1847 / 1847,
  29984. bottom: 86 / 1933
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Second-stage micro",
  29991. height: math.unit(0.5, "inches")
  29992. },
  29993. {
  29994. name: "First-stage micro",
  29995. height: math.unit(6, "inches")
  29996. },
  29997. {
  29998. name: "Normal",
  29999. height: math.unit(6, "feet"),
  30000. default: true
  30001. },
  30002. {
  30003. name: "First-stage macro",
  30004. height: math.unit(72, "feet")
  30005. },
  30006. {
  30007. name: "Second-stage macro",
  30008. height: math.unit(864, "feet")
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30014. {
  30015. normal: {
  30016. height: math.unit(4 + 6 / 12, "feet"),
  30017. name: "Normal",
  30018. image: {
  30019. source: "./media/characters/hydra/normal.svg",
  30020. extra: 2833 / 2634,
  30021. bottom: 68 / 2901
  30022. }
  30023. },
  30024. smol: {
  30025. height: math.unit(0.705, "inches"),
  30026. name: "Smol",
  30027. image: {
  30028. source: "./media/characters/hydra/smol.svg",
  30029. extra: 2715 / 2540,
  30030. bottom: 0 / 2715
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(4 + 6 / 12, "feet"),
  30038. default: true
  30039. }
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(0.6, "cm"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/daz/front.svg",
  30050. extra: 1682 / 1164,
  30051. bottom: 42 / 1724
  30052. }
  30053. },
  30054. },
  30055. [
  30056. {
  30057. name: "Normal",
  30058. height: math.unit(0.6, "cm"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(6, "feet"),
  30068. weight: math.unit(235, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/theo-pangolin/front.svg",
  30072. extra: 1996 / 1969,
  30073. bottom: 115 / 2111
  30074. }
  30075. },
  30076. back: {
  30077. height: math.unit(6, "feet"),
  30078. weight: math.unit(235, "lb"),
  30079. name: "Back",
  30080. image: {
  30081. source: "./media/characters/theo-pangolin/back.svg",
  30082. extra: 1979 / 1979,
  30083. bottom: 40 / 2019
  30084. }
  30085. },
  30086. feral: {
  30087. height: math.unit(2, "feet"),
  30088. weight: math.unit(30, "lb"),
  30089. name: "Feral",
  30090. image: {
  30091. source: "./media/characters/theo-pangolin/feral.svg",
  30092. extra: 803 / 791,
  30093. bottom: 181 / 984
  30094. }
  30095. },
  30096. footFive: {
  30097. height: math.unit(1.43, "feet"),
  30098. name: "Foot (Five Toes)",
  30099. image: {
  30100. source: "./media/characters/theo-pangolin/foot-five.svg"
  30101. }
  30102. },
  30103. footFour: {
  30104. height: math.unit(1.43, "feet"),
  30105. name: "Foot (Four Toes)",
  30106. image: {
  30107. source: "./media/characters/theo-pangolin/foot-four.svg"
  30108. }
  30109. },
  30110. handFour: {
  30111. height: math.unit(0.81, "feet"),
  30112. name: "Hand (Four Fingers)",
  30113. image: {
  30114. source: "./media/characters/theo-pangolin/hand-four.svg"
  30115. }
  30116. },
  30117. handThree: {
  30118. height: math.unit(0.81, "feet"),
  30119. name: "Hand (Three Fingers)",
  30120. image: {
  30121. source: "./media/characters/theo-pangolin/hand-three.svg"
  30122. }
  30123. },
  30124. headFront: {
  30125. height: math.unit(1.37, "feet"),
  30126. name: "Head (Front)",
  30127. image: {
  30128. source: "./media/characters/theo-pangolin/head-front.svg"
  30129. }
  30130. },
  30131. headSide: {
  30132. height: math.unit(1.43, "feet"),
  30133. name: "Head (Side)",
  30134. image: {
  30135. source: "./media/characters/theo-pangolin/head-side.svg"
  30136. }
  30137. },
  30138. tongue: {
  30139. height: math.unit(2.29, "feet"),
  30140. name: "Tongue",
  30141. image: {
  30142. source: "./media/characters/theo-pangolin/tongue.svg"
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(6, "feet")
  30150. },
  30151. {
  30152. name: "Macro",
  30153. height: math.unit(400, "feet"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6, "inches"),
  30163. weight: math.unit(0.036, "kg"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/renée/front.svg",
  30167. extra: 900 / 886,
  30168. bottom: 8 / 908
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Nano",
  30175. height: math.unit(1, "nm")
  30176. },
  30177. {
  30178. name: "Micro",
  30179. height: math.unit(1, "mm")
  30180. },
  30181. {
  30182. name: "Normal",
  30183. height: math.unit(6, "inches")
  30184. },
  30185. {
  30186. name: "Macro",
  30187. height: math.unit(2000, "feet"),
  30188. default: true
  30189. },
  30190. {
  30191. name: "Megamacro",
  30192. height: math.unit(2, "km")
  30193. },
  30194. {
  30195. name: "Gigamacro",
  30196. height: math.unit(2000, "km")
  30197. },
  30198. {
  30199. name: "Teramacro",
  30200. height: math.unit(250000, "km")
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(4, "meters"),
  30209. weight: math.unit(150, "kg"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/caledvwlch/front.svg",
  30213. extra: 1760 / 1551,
  30214. bottom: 28 / 1788
  30215. }
  30216. },
  30217. side: {
  30218. height: math.unit(4, "meters"),
  30219. weight: math.unit(150, "kg"),
  30220. name: "Side",
  30221. image: {
  30222. source: "./media/characters/caledvwlch/side.svg",
  30223. extra: 1605 / 1536,
  30224. bottom: 31 / 1636
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(4, "meters"),
  30229. weight: math.unit(150, "kg"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/caledvwlch/back.svg",
  30233. extra: 1635 / 1565,
  30234. bottom: 27 / 1662
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "\"Incognito\"",
  30241. height: math.unit(4, "meters")
  30242. },
  30243. {
  30244. name: "Small rampage",
  30245. height: math.unit(600, "meters")
  30246. },
  30247. {
  30248. name: "Mega",
  30249. height: math.unit(30, "km")
  30250. },
  30251. {
  30252. name: "Home-size",
  30253. height: math.unit(50, "km"),
  30254. default: true
  30255. },
  30256. {
  30257. name: "Giga",
  30258. height: math.unit(300, "km")
  30259. },
  30260. {
  30261. name: "Lounging",
  30262. height: math.unit(11000, "km")
  30263. },
  30264. {
  30265. name: "Planet snacking",
  30266. height: math.unit(2000000, "km")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(6, "feet"),
  30275. weight: math.unit(215, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/sapphire-svell/front.svg",
  30279. extra: 495 / 455,
  30280. bottom: 20 / 515
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(6, "feet"),
  30285. weight: math.unit(216, "lb"),
  30286. name: "Back",
  30287. image: {
  30288. source: "./media/characters/sapphire-svell/back.svg",
  30289. extra: 497 / 477,
  30290. bottom: 7 / 504
  30291. }
  30292. },
  30293. maw: {
  30294. height: math.unit(1.57, "feet"),
  30295. name: "Maw",
  30296. image: {
  30297. source: "./media/characters/sapphire-svell/maw.svg"
  30298. }
  30299. },
  30300. foot: {
  30301. height: math.unit(1.07, "feet"),
  30302. name: "Foot",
  30303. image: {
  30304. source: "./media/characters/sapphire-svell/foot.svg"
  30305. }
  30306. },
  30307. toering: {
  30308. height: math.unit(1.7, "inch"),
  30309. name: "Toering",
  30310. image: {
  30311. source: "./media/characters/sapphire-svell/toering.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(300, "feet"),
  30319. default: true
  30320. },
  30321. {
  30322. name: "Augmented",
  30323. height: math.unit(1250, "feet")
  30324. },
  30325. {
  30326. name: "Unleashed",
  30327. height: math.unit(3000, "feet")
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30333. {
  30334. side: {
  30335. height: math.unit(2 + 3 / 12, "feet"),
  30336. weight: math.unit(110, "lb"),
  30337. name: "Side",
  30338. image: {
  30339. source: "./media/characters/glitch-flux/side.svg",
  30340. extra: 997 / 805,
  30341. bottom: 20 / 1017
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Normal",
  30348. height: math.unit(2 + 3 / 12, "feet"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(4, "meters"),
  30358. name: "Front",
  30359. image: {
  30360. source: "./media/characters/mid/front.svg",
  30361. extra: 507 / 476,
  30362. bottom: 17 / 524
  30363. }
  30364. },
  30365. back: {
  30366. height: math.unit(4, "meters"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/mid/back.svg",
  30370. extra: 519 / 487,
  30371. bottom: 7 / 526
  30372. }
  30373. },
  30374. stuck: {
  30375. height: math.unit(2.2, "meters"),
  30376. name: "Stuck",
  30377. image: {
  30378. source: "./media/characters/mid/stuck.svg",
  30379. extra: 1951 / 1869,
  30380. bottom: 88 / 2039
  30381. }
  30382. }
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(4, "meters"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "Big",
  30392. height: math.unit(10, "meters")
  30393. },
  30394. {
  30395. name: "Macro",
  30396. height: math.unit(800, "meters")
  30397. },
  30398. {
  30399. name: "Megamacro",
  30400. height: math.unit(100, "km")
  30401. },
  30402. {
  30403. name: "Overgrown",
  30404. height: math.unit(1, "parsec")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(2.5, "meters"),
  30413. weight: math.unit(225, "kg"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/iris/front.svg",
  30417. extra: 3348 / 3251,
  30418. bottom: 205 / 3553
  30419. }
  30420. },
  30421. maw: {
  30422. height: math.unit(0.56, "meter"),
  30423. name: "Maw",
  30424. image: {
  30425. source: "./media/characters/iris/maw.svg"
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Mewter cat",
  30432. height: math.unit(1.2, "meters")
  30433. },
  30434. {
  30435. name: "Minimacro",
  30436. height: math.unit(2.5, "meters"),
  30437. default: true
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(180, "meters")
  30442. },
  30443. {
  30444. name: "Megamacro",
  30445. height: math.unit(2746, "meters")
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(6, "feet"),
  30454. weight: math.unit(135, "lb"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/axel/front.svg",
  30458. extra: 908 / 908,
  30459. bottom: 58 / 966
  30460. }
  30461. },
  30462. side: {
  30463. height: math.unit(6, "feet"),
  30464. weight: math.unit(135, "lb"),
  30465. name: "Side",
  30466. image: {
  30467. source: "./media/characters/axel/side.svg",
  30468. extra: 958 / 958,
  30469. bottom: 11 / 969
  30470. }
  30471. },
  30472. back: {
  30473. height: math.unit(6, "feet"),
  30474. weight: math.unit(135, "lb"),
  30475. name: "Back",
  30476. image: {
  30477. source: "./media/characters/axel/back.svg",
  30478. extra: 887 / 887,
  30479. bottom: 34 / 921
  30480. }
  30481. },
  30482. head: {
  30483. height: math.unit(1.07, "feet"),
  30484. name: "Head",
  30485. image: {
  30486. source: "./media/characters/axel/head.svg"
  30487. }
  30488. },
  30489. beak: {
  30490. height: math.unit(1.4, "feet"),
  30491. name: "Beak",
  30492. image: {
  30493. source: "./media/characters/axel/beak.svg"
  30494. }
  30495. },
  30496. beakSide: {
  30497. height: math.unit(1.4, "feet"),
  30498. name: "Beak Side",
  30499. image: {
  30500. source: "./media/characters/axel/beak-side.svg"
  30501. }
  30502. },
  30503. sheath: {
  30504. height: math.unit(0.5, "feet"),
  30505. name: "Sheath",
  30506. image: {
  30507. source: "./media/characters/axel/sheath.svg"
  30508. }
  30509. },
  30510. dick: {
  30511. height: math.unit(0.98, "feet"),
  30512. name: "Dick",
  30513. image: {
  30514. source: "./media/characters/axel/dick.svg"
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Macro",
  30521. height: math.unit(68, "meters"),
  30522. default: true
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(3.5, "meters"),
  30531. weight: math.unit(1200, "kg"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/joanna/front.svg",
  30535. extra: 1596 / 1488,
  30536. bottom: 29 / 1625
  30537. }
  30538. },
  30539. back: {
  30540. height: math.unit(3.5, "meters"),
  30541. weight: math.unit(1200, "kg"),
  30542. name: "Back",
  30543. image: {
  30544. source: "./media/characters/joanna/back.svg",
  30545. extra: 1594 / 1495,
  30546. bottom: 26 / 1620
  30547. }
  30548. },
  30549. frontShorts: {
  30550. height: math.unit(3.5, "meters"),
  30551. weight: math.unit(1200, "kg"),
  30552. name: "Front (Shorts)",
  30553. image: {
  30554. source: "./media/characters/joanna/front-shorts.svg",
  30555. extra: 1596 / 1488,
  30556. bottom: 29 / 1625
  30557. }
  30558. },
  30559. frontBiker: {
  30560. height: math.unit(3.5, "meters"),
  30561. weight: math.unit(1200, "kg"),
  30562. name: "Front (Biker)",
  30563. image: {
  30564. source: "./media/characters/joanna/front-biker.svg",
  30565. extra: 1596 / 1488,
  30566. bottom: 29 / 1625
  30567. }
  30568. },
  30569. backBiker: {
  30570. height: math.unit(3.5, "meters"),
  30571. weight: math.unit(1200, "kg"),
  30572. name: "Back (Biker)",
  30573. image: {
  30574. source: "./media/characters/joanna/back-biker.svg",
  30575. extra: 1594 / 1495,
  30576. bottom: 88 / 1682
  30577. }
  30578. },
  30579. bikeLeft: {
  30580. height: math.unit(2.4, "meters"),
  30581. weight: math.unit(1600, "kg"),
  30582. name: "Bike (Left)",
  30583. image: {
  30584. source: "./media/characters/joanna/bike-left.svg",
  30585. extra: 720 / 720,
  30586. bottom: 8 / 728
  30587. }
  30588. },
  30589. bikeRight: {
  30590. height: math.unit(2.4, "meters"),
  30591. weight: math.unit(1600, "kg"),
  30592. name: "Bike (Right)",
  30593. image: {
  30594. source: "./media/characters/joanna/bike-right.svg",
  30595. extra: 720 / 720,
  30596. bottom: 8 / 728
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Incognito",
  30603. height: math.unit(3.5, "meters")
  30604. },
  30605. {
  30606. name: "Casual Big",
  30607. height: math.unit(200, "meters")
  30608. },
  30609. {
  30610. name: "Macro",
  30611. height: math.unit(600, "meters")
  30612. },
  30613. {
  30614. name: "Original",
  30615. height: math.unit(20, "km"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Giga",
  30620. height: math.unit(400, "km")
  30621. },
  30622. {
  30623. name: "Lounging",
  30624. height: math.unit(1500, "km")
  30625. },
  30626. {
  30627. name: "Planetary",
  30628. height: math.unit(200000, "km")
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30634. {
  30635. front: {
  30636. height: math.unit(6, "feet"),
  30637. weight: math.unit(150, "lb"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/hugo-sigil/front.svg",
  30641. extra: 522 / 500,
  30642. bottom: 2 / 524
  30643. }
  30644. },
  30645. back: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Back",
  30649. image: {
  30650. source: "./media/characters/hugo-sigil/back.svg",
  30651. extra: 519 / 495,
  30652. bottom: 5 / 524
  30653. }
  30654. },
  30655. maw: {
  30656. height: math.unit(1.4, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Maw",
  30659. image: {
  30660. source: "./media/characters/hugo-sigil/maw.svg"
  30661. }
  30662. },
  30663. feet: {
  30664. height: math.unit(1.56, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Feet",
  30667. image: {
  30668. source: "./media/characters/hugo-sigil/feet.svg",
  30669. extra: 177 / 177,
  30670. bottom: 12 / 189
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(6, "feet")
  30678. },
  30679. {
  30680. name: "Macro",
  30681. height: math.unit(200, "feet"),
  30682. default: true
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30688. {
  30689. front: {
  30690. height: math.unit(6, "feet"),
  30691. weight: math.unit(150, "lb"),
  30692. name: "Front",
  30693. image: {
  30694. source: "./media/characters/peri/front.svg",
  30695. extra: 2354 / 2233,
  30696. bottom: 49 / 2403
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Really Small",
  30703. height: math.unit(1, "nm")
  30704. },
  30705. {
  30706. name: "Micro",
  30707. height: math.unit(4, "inches")
  30708. },
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(7, "inches"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Macro",
  30716. height: math.unit(400, "feet")
  30717. },
  30718. {
  30719. name: "Megamacro",
  30720. height: math.unit(100, "miles")
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30726. {
  30727. frontSlim: {
  30728. height: math.unit(7, "feet"),
  30729. name: "Front (Slim)",
  30730. image: {
  30731. source: "./media/characters/issilora/front-slim.svg",
  30732. extra: 529 / 449,
  30733. bottom: 53 / 582
  30734. }
  30735. },
  30736. sideSlim: {
  30737. height: math.unit(7, "feet"),
  30738. name: "Side (Slim)",
  30739. image: {
  30740. source: "./media/characters/issilora/side-slim.svg",
  30741. extra: 570 / 480,
  30742. bottom: 30 / 600
  30743. }
  30744. },
  30745. backSlim: {
  30746. height: math.unit(7, "feet"),
  30747. name: "Back (Slim)",
  30748. image: {
  30749. source: "./media/characters/issilora/back-slim.svg",
  30750. extra: 537 / 455,
  30751. bottom: 46 / 583
  30752. }
  30753. },
  30754. frontBuff: {
  30755. height: math.unit(7, "feet"),
  30756. name: "Front (Buff)",
  30757. image: {
  30758. source: "./media/characters/issilora/front-buff.svg",
  30759. extra: 2310 / 2035,
  30760. bottom: 335 / 2645
  30761. }
  30762. },
  30763. head: {
  30764. height: math.unit(1.94, "feet"),
  30765. name: "Head",
  30766. image: {
  30767. source: "./media/characters/issilora/head.svg"
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Minimum",
  30774. height: math.unit(7, "feet")
  30775. },
  30776. {
  30777. name: "Comfortable",
  30778. height: math.unit(17, "feet")
  30779. },
  30780. {
  30781. name: "Fun Size",
  30782. height: math.unit(47, "feet")
  30783. },
  30784. {
  30785. name: "Natural Macro",
  30786. height: math.unit(137, "feet"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Maximum Kaiju",
  30791. height: math.unit(397, "feet")
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30797. {
  30798. front: {
  30799. height: math.unit(50 + 9/12, "feet"),
  30800. weight: math.unit(32.8, "tons"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/irb'iiritaahn/front.svg",
  30804. extra: 1878/1826,
  30805. bottom: 326/2204
  30806. }
  30807. },
  30808. back: {
  30809. height: math.unit(50 + 9/12, "feet"),
  30810. weight: math.unit(32.8, "tons"),
  30811. name: "Back",
  30812. image: {
  30813. source: "./media/characters/irb'iiritaahn/back.svg",
  30814. extra: 2052/2018,
  30815. bottom: 152/2204
  30816. }
  30817. },
  30818. head: {
  30819. height: math.unit(12.86, "feet"),
  30820. name: "Head",
  30821. image: {
  30822. source: "./media/characters/irb'iiritaahn/head.svg"
  30823. }
  30824. },
  30825. maw: {
  30826. height: math.unit(9.66, "feet"),
  30827. name: "Maw",
  30828. image: {
  30829. source: "./media/characters/irb'iiritaahn/maw.svg"
  30830. }
  30831. },
  30832. frontDick: {
  30833. height: math.unit(8.78461, "feet"),
  30834. name: "Front Dick",
  30835. image: {
  30836. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30837. }
  30838. },
  30839. rearDick: {
  30840. height: math.unit(8.78461, "feet"),
  30841. name: "Rear Dick",
  30842. image: {
  30843. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30844. }
  30845. },
  30846. rearDickUnfolded: {
  30847. height: math.unit(8.78, "feet"),
  30848. name: "Rear Dick (Unfolded)",
  30849. image: {
  30850. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30851. }
  30852. },
  30853. wings: {
  30854. height: math.unit(43, "feet"),
  30855. name: "Wings",
  30856. image: {
  30857. source: "./media/characters/irb'iiritaahn/wings.svg"
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Macro",
  30864. height: math.unit(50 + 9/12, "feet"),
  30865. default: true
  30866. },
  30867. ]
  30868. ))
  30869. characterMakers.push(() => makeCharacter(
  30870. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30871. {
  30872. front: {
  30873. height: math.unit(205, "cm"),
  30874. weight: math.unit(102, "kg"),
  30875. name: "Front",
  30876. image: {
  30877. source: "./media/characters/irbisgreif/front.svg",
  30878. extra: 785/706,
  30879. bottom: 13/798
  30880. }
  30881. },
  30882. back: {
  30883. height: math.unit(205, "cm"),
  30884. weight: math.unit(102, "kg"),
  30885. name: "Back",
  30886. image: {
  30887. source: "./media/characters/irbisgreif/back.svg",
  30888. extra: 713/701,
  30889. bottom: 26/739
  30890. }
  30891. },
  30892. frontDressed: {
  30893. height: math.unit(216, "cm"),
  30894. weight: math.unit(102, "kg"),
  30895. name: "Front-dressed",
  30896. image: {
  30897. source: "./media/characters/irbisgreif/front-dressed.svg",
  30898. extra: 902/776,
  30899. bottom: 14/916
  30900. }
  30901. },
  30902. sideDressed: {
  30903. height: math.unit(195, "cm"),
  30904. weight: math.unit(102, "kg"),
  30905. name: "Side-dressed",
  30906. image: {
  30907. source: "./media/characters/irbisgreif/side-dressed.svg",
  30908. extra: 788/688,
  30909. bottom: 21/809
  30910. }
  30911. },
  30912. backDressed: {
  30913. height: math.unit(216, "cm"),
  30914. weight: math.unit(102, "kg"),
  30915. name: "Back-dressed",
  30916. image: {
  30917. source: "./media/characters/irbisgreif/back-dressed.svg",
  30918. extra: 901/783,
  30919. bottom: 10/911
  30920. }
  30921. },
  30922. dick: {
  30923. height: math.unit(0.49, "feet"),
  30924. name: "Dick",
  30925. image: {
  30926. source: "./media/characters/irbisgreif/dick.svg"
  30927. }
  30928. },
  30929. wingTop: {
  30930. height: math.unit(1.93 , "feet"),
  30931. name: "Wing-top",
  30932. image: {
  30933. source: "./media/characters/irbisgreif/wing-top.svg"
  30934. }
  30935. },
  30936. wingBottom: {
  30937. height: math.unit(1.93 , "feet"),
  30938. name: "Wing-bottom",
  30939. image: {
  30940. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Normal",
  30947. height: math.unit(216, "cm"),
  30948. default: true
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30954. {
  30955. front: {
  30956. height: math.unit(6, "feet"),
  30957. weight: math.unit(150, "lb"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/pride/front.svg",
  30961. extra: 1299/1230,
  30962. bottom: 18/1317
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(7, "feet")
  30970. },
  30971. {
  30972. name: "Mini-macro",
  30973. height: math.unit(11, "feet")
  30974. },
  30975. {
  30976. name: "Macro",
  30977. height: math.unit(15, "meters"),
  30978. default: true
  30979. },
  30980. {
  30981. name: "Macro+",
  30982. height: math.unit(40, "meters")
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30988. {
  30989. front: {
  30990. height: math.unit(4 + 2 / 12, "feet"),
  30991. weight: math.unit(95, "lb"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/vaelophis-nyx/front.svg",
  30995. extra: 2532/2330,
  30996. bottom: 0/2532
  30997. }
  30998. },
  30999. back: {
  31000. height: math.unit(4 + 2 / 12, "feet"),
  31001. weight: math.unit(95, "lb"),
  31002. name: "Back",
  31003. image: {
  31004. source: "./media/characters/vaelophis-nyx/back.svg",
  31005. extra: 2484/2361,
  31006. bottom: 0/2484
  31007. }
  31008. },
  31009. feralSide: {
  31010. height: math.unit(2 + 1/12, "feet"),
  31011. weight: math.unit(20, "lb"),
  31012. name: "Feral (Side)",
  31013. image: {
  31014. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31015. extra: 1721/1581,
  31016. bottom: 70/1791
  31017. }
  31018. },
  31019. feralLazing: {
  31020. height: math.unit(1.08, "feet"),
  31021. weight: math.unit(20, "lb"),
  31022. name: "Feral (Lazing)",
  31023. image: {
  31024. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31025. extra: 822/822,
  31026. bottom: 248/1070
  31027. }
  31028. },
  31029. ear: {
  31030. height: math.unit(0.416, "feet"),
  31031. name: "Ear",
  31032. image: {
  31033. source: "./media/characters/vaelophis-nyx/ear.svg"
  31034. }
  31035. },
  31036. eye: {
  31037. height: math.unit(0.0748, "feet"),
  31038. name: "Eye",
  31039. image: {
  31040. source: "./media/characters/vaelophis-nyx/eye.svg"
  31041. }
  31042. },
  31043. mouth: {
  31044. height: math.unit(0.378, "feet"),
  31045. name: "Mouth",
  31046. image: {
  31047. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31048. }
  31049. },
  31050. spade: {
  31051. height: math.unit(0.55, "feet"),
  31052. name: "Spade",
  31053. image: {
  31054. source: "./media/characters/vaelophis-nyx/spade.svg"
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Normal",
  31061. height: math.unit(4 + 2/12, "feet"),
  31062. default: true
  31063. },
  31064. ]
  31065. ))
  31066. characterMakers.push(() => makeCharacter(
  31067. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31068. {
  31069. front: {
  31070. height: math.unit(7, "feet"),
  31071. weight: math.unit(231, "lb"),
  31072. name: "Front",
  31073. image: {
  31074. source: "./media/characters/flux/front.svg",
  31075. extra: 919/871,
  31076. bottom: 0/919
  31077. }
  31078. },
  31079. back: {
  31080. height: math.unit(7, "feet"),
  31081. weight: math.unit(231, "lb"),
  31082. name: "Back",
  31083. image: {
  31084. source: "./media/characters/flux/back.svg",
  31085. extra: 1040/992,
  31086. bottom: 0/1040
  31087. }
  31088. },
  31089. frontDressed: {
  31090. height: math.unit(7, "feet"),
  31091. weight: math.unit(231, "lb"),
  31092. name: "Front (Dressed)",
  31093. image: {
  31094. source: "./media/characters/flux/front-dressed.svg",
  31095. extra: 919/871,
  31096. bottom: 0/919
  31097. }
  31098. },
  31099. feralSide: {
  31100. height: math.unit(5, "feet"),
  31101. weight: math.unit(150, "lb"),
  31102. name: "Feral (Side)",
  31103. image: {
  31104. source: "./media/characters/flux/feral-side.svg",
  31105. extra: 598/528,
  31106. bottom: 28/626
  31107. }
  31108. },
  31109. head: {
  31110. height: math.unit(1.585, "feet"),
  31111. name: "Head",
  31112. image: {
  31113. source: "./media/characters/flux/head.svg"
  31114. }
  31115. },
  31116. headSide: {
  31117. height: math.unit(1.74, "feet"),
  31118. name: "Head (Side)",
  31119. image: {
  31120. source: "./media/characters/flux/head-side.svg"
  31121. }
  31122. },
  31123. headSideFire: {
  31124. height: math.unit(1.76, "feet"),
  31125. name: "Head (Side, Fire)",
  31126. image: {
  31127. source: "./media/characters/flux/head-side-fire.svg"
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Normal",
  31134. height: math.unit(7, "feet"),
  31135. default: true
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(9, "feet"),
  31144. weight: math.unit(1012, "lb"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/ulfra-lupae/front.svg",
  31148. extra: 1083/1011,
  31149. bottom: 67/1150
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Micro",
  31156. height: math.unit(6, "inches")
  31157. },
  31158. {
  31159. name: "Socializing",
  31160. height: math.unit(6 + 5/12, "feet")
  31161. },
  31162. {
  31163. name: "Normal",
  31164. height: math.unit(9, "feet"),
  31165. default: true
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(150, "feet")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(5 + 2/12, "feet"),
  31178. weight: math.unit(120, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/timber/front.svg",
  31182. extra: 2814/2705,
  31183. bottom: 181/2995
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(5 + 2/12, "feet"),
  31191. default: true
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(5 + 7/12, "feet"),
  31200. weight: math.unit(220, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/nicki/front.svg",
  31204. extra: 453/419,
  31205. bottom: 7/460
  31206. }
  31207. },
  31208. frontAlt: {
  31209. height: math.unit(5 + 7/12, "feet"),
  31210. weight: math.unit(220, "lb"),
  31211. name: "Front-alt",
  31212. image: {
  31213. source: "./media/characters/nicki/front-alt.svg",
  31214. extra: 435/411,
  31215. bottom: 12/447
  31216. }
  31217. },
  31218. back: {
  31219. height: math.unit(5 + 7/12, "feet"),
  31220. weight: math.unit(220, "lb"),
  31221. name: "Back",
  31222. image: {
  31223. source: "./media/characters/nicki/back.svg",
  31224. extra: 440/413,
  31225. bottom: 19/459
  31226. }
  31227. },
  31228. taur: {
  31229. height: math.unit(7 + 6/12, "feet"),
  31230. weight: math.unit(700, "lb"),
  31231. name: "Taur",
  31232. image: {
  31233. source: "./media/characters/nicki/taur.svg",
  31234. extra: 975/773,
  31235. bottom: 0/975
  31236. }
  31237. },
  31238. frontNsfw: {
  31239. height: math.unit(5 + 7/12, "feet"),
  31240. weight: math.unit(220, "lb"),
  31241. name: "Front (NSFW)",
  31242. image: {
  31243. source: "./media/characters/nicki/front-nsfw.svg",
  31244. extra: 453/419,
  31245. bottom: 7/460
  31246. }
  31247. },
  31248. frontNsfwAlt: {
  31249. height: math.unit(5 + 7/12, "feet"),
  31250. weight: math.unit(220, "lb"),
  31251. name: "Front (Alt, NSFW)",
  31252. image: {
  31253. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31254. extra: 435/411,
  31255. bottom: 12/447
  31256. }
  31257. },
  31258. backNsfw: {
  31259. height: math.unit(5 + 7/12, "feet"),
  31260. weight: math.unit(220, "lb"),
  31261. name: "Back (NSFW)",
  31262. image: {
  31263. source: "./media/characters/nicki/back-nsfw.svg",
  31264. extra: 440/413,
  31265. bottom: 19/459
  31266. }
  31267. },
  31268. head: {
  31269. height: math.unit(2.1, "feet"),
  31270. name: "Head",
  31271. image: {
  31272. source: "./media/characters/nicki/head.svg"
  31273. }
  31274. },
  31275. paw: {
  31276. height: math.unit(1.88, "feet"),
  31277. name: "Paw",
  31278. image: {
  31279. source: "./media/characters/nicki/paw.svg"
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(5 + 7/12, "feet"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(7 + 10/12, "feet"),
  31296. weight: math.unit(3.5, "tons"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/lee/front.svg",
  31300. extra: 1773/1615,
  31301. bottom: 86/1859
  31302. }
  31303. },
  31304. hand: {
  31305. height: math.unit(1.78, "feet"),
  31306. name: "Hand",
  31307. image: {
  31308. source: "./media/characters/lee/hand.svg"
  31309. }
  31310. },
  31311. maw: {
  31312. height: math.unit(1.18, "feet"),
  31313. name: "Maw",
  31314. image: {
  31315. source: "./media/characters/lee/maw.svg"
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Normal",
  31322. height: math.unit(7 + 10/12, "feet"),
  31323. default: true
  31324. },
  31325. ]
  31326. ))
  31327. characterMakers.push(() => makeCharacter(
  31328. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31329. {
  31330. front: {
  31331. height: math.unit(9, "feet"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/guti/front.svg",
  31335. extra: 4551/4355,
  31336. bottom: 123/4674
  31337. }
  31338. },
  31339. tongue: {
  31340. height: math.unit(1, "feet"),
  31341. name: "Tongue",
  31342. image: {
  31343. source: "./media/characters/guti/tongue.svg"
  31344. }
  31345. },
  31346. paw: {
  31347. height: math.unit(1.18, "feet"),
  31348. name: "Paw",
  31349. image: {
  31350. source: "./media/characters/guti/paw.svg"
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Normal",
  31357. height: math.unit(9, "feet"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31364. {
  31365. side: {
  31366. height: math.unit(5, "meters"),
  31367. name: "Side",
  31368. image: {
  31369. source: "./media/characters/vesper/side.svg",
  31370. extra: 1605/1518,
  31371. bottom: 0/1605
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Small",
  31378. height: math.unit(5, "meters")
  31379. },
  31380. {
  31381. name: "Sage",
  31382. height: math.unit(100, "meters"),
  31383. default: true
  31384. },
  31385. {
  31386. name: "Fun Size",
  31387. height: math.unit(600, "meters")
  31388. },
  31389. {
  31390. name: "Goddess",
  31391. height: math.unit(20000, "km")
  31392. },
  31393. {
  31394. name: "Maximum",
  31395. height: math.unit(5, "galaxies")
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6 + 3/12, "feet"),
  31404. weight: math.unit(190, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/gawain/front.svg",
  31408. extra: 2222/2139,
  31409. bottom: 90/2312
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(6 + 3/12, "feet"),
  31414. weight: math.unit(190, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/gawain/back.svg",
  31418. extra: 2199/2111,
  31419. bottom: 73/2272
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Normal",
  31426. height: math.unit(6 + 3/12, "feet"),
  31427. default: true
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31433. {
  31434. side: {
  31435. height: math.unit(3.5, "meters"),
  31436. weight: math.unit(16000, "lb"),
  31437. name: "Side",
  31438. image: {
  31439. source: "./media/characters/dascalti/side.svg",
  31440. extra: 392/273,
  31441. bottom: 47/439
  31442. }
  31443. },
  31444. breath: {
  31445. height: math.unit(7.4, "feet"),
  31446. name: "Breath",
  31447. image: {
  31448. source: "./media/characters/dascalti/breath.svg"
  31449. }
  31450. },
  31451. fed: {
  31452. height: math.unit(3.6, "meters"),
  31453. weight: math.unit(16000, "lb"),
  31454. name: "Fed",
  31455. image: {
  31456. source: "./media/characters/dascalti/fed.svg",
  31457. extra: 1419/820,
  31458. bottom: 95/1514
  31459. }
  31460. },
  31461. },
  31462. [
  31463. {
  31464. name: "Normal",
  31465. height: math.unit(3.5, "meters"),
  31466. default: true
  31467. },
  31468. ]
  31469. ))
  31470. characterMakers.push(() => makeCharacter(
  31471. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31472. {
  31473. front: {
  31474. height: math.unit(3 + 5/12, "feet"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/mauve/front.svg",
  31478. extra: 1126/1033,
  31479. bottom: 65/1191
  31480. }
  31481. },
  31482. side: {
  31483. height: math.unit(3 + 5/12, "feet"),
  31484. name: "Side",
  31485. image: {
  31486. source: "./media/characters/mauve/side.svg",
  31487. extra: 1089/1001,
  31488. bottom: 29/1118
  31489. }
  31490. },
  31491. back: {
  31492. height: math.unit(3 + 5/12, "feet"),
  31493. name: "Back",
  31494. image: {
  31495. source: "./media/characters/mauve/back.svg",
  31496. extra: 1173/1053,
  31497. bottom: 109/1282
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Normal",
  31504. height: math.unit(3 + 5/12, "feet"),
  31505. default: true
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(6 + 3/12, "feet"),
  31514. weight: math.unit(430, "lb"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/carlos/front.svg",
  31518. extra: 1964/1913,
  31519. bottom: 70/2034
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(6 + 3/12, "feet"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31533. {
  31534. back: {
  31535. height: math.unit(5 + 10/12, "feet"),
  31536. weight: math.unit(200, "lb"),
  31537. name: "Back",
  31538. image: {
  31539. source: "./media/characters/jax/back.svg",
  31540. extra: 764/739,
  31541. bottom: 25/789
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Normal",
  31548. height: math.unit(5 + 10/12, "feet"),
  31549. default: true
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(8, "feet"),
  31558. weight: math.unit(250, "lb"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/eikthynir/front.svg",
  31562. extra: 1332/1166,
  31563. bottom: 82/1414
  31564. }
  31565. },
  31566. back: {
  31567. height: math.unit(8, "feet"),
  31568. weight: math.unit(250, "lb"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/eikthynir/back.svg",
  31572. extra: 1342/1190,
  31573. bottom: 19/1361
  31574. }
  31575. },
  31576. dick: {
  31577. height: math.unit(2.35, "feet"),
  31578. name: "Dick",
  31579. image: {
  31580. source: "./media/characters/eikthynir/dick.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(8, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(99, "meters"),
  31597. weight: math.unit(13000, "tons"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/zlmos/front.svg",
  31601. extra: 2202/1992,
  31602. bottom: 315/2517
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Macro",
  31609. height: math.unit(99, "meters"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(6 + 5/12, "feet"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/purri/front.svg",
  31622. extra: 1698/1610,
  31623. bottom: 32/1730
  31624. }
  31625. },
  31626. frontAlt: {
  31627. height: math.unit(6 + 5/12, "feet"),
  31628. name: "Front (Alt)",
  31629. image: {
  31630. source: "./media/characters/purri/front-alt.svg",
  31631. extra: 450/420,
  31632. bottom: 26/476
  31633. }
  31634. },
  31635. boots: {
  31636. height: math.unit(5.5, "feet"),
  31637. name: "Boots",
  31638. image: {
  31639. source: "./media/characters/purri/boots.svg",
  31640. extra: 905/853,
  31641. bottom: 18/923
  31642. }
  31643. },
  31644. lying: {
  31645. height: math.unit(2, "feet"),
  31646. name: "Lying",
  31647. image: {
  31648. source: "./media/characters/purri/lying.svg",
  31649. extra: 940/843,
  31650. bottom: 146/1086
  31651. }
  31652. },
  31653. devious: {
  31654. height: math.unit(1.77, "feet"),
  31655. name: "Devious",
  31656. image: {
  31657. source: "./media/characters/purri/devious.svg",
  31658. extra: 1440/1155,
  31659. bottom: 147/1587
  31660. }
  31661. },
  31662. bean: {
  31663. height: math.unit(1.94, "feet"),
  31664. name: "Bean",
  31665. image: {
  31666. source: "./media/characters/purri/bean.svg"
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Micro",
  31673. height: math.unit(1, "mm")
  31674. },
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(6 + 5/12, "feet"),
  31678. default: true
  31679. },
  31680. {
  31681. name: "Macro :3c",
  31682. height: math.unit(2, "miles")
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(6 + 2/12, "feet"),
  31691. weight: math.unit(250, "lb"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/moonlight/front.svg",
  31695. extra: 1044/908,
  31696. bottom: 56/1100
  31697. }
  31698. },
  31699. feral: {
  31700. height: math.unit(3 + 1/12, "feet"),
  31701. weight: math.unit(50, "kg"),
  31702. name: "Feral",
  31703. image: {
  31704. source: "./media/characters/moonlight/feral.svg",
  31705. extra: 3705/2791,
  31706. bottom: 145/3850
  31707. }
  31708. },
  31709. paw: {
  31710. height: math.unit(1, "feet"),
  31711. name: "Paw",
  31712. image: {
  31713. source: "./media/characters/moonlight/paw.svg"
  31714. }
  31715. },
  31716. paws: {
  31717. height: math.unit(0.98, "feet"),
  31718. name: "Paws",
  31719. image: {
  31720. source: "./media/characters/moonlight/paws.svg",
  31721. extra: 939/939,
  31722. bottom: 50/989
  31723. }
  31724. },
  31725. mouth: {
  31726. height: math.unit(0.48, "feet"),
  31727. name: "Mouth",
  31728. image: {
  31729. source: "./media/characters/moonlight/mouth.svg"
  31730. }
  31731. },
  31732. dick: {
  31733. height: math.unit(1.46, "feet"),
  31734. name: "Dick",
  31735. image: {
  31736. source: "./media/characters/moonlight/dick.svg"
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(6 + 2/12, "feet"),
  31744. default: true
  31745. },
  31746. {
  31747. name: "Macro",
  31748. height: math.unit(300, "feet")
  31749. },
  31750. {
  31751. name: "Macro+",
  31752. height: math.unit(1, "mile")
  31753. },
  31754. {
  31755. name: "Mt. Moon",
  31756. height: math.unit(5, "miles")
  31757. },
  31758. {
  31759. name: "Megamacro",
  31760. height: math.unit(15, "miles")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31766. {
  31767. back: {
  31768. height: math.unit(6, "feet"),
  31769. weight: math.unit(150, "lb"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/sylen/back.svg",
  31773. extra: 1335/1273,
  31774. bottom: 107/1442
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(5 + 5/12, "feet")
  31782. },
  31783. {
  31784. name: "Megamacro",
  31785. height: math.unit(3, "miles"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(6, "feet"),
  31795. weight: math.unit(190, "lb"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/huttser/front.svg",
  31799. extra: 1152/1058,
  31800. bottom: 23/1175
  31801. }
  31802. },
  31803. side: {
  31804. height: math.unit(6, "feet"),
  31805. weight: math.unit(190, "lb"),
  31806. name: "Side",
  31807. image: {
  31808. source: "./media/characters/huttser/side.svg",
  31809. extra: 1174/1065,
  31810. bottom: 18/1192
  31811. }
  31812. },
  31813. back: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(190, "lb"),
  31816. name: "Back",
  31817. image: {
  31818. source: "./media/characters/huttser/back.svg",
  31819. extra: 1158/1056,
  31820. bottom: 12/1170
  31821. }
  31822. },
  31823. },
  31824. [
  31825. ]
  31826. ))
  31827. characterMakers.push(() => makeCharacter(
  31828. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31829. {
  31830. side: {
  31831. height: math.unit(12 + 9/12, "feet"),
  31832. weight: math.unit(15000, "lb"),
  31833. name: "Side",
  31834. image: {
  31835. source: "./media/characters/faan/side.svg",
  31836. extra: 2747/2697,
  31837. bottom: 0/2747
  31838. }
  31839. },
  31840. front: {
  31841. height: math.unit(12 + 9/12, "feet"),
  31842. weight: math.unit(15000, "lb"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/faan/front.svg",
  31846. extra: 607/571,
  31847. bottom: 24/631
  31848. }
  31849. },
  31850. head: {
  31851. height: math.unit(2.85, "feet"),
  31852. name: "Head",
  31853. image: {
  31854. source: "./media/characters/faan/head.svg"
  31855. }
  31856. },
  31857. headAlt: {
  31858. height: math.unit(3.13, "feet"),
  31859. name: "Head-alt",
  31860. image: {
  31861. source: "./media/characters/faan/head-alt.svg"
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(12 + 9/12, "feet"),
  31869. default: true
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31875. {
  31876. front: {
  31877. height: math.unit(6, "feet"),
  31878. weight: math.unit(300, "lb"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/tanio/front.svg",
  31882. extra: 711/673,
  31883. bottom: 25/736
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(6, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(3, "inches"),
  31900. name: "Front",
  31901. image: {
  31902. source: "./media/characters/noboru/front.svg",
  31903. extra: 1039/932,
  31904. bottom: 18/1057
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Micro",
  31911. height: math.unit(3, "inches"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(1.85, "meters"),
  31921. weight: math.unit(80, "kg"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/daniel-barrett/front.svg",
  31925. extra: 355/337,
  31926. bottom: 9/364
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Pico",
  31933. height: math.unit(0.0433, "mm")
  31934. },
  31935. {
  31936. name: "Nano",
  31937. height: math.unit(1.5, "mm")
  31938. },
  31939. {
  31940. name: "Micro",
  31941. height: math.unit(5.3, "cm"),
  31942. default: true
  31943. },
  31944. {
  31945. name: "Normal",
  31946. height: math.unit(1.85, "meters")
  31947. },
  31948. {
  31949. name: "Macro",
  31950. height: math.unit(64.7, "meters")
  31951. },
  31952. {
  31953. name: "Megamacro",
  31954. height: math.unit(2.26, "km")
  31955. },
  31956. {
  31957. name: "Gigamacro",
  31958. height: math.unit(79, "km")
  31959. },
  31960. {
  31961. name: "Teramacro",
  31962. height: math.unit(2765, "km")
  31963. },
  31964. {
  31965. name: "Petamacro",
  31966. height: math.unit(96678, "km")
  31967. },
  31968. ]
  31969. ))
  31970. characterMakers.push(() => makeCharacter(
  31971. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31972. {
  31973. front: {
  31974. height: math.unit(30, "meters"),
  31975. weight: math.unit(400, "tons"),
  31976. name: "Front",
  31977. image: {
  31978. source: "./media/characters/zeel/front.svg",
  31979. extra: 2599/2599,
  31980. bottom: 226/2825
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Macro",
  31987. height: math.unit(30, "meters"),
  31988. default: true
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31994. {
  31995. front: {
  31996. height: math.unit(6 + 7/12, "feet"),
  31997. weight: math.unit(210, "lb"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/tarn/front.svg",
  32001. extra: 3517/3220,
  32002. bottom: 91/3608
  32003. }
  32004. },
  32005. back: {
  32006. height: math.unit(6 + 7/12, "feet"),
  32007. weight: math.unit(210, "lb"),
  32008. name: "Back",
  32009. image: {
  32010. source: "./media/characters/tarn/back.svg",
  32011. extra: 3566/3241,
  32012. bottom: 34/3600
  32013. }
  32014. },
  32015. dick: {
  32016. height: math.unit(1.65, "feet"),
  32017. name: "Dick",
  32018. image: {
  32019. source: "./media/characters/tarn/dick.svg"
  32020. }
  32021. },
  32022. paw: {
  32023. height: math.unit(1.80, "feet"),
  32024. name: "Paw",
  32025. image: {
  32026. source: "./media/characters/tarn/paw.svg"
  32027. }
  32028. },
  32029. tongue: {
  32030. height: math.unit(0.97, "feet"),
  32031. name: "Tongue",
  32032. image: {
  32033. source: "./media/characters/tarn/tongue.svg"
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Micro",
  32040. height: math.unit(4, "inches")
  32041. },
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(6 + 7/12, "feet"),
  32045. default: true
  32046. },
  32047. {
  32048. name: "Macro",
  32049. height: math.unit(300, "feet")
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(5 + 7/12, "feet"),
  32058. weight: math.unit(80, "kg"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32062. extra: 3023/2865,
  32063. bottom: 33/3056
  32064. }
  32065. },
  32066. back: {
  32067. height: math.unit(5 + 7/12, "feet"),
  32068. weight: math.unit(80, "kg"),
  32069. name: "Back",
  32070. image: {
  32071. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32072. extra: 3020/2886,
  32073. bottom: 30/3050
  32074. }
  32075. },
  32076. dick: {
  32077. height: math.unit(0.98, "feet"),
  32078. name: "Dick",
  32079. image: {
  32080. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32081. }
  32082. },
  32083. anatomy: {
  32084. height: math.unit(2.86, "feet"),
  32085. name: "Anatomy",
  32086. image: {
  32087. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Really Small",
  32094. height: math.unit(2, "inches")
  32095. },
  32096. {
  32097. name: "Micro",
  32098. height: math.unit(5.583, "inches")
  32099. },
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(5 + 7/12, "feet"),
  32103. default: true
  32104. },
  32105. {
  32106. name: "Macro",
  32107. height: math.unit(67, "feet")
  32108. },
  32109. {
  32110. name: "Megamacro",
  32111. height: math.unit(134, "feet")
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(9, "feet"),
  32120. weight: math.unit(120, "lb"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/sally/front.svg",
  32124. extra: 1506/1349,
  32125. bottom: 66/1572
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(9, "feet"),
  32133. default: true
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32139. {
  32140. front: {
  32141. height: math.unit(8, "feet"),
  32142. weight: math.unit(900, "lb"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/owen/front.svg",
  32146. extra: 1761/1657,
  32147. bottom: 74/1835
  32148. }
  32149. },
  32150. side: {
  32151. height: math.unit(8, "feet"),
  32152. weight: math.unit(900, "lb"),
  32153. name: "Side",
  32154. image: {
  32155. source: "./media/characters/owen/side.svg",
  32156. extra: 1797/1734,
  32157. bottom: 30/1827
  32158. }
  32159. },
  32160. back: {
  32161. height: math.unit(8, "feet"),
  32162. weight: math.unit(900, "lb"),
  32163. name: "Back",
  32164. image: {
  32165. source: "./media/characters/owen/back.svg",
  32166. extra: 1796/1706,
  32167. bottom: 59/1855
  32168. }
  32169. },
  32170. maw: {
  32171. height: math.unit(1.76, "feet"),
  32172. name: "Maw",
  32173. image: {
  32174. source: "./media/characters/owen/maw.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(8, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32188. {
  32189. front: {
  32190. height: math.unit(4, "feet"),
  32191. weight: math.unit(400, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/ryth/front.svg",
  32195. extra: 1920/1748,
  32196. bottom: 42/1962
  32197. }
  32198. },
  32199. back: {
  32200. height: math.unit(4, "feet"),
  32201. weight: math.unit(400, "lb"),
  32202. name: "Back",
  32203. image: {
  32204. source: "./media/characters/ryth/back.svg",
  32205. extra: 1897/1690,
  32206. bottom: 89/1986
  32207. }
  32208. },
  32209. mouth: {
  32210. height: math.unit(1.39, "feet"),
  32211. name: "Mouth",
  32212. image: {
  32213. source: "./media/characters/ryth/mouth.svg"
  32214. }
  32215. },
  32216. tailmaw: {
  32217. height: math.unit(1.23, "feet"),
  32218. name: "Tailmaw",
  32219. image: {
  32220. source: "./media/characters/ryth/tailmaw.svg"
  32221. }
  32222. },
  32223. goia: {
  32224. height: math.unit(4, "meters"),
  32225. weight: math.unit(10800, "lb"),
  32226. name: "Goia",
  32227. image: {
  32228. source: "./media/characters/ryth/goia.svg",
  32229. extra: 745/640,
  32230. bottom: 107/852
  32231. }
  32232. },
  32233. goiaFront: {
  32234. height: math.unit(4, "meters"),
  32235. weight: math.unit(10800, "lb"),
  32236. name: "Goia (Front)",
  32237. image: {
  32238. source: "./media/characters/ryth/goia-front.svg",
  32239. extra: 750/586,
  32240. bottom: 114/864
  32241. }
  32242. },
  32243. goiaMaw: {
  32244. height: math.unit(5.55, "feet"),
  32245. name: "Goia Maw",
  32246. image: {
  32247. source: "./media/characters/ryth/goia-maw.svg"
  32248. }
  32249. },
  32250. goiaForepaw: {
  32251. height: math.unit(3.5, "feet"),
  32252. name: "Goia Forepaw",
  32253. image: {
  32254. source: "./media/characters/ryth/goia-forepaw.svg"
  32255. }
  32256. },
  32257. goiaHindpaw: {
  32258. height: math.unit(5.55, "feet"),
  32259. name: "Goia Hindpaw",
  32260. image: {
  32261. source: "./media/characters/ryth/goia-hindpaw.svg"
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Normal",
  32268. height: math.unit(4, "feet"),
  32269. default: true
  32270. },
  32271. ]
  32272. ))
  32273. characterMakers.push(() => makeCharacter(
  32274. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32275. {
  32276. front: {
  32277. height: math.unit(7, "feet"),
  32278. weight: math.unit(180, "lb"),
  32279. name: "Front",
  32280. image: {
  32281. source: "./media/characters/necrolance/front.svg",
  32282. extra: 1062/947,
  32283. bottom: 41/1103
  32284. }
  32285. },
  32286. back: {
  32287. height: math.unit(7, "feet"),
  32288. weight: math.unit(180, "lb"),
  32289. name: "Back",
  32290. image: {
  32291. source: "./media/characters/necrolance/back.svg",
  32292. extra: 1045/984,
  32293. bottom: 14/1059
  32294. }
  32295. },
  32296. wing: {
  32297. height: math.unit(2.67, "feet"),
  32298. name: "Wing",
  32299. image: {
  32300. source: "./media/characters/necrolance/wing.svg"
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(7, "feet"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32314. {
  32315. front: {
  32316. height: math.unit(76, "meters"),
  32317. weight: math.unit(30000, "tons"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/tyler/front.svg",
  32321. extra: 1640/1640,
  32322. bottom: 114/1754
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Macro",
  32329. height: math.unit(76, "meters"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32336. {
  32337. front: {
  32338. height: math.unit(4 + 11/12, "feet"),
  32339. weight: math.unit(132, "lb"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/icey/front.svg",
  32343. extra: 2750/2550,
  32344. bottom: 33/2783
  32345. }
  32346. },
  32347. back: {
  32348. height: math.unit(4 + 11/12, "feet"),
  32349. weight: math.unit(132, "lb"),
  32350. name: "Back",
  32351. image: {
  32352. source: "./media/characters/icey/back.svg",
  32353. extra: 2624/2481,
  32354. bottom: 35/2659
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(4 + 11/12, "feet"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(100, "feet"),
  32371. weight: math.unit(0, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/smile/front.svg",
  32375. extra: 2983/2912,
  32376. bottom: 162/3145
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(100, "feet"),
  32381. weight: math.unit(0, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/smile/back.svg",
  32385. extra: 3143/3031,
  32386. bottom: 91/3234
  32387. }
  32388. },
  32389. head: {
  32390. height: math.unit(26.3, "feet"),
  32391. weight: math.unit(0, "lb"),
  32392. name: "Head",
  32393. image: {
  32394. source: "./media/characters/smile/head.svg"
  32395. }
  32396. },
  32397. collar: {
  32398. height: math.unit(5.3, "feet"),
  32399. weight: math.unit(0, "lb"),
  32400. name: "Collar",
  32401. image: {
  32402. source: "./media/characters/smile/collar.svg"
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Macro",
  32409. height: math.unit(100, "feet"),
  32410. default: true
  32411. },
  32412. ]
  32413. ))
  32414. characterMakers.push(() => makeCharacter(
  32415. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32416. {
  32417. dragon: {
  32418. height: math.unit(26, "feet"),
  32419. weight: math.unit(36, "tons"),
  32420. name: "Dragon",
  32421. image: {
  32422. source: "./media/characters/arimphae/dragon.svg",
  32423. extra: 1574/983,
  32424. bottom: 357/1931
  32425. }
  32426. },
  32427. drake: {
  32428. height: math.unit(9, "feet"),
  32429. weight: math.unit(1.5, "tons"),
  32430. name: "Drake",
  32431. image: {
  32432. source: "./media/characters/arimphae/drake.svg",
  32433. extra: 1120/925,
  32434. bottom: 435/1555
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Small",
  32441. height: math.unit(26*5/9, "feet")
  32442. },
  32443. {
  32444. name: "Normal",
  32445. height: math.unit(26, "feet"),
  32446. default: true
  32447. },
  32448. ]
  32449. ))
  32450. characterMakers.push(() => makeCharacter(
  32451. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32452. {
  32453. front: {
  32454. height: math.unit(8 + 9/12, "feet"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/xander/front.svg",
  32458. extra: 1237/974,
  32459. bottom: 94/1331
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(8 + 9/12, "feet"),
  32467. default: true
  32468. },
  32469. {
  32470. name: "Gaze Grabber",
  32471. height: math.unit(13 + 8/12, "feet")
  32472. },
  32473. {
  32474. name: "Jaw Dropper",
  32475. height: math.unit(27, "feet")
  32476. },
  32477. {
  32478. name: "Show Stopper",
  32479. height: math.unit(136, "feet")
  32480. },
  32481. {
  32482. name: "Superstar",
  32483. height: math.unit(1.9e6, "miles")
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32489. {
  32490. side: {
  32491. height: math.unit(2100, "feet"),
  32492. name: "Side",
  32493. image: {
  32494. source: "./media/characters/osiris/side.svg",
  32495. extra: 1105/939,
  32496. bottom: 167/1272
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Macro",
  32503. height: math.unit(2100, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(6 + 8/12, "feet"),
  32513. weight: math.unit(225, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/rhys-londe/front.svg",
  32517. extra: 2258/2141,
  32518. bottom: 188/2446
  32519. }
  32520. },
  32521. back: {
  32522. height: math.unit(6 + 8/12, "feet"),
  32523. weight: math.unit(225, "lb"),
  32524. name: "Back",
  32525. image: {
  32526. source: "./media/characters/rhys-londe/back.svg",
  32527. extra: 2237/2137,
  32528. bottom: 63/2300
  32529. }
  32530. },
  32531. frontNsfw: {
  32532. height: math.unit(6 + 8/12, "feet"),
  32533. weight: math.unit(225, "lb"),
  32534. name: "Front (NSFW)",
  32535. image: {
  32536. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32537. extra: 2258/2141,
  32538. bottom: 188/2446
  32539. }
  32540. },
  32541. backNsfw: {
  32542. height: math.unit(6 + 8/12, "feet"),
  32543. weight: math.unit(225, "lb"),
  32544. name: "Back (NSFW)",
  32545. image: {
  32546. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32547. extra: 2237/2137,
  32548. bottom: 63/2300
  32549. }
  32550. },
  32551. dick: {
  32552. height: math.unit(30, "inches"),
  32553. name: "Dick",
  32554. image: {
  32555. source: "./media/characters/rhys-londe/dick.svg"
  32556. }
  32557. },
  32558. maw: {
  32559. height: math.unit(1.6, "feet"),
  32560. name: "Maw",
  32561. image: {
  32562. source: "./media/characters/rhys-londe/maw.svg"
  32563. }
  32564. },
  32565. },
  32566. [
  32567. {
  32568. name: "Normal",
  32569. height: math.unit(6 + 8/12, "feet"),
  32570. default: true
  32571. },
  32572. ]
  32573. ))
  32574. characterMakers.push(() => makeCharacter(
  32575. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32576. {
  32577. front: {
  32578. height: math.unit(3 + 10/12, "feet"),
  32579. weight: math.unit(90, "lb"),
  32580. name: "Front",
  32581. image: {
  32582. source: "./media/characters/taivas-ensim/front.svg",
  32583. extra: 1327/1216,
  32584. bottom: 96/1423
  32585. }
  32586. },
  32587. back: {
  32588. height: math.unit(3 + 10/12, "feet"),
  32589. weight: math.unit(90, "lb"),
  32590. name: "Back",
  32591. image: {
  32592. source: "./media/characters/taivas-ensim/back.svg",
  32593. extra: 1355/1247,
  32594. bottom: 11/1366
  32595. }
  32596. },
  32597. frontNsfw: {
  32598. height: math.unit(3 + 10/12, "feet"),
  32599. weight: math.unit(90, "lb"),
  32600. name: "Front (NSFW)",
  32601. image: {
  32602. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32603. extra: 1327/1216,
  32604. bottom: 96/1423
  32605. }
  32606. },
  32607. backNsfw: {
  32608. height: math.unit(3 + 10/12, "feet"),
  32609. weight: math.unit(90, "lb"),
  32610. name: "Back (NSFW)",
  32611. image: {
  32612. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32613. extra: 1355/1247,
  32614. bottom: 11/1366
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(3 + 10/12, "feet"),
  32622. default: true
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32628. {
  32629. front: {
  32630. height: math.unit(9 + 6/12, "feet"),
  32631. weight: math.unit(940, "lb"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/byliss/front.svg",
  32635. extra: 1327/1290,
  32636. bottom: 82/1409
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(9 + 6/12, "feet"),
  32641. weight: math.unit(940, "lb"),
  32642. name: "Back",
  32643. image: {
  32644. source: "./media/characters/byliss/back.svg",
  32645. extra: 1376/1349,
  32646. bottom: 9/1385
  32647. }
  32648. },
  32649. frontNsfw: {
  32650. height: math.unit(9 + 6/12, "feet"),
  32651. weight: math.unit(940, "lb"),
  32652. name: "Front (NSFW)",
  32653. image: {
  32654. source: "./media/characters/byliss/front-nsfw.svg",
  32655. extra: 1327/1290,
  32656. bottom: 82/1409
  32657. }
  32658. },
  32659. backNsfw: {
  32660. height: math.unit(9 + 6/12, "feet"),
  32661. weight: math.unit(940, "lb"),
  32662. name: "Back (NSFW)",
  32663. image: {
  32664. source: "./media/characters/byliss/back-nsfw.svg",
  32665. extra: 1376/1349,
  32666. bottom: 9/1385
  32667. }
  32668. },
  32669. },
  32670. [
  32671. {
  32672. name: "Normal",
  32673. height: math.unit(9 + 6/12, "feet"),
  32674. default: true
  32675. },
  32676. ]
  32677. ))
  32678. characterMakers.push(() => makeCharacter(
  32679. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32680. {
  32681. front: {
  32682. height: math.unit(5 + 2/12, "feet"),
  32683. weight: math.unit(200, "lb"),
  32684. name: "Front",
  32685. image: {
  32686. source: "./media/characters/noraly/front.svg",
  32687. extra: 4985/4773,
  32688. bottom: 150/5135
  32689. }
  32690. },
  32691. full: {
  32692. height: math.unit(5 + 2/12, "feet"),
  32693. weight: math.unit(164, "lb"),
  32694. name: "Full",
  32695. image: {
  32696. source: "./media/characters/noraly/full.svg",
  32697. extra: 1114/1059,
  32698. bottom: 35/1149
  32699. }
  32700. },
  32701. fuller: {
  32702. height: math.unit(5 + 2/12, "feet"),
  32703. weight: math.unit(230, "lb"),
  32704. name: "Fuller",
  32705. image: {
  32706. source: "./media/characters/noraly/fuller.svg",
  32707. extra: 1114/1059,
  32708. bottom: 35/1149
  32709. }
  32710. },
  32711. fullest: {
  32712. height: math.unit(5 + 2/12, "feet"),
  32713. weight: math.unit(300, "lb"),
  32714. name: "Fullest",
  32715. image: {
  32716. source: "./media/characters/noraly/fullest.svg",
  32717. extra: 1114/1059,
  32718. bottom: 35/1149
  32719. }
  32720. },
  32721. },
  32722. [
  32723. {
  32724. name: "Normal",
  32725. height: math.unit(5 + 2/12, "feet"),
  32726. default: true
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32732. {
  32733. front: {
  32734. height: math.unit(5 + 2/12, "feet"),
  32735. weight: math.unit(210, "lb"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/pera/front.svg",
  32739. extra: 1560/1531,
  32740. bottom: 165/1725
  32741. }
  32742. },
  32743. back: {
  32744. height: math.unit(5 + 2/12, "feet"),
  32745. weight: math.unit(210, "lb"),
  32746. name: "Back",
  32747. image: {
  32748. source: "./media/characters/pera/back.svg",
  32749. extra: 1523/1493,
  32750. bottom: 152/1675
  32751. }
  32752. },
  32753. dick: {
  32754. height: math.unit(2.4, "feet"),
  32755. name: "Dick",
  32756. image: {
  32757. source: "./media/characters/pera/dick.svg"
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(5 + 2/12, "feet"),
  32765. default: true
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32771. {
  32772. front: {
  32773. height: math.unit(12, "feet"),
  32774. weight: math.unit(3200, "lb"),
  32775. name: "Front",
  32776. image: {
  32777. source: "./media/characters/julian/front.svg",
  32778. extra: 2962/2701,
  32779. bottom: 184/3146
  32780. }
  32781. },
  32782. maw: {
  32783. height: math.unit(5.35, "feet"),
  32784. name: "Maw",
  32785. image: {
  32786. source: "./media/characters/julian/maw.svg"
  32787. }
  32788. },
  32789. paw: {
  32790. height: math.unit(3.07, "feet"),
  32791. name: "Paw",
  32792. image: {
  32793. source: "./media/characters/julian/paw.svg"
  32794. }
  32795. },
  32796. },
  32797. [
  32798. {
  32799. name: "Default",
  32800. height: math.unit(12, "feet"),
  32801. default: true
  32802. },
  32803. {
  32804. name: "Big",
  32805. height: math.unit(50, "feet")
  32806. },
  32807. {
  32808. name: "Really Big",
  32809. height: math.unit(1, "mile")
  32810. },
  32811. {
  32812. name: "Extremely Big",
  32813. height: math.unit(100, "miles")
  32814. },
  32815. {
  32816. name: "Planet Hugger",
  32817. height: math.unit(200, "megameters")
  32818. },
  32819. {
  32820. name: "Unreasonably Big",
  32821. height: math.unit(1e300, "meters")
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32827. {
  32828. solgooleo: {
  32829. height: math.unit(4, "meters"),
  32830. weight: math.unit(6000*1.5, "kg"),
  32831. volume: math.unit(6000, "liters"),
  32832. name: "Solgooleo",
  32833. image: {
  32834. source: "./media/characters/pi/solgooleo.svg",
  32835. extra: 388/331,
  32836. bottom: 29/417
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(4, "meters"),
  32844. default: true
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32850. {
  32851. front: {
  32852. height: math.unit(8, "feet"),
  32853. weight: math.unit(4, "tons"),
  32854. name: "Front",
  32855. image: {
  32856. source: "./media/characters/shaun/front.svg",
  32857. extra: 503/495,
  32858. bottom: 20/523
  32859. }
  32860. },
  32861. back: {
  32862. height: math.unit(8, "feet"),
  32863. weight: math.unit(4, "tons"),
  32864. name: "Back",
  32865. image: {
  32866. source: "./media/characters/shaun/back.svg",
  32867. extra: 487/480,
  32868. bottom: 20/507
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Lorg",
  32875. height: math.unit(8, "feet"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32882. {
  32883. front: {
  32884. height: math.unit(7, "feet"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/sini/front.svg",
  32888. extra: 726/678,
  32889. bottom: 35/761
  32890. }
  32891. },
  32892. back: {
  32893. height: math.unit(7, "feet"),
  32894. name: "Back",
  32895. image: {
  32896. source: "./media/characters/sini/back.svg",
  32897. extra: 743/701,
  32898. bottom: 12/755
  32899. }
  32900. },
  32901. mawAnthro: {
  32902. height: math.unit(2.14, "feet"),
  32903. name: "Maw (Anthro)",
  32904. image: {
  32905. source: "./media/characters/sini/maw-anthro.svg"
  32906. }
  32907. },
  32908. dick: {
  32909. height: math.unit(1.45, "feet"),
  32910. name: "Dick (Anthro)",
  32911. image: {
  32912. source: "./media/characters/sini/dick-anthro.svg"
  32913. }
  32914. },
  32915. feral: {
  32916. height: math.unit(16, "feet"),
  32917. name: "Feral",
  32918. image: {
  32919. source: "./media/characters/sini/feral.svg",
  32920. extra: 814/605,
  32921. bottom: 11/825
  32922. }
  32923. },
  32924. mawFeral: {
  32925. height: math.unit(5.66, "feet"),
  32926. name: "Maw-feral",
  32927. image: {
  32928. source: "./media/characters/sini/maw-feral.svg"
  32929. }
  32930. },
  32931. footFeral: {
  32932. height: math.unit(5.17, "feet"),
  32933. name: "Foot-feral",
  32934. image: {
  32935. source: "./media/characters/sini/foot-feral.svg"
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Normal",
  32942. height: math.unit(7, "feet"),
  32943. default: true
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32949. {
  32950. side: {
  32951. height: math.unit(13, "meters"),
  32952. weight: math.unit(9072, "kg"),
  32953. name: "Side",
  32954. image: {
  32955. source: "./media/characters/raylldo/side.svg",
  32956. extra: 403/344,
  32957. bottom: 42/445
  32958. }
  32959. },
  32960. leaping: {
  32961. height: math.unit(12.3, "meters"),
  32962. weight: math.unit(9072, "kg"),
  32963. name: "Leaping",
  32964. image: {
  32965. source: "./media/characters/raylldo/leaping.svg",
  32966. extra: 470/249,
  32967. bottom: 13/483
  32968. }
  32969. },
  32970. flying: {
  32971. height: math.unit(18, "meters"),
  32972. weight: math.unit(9072, "kg"),
  32973. name: "Flying",
  32974. image: {
  32975. source: "./media/characters/raylldo/flying.svg"
  32976. }
  32977. },
  32978. head: {
  32979. height: math.unit(5.85, "meters"),
  32980. name: "Head",
  32981. image: {
  32982. source: "./media/characters/raylldo/head.svg"
  32983. }
  32984. },
  32985. maw: {
  32986. height: math.unit(5.32, "meters"),
  32987. name: "Maw",
  32988. image: {
  32989. source: "./media/characters/raylldo/maw.svg"
  32990. }
  32991. },
  32992. eye: {
  32993. height: math.unit(0.54, "meters"),
  32994. name: "Eye",
  32995. image: {
  32996. source: "./media/characters/raylldo/eye.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(13, "meters"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33010. {
  33011. anthroFront: {
  33012. height: math.unit(9, "feet"),
  33013. weight: math.unit(600, "lb"),
  33014. name: "Anthro (Front)",
  33015. image: {
  33016. source: "./media/characters/glint/anthro-front.svg",
  33017. extra: 1097/1018,
  33018. bottom: 28/1125
  33019. }
  33020. },
  33021. anthroBack: {
  33022. height: math.unit(9, "feet"),
  33023. weight: math.unit(600, "lb"),
  33024. name: "Anthro (Back)",
  33025. image: {
  33026. source: "./media/characters/glint/anthro-back.svg",
  33027. extra: 1154/997,
  33028. bottom: 36/1190
  33029. }
  33030. },
  33031. feral: {
  33032. height: math.unit(11, "feet"),
  33033. weight: math.unit(50000, "lb"),
  33034. name: "Feral",
  33035. image: {
  33036. source: "./media/characters/glint/feral.svg",
  33037. extra: 3035/1585,
  33038. bottom: 1169/4204
  33039. }
  33040. },
  33041. dickAnthro: {
  33042. height: math.unit(0.7, "meters"),
  33043. name: "Dick (Anthro)",
  33044. image: {
  33045. source: "./media/characters/glint/dick-anthro.svg"
  33046. }
  33047. },
  33048. dickFeral: {
  33049. height: math.unit(2.65, "meters"),
  33050. name: "Dick (Feral)",
  33051. image: {
  33052. source: "./media/characters/glint/dick-feral.svg"
  33053. }
  33054. },
  33055. slitHidden: {
  33056. height: math.unit(5.85, "meters"),
  33057. name: "Slit (Hidden)",
  33058. image: {
  33059. source: "./media/characters/glint/slit-hidden.svg"
  33060. }
  33061. },
  33062. slitErect: {
  33063. height: math.unit(5.85, "meters"),
  33064. name: "Slit (Erect)",
  33065. image: {
  33066. source: "./media/characters/glint/slit-erect.svg"
  33067. }
  33068. },
  33069. mawAnthro: {
  33070. height: math.unit(0.63, "meters"),
  33071. name: "Maw (Anthro)",
  33072. image: {
  33073. source: "./media/characters/glint/maw.svg"
  33074. }
  33075. },
  33076. mawFeral: {
  33077. height: math.unit(2.89, "meters"),
  33078. name: "Maw (Feral)",
  33079. image: {
  33080. source: "./media/characters/glint/maw.svg"
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Normal",
  33087. height: math.unit(9, "feet"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33094. {
  33095. side: {
  33096. height: math.unit(15, "feet"),
  33097. weight: math.unit(5000, "kg"),
  33098. name: "Side",
  33099. image: {
  33100. source: "./media/characters/kairne/side.svg",
  33101. extra: 979/811,
  33102. bottom: 13/992
  33103. }
  33104. },
  33105. front: {
  33106. height: math.unit(15, "feet"),
  33107. weight: math.unit(5000, "kg"),
  33108. name: "Front",
  33109. image: {
  33110. source: "./media/characters/kairne/front.svg",
  33111. extra: 908/814,
  33112. bottom: 26/934
  33113. }
  33114. },
  33115. sideNsfw: {
  33116. height: math.unit(15, "feet"),
  33117. weight: math.unit(5000, "kg"),
  33118. name: "Side (NSFW)",
  33119. image: {
  33120. source: "./media/characters/kairne/side-nsfw.svg",
  33121. extra: 979/811,
  33122. bottom: 13/992
  33123. }
  33124. },
  33125. frontNsfw: {
  33126. height: math.unit(15, "feet"),
  33127. weight: math.unit(5000, "kg"),
  33128. name: "Front (NSFW)",
  33129. image: {
  33130. source: "./media/characters/kairne/front-nsfw.svg",
  33131. extra: 908/814,
  33132. bottom: 26/934
  33133. }
  33134. },
  33135. dickCaged: {
  33136. height: math.unit(0.65, "meters"),
  33137. name: "Dick-caged",
  33138. image: {
  33139. source: "./media/characters/kairne/dick-caged.svg"
  33140. }
  33141. },
  33142. dick: {
  33143. height: math.unit(0.79, "meters"),
  33144. name: "Dick",
  33145. image: {
  33146. source: "./media/characters/kairne/dick.svg"
  33147. }
  33148. },
  33149. genitals: {
  33150. height: math.unit(1.29, "meters"),
  33151. name: "Genitals",
  33152. image: {
  33153. source: "./media/characters/kairne/genitals.svg"
  33154. }
  33155. },
  33156. maw: {
  33157. height: math.unit(1.73, "meters"),
  33158. name: "Maw",
  33159. image: {
  33160. source: "./media/characters/kairne/maw.svg"
  33161. }
  33162. },
  33163. },
  33164. [
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(15, "feet"),
  33168. default: true
  33169. },
  33170. ]
  33171. ))
  33172. characterMakers.push(() => makeCharacter(
  33173. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33174. {
  33175. front: {
  33176. height: math.unit(5 + 8/12, "feet"),
  33177. weight: math.unit(139, "lb"),
  33178. name: "Front",
  33179. image: {
  33180. source: "./media/characters/biscuit-jackal/front.svg",
  33181. extra: 2106/1961,
  33182. bottom: 58/2164
  33183. }
  33184. },
  33185. back: {
  33186. height: math.unit(5 + 8/12, "feet"),
  33187. weight: math.unit(139, "lb"),
  33188. name: "Back",
  33189. image: {
  33190. source: "./media/characters/biscuit-jackal/back.svg",
  33191. extra: 2132/1976,
  33192. bottom: 57/2189
  33193. }
  33194. },
  33195. werejackal: {
  33196. height: math.unit(6 + 3/12, "feet"),
  33197. weight: math.unit(188, "lb"),
  33198. name: "Werejackal",
  33199. image: {
  33200. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33201. extra: 2373/2178,
  33202. bottom: 53/2426
  33203. }
  33204. },
  33205. },
  33206. [
  33207. {
  33208. name: "Normal",
  33209. height: math.unit(5 + 8/12, "feet"),
  33210. default: true
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33216. {
  33217. front: {
  33218. height: math.unit(140, "cm"),
  33219. weight: math.unit(45, "kg"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/tayra-white/front.svg",
  33223. extra: 2229/2192,
  33224. bottom: 75/2304
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(140, "cm"),
  33232. default: true
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(4 + 5/12, "feet"),
  33241. name: "Front",
  33242. image: {
  33243. source: "./media/characters/scoop/front.svg",
  33244. extra: 1257/1136,
  33245. bottom: 69/1326
  33246. }
  33247. },
  33248. back: {
  33249. height: math.unit(4 + 5/12, "feet"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/scoop/back.svg",
  33253. extra: 1321/1152,
  33254. bottom: 32/1353
  33255. }
  33256. },
  33257. maw: {
  33258. height: math.unit(0.68, "feet"),
  33259. name: "Maw",
  33260. image: {
  33261. source: "./media/characters/scoop/maw.svg"
  33262. }
  33263. },
  33264. },
  33265. [
  33266. {
  33267. name: "Really Small",
  33268. height: math.unit(1, "mm")
  33269. },
  33270. {
  33271. name: "Micro",
  33272. height: math.unit(1, "inch")
  33273. },
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(4 + 5/12, "feet"),
  33277. default: true
  33278. },
  33279. {
  33280. name: "Macro",
  33281. height: math.unit(200, "feet")
  33282. },
  33283. {
  33284. name: "Megamacro",
  33285. height: math.unit(3240, "feet")
  33286. },
  33287. {
  33288. name: "Teramacro",
  33289. height: math.unit(2500, "miles")
  33290. },
  33291. ]
  33292. ))
  33293. characterMakers.push(() => makeCharacter(
  33294. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33295. {
  33296. front: {
  33297. height: math.unit(15 + 7/12, "feet"),
  33298. name: "Front",
  33299. image: {
  33300. source: "./media/characters/saphinara/front.svg",
  33301. extra: 604/546,
  33302. bottom: 19/623
  33303. }
  33304. },
  33305. side: {
  33306. height: math.unit(15 + 7/12, "feet"),
  33307. name: "Side",
  33308. image: {
  33309. source: "./media/characters/saphinara/side.svg",
  33310. extra: 605/547,
  33311. bottom: 6/611
  33312. }
  33313. },
  33314. back: {
  33315. height: math.unit(15 + 7/12, "feet"),
  33316. name: "Back",
  33317. image: {
  33318. source: "./media/characters/saphinara/back.svg",
  33319. extra: 591/531,
  33320. bottom: 13/604
  33321. }
  33322. },
  33323. frontTail: {
  33324. height: math.unit(15 + 7/12, "feet"),
  33325. name: "Front (Full Tail)",
  33326. image: {
  33327. source: "./media/characters/saphinara/front-tail.svg",
  33328. extra: 748/547,
  33329. bottom: 66/814
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(15 + 7/12, "feet"),
  33337. default: true
  33338. },
  33339. {
  33340. name: "Angry",
  33341. height: math.unit(30 + 6/12, "feet")
  33342. },
  33343. {
  33344. name: "Enraged",
  33345. height: math.unit(102 + 1/12, "feet")
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(6 + 8/12, "feet"),
  33354. weight: math.unit(300, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/jrain/front.svg",
  33358. extra: 3039/2865,
  33359. bottom: 399/3438
  33360. }
  33361. },
  33362. back: {
  33363. height: math.unit(6 + 8/12, "feet"),
  33364. weight: math.unit(300, "lb"),
  33365. name: "Back",
  33366. image: {
  33367. source: "./media/characters/jrain/back.svg",
  33368. extra: 3089/2938,
  33369. bottom: 172/3261
  33370. }
  33371. },
  33372. head: {
  33373. height: math.unit(2.14, "feet"),
  33374. name: "Head",
  33375. image: {
  33376. source: "./media/characters/jrain/head.svg"
  33377. }
  33378. },
  33379. maw: {
  33380. height: math.unit(1.77, "feet"),
  33381. name: "Maw",
  33382. image: {
  33383. source: "./media/characters/jrain/maw.svg"
  33384. }
  33385. },
  33386. leftHand: {
  33387. height: math.unit(1.1, "feet"),
  33388. name: "Left Hand",
  33389. image: {
  33390. source: "./media/characters/jrain/left-hand.svg"
  33391. }
  33392. },
  33393. rightHand: {
  33394. height: math.unit(1.1, "feet"),
  33395. name: "Right Hand",
  33396. image: {
  33397. source: "./media/characters/jrain/right-hand.svg"
  33398. }
  33399. },
  33400. eye: {
  33401. height: math.unit(0.35, "feet"),
  33402. name: "Eye",
  33403. image: {
  33404. source: "./media/characters/jrain/eye.svg"
  33405. }
  33406. },
  33407. },
  33408. [
  33409. {
  33410. name: "Normal",
  33411. height: math.unit(6 + 8/12, "feet"),
  33412. default: true
  33413. },
  33414. {
  33415. name: "Casually Large",
  33416. height: math.unit(25, "feet")
  33417. },
  33418. {
  33419. name: "Giant",
  33420. height: math.unit(100, "feet")
  33421. },
  33422. {
  33423. name: "Kaiju",
  33424. height: math.unit(300, "feet")
  33425. },
  33426. ]
  33427. ))
  33428. characterMakers.push(() => makeCharacter(
  33429. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33430. {
  33431. dragon: {
  33432. height: math.unit(5, "meters"),
  33433. name: "Dragon",
  33434. image: {
  33435. source: "./media/characters/sabrina/dragon.svg",
  33436. extra: 3670 / 2365,
  33437. bottom: 333 / 4003
  33438. }
  33439. },
  33440. gryphon: {
  33441. height: math.unit(3, "meters"),
  33442. name: "Gryphon",
  33443. image: {
  33444. source: "./media/characters/sabrina/gryphon.svg",
  33445. extra: 1576 / 945,
  33446. bottom: 71 / 1647
  33447. }
  33448. },
  33449. snake: {
  33450. height: math.unit(12, "meters"),
  33451. name: "Snake",
  33452. image: {
  33453. source: "./media/characters/sabrina/snake.svg",
  33454. extra: 1758 / 1320,
  33455. bottom: 186 / 1944
  33456. }
  33457. },
  33458. collar: {
  33459. height: math.unit(1.86, "meters"),
  33460. name: "Collar",
  33461. image: {
  33462. source: "./media/characters/sabrina/collar.svg"
  33463. }
  33464. },
  33465. eye: {
  33466. height: math.unit(0.53, "meters"),
  33467. name: "Eye",
  33468. image: {
  33469. source: "./media/characters/sabrina/eye.svg"
  33470. }
  33471. },
  33472. foot: {
  33473. height: math.unit(1.86, "meters"),
  33474. name: "Foot",
  33475. image: {
  33476. source: "./media/characters/sabrina/foot.svg"
  33477. }
  33478. },
  33479. hand: {
  33480. height: math.unit(1.32, "meters"),
  33481. name: "Hand",
  33482. image: {
  33483. source: "./media/characters/sabrina/hand.svg"
  33484. }
  33485. },
  33486. head: {
  33487. height: math.unit(2.44, "meters"),
  33488. name: "Head",
  33489. image: {
  33490. source: "./media/characters/sabrina/head.svg"
  33491. }
  33492. },
  33493. headAngry: {
  33494. height: math.unit(2.44, "meters"),
  33495. name: "Head (Angry))",
  33496. image: {
  33497. source: "./media/characters/sabrina/head-angry.svg"
  33498. }
  33499. },
  33500. maw: {
  33501. height: math.unit(1.65, "meters"),
  33502. name: "Maw",
  33503. image: {
  33504. source: "./media/characters/sabrina/maw.svg"
  33505. }
  33506. },
  33507. spikes: {
  33508. height: math.unit(1.69, "meters"),
  33509. name: "Spikes",
  33510. image: {
  33511. source: "./media/characters/sabrina/spikes.svg"
  33512. }
  33513. },
  33514. stomach: {
  33515. height: math.unit(1.15, "meters"),
  33516. name: "Stomach",
  33517. image: {
  33518. source: "./media/characters/sabrina/stomach.svg"
  33519. }
  33520. },
  33521. tongue: {
  33522. height: math.unit(1.27, "meters"),
  33523. name: "Tongue",
  33524. image: {
  33525. source: "./media/characters/sabrina/tongue.svg"
  33526. }
  33527. },
  33528. wingDorsal: {
  33529. height: math.unit(4.85, "meters"),
  33530. name: "Wing (Dorsal)",
  33531. image: {
  33532. source: "./media/characters/sabrina/wing-dorsal.svg"
  33533. }
  33534. },
  33535. wingVentral: {
  33536. height: math.unit(4.85, "meters"),
  33537. name: "Wing (Ventral)",
  33538. image: {
  33539. source: "./media/characters/sabrina/wing-ventral.svg"
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(5, "meters"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33553. {
  33554. frontMaid: {
  33555. height: math.unit(5 + 5/12, "feet"),
  33556. weight: math.unit(130, "lb"),
  33557. name: "Front (Maid)",
  33558. image: {
  33559. source: "./media/characters/midnight-tales/front-maid.svg",
  33560. extra: 489/454,
  33561. bottom: 61/550
  33562. }
  33563. },
  33564. frontFormal: {
  33565. height: math.unit(5 + 5/12, "feet"),
  33566. weight: math.unit(130, "lb"),
  33567. name: "Front (Formal)",
  33568. image: {
  33569. source: "./media/characters/midnight-tales/front-formal.svg",
  33570. extra: 489/454,
  33571. bottom: 61/550
  33572. }
  33573. },
  33574. back: {
  33575. height: math.unit(5 + 5/12, "feet"),
  33576. weight: math.unit(130, "lb"),
  33577. name: "Back",
  33578. image: {
  33579. source: "./media/characters/midnight-tales/back.svg",
  33580. extra: 498/456,
  33581. bottom: 33/531
  33582. }
  33583. },
  33584. frontBeast: {
  33585. height: math.unit(40, "feet"),
  33586. weight: math.unit(64000, "lb"),
  33587. name: "Front (Beast)",
  33588. image: {
  33589. source: "./media/characters/midnight-tales/front-beast.svg",
  33590. extra: 927/860,
  33591. bottom: 53/980
  33592. }
  33593. },
  33594. backBeast: {
  33595. height: math.unit(40, "feet"),
  33596. weight: math.unit(64000, "lb"),
  33597. name: "Back (Beast)",
  33598. image: {
  33599. source: "./media/characters/midnight-tales/back-beast.svg",
  33600. extra: 929/855,
  33601. bottom: 16/945
  33602. }
  33603. },
  33604. footBeast: {
  33605. height: math.unit(6.7, "feet"),
  33606. name: "Foot (Beast)",
  33607. image: {
  33608. source: "./media/characters/midnight-tales/foot-beast.svg"
  33609. }
  33610. },
  33611. headBeast: {
  33612. height: math.unit(8, "feet"),
  33613. name: "Head (Beast)",
  33614. image: {
  33615. source: "./media/characters/midnight-tales/head-beast.svg"
  33616. }
  33617. },
  33618. },
  33619. [
  33620. {
  33621. name: "Normal",
  33622. height: math.unit(5 + 5 / 12, "feet"),
  33623. default: true
  33624. },
  33625. {
  33626. name: "Macro",
  33627. height: math.unit(25, "feet")
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33633. {
  33634. front: {
  33635. height: math.unit(5 + 10/12, "feet"),
  33636. name: "Front",
  33637. image: {
  33638. source: "./media/characters/argon/front.svg",
  33639. extra: 2009/1935,
  33640. bottom: 118/2127
  33641. }
  33642. },
  33643. back: {
  33644. height: math.unit(5 + 10/12, "feet"),
  33645. name: "Back",
  33646. image: {
  33647. source: "./media/characters/argon/back.svg",
  33648. extra: 2047/1992,
  33649. bottom: 20/2067
  33650. }
  33651. },
  33652. frontDressed: {
  33653. height: math.unit(5 + 10/12, "feet"),
  33654. name: "Front (Dressed)",
  33655. image: {
  33656. source: "./media/characters/argon/front-dressed.svg",
  33657. extra: 2009/1935,
  33658. bottom: 118/2127
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(5 + 10/12, "feet"),
  33666. default: true
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33672. {
  33673. front: {
  33674. height: math.unit(8 + 6/12, "feet"),
  33675. weight: math.unit(1150, "lb"),
  33676. name: "Front",
  33677. image: {
  33678. source: "./media/characters/kichi/front.svg",
  33679. extra: 1267/1164,
  33680. bottom: 61/1328
  33681. }
  33682. },
  33683. back: {
  33684. height: math.unit(8 + 6/12, "feet"),
  33685. weight: math.unit(1150, "lb"),
  33686. name: "Back",
  33687. image: {
  33688. source: "./media/characters/kichi/back.svg",
  33689. extra: 1273/1166,
  33690. bottom: 33/1306
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(8 + 6/12, "feet"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(6, "feet"),
  33707. weight: math.unit(210, "lb"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/manetel-greyscale/front.svg",
  33711. extra: 350/312,
  33712. bottom: 8/358
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Micro",
  33719. height: math.unit(2, "inches")
  33720. },
  33721. {
  33722. name: "Normal",
  33723. height: math.unit(6, "feet"),
  33724. default: true
  33725. },
  33726. {
  33727. name: "Minimacro",
  33728. height: math.unit(17, "feet")
  33729. },
  33730. {
  33731. name: "Macro",
  33732. height: math.unit(117, "feet")
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33738. {
  33739. side: {
  33740. height: math.unit(5 + 1/12, "feet"),
  33741. weight: math.unit(418, "lb"),
  33742. name: "Side",
  33743. image: {
  33744. source: "./media/characters/softpurr/side.svg",
  33745. extra: 1993/1945,
  33746. bottom: 134/2127
  33747. }
  33748. },
  33749. front: {
  33750. height: math.unit(5 + 1/12, "feet"),
  33751. weight: math.unit(418, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/softpurr/front.svg",
  33755. extra: 1950/1856,
  33756. bottom: 174/2124
  33757. }
  33758. },
  33759. paw: {
  33760. height: math.unit(1, "feet"),
  33761. name: "Paw",
  33762. image: {
  33763. source: "./media/characters/softpurr/paw.svg"
  33764. }
  33765. },
  33766. },
  33767. [
  33768. {
  33769. name: "Normal",
  33770. height: math.unit(5 + 1/12, "feet"),
  33771. default: true
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33777. {
  33778. front: {
  33779. height: math.unit(260, "meters"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/anahita/front.svg",
  33783. extra: 665/635,
  33784. bottom: 89/754
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Macro",
  33791. height: math.unit(260, "meters"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(4 + 10/12, "feet"),
  33801. weight: math.unit(160, "lb"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/chip-mouse/front.svg",
  33805. extra: 3528/3408,
  33806. bottom: 0/3528
  33807. }
  33808. },
  33809. frontNsfw: {
  33810. height: math.unit(4 + 10/12, "feet"),
  33811. weight: math.unit(160, "lb"),
  33812. name: "Front (NSFW)",
  33813. image: {
  33814. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33815. extra: 3528/3408,
  33816. bottom: 0/3528
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(4 + 10/12, "feet"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33830. {
  33831. side: {
  33832. height: math.unit(10, "feet"),
  33833. weight: math.unit(14000, "lb"),
  33834. name: "Side",
  33835. image: {
  33836. source: "./media/characters/kremm/side.svg",
  33837. extra: 1390/1053,
  33838. bottom: 90/1480
  33839. }
  33840. },
  33841. gut: {
  33842. height: math.unit(5.8, "feet"),
  33843. name: "Gut",
  33844. image: {
  33845. source: "./media/characters/kremm/gut.svg"
  33846. }
  33847. },
  33848. ass: {
  33849. height: math.unit(6.1, "feet"),
  33850. name: "Ass",
  33851. image: {
  33852. source: "./media/characters/kremm/ass.svg"
  33853. }
  33854. },
  33855. jaws: {
  33856. height: math.unit(2.2, "feet"),
  33857. name: "Jaws",
  33858. image: {
  33859. source: "./media/characters/kremm/jaws.svg"
  33860. }
  33861. },
  33862. dick: {
  33863. height: math.unit(4.26, "feet"),
  33864. name: "Dick",
  33865. image: {
  33866. source: "./media/characters/kremm/dick.svg"
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(10, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(30, "stories"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/kai/front.svg",
  33886. extra: 1892/1718,
  33887. bottom: 162/2054
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Macro",
  33894. height: math.unit(30, "stories"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(6 + 4/12, "feet"),
  33904. weight: math.unit(145, "lb"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/sykes/front.svg",
  33908. extra: 1321 / 1187,
  33909. bottom: 66 / 1387
  33910. }
  33911. },
  33912. back: {
  33913. height: math.unit(6 + 4/12, "feet"),
  33914. weight: math.unit(145, "lb"),
  33915. name: "Back",
  33916. image: {
  33917. source: "./media/characters/sykes/back.svg",
  33918. extra: 1326/1181,
  33919. bottom: 31/1357
  33920. }
  33921. },
  33922. handBack: {
  33923. height: math.unit(0.9, "feet"),
  33924. name: "Hand (Back)",
  33925. image: {
  33926. source: "./media/characters/sykes/hand-back.svg"
  33927. }
  33928. },
  33929. handFront: {
  33930. height: math.unit(0.839, "feet"),
  33931. name: "Hand (Front)",
  33932. image: {
  33933. source: "./media/characters/sykes/hand-front.svg"
  33934. }
  33935. },
  33936. leftFoot: {
  33937. height: math.unit(1.2, "feet"),
  33938. name: "Foot (Left)",
  33939. image: {
  33940. source: "./media/characters/sykes/foot-left.svg"
  33941. }
  33942. },
  33943. rightFoot: {
  33944. height: math.unit(1.2, "feet"),
  33945. name: "Foot (Right)",
  33946. image: {
  33947. source: "./media/characters/sykes/foot-right.svg"
  33948. }
  33949. },
  33950. maw: {
  33951. height: math.unit(1.93, "feet"),
  33952. name: "Maw",
  33953. image: {
  33954. source: "./media/characters/sykes/maw.svg"
  33955. }
  33956. },
  33957. teeth: {
  33958. height: math.unit(0.51, "feet"),
  33959. name: "Teeth",
  33960. image: {
  33961. source: "./media/characters/sykes/teeth.svg"
  33962. }
  33963. },
  33964. tongue: {
  33965. height: math.unit(2.13, "feet"),
  33966. name: "Tongue",
  33967. image: {
  33968. source: "./media/characters/sykes/tongue.svg"
  33969. }
  33970. },
  33971. uvula: {
  33972. height: math.unit(0.16, "feet"),
  33973. name: "Uvula",
  33974. image: {
  33975. source: "./media/characters/sykes/uvula.svg"
  33976. }
  33977. },
  33978. collar: {
  33979. height: math.unit(0.287, "feet"),
  33980. name: "Collar",
  33981. image: {
  33982. source: "./media/characters/sykes/collar.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Shrunken",
  33989. height: math.unit(5, "inches")
  33990. },
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(6 + 4 / 12, "feet"),
  33994. default: true
  33995. },
  33996. {
  33997. name: "Big",
  33998. height: math.unit(15, "feet")
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34004. {
  34005. front: {
  34006. height: math.unit(5 + 8/12, "feet"),
  34007. weight: math.unit(190, "lb"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/oven-otter/front.svg",
  34011. extra: 1809/1740,
  34012. bottom: 181/1990
  34013. }
  34014. },
  34015. back: {
  34016. height: math.unit(5 + 8/12, "feet"),
  34017. weight: math.unit(190, "lb"),
  34018. name: "Back",
  34019. image: {
  34020. source: "./media/characters/oven-otter/back.svg",
  34021. extra: 1709/1635,
  34022. bottom: 118/1827
  34023. }
  34024. },
  34025. hand: {
  34026. height: math.unit(1.07, "feet"),
  34027. name: "Hand",
  34028. image: {
  34029. source: "./media/characters/oven-otter/hand.svg"
  34030. }
  34031. },
  34032. beans: {
  34033. height: math.unit(1.74, "feet"),
  34034. name: "Beans",
  34035. image: {
  34036. source: "./media/characters/oven-otter/beans.svg"
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Micro",
  34043. height: math.unit(0.5, "inches")
  34044. },
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(5 + 8/12, "feet"),
  34048. default: true
  34049. },
  34050. {
  34051. name: "Macro",
  34052. height: math.unit(250, "feet")
  34053. },
  34054. {
  34055. name: "Really High",
  34056. height: math.unit(420, "feet")
  34057. },
  34058. ]
  34059. ))
  34060. characterMakers.push(() => makeCharacter(
  34061. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34062. {
  34063. front: {
  34064. height: math.unit(5, "meters"),
  34065. weight: math.unit(292000000000000, "kg"),
  34066. name: "Front",
  34067. image: {
  34068. source: "./media/characters/devourer/front.svg",
  34069. extra: 1800/1733,
  34070. bottom: 211/2011
  34071. }
  34072. },
  34073. maw: {
  34074. height: math.unit(1.1, "meter"),
  34075. name: "Maw",
  34076. image: {
  34077. source: "./media/characters/devourer/maw.svg"
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Small",
  34084. height: math.unit(3, "meters")
  34085. },
  34086. {
  34087. name: "Large",
  34088. height: math.unit(5, "meters"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34095. {
  34096. front: {
  34097. height: math.unit(6, "feet"),
  34098. weight: math.unit(400, "lb"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/ellarby/front.svg",
  34102. extra: 1909/1763,
  34103. bottom: 80/1989
  34104. }
  34105. },
  34106. back: {
  34107. height: math.unit(6, "feet"),
  34108. weight: math.unit(400, "lb"),
  34109. name: "Back",
  34110. image: {
  34111. source: "./media/characters/ellarby/back.svg",
  34112. extra: 1914/1784,
  34113. bottom: 172/2086
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Mischief",
  34120. height: math.unit(18, "inches")
  34121. },
  34122. {
  34123. name: "Trouble",
  34124. height: math.unit(12, "feet")
  34125. },
  34126. {
  34127. name: "Havoc",
  34128. height: math.unit(200, "feet"),
  34129. default: true
  34130. },
  34131. {
  34132. name: "Pandemonium",
  34133. height: math.unit(1, "mile")
  34134. },
  34135. {
  34136. name: "Catastrophe",
  34137. height: math.unit(100, "miles")
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34143. {
  34144. front: {
  34145. height: math.unit(4.7, "meters"),
  34146. weight: math.unit(6500, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/vex/front.svg",
  34150. extra: 1288/1140,
  34151. bottom: 100/1388
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(4.7, "meters"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34165. {
  34166. normal: {
  34167. height: math.unit(6, "feet"),
  34168. weight: math.unit(350, "lb"),
  34169. name: "Normal",
  34170. image: {
  34171. source: "./media/characters/teshy/normal.svg",
  34172. extra: 1795/1735,
  34173. bottom: 16/1811
  34174. }
  34175. },
  34176. monsterFront: {
  34177. height: math.unit(12, "feet"),
  34178. weight: math.unit(4700, "lb"),
  34179. name: "Monster (Front)",
  34180. image: {
  34181. source: "./media/characters/teshy/monster-front.svg",
  34182. extra: 2042/2034,
  34183. bottom: 128/2170
  34184. }
  34185. },
  34186. monsterSide: {
  34187. height: math.unit(12, "feet"),
  34188. weight: math.unit(4700, "lb"),
  34189. name: "Monster (Side)",
  34190. image: {
  34191. source: "./media/characters/teshy/monster-side.svg",
  34192. extra: 2067/2056,
  34193. bottom: 70/2137
  34194. }
  34195. },
  34196. monsterBack: {
  34197. height: math.unit(12, "feet"),
  34198. weight: math.unit(4700, "lb"),
  34199. name: "Monster (Back)",
  34200. image: {
  34201. source: "./media/characters/teshy/monster-back.svg",
  34202. extra: 1921/1914,
  34203. bottom: 171/2092
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(6, "feet"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34217. {
  34218. front: {
  34219. height: math.unit(6, "feet"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/ramey/front.svg",
  34223. extra: 790/787,
  34224. bottom: 27/817
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(6, "feet"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(5 + 5/12, "feet"),
  34241. weight: math.unit(120, "lb"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/phirae/front.svg",
  34245. extra: 2491/2436,
  34246. bottom: 38/2529
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(5 + 5/12, "feet"),
  34254. default: true
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34260. {
  34261. front: {
  34262. height: math.unit(5 + 3/12, "feet"),
  34263. name: "Front",
  34264. image: {
  34265. source: "./media/characters/stagglas/front.svg",
  34266. extra: 962/882,
  34267. bottom: 53/1015
  34268. }
  34269. },
  34270. feral: {
  34271. height: math.unit(335, "cm"),
  34272. name: "Feral",
  34273. image: {
  34274. source: "./media/characters/stagglas/feral.svg",
  34275. extra: 1732/1090,
  34276. bottom: 48/1780
  34277. }
  34278. },
  34279. },
  34280. [
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(5 + 3/12, "feet"),
  34284. default: true
  34285. },
  34286. ]
  34287. ))
  34288. characterMakers.push(() => makeCharacter(
  34289. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34290. {
  34291. front: {
  34292. height: math.unit(5 + 4/12, "feet"),
  34293. weight: math.unit(145, "lb"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/starra/front.svg",
  34297. extra: 1790/1691,
  34298. bottom: 91/1881
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(5 + 4/12, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(2.2, "meters"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34318. extra: 1194/1005,
  34319. bottom: 25/1219
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Normal",
  34326. height: math.unit(2.2, "meters"),
  34327. default: true
  34328. },
  34329. ]
  34330. ))
  34331. characterMakers.push(() => makeCharacter(
  34332. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34333. {
  34334. side: {
  34335. height: math.unit(8 + 2/12, "feet"),
  34336. weight: math.unit(1240, "lb"),
  34337. name: "Side",
  34338. image: {
  34339. source: "./media/characters/mika-valentine/side.svg",
  34340. extra: 2670/2501,
  34341. bottom: 250/2920
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(8 + 2/12, "feet"),
  34349. default: true
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34355. {
  34356. front: {
  34357. height: math.unit(7 + 2/12, "feet"),
  34358. name: "Front",
  34359. image: {
  34360. source: "./media/characters/xoltol/front.svg",
  34361. extra: 2212/2124,
  34362. bottom: 84/2296
  34363. }
  34364. },
  34365. side: {
  34366. height: math.unit(7 + 2/12, "feet"),
  34367. name: "Side",
  34368. image: {
  34369. source: "./media/characters/xoltol/side.svg",
  34370. extra: 2273/2197,
  34371. bottom: 26/2299
  34372. }
  34373. },
  34374. hand: {
  34375. height: math.unit(2.5, "feet"),
  34376. name: "Hand",
  34377. image: {
  34378. source: "./media/characters/xoltol/hand.svg"
  34379. }
  34380. },
  34381. },
  34382. [
  34383. {
  34384. name: "Small-ish",
  34385. height: math.unit(5 + 11/12, "feet")
  34386. },
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(7 + 2/12, "feet")
  34390. },
  34391. {
  34392. name: "\"Macro\"",
  34393. height: math.unit(14 + 9/12, "feet"),
  34394. default: true
  34395. },
  34396. {
  34397. name: "Alternate Height",
  34398. height: math.unit(20, "feet")
  34399. },
  34400. {
  34401. name: "Actually Macro",
  34402. height: math.unit(100, "feet")
  34403. },
  34404. ]
  34405. ))
  34406. characterMakers.push(() => makeCharacter(
  34407. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34408. {
  34409. front: {
  34410. height: math.unit(5 + 2/12, "feet"),
  34411. name: "Front",
  34412. image: {
  34413. source: "./media/characters/kotetsu-redwood/front.svg",
  34414. extra: 1053/942,
  34415. bottom: 60/1113
  34416. }
  34417. },
  34418. },
  34419. [
  34420. {
  34421. name: "Normal",
  34422. height: math.unit(5 + 2/12, "feet"),
  34423. default: true
  34424. },
  34425. ]
  34426. ))
  34427. characterMakers.push(() => makeCharacter(
  34428. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34429. {
  34430. front: {
  34431. height: math.unit(2.4, "meters"),
  34432. weight: math.unit(125, "kg"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/lilith/front.svg",
  34436. extra: 1590/1513,
  34437. bottom: 203/1793
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Humanoid",
  34444. height: math.unit(2.4, "meters")
  34445. },
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(6, "meters"),
  34449. default: true
  34450. },
  34451. {
  34452. name: "Largest",
  34453. height: math.unit(55, "meters")
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(8 + 4/12, "feet"),
  34462. weight: math.unit(535, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/beh'kah-bolger/front.svg",
  34466. extra: 1660/1603,
  34467. bottom: 37/1697
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(8 + 4/12, "feet"),
  34475. default: true
  34476. },
  34477. {
  34478. name: "Kaiju",
  34479. height: math.unit(250, "feet")
  34480. },
  34481. {
  34482. name: "Still Growing",
  34483. height: math.unit(10, "miles")
  34484. },
  34485. {
  34486. name: "Continental",
  34487. height: math.unit(5000, "miles")
  34488. },
  34489. {
  34490. name: "Final Form",
  34491. height: math.unit(2500000, "miles")
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(7 + 2/12, "feet"),
  34500. weight: math.unit(230, "kg"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/tatyana-milewska/front.svg",
  34504. extra: 1199/1150,
  34505. bottom: 86/1285
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(7 + 2/12, "feet"),
  34513. default: true
  34514. },
  34515. {
  34516. name: "Big",
  34517. height: math.unit(12, "feet")
  34518. },
  34519. {
  34520. name: "Minimacro",
  34521. height: math.unit(20, "feet")
  34522. },
  34523. {
  34524. name: "Macro",
  34525. height: math.unit(120, "feet")
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(7 + 8/12, "feet"),
  34534. weight: math.unit(152, "kg"),
  34535. name: "Front",
  34536. image: {
  34537. source: "./media/characters/helen-arri/front.svg",
  34538. extra: 440/423,
  34539. bottom: 14/454
  34540. }
  34541. },
  34542. back: {
  34543. height: math.unit(7 + 8/12, "feet"),
  34544. weight: math.unit(152, "kg"),
  34545. name: "Back",
  34546. image: {
  34547. source: "./media/characters/helen-arri/back.svg",
  34548. extra: 443/426,
  34549. bottom: 8/451
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(7 + 8/12, "feet"),
  34557. default: true
  34558. },
  34559. {
  34560. name: "Big",
  34561. height: math.unit(14, "feet")
  34562. },
  34563. {
  34564. name: "Minimacro",
  34565. height: math.unit(24, "feet")
  34566. },
  34567. {
  34568. name: "Macro",
  34569. height: math.unit(140, "feet")
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34575. {
  34576. front: {
  34577. height: math.unit(6, "meters"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/ehanu-rehu/front.svg",
  34581. extra: 1800/1800,
  34582. bottom: 59/1859
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Normal",
  34589. height: math.unit(6, "meters"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(7 + 3/12, "feet"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/renholder/front.svg",
  34602. extra: 3096/2960,
  34603. bottom: 250/3346
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Normal Bat",
  34610. height: math.unit(7 + 3/12, "feet"),
  34611. default: true
  34612. },
  34613. {
  34614. name: "Slightly Tall Bat",
  34615. height: math.unit(100, "feet")
  34616. },
  34617. {
  34618. name: "Big Bat",
  34619. height: math.unit(1000, "feet")
  34620. },
  34621. {
  34622. name: "City-Sized Bat",
  34623. height: math.unit(200000, "feet")
  34624. },
  34625. {
  34626. name: "Bigger Bat",
  34627. height: math.unit(10000, "miles")
  34628. },
  34629. {
  34630. name: "Solar Sized Bat",
  34631. height: math.unit(100, "AU")
  34632. },
  34633. {
  34634. name: "Galactic Bat",
  34635. height: math.unit(200000, "lightyears")
  34636. },
  34637. {
  34638. name: "Universally Known Bat",
  34639. height: math.unit(1, "universe")
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(6 + 11/12, "feet"),
  34648. weight: math.unit(250, "lb"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/cookiecat/front.svg",
  34652. extra: 893/827,
  34653. bottom: 14/907
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Micro",
  34660. height: math.unit(3, "inches")
  34661. },
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(6 + 11/12, "feet"),
  34665. default: true
  34666. },
  34667. {
  34668. name: "Macro",
  34669. height: math.unit(100, "feet")
  34670. },
  34671. {
  34672. name: "Macro+",
  34673. height: math.unit(404, "feet")
  34674. },
  34675. {
  34676. name: "Megamacro",
  34677. height: math.unit(165, "miles")
  34678. },
  34679. {
  34680. name: "Planetary",
  34681. height: math.unit(4600, "miles")
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(10 + 3/12, "feet"),
  34690. weight: math.unit(1500, "lb"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/tux-kusanagi/front.svg",
  34694. extra: 944/840,
  34695. bottom: 39/983
  34696. }
  34697. },
  34698. back: {
  34699. height: math.unit(10 + 3/12, "feet"),
  34700. weight: math.unit(1500, "lb"),
  34701. name: "Back",
  34702. image: {
  34703. source: "./media/characters/tux-kusanagi/back.svg",
  34704. extra: 941/842,
  34705. bottom: 28/969
  34706. }
  34707. },
  34708. rump: {
  34709. height: math.unit(5.25, "feet"),
  34710. name: "Rump",
  34711. image: {
  34712. source: "./media/characters/tux-kusanagi/rump.svg"
  34713. }
  34714. },
  34715. beak: {
  34716. height: math.unit(1.54, "feet"),
  34717. name: "Beak",
  34718. image: {
  34719. source: "./media/characters/tux-kusanagi/beak.svg"
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(10 + 3/12, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(58, "feet"),
  34736. weight: math.unit(200, "tons"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/uzarmazari/front.svg",
  34740. extra: 1575/1455,
  34741. bottom: 152/1727
  34742. }
  34743. },
  34744. back: {
  34745. height: math.unit(58, "feet"),
  34746. weight: math.unit(200, "tons"),
  34747. name: "Back",
  34748. image: {
  34749. source: "./media/characters/uzarmazari/back.svg",
  34750. extra: 1585/1510,
  34751. bottom: 157/1742
  34752. }
  34753. },
  34754. head: {
  34755. height: math.unit(26, "feet"),
  34756. name: "Head",
  34757. image: {
  34758. source: "./media/characters/uzarmazari/head.svg"
  34759. }
  34760. },
  34761. },
  34762. [
  34763. {
  34764. name: "Normal",
  34765. height: math.unit(58, "feet"),
  34766. default: true
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34772. {
  34773. side: {
  34774. height: math.unit(15, "feet"),
  34775. name: "Side",
  34776. image: {
  34777. source: "./media/characters/akitu/side.svg",
  34778. extra: 1421/1321,
  34779. bottom: 157/1578
  34780. }
  34781. },
  34782. front: {
  34783. height: math.unit(15, "feet"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/akitu/front.svg",
  34787. extra: 1435/1326,
  34788. bottom: 232/1667
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Normal",
  34795. height: math.unit(15, "feet"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(10 + 8/12, "feet"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/azalie-croixland/front.svg",
  34808. extra: 1972/1856,
  34809. bottom: 31/2003
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Original Height",
  34816. height: math.unit(5 + 4/12, "feet")
  34817. },
  34818. {
  34819. name: "Normal Height",
  34820. height: math.unit(10 + 8/12, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34827. {
  34828. side: {
  34829. height: math.unit(7 + 1/12, "feet"),
  34830. weight: math.unit(245, "lb"),
  34831. name: "Side",
  34832. image: {
  34833. source: "./media/characters/kavus-kazian/side.svg",
  34834. extra: 349/342,
  34835. bottom: 15/364
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(7 + 1/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34849. {
  34850. normal: {
  34851. height: math.unit(5 + 11/12, "feet"),
  34852. name: "Normal",
  34853. image: {
  34854. source: "./media/characters/moonlight-rose/normal.svg",
  34855. extra: 1979/1835,
  34856. bottom: 14/1993
  34857. }
  34858. },
  34859. demon: {
  34860. height: math.unit(5, "km"),
  34861. name: "Demon",
  34862. image: {
  34863. source: "./media/characters/moonlight-rose/demon.svg",
  34864. extra: 986/916,
  34865. bottom: 28/1014
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "\"Natural\" height",
  34872. height: math.unit(5 + 11/12, "feet")
  34873. },
  34874. {
  34875. name: "Comfortable Size",
  34876. height: math.unit(40, "meters")
  34877. },
  34878. {
  34879. name: "Common Size",
  34880. height: math.unit(50, "km"),
  34881. default: true
  34882. },
  34883. {
  34884. name: "Demonic",
  34885. height: math.unit(1.24415e+21, "meters")
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(16, "feet"),
  34894. weight: math.unit(610, "kg"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/huckle/front.svg",
  34898. extra: 1731/1625,
  34899. bottom: 33/1764
  34900. }
  34901. },
  34902. back: {
  34903. height: math.unit(16, "feet"),
  34904. weight: math.unit(610, "kg"),
  34905. name: "Back",
  34906. image: {
  34907. source: "./media/characters/huckle/back.svg",
  34908. extra: 1738/1651,
  34909. bottom: 37/1775
  34910. }
  34911. },
  34912. laughing: {
  34913. height: math.unit(3.75, "feet"),
  34914. name: "Laughing",
  34915. image: {
  34916. source: "./media/characters/huckle/laughing.svg"
  34917. }
  34918. },
  34919. angry: {
  34920. height: math.unit(4.15, "feet"),
  34921. name: "Angry",
  34922. image: {
  34923. source: "./media/characters/huckle/angry.svg"
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(16, "feet"),
  34931. default: true
  34932. },
  34933. {
  34934. name: "Mini Macro",
  34935. height: math.unit(463, "feet")
  34936. },
  34937. {
  34938. name: "Macro",
  34939. height: math.unit(1680, "meters")
  34940. },
  34941. {
  34942. name: "Mega Macro",
  34943. height: math.unit(175, "km")
  34944. },
  34945. {
  34946. name: "Terra Macro",
  34947. height: math.unit(32, "gigameters")
  34948. },
  34949. {
  34950. name: "Multiverse+",
  34951. height: math.unit(2.56e23, "yottameters")
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(6 + 9/12, "feet"),
  34960. weight: math.unit(280, "lb"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/candy/front.svg",
  34964. extra: 234/217,
  34965. bottom: 11/245
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Really Small",
  34972. height: math.unit(0.1, "nm")
  34973. },
  34974. {
  34975. name: "Micro",
  34976. height: math.unit(2, "inches")
  34977. },
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(6 + 9/12, "feet"),
  34981. default: true
  34982. },
  34983. {
  34984. name: "Small Macro",
  34985. height: math.unit(69, "feet")
  34986. },
  34987. {
  34988. name: "Macro",
  34989. height: math.unit(160, "feet")
  34990. },
  34991. {
  34992. name: "Megamacro",
  34993. height: math.unit(22000, "miles")
  34994. },
  34995. {
  34996. name: "Gigamacro",
  34997. height: math.unit(50000, "miles")
  34998. },
  34999. ]
  35000. ))
  35001. characterMakers.push(() => makeCharacter(
  35002. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35003. {
  35004. front: {
  35005. height: math.unit(4, "feet"),
  35006. weight: math.unit(90, "lb"),
  35007. name: "Front",
  35008. image: {
  35009. source: "./media/characters/joey-mcdonald/front.svg",
  35010. extra: 1059/852,
  35011. bottom: 33/1092
  35012. }
  35013. },
  35014. back: {
  35015. height: math.unit(4, "feet"),
  35016. weight: math.unit(90, "lb"),
  35017. name: "Back",
  35018. image: {
  35019. source: "./media/characters/joey-mcdonald/back.svg",
  35020. extra: 1077/879,
  35021. bottom: 5/1082
  35022. }
  35023. },
  35024. frontKobold: {
  35025. height: math.unit(4, "feet"),
  35026. weight: math.unit(100, "lb"),
  35027. name: "Front-kobold",
  35028. image: {
  35029. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35030. extra: 1480/1367,
  35031. bottom: 0/1480
  35032. }
  35033. },
  35034. backKobold: {
  35035. height: math.unit(4, "feet"),
  35036. weight: math.unit(100, "lb"),
  35037. name: "Back-kobold",
  35038. image: {
  35039. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35040. extra: 1449/1361,
  35041. bottom: 0/1449
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(4, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(12 + 6/12, "feet"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/kass-lockheed/front.svg",
  35061. extra: 354/343,
  35062. bottom: 9/363
  35063. }
  35064. },
  35065. back: {
  35066. height: math.unit(12 + 6/12, "feet"),
  35067. name: "Back",
  35068. image: {
  35069. source: "./media/characters/kass-lockheed/back.svg",
  35070. extra: 364/352,
  35071. bottom: 3/367
  35072. }
  35073. },
  35074. dick: {
  35075. height: math.unit(3.12, "feet"),
  35076. name: "Dick",
  35077. image: {
  35078. source: "./media/characters/kass-lockheed/dick.svg"
  35079. }
  35080. },
  35081. head: {
  35082. height: math.unit(2.6, "feet"),
  35083. name: "Head",
  35084. image: {
  35085. source: "./media/characters/kass-lockheed/head.svg"
  35086. }
  35087. },
  35088. bleh: {
  35089. height: math.unit(2.85, "feet"),
  35090. name: "Bleh",
  35091. image: {
  35092. source: "./media/characters/kass-lockheed/bleh.svg"
  35093. }
  35094. },
  35095. smug: {
  35096. height: math.unit(2.85, "feet"),
  35097. name: "Smug",
  35098. image: {
  35099. source: "./media/characters/kass-lockheed/smug.svg"
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(12 + 6/12, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(6 + 2/12, "feet"),
  35116. name: "Front",
  35117. image: {
  35118. source: "./media/characters/taylor/front.svg",
  35119. extra: 639/495,
  35120. bottom: 12/651
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(6 + 2/12, "feet"),
  35128. default: true
  35129. },
  35130. {
  35131. name: "Big",
  35132. height: math.unit(15, "feet")
  35133. },
  35134. {
  35135. name: "Lorg",
  35136. height: math.unit(80, "feet")
  35137. },
  35138. {
  35139. name: "Too Lorg",
  35140. height: math.unit(120, "feet")
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(15, "feet"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/kaizer/front.svg",
  35152. extra: 1612/1436,
  35153. bottom: 43/1655
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(15, "feet"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(2, "feet"),
  35170. weight: math.unit(30, "lb"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/sandy/front.svg",
  35174. extra: 1439/1307,
  35175. bottom: 194/1633
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(2, "feet"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(3, "feet"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/mellvi/front.svg",
  35195. extra: 1831/1630,
  35196. bottom: 58/1889
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(3, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(5 + 11/12, "feet"),
  35213. weight: math.unit(200, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/shirou/front.svg",
  35217. extra: 2491/2383,
  35218. bottom: 189/2680
  35219. }
  35220. },
  35221. back: {
  35222. height: math.unit(5 + 11/12, "feet"),
  35223. weight: math.unit(200, "lb"),
  35224. name: "Back",
  35225. image: {
  35226. source: "./media/characters/shirou/back.svg",
  35227. extra: 2554/2450,
  35228. bottom: 76/2630
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(5 + 11/12, "feet"),
  35236. default: true
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(6 + 3/12, "feet"),
  35245. weight: math.unit(177, "lb"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/noryu/front.svg",
  35249. extra: 973/885,
  35250. bottom: 10/983
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(6 + 3/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(5 + 6/12, "feet"),
  35267. weight: math.unit(170, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/mevolas-rubenido/front.svg",
  35271. extra: 2109/1901,
  35272. bottom: 96/2205
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5 + 6/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(100, "feet"),
  35289. name: "Front",
  35290. image: {
  35291. source: "./media/characters/dee/front.svg",
  35292. extra: 2153/2036,
  35293. bottom: 59/2212
  35294. }
  35295. },
  35296. back: {
  35297. height: math.unit(100, "feet"),
  35298. name: "Back",
  35299. image: {
  35300. source: "./media/characters/dee/back.svg",
  35301. extra: 2183/2058,
  35302. bottom: 75/2258
  35303. }
  35304. },
  35305. foot: {
  35306. height: math.unit(19.43, "feet"),
  35307. name: "Foot",
  35308. image: {
  35309. source: "./media/characters/dee/foot.svg"
  35310. }
  35311. },
  35312. hoof: {
  35313. height: math.unit(20.6, "feet"),
  35314. name: "Hoof",
  35315. image: {
  35316. source: "./media/characters/dee/hoof.svg"
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Macro",
  35323. height: math.unit(100, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(5 + 6/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/teh/front.svg",
  35336. extra: 1002/847,
  35337. bottom: 62/1064
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(5 + 6/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35351. {
  35352. side: {
  35353. height: math.unit(6 + 1/12, "feet"),
  35354. weight: math.unit(204, "lb"),
  35355. name: "Side",
  35356. image: {
  35357. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35358. extra: 974/775,
  35359. bottom: 169/1143
  35360. }
  35361. },
  35362. sitting: {
  35363. height: math.unit(6 + 2/12, "feet"),
  35364. weight: math.unit(204, "lb"),
  35365. name: "Sitting",
  35366. image: {
  35367. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35368. extra: 1175/964,
  35369. bottom: 378/1553
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(6 + 1/12, "feet"),
  35377. default: true
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(6, "inches"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/tululi/front.svg",
  35389. extra: 1997/1876,
  35390. bottom: 20/2017
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Normal",
  35397. height: math.unit(6, "inches"),
  35398. default: true
  35399. },
  35400. ]
  35401. ))
  35402. characterMakers.push(() => makeCharacter(
  35403. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35404. {
  35405. front: {
  35406. height: math.unit(4 + 1/12, "feet"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/star/front.svg",
  35410. extra: 1493/1189,
  35411. bottom: 48/1541
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(4 + 1/12, "feet"),
  35419. default: true
  35420. },
  35421. ]
  35422. ))
  35423. characterMakers.push(() => makeCharacter(
  35424. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35425. {
  35426. front: {
  35427. height: math.unit(6 + 3/12, "feet"),
  35428. name: "Front",
  35429. image: {
  35430. source: "./media/characters/comet/front.svg",
  35431. extra: 1681/1462,
  35432. bottom: 26/1707
  35433. }
  35434. },
  35435. },
  35436. [
  35437. {
  35438. name: "Normal",
  35439. height: math.unit(6 + 3/12, "feet"),
  35440. default: true
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35446. {
  35447. front: {
  35448. height: math.unit(950, "feet"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/vortex/front.svg",
  35452. extra: 1497/1434,
  35453. bottom: 56/1553
  35454. }
  35455. },
  35456. maw: {
  35457. height: math.unit(285, "feet"),
  35458. name: "Maw",
  35459. image: {
  35460. source: "./media/characters/vortex/maw.svg"
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Macro",
  35467. height: math.unit(950, "feet"),
  35468. default: true
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(600, "feet"),
  35477. weight: math.unit(0.02, "grams"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/doodle/front.svg",
  35481. extra: 1578/1413,
  35482. bottom: 37/1615
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Macro",
  35489. height: math.unit(600, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. characterMakers.push(() => makeCharacter(
  35495. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35496. {
  35497. front: {
  35498. height: math.unit(6 + 6/12, "feet"),
  35499. name: "Front",
  35500. image: {
  35501. source: "./media/characters/jai/front.svg",
  35502. extra: 1645/1534,
  35503. bottom: 115/1760
  35504. }
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(6 + 6/12, "feet"),
  35511. default: true
  35512. },
  35513. ]
  35514. ))
  35515. characterMakers.push(() => makeCharacter(
  35516. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35517. {
  35518. front: {
  35519. height: math.unit(6 + 8/12, "feet"),
  35520. name: "Front",
  35521. image: {
  35522. source: "./media/characters/pixel/front.svg",
  35523. extra: 1900/1735,
  35524. bottom: 63/1963
  35525. }
  35526. },
  35527. },
  35528. [
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(6 + 8/12, "feet"),
  35532. default: true
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35538. {
  35539. back: {
  35540. height: math.unit(4 + 1/12, "feet"),
  35541. weight: math.unit(75, "lb"),
  35542. name: "Back",
  35543. image: {
  35544. source: "./media/characters/rhett/back.svg",
  35545. extra: 930/878,
  35546. bottom: 25/955
  35547. }
  35548. },
  35549. front: {
  35550. height: math.unit(4 + 1/12, "feet"),
  35551. weight: math.unit(75, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/rhett/front.svg",
  35555. extra: 1682/1586,
  35556. bottom: 92/1774
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Micro",
  35563. height: math.unit(8, "inches")
  35564. },
  35565. {
  35566. name: "Tiny",
  35567. height: math.unit(2, "feet")
  35568. },
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(4 + 1/12, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35578. {
  35579. front: {
  35580. height: math.unit(3 + 3/12, "feet"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/penny/front.svg",
  35584. extra: 1406/1311,
  35585. bottom: 26/1432
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(3 + 3/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(4 + 11/12, "feet"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/monty/front.svg",
  35605. extra: 1479/1209,
  35606. bottom: 0/1479
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Normal",
  35613. height: math.unit(4 + 11/12, "feet"),
  35614. default: true
  35615. },
  35616. ]
  35617. ))
  35618. characterMakers.push(() => makeCharacter(
  35619. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35620. {
  35621. front: {
  35622. height: math.unit(8 + 4/12, "feet"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/sterling/front.svg",
  35626. extra: 1420/1236,
  35627. bottom: 27/1447
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(8 + 4/12, "feet"),
  35635. default: true
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(15, "feet"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/marble/front.svg",
  35647. extra: 973/937,
  35648. bottom: 32/1005
  35649. }
  35650. },
  35651. },
  35652. [
  35653. {
  35654. name: "Normal",
  35655. height: math.unit(15, "feet"),
  35656. default: true
  35657. },
  35658. ]
  35659. ))
  35660. characterMakers.push(() => makeCharacter(
  35661. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35662. {
  35663. front: {
  35664. height: math.unit(3, "inches"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/powder/front.svg",
  35668. extra: 1504/1334,
  35669. bottom: 518/2022
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(3, "inches"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35683. {
  35684. front: {
  35685. height: math.unit(4 + 5/12, "feet"),
  35686. name: "Front",
  35687. image: {
  35688. source: "./media/characters/joey-raccoon/front.svg",
  35689. extra: 1273/1197,
  35690. bottom: 0/1273
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(4 + 5/12, "feet"),
  35698. default: true
  35699. },
  35700. ]
  35701. ))
  35702. characterMakers.push(() => makeCharacter(
  35703. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35704. {
  35705. front: {
  35706. height: math.unit(8 + 4/12, "feet"),
  35707. name: "Front",
  35708. image: {
  35709. source: "./media/characters/vick/front.svg",
  35710. extra: 2187/2118,
  35711. bottom: 47/2234
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(8 + 4/12, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(5 + 5/12, "feet"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/mitsy/front.svg",
  35731. extra: 1842/1695,
  35732. bottom: 0/1842
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(5 + 5/12, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(6 + 3/12, "feet"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/silvy/front.svg",
  35752. extra: 1995/1836,
  35753. bottom: 225/2220
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(6 + 3/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(3 + 8/12, "feet"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/rodney/front.svg",
  35773. extra: 1956/1747,
  35774. bottom: 31/1987
  35775. }
  35776. },
  35777. frontDressed: {
  35778. height: math.unit(2.9, "feet"),
  35779. name: "Front (Dressed)",
  35780. image: {
  35781. source: "./media/characters/rodney/front-dressed.svg",
  35782. extra: 1382/1241,
  35783. bottom: 385/1767
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(3 + 8/12, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35797. {
  35798. front: {
  35799. height: math.unit(5 + 9/12, "feet"),
  35800. weight: math.unit(194, "lbs"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/zakail-sudekai/front.svg",
  35804. extra: 2696/2533,
  35805. bottom: 248/2944
  35806. }
  35807. },
  35808. maw: {
  35809. height: math.unit(1.35, "feet"),
  35810. name: "Maw",
  35811. image: {
  35812. source: "./media/characters/zakail-sudekai/maw.svg"
  35813. }
  35814. },
  35815. },
  35816. [
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(5 + 9/12, "feet"),
  35820. default: true
  35821. },
  35822. ]
  35823. ))
  35824. characterMakers.push(() => makeCharacter(
  35825. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35826. {
  35827. front: {
  35828. height: math.unit(8 + 4/12, "feet"),
  35829. weight: math.unit(1200, "lb"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/eleanor/front.svg",
  35833. extra: 1226/1192,
  35834. bottom: 52/1278
  35835. }
  35836. },
  35837. back: {
  35838. height: math.unit(8 + 4/12, "feet"),
  35839. weight: math.unit(1200, "lb"),
  35840. name: "Back",
  35841. image: {
  35842. source: "./media/characters/eleanor/back.svg",
  35843. extra: 1242/1184,
  35844. bottom: 60/1302
  35845. }
  35846. },
  35847. head: {
  35848. height: math.unit(2.62, "feet"),
  35849. name: "Head",
  35850. image: {
  35851. source: "./media/characters/eleanor/head.svg"
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(8 + 4/12, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35865. {
  35866. front: {
  35867. height: math.unit(8 + 4/12, "feet"),
  35868. weight: math.unit(750, "lb"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/tanya/front.svg",
  35872. extra: 1749/1615,
  35873. bottom: 33/1782
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(8 + 4/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(5, "feet"),
  35890. weight: math.unit(225, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/cindy/front.svg",
  35894. extra: 1320/1250,
  35895. bottom: 42/1362
  35896. }
  35897. },
  35898. frontDressed: {
  35899. height: math.unit(5, "feet"),
  35900. weight: math.unit(225, "lb"),
  35901. name: "Front (Dressed)",
  35902. image: {
  35903. source: "./media/characters/cindy/front-dressed.svg",
  35904. extra: 1320/1250,
  35905. bottom: 42/1362
  35906. }
  35907. },
  35908. back: {
  35909. height: math.unit(5, "feet"),
  35910. weight: math.unit(225, "lb"),
  35911. name: "Back",
  35912. image: {
  35913. source: "./media/characters/cindy/back.svg",
  35914. extra: 1384/1346,
  35915. bottom: 14/1398
  35916. }
  35917. },
  35918. },
  35919. [
  35920. {
  35921. name: "Normal",
  35922. height: math.unit(5, "feet"),
  35923. default: true
  35924. },
  35925. ]
  35926. ))
  35927. characterMakers.push(() => makeCharacter(
  35928. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35929. {
  35930. front: {
  35931. height: math.unit(6 + 9/12, "feet"),
  35932. weight: math.unit(440, "lb"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/wilbur-owen/front.svg",
  35936. extra: 1575/1448,
  35937. bottom: 72/1647
  35938. }
  35939. },
  35940. back: {
  35941. height: math.unit(6 + 9/12, "feet"),
  35942. weight: math.unit(440, "lb"),
  35943. name: "Back",
  35944. image: {
  35945. source: "./media/characters/wilbur-owen/back.svg",
  35946. extra: 1578/1445,
  35947. bottom: 36/1614
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(6 + 9/12, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(6 + 5/12, "feet"),
  35964. weight: math.unit(650, "lb"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/keegan/front.svg",
  35968. extra: 2387/2198,
  35969. bottom: 33/2420
  35970. }
  35971. },
  35972. side: {
  35973. height: math.unit(6 + 5/12, "feet"),
  35974. weight: math.unit(650, "lb"),
  35975. name: "Side",
  35976. image: {
  35977. source: "./media/characters/keegan/side.svg",
  35978. extra: 2390/2202,
  35979. bottom: 47/2437
  35980. }
  35981. },
  35982. back: {
  35983. height: math.unit(6 + 5/12, "feet"),
  35984. weight: math.unit(650, "lb"),
  35985. name: "Back",
  35986. image: {
  35987. source: "./media/characters/keegan/back.svg",
  35988. extra: 2418/2268,
  35989. bottom: 15/2433
  35990. }
  35991. },
  35992. frontSfw: {
  35993. height: math.unit(6 + 5/12, "feet"),
  35994. weight: math.unit(650, "lb"),
  35995. name: "Front (SFW)",
  35996. image: {
  35997. source: "./media/characters/keegan/front-sfw.svg",
  35998. extra: 2387/2198,
  35999. bottom: 33/2420
  36000. }
  36001. },
  36002. beans: {
  36003. height: math.unit(1.85, "feet"),
  36004. name: "Beans",
  36005. image: {
  36006. source: "./media/characters/keegan/beans.svg"
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Normal",
  36013. height: math.unit(6 + 5/12, "feet"),
  36014. default: true
  36015. },
  36016. ]
  36017. ))
  36018. characterMakers.push(() => makeCharacter(
  36019. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36020. {
  36021. front: {
  36022. height: math.unit(9, "feet"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/colton/front.svg",
  36026. extra: 1589/1326,
  36027. bottom: 139/1728
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Normal",
  36034. height: math.unit(9, "feet"),
  36035. default: true
  36036. },
  36037. ]
  36038. ))
  36039. characterMakers.push(() => makeCharacter(
  36040. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36041. {
  36042. front: {
  36043. height: math.unit(2 + 9/12, "feet"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/bora/front.svg",
  36047. extra: 1265/1250,
  36048. bottom: 24/1289
  36049. }
  36050. },
  36051. },
  36052. [
  36053. {
  36054. name: "Normal",
  36055. height: math.unit(2 + 9/12, "feet"),
  36056. default: true
  36057. },
  36058. ]
  36059. ))
  36060. characterMakers.push(() => makeCharacter(
  36061. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36062. {
  36063. front: {
  36064. height: math.unit(8, "feet"),
  36065. name: "Front",
  36066. image: {
  36067. source: "./media/characters/myu-myu/front.svg",
  36068. extra: 1949/1857,
  36069. bottom: 90/2039
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(8, "feet"),
  36077. default: true
  36078. },
  36079. {
  36080. name: "Big",
  36081. height: math.unit(15, "feet")
  36082. },
  36083. {
  36084. name: "BIG",
  36085. height: math.unit(25, "feet")
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36091. {
  36092. side: {
  36093. height: math.unit(7 + 5/12, "feet"),
  36094. weight: math.unit(2800, "lb"),
  36095. name: "Side",
  36096. image: {
  36097. source: "./media/characters/haloren/side.svg",
  36098. extra: 1793/409,
  36099. bottom: 59/1852
  36100. }
  36101. },
  36102. frontPaw: {
  36103. height: math.unit(2.36, "feet"),
  36104. name: "Front paw",
  36105. image: {
  36106. source: "./media/characters/haloren/front-paw.svg"
  36107. }
  36108. },
  36109. hindPaw: {
  36110. height: math.unit(3.18, "feet"),
  36111. name: "Hind paw",
  36112. image: {
  36113. source: "./media/characters/haloren/hind-paw.svg"
  36114. }
  36115. },
  36116. maw: {
  36117. height: math.unit(5.05, "feet"),
  36118. name: "Maw",
  36119. image: {
  36120. source: "./media/characters/haloren/maw.svg"
  36121. }
  36122. },
  36123. dick: {
  36124. height: math.unit(2.90, "feet"),
  36125. name: "Dick",
  36126. image: {
  36127. source: "./media/characters/haloren/dick.svg"
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(7 + 5/12, "feet"),
  36135. default: true
  36136. },
  36137. {
  36138. name: "Enhanced",
  36139. height: math.unit(14 + 3/12, "feet")
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(171, "cm"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/kimmy/front.svg",
  36151. extra: 1491/1435,
  36152. bottom: 53/1544
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Small",
  36159. height: math.unit(9, "cm")
  36160. },
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(171, "cm"),
  36164. default: true
  36165. },
  36166. ]
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36170. {
  36171. front: {
  36172. height: math.unit(8, "feet"),
  36173. weight: math.unit(300, "lb"),
  36174. name: "Front",
  36175. image: {
  36176. source: "./media/characters/galeboomer/front.svg",
  36177. extra: 4651/4415,
  36178. bottom: 162/4813
  36179. }
  36180. },
  36181. back: {
  36182. height: math.unit(8, "feet"),
  36183. weight: math.unit(300, "lb"),
  36184. name: "Back",
  36185. image: {
  36186. source: "./media/characters/galeboomer/back.svg",
  36187. extra: 4544/4314,
  36188. bottom: 16/4560
  36189. }
  36190. },
  36191. frontAlt: {
  36192. height: math.unit(8, "feet"),
  36193. weight: math.unit(300, "lb"),
  36194. name: "Front (Alt)",
  36195. image: {
  36196. source: "./media/characters/galeboomer/front-alt.svg",
  36197. extra: 4458/4228,
  36198. bottom: 68/4526
  36199. }
  36200. },
  36201. maw: {
  36202. height: math.unit(1.2, "feet"),
  36203. name: "Maw",
  36204. image: {
  36205. source: "./media/characters/galeboomer/maw.svg"
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(8, "feet"),
  36213. default: true
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(5 + 9/12, "feet"),
  36222. weight: math.unit(120, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/chyr/front.svg",
  36226. extra: 1323/1254,
  36227. bottom: 63/1386
  36228. }
  36229. },
  36230. back: {
  36231. height: math.unit(5 + 9/12, "feet"),
  36232. weight: math.unit(120, "lb"),
  36233. name: "Back",
  36234. image: {
  36235. source: "./media/characters/chyr/back.svg",
  36236. extra: 1323/1252,
  36237. bottom: 48/1371
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(5 + 9/12, "feet"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(7, "feet"),
  36254. weight: math.unit(310, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/solarus/front.svg",
  36258. extra: 2415/2021,
  36259. bottom: 103/2518
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(7, "feet"),
  36264. weight: math.unit(310, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/solarus/back.svg",
  36268. extra: 2463/2089,
  36269. bottom: 79/2542
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(7, "feet"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36283. {
  36284. front: {
  36285. height: math.unit(16, "feet"),
  36286. name: "Front",
  36287. image: {
  36288. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36289. extra: 1844/1780,
  36290. bottom: 58/1902
  36291. }
  36292. },
  36293. winterCoat: {
  36294. height: math.unit(16, "feet"),
  36295. name: "Winter Coat",
  36296. image: {
  36297. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36298. extra: 1807/1775,
  36299. bottom: 69/1876
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(16, "feet"),
  36307. default: true
  36308. },
  36309. {
  36310. name: "Chicago Size",
  36311. height: math.unit(560, "feet")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(11 + 6/12, "feet"),
  36320. weight: math.unit(1366, "lb"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/lexor/front.svg",
  36324. extra: 1560/1481,
  36325. bottom: 211/1771
  36326. }
  36327. },
  36328. back: {
  36329. height: math.unit(11 + 6/12, "feet"),
  36330. weight: math.unit(1366, "lb"),
  36331. name: "Back",
  36332. image: {
  36333. source: "./media/characters/lexor/back.svg",
  36334. extra: 1614/1533,
  36335. bottom: 76/1690
  36336. }
  36337. },
  36338. maw: {
  36339. height: math.unit(3, "feet"),
  36340. name: "Maw",
  36341. image: {
  36342. source: "./media/characters/lexor/maw.svg"
  36343. }
  36344. },
  36345. dick: {
  36346. height: math.unit(2.59, "feet"),
  36347. name: "Dick",
  36348. image: {
  36349. source: "./media/characters/lexor/dick.svg"
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(11 + 6/12, "feet"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36363. {
  36364. front: {
  36365. height: math.unit(5 + 8/12, "feet"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/magnum/front.svg",
  36369. extra: 942/855,
  36370. bottom: 26/968
  36371. }
  36372. },
  36373. },
  36374. [
  36375. {
  36376. name: "Normal",
  36377. height: math.unit(5 + 8/12, "feet"),
  36378. default: true
  36379. },
  36380. ]
  36381. ))
  36382. characterMakers.push(() => makeCharacter(
  36383. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36384. {
  36385. front: {
  36386. height: math.unit(18 + 4/12, "feet"),
  36387. weight: math.unit(1500, "kg"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/solas-sharpsman/front.svg",
  36391. extra: 1698/1589,
  36392. bottom: 0/1698
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(18 + 4/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(5 + 5/12, "feet"),
  36409. weight: math.unit(180, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/october/front.svg",
  36413. extra: 1800/1650,
  36414. bottom: 0/1800
  36415. }
  36416. },
  36417. frontNsfw: {
  36418. height: math.unit(5 + 5/12, "feet"),
  36419. weight: math.unit(180, "lb"),
  36420. name: "Front (NSFW)",
  36421. image: {
  36422. source: "./media/characters/october/front-nsfw.svg",
  36423. extra: 1392/1307,
  36424. bottom: 42/1434
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(5 + 5/12, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(8 + 6/12, "feet"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/essynkardi/front.svg",
  36444. extra: 1914/1846,
  36445. bottom: 22/1936
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Normal",
  36452. height: math.unit(8 + 6/12, "feet"),
  36453. default: true
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(6 + 6/12, "feet"),
  36462. weight: math.unit(7, "lb"),
  36463. name: "Front",
  36464. image: {
  36465. source: "./media/characters/icky/front.svg",
  36466. extra: 813/782,
  36467. bottom: 66/879
  36468. }
  36469. },
  36470. back: {
  36471. height: math.unit(6 + 6/12, "feet"),
  36472. weight: math.unit(7, "lb"),
  36473. name: "Back",
  36474. image: {
  36475. source: "./media/characters/icky/back.svg",
  36476. extra: 754/735,
  36477. bottom: 56/810
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(6 + 6/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(15, "feet"),
  36494. name: "Front",
  36495. image: {
  36496. source: "./media/characters/rojas/front.svg",
  36497. extra: 1462/1408,
  36498. bottom: 95/1557
  36499. }
  36500. },
  36501. back: {
  36502. height: math.unit(15, "feet"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/rojas/back.svg",
  36506. extra: 1023/954,
  36507. bottom: 28/1051
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(15, "feet"),
  36515. default: true
  36516. },
  36517. ]
  36518. ))
  36519. characterMakers.push(() => makeCharacter(
  36520. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36521. {
  36522. frontHuman: {
  36523. height: math.unit(5 + 7/12, "feet"),
  36524. name: "Front (Human)",
  36525. image: {
  36526. source: "./media/characters/alek-dryagan/front-human.svg",
  36527. extra: 1687/1667,
  36528. bottom: 69/1756
  36529. }
  36530. },
  36531. backHuman: {
  36532. height: math.unit(5 + 7/12, "feet"),
  36533. name: "Back (Human)",
  36534. image: {
  36535. source: "./media/characters/alek-dryagan/back-human.svg",
  36536. extra: 1670/1649,
  36537. bottom: 65/1735
  36538. }
  36539. },
  36540. frontDemi: {
  36541. height: math.unit(65, "feet"),
  36542. name: "Front (Demi)",
  36543. image: {
  36544. source: "./media/characters/alek-dryagan/front-demi.svg",
  36545. extra: 1669/1642,
  36546. bottom: 49/1718
  36547. }
  36548. },
  36549. backDemi: {
  36550. height: math.unit(65, "feet"),
  36551. name: "Back (Demi)",
  36552. image: {
  36553. source: "./media/characters/alek-dryagan/back-demi.svg",
  36554. extra: 1658/1637,
  36555. bottom: 40/1698
  36556. }
  36557. },
  36558. mawHuman: {
  36559. height: math.unit(0.3, "feet"),
  36560. name: "Maw (Human)",
  36561. image: {
  36562. source: "./media/characters/alek-dryagan/maw-human.svg"
  36563. }
  36564. },
  36565. mawDemi: {
  36566. height: math.unit(3.8, "feet"),
  36567. name: "Maw (Demi)",
  36568. image: {
  36569. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(5 + 7/12, "feet"),
  36577. default: true
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36583. {
  36584. frontHuman: {
  36585. height: math.unit(5 + 2/12, "feet"),
  36586. name: "Front (Human)",
  36587. image: {
  36588. source: "./media/characters/gen/front-human.svg",
  36589. extra: 1627/1538,
  36590. bottom: 71/1698
  36591. }
  36592. },
  36593. backHuman: {
  36594. height: math.unit(5 + 2/12, "feet"),
  36595. name: "Back (Human)",
  36596. image: {
  36597. source: "./media/characters/gen/back-human.svg",
  36598. extra: 1638/1548,
  36599. bottom: 69/1707
  36600. }
  36601. },
  36602. frontDemi: {
  36603. height: math.unit(5 + 2/12, "feet"),
  36604. name: "Front (Demi)",
  36605. image: {
  36606. source: "./media/characters/gen/front-demi.svg",
  36607. extra: 1627/1538,
  36608. bottom: 71/1698
  36609. }
  36610. },
  36611. backDemi: {
  36612. height: math.unit(5 + 2/12, "feet"),
  36613. name: "Back (Demi)",
  36614. image: {
  36615. source: "./media/characters/gen/back-demi.svg",
  36616. extra: 1638/1548,
  36617. bottom: 69/1707
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(5 + 2/12, "feet"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36631. {
  36632. frontImp: {
  36633. height: math.unit(1 + 11/12, "feet"),
  36634. name: "Front (Imp)",
  36635. image: {
  36636. source: "./media/characters/max-kobold/front-imp.svg",
  36637. extra: 1238/1134,
  36638. bottom: 81/1319
  36639. }
  36640. },
  36641. backImp: {
  36642. height: math.unit(1 + 11/12, "feet"),
  36643. name: "Back (Imp)",
  36644. image: {
  36645. source: "./media/characters/max-kobold/back-imp.svg",
  36646. extra: 1334/1175,
  36647. bottom: 34/1368
  36648. }
  36649. },
  36650. frontDemi: {
  36651. height: math.unit(5 + 9/12, "feet"),
  36652. name: "Front (Demi)",
  36653. image: {
  36654. source: "./media/characters/max-kobold/front-demi.svg",
  36655. extra: 1715/1685,
  36656. bottom: 54/1769
  36657. }
  36658. },
  36659. backDemi: {
  36660. height: math.unit(5 + 9/12, "feet"),
  36661. name: "Back (Demi)",
  36662. image: {
  36663. source: "./media/characters/max-kobold/back-demi.svg",
  36664. extra: 1752/1729,
  36665. bottom: 41/1793
  36666. }
  36667. },
  36668. handImp: {
  36669. height: math.unit(0.45, "feet"),
  36670. name: "Hand (Imp)",
  36671. image: {
  36672. source: "./media/characters/max-kobold/hand.svg"
  36673. }
  36674. },
  36675. pawImp: {
  36676. height: math.unit(0.46, "feet"),
  36677. name: "Paw (Imp)",
  36678. image: {
  36679. source: "./media/characters/max-kobold/paw.svg"
  36680. }
  36681. },
  36682. handDemi: {
  36683. height: math.unit(0.80, "feet"),
  36684. name: "Hand (Demi)",
  36685. image: {
  36686. source: "./media/characters/max-kobold/hand.svg"
  36687. }
  36688. },
  36689. pawDemi: {
  36690. height: math.unit(1.1, "feet"),
  36691. name: "Paw (Demi)",
  36692. image: {
  36693. source: "./media/characters/max-kobold/paw.svg"
  36694. }
  36695. },
  36696. headImp: {
  36697. height: math.unit(1.33, "feet"),
  36698. name: "Head (Imp)",
  36699. image: {
  36700. source: "./media/characters/max-kobold/head-imp.svg"
  36701. }
  36702. },
  36703. mawImp: {
  36704. height: math.unit(0.75, "feet"),
  36705. name: "Maw (Imp)",
  36706. image: {
  36707. source: "./media/characters/max-kobold/maw-imp.svg"
  36708. }
  36709. },
  36710. mawDemi: {
  36711. height: math.unit(0.42, "feet"),
  36712. name: "Maw (Demi)",
  36713. image: {
  36714. source: "./media/characters/max-kobold/maw-demi.svg"
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(1 + 11/12, "feet"),
  36722. default: true
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36728. {
  36729. front: {
  36730. height: math.unit(7 + 5/12, "feet"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/carbon/front.svg",
  36734. extra: 1754/1689,
  36735. bottom: 65/1819
  36736. }
  36737. },
  36738. back: {
  36739. height: math.unit(7 + 5/12, "feet"),
  36740. name: "Back",
  36741. image: {
  36742. source: "./media/characters/carbon/back.svg",
  36743. extra: 1762/1695,
  36744. bottom: 24/1786
  36745. }
  36746. },
  36747. frontGigantamax: {
  36748. height: math.unit(150, "feet"),
  36749. name: "Front (Gigantamax)",
  36750. image: {
  36751. source: "./media/characters/carbon/front-gigantamax.svg",
  36752. extra: 1826/1669,
  36753. bottom: 59/1885
  36754. }
  36755. },
  36756. backGigantamax: {
  36757. height: math.unit(150, "feet"),
  36758. name: "Back (Gigantamax)",
  36759. image: {
  36760. source: "./media/characters/carbon/back-gigantamax.svg",
  36761. extra: 1796/1653,
  36762. bottom: 53/1849
  36763. }
  36764. },
  36765. maw: {
  36766. height: math.unit(0.48, "feet"),
  36767. name: "Maw",
  36768. image: {
  36769. source: "./media/characters/carbon/maw.svg"
  36770. }
  36771. },
  36772. mawGigantamax: {
  36773. height: math.unit(7.5, "feet"),
  36774. name: "Maw (Gigantamax)",
  36775. image: {
  36776. source: "./media/characters/carbon/maw-gigantamax.svg"
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(7 + 5/12, "feet"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(6, "feet"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/maverick/front.svg",
  36796. extra: 1672/1661,
  36797. bottom: 85/1757
  36798. }
  36799. },
  36800. back: {
  36801. height: math.unit(6, "feet"),
  36802. name: "Back",
  36803. image: {
  36804. source: "./media/characters/maverick/back.svg",
  36805. extra: 1642/1631,
  36806. bottom: 38/1680
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(6, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(15, "feet"),
  36823. weight: math.unit(615, "lb"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/grockle/front.svg",
  36827. extra: 1535/1427,
  36828. bottom: 56/1591
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(15, "feet"),
  36836. default: true
  36837. },
  36838. {
  36839. name: "Large",
  36840. height: math.unit(150, "feet")
  36841. },
  36842. {
  36843. name: "Macro",
  36844. height: math.unit(1876, "feet")
  36845. },
  36846. {
  36847. name: "Mega Macro",
  36848. height: math.unit(121940, "feet")
  36849. },
  36850. {
  36851. name: "Giga Macro",
  36852. height: math.unit(750, "km")
  36853. },
  36854. {
  36855. name: "Tera Macro",
  36856. height: math.unit(750000, "km")
  36857. },
  36858. {
  36859. name: "Galactic",
  36860. height: math.unit(1.4e5, "km")
  36861. },
  36862. {
  36863. name: "Godlike",
  36864. height: math.unit(9.8e280, "galaxies")
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(11, "meters"),
  36873. weight: math.unit(20, "tonnes"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/alistair/front.svg",
  36877. extra: 1265/1009,
  36878. bottom: 93/1358
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(11, "meters"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(5 + 8/12, "feet"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/haruka/front.svg",
  36898. extra: 2012/1952,
  36899. bottom: 0/2012
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(5 + 8/12, "feet"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36913. {
  36914. back: {
  36915. height: math.unit(9, "feet"),
  36916. name: "Back",
  36917. image: {
  36918. source: "./media/characters/vivian-sylveon/back.svg",
  36919. extra: 1853/1714,
  36920. bottom: 0/1853
  36921. }
  36922. },
  36923. },
  36924. [
  36925. {
  36926. name: "Normal",
  36927. height: math.unit(9, "feet"),
  36928. default: true
  36929. },
  36930. {
  36931. name: "Macro",
  36932. height: math.unit(500, "feet")
  36933. },
  36934. {
  36935. name: "Megamacro",
  36936. height: math.unit(600, "miles")
  36937. },
  36938. {
  36939. name: "Gigamacro",
  36940. height: math.unit(30000, "miles")
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36946. {
  36947. anthro: {
  36948. height: math.unit(5 + 10/12, "feet"),
  36949. weight: math.unit(100, "lb"),
  36950. name: "Anthro",
  36951. image: {
  36952. source: "./media/characters/daiki/anthro.svg",
  36953. extra: 1115/1027,
  36954. bottom: 69/1184
  36955. }
  36956. },
  36957. feral: {
  36958. height: math.unit(200, "feet"),
  36959. name: "Feral",
  36960. image: {
  36961. source: "./media/characters/daiki/feral.svg",
  36962. extra: 1256/313,
  36963. bottom: 39/1295
  36964. }
  36965. },
  36966. feralHead: {
  36967. height: math.unit(171, "feet"),
  36968. name: "Feral Head",
  36969. image: {
  36970. source: "./media/characters/daiki/feral-head.svg"
  36971. }
  36972. },
  36973. manaDragon: {
  36974. height: math.unit(170, "meters"),
  36975. name: "Mana-dragon",
  36976. image: {
  36977. source: "./media/characters/daiki/mana-dragon.svg",
  36978. extra: 763/420,
  36979. bottom: 97/860
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(5 + 10/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36993. {
  36994. fullyEquippedFront: {
  36995. height: math.unit(3 + 1/12, "feet"),
  36996. weight: math.unit(24, "lb"),
  36997. name: "Fully Equipped (Front)",
  36998. image: {
  36999. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37000. extra: 687/605,
  37001. bottom: 18/705
  37002. }
  37003. },
  37004. fullyEquippedBack: {
  37005. height: math.unit(3 + 1/12, "feet"),
  37006. weight: math.unit(24, "lb"),
  37007. name: "Fully Equipped (Back)",
  37008. image: {
  37009. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37010. extra: 689/590,
  37011. bottom: 18/707
  37012. }
  37013. },
  37014. dailyWear: {
  37015. height: math.unit(3 + 1/12, "feet"),
  37016. weight: math.unit(24, "lb"),
  37017. name: "Daily Wear",
  37018. image: {
  37019. source: "./media/characters/tea-spot/daily-wear.svg",
  37020. extra: 701/620,
  37021. bottom: 21/722
  37022. }
  37023. },
  37024. maidWork: {
  37025. height: math.unit(3 + 1/12, "feet"),
  37026. weight: math.unit(24, "lb"),
  37027. name: "Maid Work",
  37028. image: {
  37029. source: "./media/characters/tea-spot/maid-work.svg",
  37030. extra: 693/609,
  37031. bottom: 15/708
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(3 + 1/12, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37045. {
  37046. front: {
  37047. height: math.unit(175, "cm"),
  37048. weight: math.unit(75, "kg"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/chee/front.svg",
  37052. extra: 1796/1740,
  37053. bottom: 40/1836
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Micro-Micro",
  37060. height: math.unit(1, "nm")
  37061. },
  37062. {
  37063. name: "Micro-erst",
  37064. height: math.unit(1, "micrometer")
  37065. },
  37066. {
  37067. name: "Micro-er",
  37068. height: math.unit(1, "cm")
  37069. },
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(175, "cm"),
  37073. default: true
  37074. },
  37075. {
  37076. name: "Macro",
  37077. height: math.unit(100, "m")
  37078. },
  37079. {
  37080. name: "Macro-er",
  37081. height: math.unit(1, "km")
  37082. },
  37083. {
  37084. name: "Macro-erst",
  37085. height: math.unit(10, "km")
  37086. },
  37087. {
  37088. name: "Macro-Macro",
  37089. height: math.unit(100, "km")
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(11 + 9/12, "feet"),
  37098. weight: math.unit(935, "lb"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/kingsley/front.svg",
  37102. extra: 1803/1674,
  37103. bottom: 127/1930
  37104. }
  37105. },
  37106. frontNude: {
  37107. height: math.unit(11 + 9/12, "feet"),
  37108. weight: math.unit(935, "lb"),
  37109. name: "Front (Nude)",
  37110. image: {
  37111. source: "./media/characters/kingsley/front-nude.svg",
  37112. extra: 1803/1674,
  37113. bottom: 127/1930
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(11 + 9/12, "feet"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37127. {
  37128. side: {
  37129. height: math.unit(9, "feet"),
  37130. name: "Side",
  37131. image: {
  37132. source: "./media/characters/rymel/side.svg",
  37133. extra: 792/469,
  37134. bottom: 121/913
  37135. }
  37136. },
  37137. maw: {
  37138. height: math.unit(2.4, "meters"),
  37139. name: "Maw",
  37140. image: {
  37141. source: "./media/characters/rymel/maw.svg"
  37142. }
  37143. },
  37144. },
  37145. [
  37146. {
  37147. name: "House Drake",
  37148. height: math.unit(2, "feet")
  37149. },
  37150. {
  37151. name: "Reduced",
  37152. height: math.unit(4.5, "feet")
  37153. },
  37154. {
  37155. name: "Normal",
  37156. height: math.unit(9, "feet"),
  37157. default: true
  37158. },
  37159. ]
  37160. ))
  37161. characterMakers.push(() => makeCharacter(
  37162. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37163. {
  37164. front: {
  37165. height: math.unit(1.74, "meters"),
  37166. weight: math.unit(55, "kg"),
  37167. name: "Front",
  37168. image: {
  37169. source: "./media/characters/rubus/front.svg",
  37170. extra: 1894/1742,
  37171. bottom: 44/1938
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(1.74, "meters"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(5 + 2/12, "feet"),
  37188. weight: math.unit(112, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/cassie-kingston/front.svg",
  37192. extra: 1438/1390,
  37193. bottom: 47/1485
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(5 + 2/12, "feet"),
  37201. default: true
  37202. },
  37203. {
  37204. name: "Macro",
  37205. height: math.unit(128, "feet")
  37206. },
  37207. {
  37208. name: "Megamacro",
  37209. height: math.unit(2.56, "miles")
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(7, "feet"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/fox/front.svg",
  37221. extra: 1798/1703,
  37222. bottom: 55/1853
  37223. }
  37224. },
  37225. back: {
  37226. height: math.unit(7, "feet"),
  37227. name: "Back",
  37228. image: {
  37229. source: "./media/characters/fox/back.svg",
  37230. extra: 1748/1649,
  37231. bottom: 32/1780
  37232. }
  37233. },
  37234. head: {
  37235. height: math.unit(1.95, "feet"),
  37236. name: "Head",
  37237. image: {
  37238. source: "./media/characters/fox/head.svg"
  37239. }
  37240. },
  37241. dick: {
  37242. height: math.unit(1.33, "feet"),
  37243. name: "Dick",
  37244. image: {
  37245. source: "./media/characters/fox/dick.svg"
  37246. }
  37247. },
  37248. foot: {
  37249. height: math.unit(1, "feet"),
  37250. name: "Foot",
  37251. image: {
  37252. source: "./media/characters/fox/foot.svg"
  37253. }
  37254. },
  37255. paw: {
  37256. height: math.unit(0.92, "feet"),
  37257. name: "Paw",
  37258. image: {
  37259. source: "./media/characters/fox/paw.svg"
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Small",
  37266. height: math.unit(3, "inches")
  37267. },
  37268. {
  37269. name: "\"Realistic\"",
  37270. height: math.unit(7, "feet")
  37271. },
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(150, "feet"),
  37275. default: true
  37276. },
  37277. {
  37278. name: "BIG",
  37279. height: math.unit(1200, "feet")
  37280. },
  37281. {
  37282. name: "👀",
  37283. height: math.unit(5, "miles")
  37284. },
  37285. {
  37286. name: "👀👀👀",
  37287. height: math.unit(64, "miles")
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(625, "feet"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/asonja-rossa/front.svg",
  37299. extra: 1833/1686,
  37300. bottom: 24/1857
  37301. }
  37302. },
  37303. back: {
  37304. height: math.unit(625, "feet"),
  37305. name: "Back",
  37306. image: {
  37307. source: "./media/characters/asonja-rossa/back.svg",
  37308. extra: 1852/1753,
  37309. bottom: 26/1878
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Macro",
  37316. height: math.unit(625, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37323. {
  37324. side: {
  37325. height: math.unit(8, "feet"),
  37326. name: "Side",
  37327. image: {
  37328. source: "./media/characters/rezukii/side.svg",
  37329. extra: 979/542,
  37330. bottom: 87/1066
  37331. }
  37332. },
  37333. sitting: {
  37334. height: math.unit(14.6, "feet"),
  37335. name: "Sitting",
  37336. image: {
  37337. source: "./media/characters/rezukii/sitting.svg",
  37338. extra: 1023/813,
  37339. bottom: 45/1068
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Tiny",
  37346. height: math.unit(2, "feet")
  37347. },
  37348. {
  37349. name: "Smol",
  37350. height: math.unit(4, "feet")
  37351. },
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(8, "feet"),
  37355. default: true
  37356. },
  37357. {
  37358. name: "Big",
  37359. height: math.unit(12, "feet")
  37360. },
  37361. {
  37362. name: "Macro",
  37363. height: math.unit(30, "feet")
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37369. {
  37370. front: {
  37371. height: math.unit(14, "feet"),
  37372. weight: math.unit(9.5, "tonnes"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/dawnheart/front.svg",
  37376. extra: 2792/2675,
  37377. bottom: 64/2856
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(14, "feet"),
  37385. default: true
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37391. {
  37392. front: {
  37393. height: math.unit(1.7, "m"),
  37394. name: "Front",
  37395. image: {
  37396. source: "./media/characters/gladi/front.svg",
  37397. extra: 1460/1362,
  37398. bottom: 19/1479
  37399. }
  37400. },
  37401. back: {
  37402. height: math.unit(1.7, "m"),
  37403. name: "Back",
  37404. image: {
  37405. source: "./media/characters/gladi/back.svg",
  37406. extra: 1459/1357,
  37407. bottom: 12/1471
  37408. }
  37409. },
  37410. feral: {
  37411. height: math.unit(2.05, "m"),
  37412. name: "Feral",
  37413. image: {
  37414. source: "./media/characters/gladi/feral.svg",
  37415. extra: 821/557,
  37416. bottom: 91/912
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Shortest",
  37423. height: math.unit(70, "cm")
  37424. },
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(1.7, "m")
  37428. },
  37429. {
  37430. name: "Macro",
  37431. height: math.unit(10, "m"),
  37432. default: true
  37433. },
  37434. {
  37435. name: "Tallest",
  37436. height: math.unit(200, "m")
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(5 + 7/12, "feet"),
  37445. weight: math.unit(2, "tons"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/erdno/front.svg",
  37449. extra: 1234/1129,
  37450. bottom: 35/1269
  37451. }
  37452. },
  37453. angled: {
  37454. height: math.unit(5 + 7/12, "feet"),
  37455. weight: math.unit(2, "tons"),
  37456. name: "Angled",
  37457. image: {
  37458. source: "./media/characters/erdno/angled.svg",
  37459. extra: 1185/1139,
  37460. bottom: 36/1221
  37461. }
  37462. },
  37463. side: {
  37464. height: math.unit(5 + 7/12, "feet"),
  37465. weight: math.unit(2, "tons"),
  37466. name: "Side",
  37467. image: {
  37468. source: "./media/characters/erdno/side.svg",
  37469. extra: 1191/1144,
  37470. bottom: 40/1231
  37471. }
  37472. },
  37473. back: {
  37474. height: math.unit(5 + 7/12, "feet"),
  37475. weight: math.unit(2, "tons"),
  37476. name: "Back",
  37477. image: {
  37478. source: "./media/characters/erdno/back.svg",
  37479. extra: 1202/1146,
  37480. bottom: 17/1219
  37481. }
  37482. },
  37483. frontNsfw: {
  37484. height: math.unit(5 + 7/12, "feet"),
  37485. weight: math.unit(2, "tons"),
  37486. name: "Front (NSFW)",
  37487. image: {
  37488. source: "./media/characters/erdno/front-nsfw.svg",
  37489. extra: 1234/1129,
  37490. bottom: 35/1269
  37491. }
  37492. },
  37493. angledNsfw: {
  37494. height: math.unit(5 + 7/12, "feet"),
  37495. weight: math.unit(2, "tons"),
  37496. name: "Angled (NSFW)",
  37497. image: {
  37498. source: "./media/characters/erdno/angled-nsfw.svg",
  37499. extra: 1185/1139,
  37500. bottom: 36/1221
  37501. }
  37502. },
  37503. sideNsfw: {
  37504. height: math.unit(5 + 7/12, "feet"),
  37505. weight: math.unit(2, "tons"),
  37506. name: "Side (NSFW)",
  37507. image: {
  37508. source: "./media/characters/erdno/side-nsfw.svg",
  37509. extra: 1191/1144,
  37510. bottom: 40/1231
  37511. }
  37512. },
  37513. backNsfw: {
  37514. height: math.unit(5 + 7/12, "feet"),
  37515. weight: math.unit(2, "tons"),
  37516. name: "Back (NSFW)",
  37517. image: {
  37518. source: "./media/characters/erdno/back-nsfw.svg",
  37519. extra: 1202/1146,
  37520. bottom: 17/1219
  37521. }
  37522. },
  37523. frontHyper: {
  37524. height: math.unit(5 + 7/12, "feet"),
  37525. weight: math.unit(2, "tons"),
  37526. name: "Front (Hyper)",
  37527. image: {
  37528. source: "./media/characters/erdno/front-hyper.svg",
  37529. extra: 1298/1136,
  37530. bottom: 35/1333
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Normal",
  37537. height: math.unit(5 + 7/12, "feet"),
  37538. default: true
  37539. },
  37540. {
  37541. name: "Big",
  37542. height: math.unit(5.7, "meters")
  37543. },
  37544. {
  37545. name: "Macro",
  37546. height: math.unit(5.7, "kilometers")
  37547. },
  37548. {
  37549. name: "Megamacro",
  37550. height: math.unit(5.7, "earths")
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(5 + 10/12, "feet"),
  37559. weight: math.unit(150, "lb"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/jamie/front.svg",
  37563. extra: 1908/1768,
  37564. bottom: 19/1927
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Minimum",
  37571. height: math.unit(2, "cm")
  37572. },
  37573. {
  37574. name: "Micro",
  37575. height: math.unit(3, "inches")
  37576. },
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(5 + 10/12, "feet"),
  37580. default: true
  37581. },
  37582. {
  37583. name: "Macro",
  37584. height: math.unit(150, "feet")
  37585. },
  37586. {
  37587. name: "Megamacro",
  37588. height: math.unit(10000, "m")
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(2, "meters"),
  37597. weight: math.unit(100, "kg"),
  37598. name: "Front",
  37599. image: {
  37600. source: "./media/characters/shiron/front.svg",
  37601. extra: 2103/1985,
  37602. bottom: 98/2201
  37603. }
  37604. },
  37605. back: {
  37606. height: math.unit(2, "meters"),
  37607. weight: math.unit(100, "kg"),
  37608. name: "Back",
  37609. image: {
  37610. source: "./media/characters/shiron/back.svg",
  37611. extra: 2110/2015,
  37612. bottom: 89/2199
  37613. }
  37614. },
  37615. hand: {
  37616. height: math.unit(0.96, "feet"),
  37617. name: "Hand",
  37618. image: {
  37619. source: "./media/characters/shiron/hand.svg"
  37620. }
  37621. },
  37622. foot: {
  37623. height: math.unit(1.464, "feet"),
  37624. name: "Foot",
  37625. image: {
  37626. source: "./media/characters/shiron/foot.svg"
  37627. }
  37628. },
  37629. },
  37630. [
  37631. {
  37632. name: "Normal",
  37633. height: math.unit(2, "meters")
  37634. },
  37635. {
  37636. name: "Macro",
  37637. height: math.unit(500, "meters"),
  37638. default: true
  37639. },
  37640. {
  37641. name: "Megamacro",
  37642. height: math.unit(20, "km")
  37643. },
  37644. ]
  37645. ))
  37646. characterMakers.push(() => makeCharacter(
  37647. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37648. {
  37649. front: {
  37650. height: math.unit(6, "feet"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/sam/front.svg",
  37654. extra: 849/826,
  37655. bottom: 19/868
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(6, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(8 + 4/12, "feet"),
  37672. weight: math.unit(122, "kg"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/namori-kurogawa/front.svg",
  37676. extra: 1894/1576,
  37677. bottom: 34/1928
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(8 + 4/12, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(9, "feet"),
  37694. weight: math.unit(621, "lb"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/unmru/front.svg",
  37698. extra: 1853/1747,
  37699. bottom: 73/1926
  37700. }
  37701. },
  37702. side: {
  37703. height: math.unit(9, "feet"),
  37704. weight: math.unit(621, "lb"),
  37705. name: "Side",
  37706. image: {
  37707. source: "./media/characters/unmru/side.svg",
  37708. extra: 1781/1671,
  37709. bottom: 127/1908
  37710. }
  37711. },
  37712. back: {
  37713. height: math.unit(9, "feet"),
  37714. weight: math.unit(621, "lb"),
  37715. name: "Back",
  37716. image: {
  37717. source: "./media/characters/unmru/back.svg",
  37718. extra: 1894/1765,
  37719. bottom: 75/1969
  37720. }
  37721. },
  37722. dick: {
  37723. height: math.unit(3, "feet"),
  37724. weight: math.unit(35, "lb"),
  37725. name: "Dick",
  37726. image: {
  37727. source: "./media/characters/unmru/dick.svg"
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(9, "feet")
  37735. },
  37736. {
  37737. name: "Natural",
  37738. height: math.unit(27, "feet"),
  37739. default: true
  37740. },
  37741. {
  37742. name: "Giant",
  37743. height: math.unit(90, "feet")
  37744. },
  37745. {
  37746. name: "Kaiju",
  37747. height: math.unit(270, "feet")
  37748. },
  37749. {
  37750. name: "Macro",
  37751. height: math.unit(900, "feet")
  37752. },
  37753. {
  37754. name: "Macro+",
  37755. height: math.unit(2700, "feet")
  37756. },
  37757. {
  37758. name: "Megamacro",
  37759. height: math.unit(9000, "feet")
  37760. },
  37761. {
  37762. name: "City-Crushing",
  37763. height: math.unit(27000, "feet")
  37764. },
  37765. {
  37766. name: "Mountain-Mashing",
  37767. height: math.unit(90000, "feet")
  37768. },
  37769. {
  37770. name: "Earth-Eclipsing",
  37771. height: math.unit(2.7e8, "feet")
  37772. },
  37773. {
  37774. name: "Sol-Swallowing",
  37775. height: math.unit(9e10, "feet")
  37776. },
  37777. {
  37778. name: "Majoris-Munching",
  37779. height: math.unit(2.7e13, "feet")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37785. {
  37786. front: {
  37787. height: math.unit(1, "inch"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/squeaks-mouse/front.svg",
  37791. extra: 352/308,
  37792. bottom: 25/377
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Micro",
  37799. height: math.unit(1, "inch"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37806. {
  37807. side: {
  37808. height: math.unit(35, "feet"),
  37809. name: "Side",
  37810. image: {
  37811. source: "./media/characters/sayko/side.svg",
  37812. extra: 1697/1021,
  37813. bottom: 82/1779
  37814. }
  37815. },
  37816. head: {
  37817. height: math.unit(16, "feet"),
  37818. name: "Head",
  37819. image: {
  37820. source: "./media/characters/sayko/head.svg"
  37821. }
  37822. },
  37823. forepaw: {
  37824. height: math.unit(7.85, "feet"),
  37825. name: "Forepaw",
  37826. image: {
  37827. source: "./media/characters/sayko/forepaw.svg"
  37828. }
  37829. },
  37830. hindpaw: {
  37831. height: math.unit(8.8, "feet"),
  37832. name: "Hindpaw",
  37833. image: {
  37834. source: "./media/characters/sayko/hindpaw.svg"
  37835. }
  37836. },
  37837. },
  37838. [
  37839. {
  37840. name: "Normal",
  37841. height: math.unit(35, "feet"),
  37842. default: true
  37843. },
  37844. {
  37845. name: "Colossus",
  37846. height: math.unit(100, "meters")
  37847. },
  37848. {
  37849. name: "\"Small\" Deity",
  37850. height: math.unit(1, "km")
  37851. },
  37852. {
  37853. name: "\"Large\" Deity",
  37854. height: math.unit(15, "km")
  37855. },
  37856. ]
  37857. ))
  37858. characterMakers.push(() => makeCharacter(
  37859. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37860. {
  37861. front: {
  37862. height: math.unit(6, "feet"),
  37863. weight: math.unit(250, "lb"),
  37864. name: "Front",
  37865. image: {
  37866. source: "./media/characters/mukiro/front.svg",
  37867. extra: 1368/1310,
  37868. bottom: 34/1402
  37869. }
  37870. },
  37871. },
  37872. [
  37873. {
  37874. name: "Normal",
  37875. height: math.unit(6, "feet"),
  37876. default: true
  37877. },
  37878. ]
  37879. ))
  37880. characterMakers.push(() => makeCharacter(
  37881. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37882. {
  37883. front: {
  37884. height: math.unit(12 + 4/12, "feet"),
  37885. name: "Front",
  37886. image: {
  37887. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37888. extra: 1346/1311,
  37889. bottom: 65/1411
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Base",
  37896. height: math.unit(12 + 4/12, "feet"),
  37897. default: true
  37898. },
  37899. {
  37900. name: "Macro",
  37901. height: math.unit(150, "feet")
  37902. },
  37903. {
  37904. name: "Mega",
  37905. height: math.unit(2, "miles")
  37906. },
  37907. {
  37908. name: "Demi God",
  37909. height: math.unit(4, "AU")
  37910. },
  37911. {
  37912. name: "God Size",
  37913. height: math.unit(1, "universe")
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(3 + 3/12, "feet"),
  37922. weight: math.unit(88, "lb"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/trey/front.svg",
  37926. extra: 1815/1509,
  37927. bottom: 60/1875
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(3 + 3/12, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37941. {
  37942. front: {
  37943. height: math.unit(4, "meters"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/adelonda/front.svg",
  37947. extra: 1077/982,
  37948. bottom: 39/1116
  37949. }
  37950. },
  37951. back: {
  37952. height: math.unit(4, "meters"),
  37953. name: "Back",
  37954. image: {
  37955. source: "./media/characters/adelonda/back.svg",
  37956. extra: 1105/1003,
  37957. bottom: 25/1130
  37958. }
  37959. },
  37960. feral: {
  37961. height: math.unit(40/1.5, "meters"),
  37962. name: "Feral",
  37963. image: {
  37964. source: "./media/characters/adelonda/feral.svg",
  37965. extra: 597/271,
  37966. bottom: 387/984
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(4, "meters"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(8 + 4/12, "feet"),
  37983. weight: math.unit(670, "lb"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/acadiel/front.svg",
  37987. extra: 1901/1595,
  37988. bottom: 142/2043
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(8 + 4/12, "feet"),
  37996. default: true
  37997. },
  37998. {
  37999. name: "Macro",
  38000. height: math.unit(200, "feet")
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(6 + 2/12, "feet"),
  38009. weight: math.unit(185, "lb"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/kayne-ein/front.svg",
  38013. extra: 1780/1560,
  38014. bottom: 81/1861
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(6 + 2/12, "feet"),
  38022. default: true
  38023. },
  38024. {
  38025. name: "Transformation Stage",
  38026. height: math.unit(15, "feet")
  38027. },
  38028. {
  38029. name: "Macro",
  38030. height: math.unit(150, "feet")
  38031. },
  38032. {
  38033. name: "Earth's Shadow",
  38034. height: math.unit(6200, "miles")
  38035. },
  38036. {
  38037. name: "Universal Demon",
  38038. height: math.unit(28e9, "parsecs")
  38039. },
  38040. {
  38041. name: "Multiverse God",
  38042. height: math.unit(3, "multiverses")
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(5 + 5/12, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/fawn/front.svg",
  38054. extra: 1873/1731,
  38055. bottom: 95/1968
  38056. }
  38057. },
  38058. back: {
  38059. height: math.unit(5 + 5/12, "feet"),
  38060. name: "Back",
  38061. image: {
  38062. source: "./media/characters/fawn/back.svg",
  38063. extra: 1813/1700,
  38064. bottom: 14/1827
  38065. }
  38066. },
  38067. hoof: {
  38068. height: math.unit(1.45, "feet"),
  38069. name: "Hoof",
  38070. image: {
  38071. source: "./media/characters/fawn/hoof.svg"
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(5 + 5/12, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(2 + 5/12, "feet"),
  38088. name: "Front",
  38089. image: {
  38090. source: "./media/characters/orion/front.svg",
  38091. extra: 1366/1304,
  38092. bottom: 43/1409
  38093. }
  38094. },
  38095. paw: {
  38096. height: math.unit(0.52, "feet"),
  38097. name: "Paw",
  38098. image: {
  38099. source: "./media/characters/orion/paw.svg"
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(2 + 5/12, "feet"),
  38107. default: true
  38108. },
  38109. ]
  38110. ))
  38111. characterMakers.push(() => makeCharacter(
  38112. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38113. {
  38114. front: {
  38115. height: math.unit(5 + 10/12, "feet"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/vera/front.svg",
  38119. extra: 1680/1575,
  38120. bottom: 49/1729
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(5 + 10/12, "feet"),
  38125. name: "Back",
  38126. image: {
  38127. source: "./media/characters/vera/back.svg",
  38128. extra: 1700/1588,
  38129. bottom: 18/1718
  38130. }
  38131. },
  38132. arcanine: {
  38133. height: math.unit(6 + 8/12, "feet"),
  38134. name: "Arcanine",
  38135. image: {
  38136. source: "./media/characters/vera/arcanine.svg",
  38137. extra: 1590/1511,
  38138. bottom: 71/1661
  38139. }
  38140. },
  38141. maw: {
  38142. height: math.unit(0.82, "feet"),
  38143. name: "Maw",
  38144. image: {
  38145. source: "./media/characters/vera/maw.svg"
  38146. }
  38147. },
  38148. mawArcanine: {
  38149. height: math.unit(0.97, "feet"),
  38150. name: "Maw (Arcanine)",
  38151. image: {
  38152. source: "./media/characters/vera/maw-arcanine.svg"
  38153. }
  38154. },
  38155. paw: {
  38156. height: math.unit(0.75, "feet"),
  38157. name: "Paw",
  38158. image: {
  38159. source: "./media/characters/vera/paw.svg"
  38160. }
  38161. },
  38162. pawprint: {
  38163. height: math.unit(0.52, "feet"),
  38164. name: "Pawprint",
  38165. image: {
  38166. source: "./media/characters/vera/pawprint.svg"
  38167. }
  38168. },
  38169. },
  38170. [
  38171. {
  38172. name: "Normal",
  38173. height: math.unit(5 + 10/12, "feet"),
  38174. default: true
  38175. },
  38176. {
  38177. name: "Macro",
  38178. height: math.unit(75, "feet")
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(4, "feet"),
  38187. weight: math.unit(40, "lb"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/orvan-rabbit/front.svg",
  38191. extra: 1896/1642,
  38192. bottom: 29/1925
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(4, "feet"),
  38200. default: true
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(6, "feet"),
  38209. weight: math.unit(168, "lb"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/lisa/front.svg",
  38213. extra: 2065/1867,
  38214. bottom: 46/2111
  38215. }
  38216. },
  38217. back: {
  38218. height: math.unit(6, "feet"),
  38219. weight: math.unit(168, "lb"),
  38220. name: "Back",
  38221. image: {
  38222. source: "./media/characters/lisa/back.svg",
  38223. extra: 1982/1838,
  38224. bottom: 29/2011
  38225. }
  38226. },
  38227. maw: {
  38228. height: math.unit(0.81, "feet"),
  38229. name: "Maw",
  38230. image: {
  38231. source: "./media/characters/lisa/maw.svg"
  38232. }
  38233. },
  38234. paw: {
  38235. height: math.unit(0.9, "feet"),
  38236. name: "Paw",
  38237. image: {
  38238. source: "./media/characters/lisa/paw.svg"
  38239. }
  38240. },
  38241. caribousune: {
  38242. height: math.unit(7 + 2/12, "feet"),
  38243. weight: math.unit(268, "lb"),
  38244. name: "Caribousune",
  38245. image: {
  38246. source: "./media/characters/lisa/caribousune.svg",
  38247. extra: 1843/1633,
  38248. bottom: 29/1872
  38249. }
  38250. },
  38251. frontCaribousune: {
  38252. height: math.unit(7 + 2/12, "feet"),
  38253. weight: math.unit(268, "lb"),
  38254. name: "Front (Caribousune)",
  38255. image: {
  38256. source: "./media/characters/lisa/front-caribousune.svg",
  38257. extra: 1818/1638,
  38258. bottom: 52/1870
  38259. }
  38260. },
  38261. sideCaribousune: {
  38262. height: math.unit(7 + 2/12, "feet"),
  38263. weight: math.unit(268, "lb"),
  38264. name: "Side (Caribousune)",
  38265. image: {
  38266. source: "./media/characters/lisa/side-caribousune.svg",
  38267. extra: 1851/1635,
  38268. bottom: 16/1867
  38269. }
  38270. },
  38271. backCaribousune: {
  38272. height: math.unit(7 + 2/12, "feet"),
  38273. weight: math.unit(268, "lb"),
  38274. name: "Back (Caribousune)",
  38275. image: {
  38276. source: "./media/characters/lisa/back-caribousune.svg",
  38277. extra: 1801/1604,
  38278. bottom: 44/1845
  38279. }
  38280. },
  38281. caribou: {
  38282. height: math.unit(7 + 2/12, "feet"),
  38283. weight: math.unit(268, "lb"),
  38284. name: "Caribou",
  38285. image: {
  38286. source: "./media/characters/lisa/caribou.svg",
  38287. extra: 1843/1633,
  38288. bottom: 29/1872
  38289. }
  38290. },
  38291. frontCaribou: {
  38292. height: math.unit(7 + 2/12, "feet"),
  38293. weight: math.unit(268, "lb"),
  38294. name: "Front (Caribou)",
  38295. image: {
  38296. source: "./media/characters/lisa/front-caribou.svg",
  38297. extra: 1818/1638,
  38298. bottom: 52/1870
  38299. }
  38300. },
  38301. sideCaribou: {
  38302. height: math.unit(7 + 2/12, "feet"),
  38303. weight: math.unit(268, "lb"),
  38304. name: "Side (Caribou)",
  38305. image: {
  38306. source: "./media/characters/lisa/side-caribou.svg",
  38307. extra: 1851/1635,
  38308. bottom: 16/1867
  38309. }
  38310. },
  38311. backCaribou: {
  38312. height: math.unit(7 + 2/12, "feet"),
  38313. weight: math.unit(268, "lb"),
  38314. name: "Back (Caribou)",
  38315. image: {
  38316. source: "./media/characters/lisa/back-caribou.svg",
  38317. extra: 1801/1604,
  38318. bottom: 44/1845
  38319. }
  38320. },
  38321. mawCaribou: {
  38322. height: math.unit(1.45, "feet"),
  38323. name: "Maw (Caribou)",
  38324. image: {
  38325. source: "./media/characters/lisa/maw-caribou.svg"
  38326. }
  38327. },
  38328. mawCaribousune: {
  38329. height: math.unit(1.45, "feet"),
  38330. name: "Maw (Caribousune)",
  38331. image: {
  38332. source: "./media/characters/lisa/maw-caribousune.svg"
  38333. }
  38334. },
  38335. pawCaribousune: {
  38336. height: math.unit(1.61, "feet"),
  38337. name: "Paw (Caribou)",
  38338. image: {
  38339. source: "./media/characters/lisa/paw-caribousune.svg"
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(6, "feet")
  38347. },
  38348. {
  38349. name: "God Size",
  38350. height: math.unit(72, "feet"),
  38351. default: true
  38352. },
  38353. {
  38354. name: "Towering",
  38355. height: math.unit(288, "feet")
  38356. },
  38357. {
  38358. name: "City Size",
  38359. height: math.unit(48384, "feet")
  38360. },
  38361. {
  38362. name: "Continental",
  38363. height: math.unit(4200, "miles")
  38364. },
  38365. {
  38366. name: "Planet Eater",
  38367. height: math.unit(42, "earths")
  38368. },
  38369. {
  38370. name: "Star Swallower",
  38371. height: math.unit(42, "solarradii")
  38372. },
  38373. {
  38374. name: "System Swallower",
  38375. height: math.unit(84000, "AU")
  38376. },
  38377. {
  38378. name: "Galaxy Gobbler",
  38379. height: math.unit(42, "galaxies")
  38380. },
  38381. {
  38382. name: "Universe Devourer",
  38383. height: math.unit(42, "universes")
  38384. },
  38385. {
  38386. name: "Multiverse Muncher",
  38387. height: math.unit(42, "multiverses")
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(36, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/shadow-rat/front.svg",
  38399. extra: 1845/1758,
  38400. bottom: 83/1928
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Macro",
  38407. height: math.unit(36, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38414. {
  38415. side: {
  38416. height: math.unit(8, "feet"),
  38417. weight: math.unit(2630, "lb"),
  38418. name: "Side",
  38419. image: {
  38420. source: "./media/characters/torallia/side.svg",
  38421. extra: 2164/2021,
  38422. bottom: 371/2535
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Mortal Interaction",
  38429. height: math.unit(8, "feet")
  38430. },
  38431. {
  38432. name: "Natural",
  38433. height: math.unit(24, "feet"),
  38434. default: true
  38435. },
  38436. {
  38437. name: "Giant",
  38438. height: math.unit(80, "feet")
  38439. },
  38440. {
  38441. name: "Kaiju",
  38442. height: math.unit(240, "feet")
  38443. },
  38444. {
  38445. name: "Macro",
  38446. height: math.unit(800, "feet")
  38447. },
  38448. {
  38449. name: "Macro+",
  38450. height: math.unit(2400, "feet")
  38451. },
  38452. {
  38453. name: "Macro++",
  38454. height: math.unit(8000, "feet")
  38455. },
  38456. {
  38457. name: "City-Crushing",
  38458. height: math.unit(24000, "feet")
  38459. },
  38460. {
  38461. name: "Mountain-Mashing",
  38462. height: math.unit(80000, "feet")
  38463. },
  38464. {
  38465. name: "District Demolisher",
  38466. height: math.unit(240000, "feet")
  38467. },
  38468. {
  38469. name: "Tri-County Terror",
  38470. height: math.unit(800000, "feet")
  38471. },
  38472. {
  38473. name: "State Smasher",
  38474. height: math.unit(2.4e6, "feet")
  38475. },
  38476. {
  38477. name: "Nation Nemesis",
  38478. height: math.unit(8e6, "feet")
  38479. },
  38480. {
  38481. name: "Continent Cracker",
  38482. height: math.unit(2.4e7, "feet")
  38483. },
  38484. {
  38485. name: "Planet-Pillaging",
  38486. height: math.unit(8e7, "feet")
  38487. },
  38488. {
  38489. name: "Earth-Eclipsing",
  38490. height: math.unit(2.4e8, "feet")
  38491. },
  38492. {
  38493. name: "Jovian-Jostling",
  38494. height: math.unit(8e8, "feet")
  38495. },
  38496. {
  38497. name: "Gas Giant Gulper",
  38498. height: math.unit(2.4e9, "feet")
  38499. },
  38500. {
  38501. name: "Astral Annihilator",
  38502. height: math.unit(8e9, "feet")
  38503. },
  38504. {
  38505. name: "Celestial Conqueror",
  38506. height: math.unit(2.4e10, "feet")
  38507. },
  38508. {
  38509. name: "Sol-Swallowing",
  38510. height: math.unit(8e10, "feet")
  38511. },
  38512. {
  38513. name: "Hunter of the Heavens",
  38514. height: math.unit(2.4e13, "feet")
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(6 + 8/12, "feet"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/rebecca-pawlson/front.svg",
  38526. extra: 1737/1596,
  38527. bottom: 107/1844
  38528. }
  38529. },
  38530. back: {
  38531. height: math.unit(6 + 8/12, "feet"),
  38532. name: "Back",
  38533. image: {
  38534. source: "./media/characters/rebecca-pawlson/back.svg",
  38535. extra: 1702/1523,
  38536. bottom: 86/1788
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(6 + 8/12, "feet")
  38544. },
  38545. {
  38546. name: "Mini Macro",
  38547. height: math.unit(10, "feet"),
  38548. default: true
  38549. },
  38550. {
  38551. name: "Macro",
  38552. height: math.unit(100, "feet")
  38553. },
  38554. {
  38555. name: "Mega Macro",
  38556. height: math.unit(2500, "feet")
  38557. },
  38558. {
  38559. name: "Giga Macro",
  38560. height: math.unit(50, "miles")
  38561. },
  38562. ]
  38563. ))
  38564. characterMakers.push(() => makeCharacter(
  38565. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38566. {
  38567. front: {
  38568. height: math.unit(7 + 6/12, "feet"),
  38569. weight: math.unit(600, "lb"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/moxie-nova/front.svg",
  38573. extra: 1734/1652,
  38574. bottom: 41/1775
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(7 + 6/12, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38588. {
  38589. goat: {
  38590. height: math.unit(4, "feet"),
  38591. weight: math.unit(180, "lb"),
  38592. name: "Goat",
  38593. image: {
  38594. source: "./media/characters/tiffany/goat.svg",
  38595. extra: 1845/1595,
  38596. bottom: 106/1951
  38597. }
  38598. },
  38599. front: {
  38600. height: math.unit(5, "feet"),
  38601. weight: math.unit(150, "lb"),
  38602. name: "Foxcoon",
  38603. image: {
  38604. source: "./media/characters/tiffany/foxcoon.svg",
  38605. extra: 1941/1845,
  38606. bottom: 58/1999
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(5, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(8, "feet"),
  38623. weight: math.unit(300, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/raxinath/front.svg",
  38627. extra: 1407/1309,
  38628. bottom: 39/1446
  38629. }
  38630. },
  38631. back: {
  38632. height: math.unit(8, "feet"),
  38633. weight: math.unit(300, "lb"),
  38634. name: "Back",
  38635. image: {
  38636. source: "./media/characters/raxinath/back.svg",
  38637. extra: 1405/1315,
  38638. bottom: 9/1414
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Speck",
  38645. height: math.unit(0.5, "nm")
  38646. },
  38647. {
  38648. name: "Micro",
  38649. height: math.unit(3, "inches")
  38650. },
  38651. {
  38652. name: "Kobold",
  38653. height: math.unit(3, "feet")
  38654. },
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(8, "feet"),
  38658. default: true
  38659. },
  38660. {
  38661. name: "Giant",
  38662. height: math.unit(50, "feet")
  38663. },
  38664. {
  38665. name: "Macro",
  38666. height: math.unit(1000, "feet")
  38667. },
  38668. {
  38669. name: "Megamacro",
  38670. height: math.unit(1, "mile")
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(10, "feet"),
  38679. weight: math.unit(1442, "lb"),
  38680. name: "Front",
  38681. image: {
  38682. source: "./media/characters/mal-dragon/front.svg",
  38683. extra: 1515/1444,
  38684. bottom: 113/1628
  38685. }
  38686. },
  38687. back: {
  38688. height: math.unit(10, "feet"),
  38689. weight: math.unit(1442, "lb"),
  38690. name: "Back",
  38691. image: {
  38692. source: "./media/characters/mal-dragon/back.svg",
  38693. extra: 1527/1434,
  38694. bottom: 25/1552
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Mortal Interaction",
  38701. height: math.unit(10, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Large",
  38706. height: math.unit(30, "feet")
  38707. },
  38708. {
  38709. name: "Kaiju",
  38710. height: math.unit(300, "feet")
  38711. },
  38712. {
  38713. name: "Megamacro",
  38714. height: math.unit(10000, "feet")
  38715. },
  38716. {
  38717. name: "Continent Cracker",
  38718. height: math.unit(30000000, "feet")
  38719. },
  38720. {
  38721. name: "Sol-Swallowing",
  38722. height: math.unit(1e11, "feet")
  38723. },
  38724. {
  38725. name: "Light Universal",
  38726. height: math.unit(5, "universes")
  38727. },
  38728. {
  38729. name: "Universe Atoms",
  38730. height: math.unit(1.829e9, "universes")
  38731. },
  38732. {
  38733. name: "Light Multiversal",
  38734. height: math.unit(5, "multiverses")
  38735. },
  38736. {
  38737. name: "Multiverse Atoms",
  38738. height: math.unit(1.829e9, "multiverses")
  38739. },
  38740. {
  38741. name: "Fabric of Time",
  38742. height: math.unit(1e262, "multiverses")
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(9, "feet"),
  38751. weight: math.unit(1050, "lb"),
  38752. name: "Front",
  38753. image: {
  38754. source: "./media/characters/tabitha/front.svg",
  38755. extra: 2083/1994,
  38756. bottom: 68/2151
  38757. }
  38758. },
  38759. },
  38760. [
  38761. {
  38762. name: "Baseline",
  38763. height: math.unit(9, "feet"),
  38764. default: true
  38765. },
  38766. {
  38767. name: "Giant",
  38768. height: math.unit(90, "feet")
  38769. },
  38770. {
  38771. name: "Macro",
  38772. height: math.unit(900, "feet")
  38773. },
  38774. {
  38775. name: "Megamacro",
  38776. height: math.unit(9000, "feet")
  38777. },
  38778. {
  38779. name: "City-Crushing",
  38780. height: math.unit(27000, "feet")
  38781. },
  38782. {
  38783. name: "Mountain-Mashing",
  38784. height: math.unit(90000, "feet")
  38785. },
  38786. {
  38787. name: "Nation Nemesis",
  38788. height: math.unit(9e6, "feet")
  38789. },
  38790. {
  38791. name: "Continent Cracker",
  38792. height: math.unit(27e6, "feet")
  38793. },
  38794. {
  38795. name: "Earth-Eclipsing",
  38796. height: math.unit(2.7e8, "feet")
  38797. },
  38798. {
  38799. name: "Gas Giant Gulper",
  38800. height: math.unit(2.7e9, "feet")
  38801. },
  38802. {
  38803. name: "Sol-Swallowing",
  38804. height: math.unit(9e10, "feet")
  38805. },
  38806. {
  38807. name: "Galaxy Gulper",
  38808. height: math.unit(9, "galaxies")
  38809. },
  38810. {
  38811. name: "Cosmos Churner",
  38812. height: math.unit(9, "universes")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(160, "cm"),
  38821. weight: math.unit(55, "kg"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/tow/front.svg",
  38825. extra: 1751/1722,
  38826. bottom: 74/1825
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Norm",
  38833. height: math.unit(160, "cm")
  38834. },
  38835. {
  38836. name: "Casual",
  38837. height: math.unit(3200, "m"),
  38838. default: true
  38839. },
  38840. {
  38841. name: "Show-Off",
  38842. height: math.unit(160, "km")
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38848. {
  38849. front: {
  38850. height: math.unit(7 + 11/12, "feet"),
  38851. weight: math.unit(342.8, "lb"),
  38852. name: "Front",
  38853. image: {
  38854. source: "./media/characters/vivian-orca-dragon/front.svg",
  38855. extra: 1890/1865,
  38856. bottom: 28/1918
  38857. }
  38858. },
  38859. },
  38860. [
  38861. {
  38862. name: "Micro",
  38863. height: math.unit(5, "inches")
  38864. },
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(7 + 11/12, "feet"),
  38868. default: true
  38869. },
  38870. {
  38871. name: "Macro",
  38872. height: math.unit(395 + 7/12, "feet")
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38878. {
  38879. side: {
  38880. height: math.unit(10, "feet"),
  38881. weight: math.unit(1442, "lb"),
  38882. name: "Side",
  38883. image: {
  38884. source: "./media/characters/lotherakon/side.svg",
  38885. extra: 1604/1497,
  38886. bottom: 89/1693
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Mortal Interaction",
  38893. height: math.unit(10, "feet")
  38894. },
  38895. {
  38896. name: "Large",
  38897. height: math.unit(30, "feet"),
  38898. default: true
  38899. },
  38900. {
  38901. name: "Giant",
  38902. height: math.unit(100, "feet")
  38903. },
  38904. {
  38905. name: "Kaiju",
  38906. height: math.unit(300, "feet")
  38907. },
  38908. {
  38909. name: "Macro",
  38910. height: math.unit(1000, "feet")
  38911. },
  38912. {
  38913. name: "Macro+",
  38914. height: math.unit(3000, "feet")
  38915. },
  38916. {
  38917. name: "Megamacro",
  38918. height: math.unit(10000, "feet")
  38919. },
  38920. {
  38921. name: "City-Crushing",
  38922. height: math.unit(30000, "feet")
  38923. },
  38924. {
  38925. name: "Continent Cracker",
  38926. height: math.unit(30e6, "feet")
  38927. },
  38928. {
  38929. name: "Earth Eclipsing",
  38930. height: math.unit(3e8, "feet")
  38931. },
  38932. {
  38933. name: "Gas Giant Gulper",
  38934. height: math.unit(3e9, "feet")
  38935. },
  38936. {
  38937. name: "Sol-Swallowing",
  38938. height: math.unit(1e11, "feet")
  38939. },
  38940. {
  38941. name: "System Swallower",
  38942. height: math.unit(3e14, "feet")
  38943. },
  38944. {
  38945. name: "Galaxy Gulper",
  38946. height: math.unit(10, "galaxies")
  38947. },
  38948. {
  38949. name: "Light Universal",
  38950. height: math.unit(5, "universes")
  38951. },
  38952. {
  38953. name: "Universe Palm",
  38954. height: math.unit(20, "universes")
  38955. },
  38956. {
  38957. name: "Light Multiversal",
  38958. height: math.unit(5, "multiverses")
  38959. },
  38960. {
  38961. name: "Multiverse Palm",
  38962. height: math.unit(20, "multiverses")
  38963. },
  38964. {
  38965. name: "Inferno Incarnate",
  38966. height: math.unit(1e7, "multiverses")
  38967. },
  38968. ]
  38969. ))
  38970. characterMakers.push(() => makeCharacter(
  38971. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38972. {
  38973. front: {
  38974. height: math.unit(8, "feet"),
  38975. weight: math.unit(1200, "lb"),
  38976. name: "Front",
  38977. image: {
  38978. source: "./media/characters/malithee/front.svg",
  38979. extra: 1675/1640,
  38980. bottom: 162/1837
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Mortal Interaction",
  38987. height: math.unit(8, "feet"),
  38988. default: true
  38989. },
  38990. {
  38991. name: "Large",
  38992. height: math.unit(24, "feet")
  38993. },
  38994. {
  38995. name: "Kaiju",
  38996. height: math.unit(240, "feet")
  38997. },
  38998. {
  38999. name: "Megamacro",
  39000. height: math.unit(8000, "feet")
  39001. },
  39002. {
  39003. name: "Continent Cracker",
  39004. height: math.unit(24e6, "feet")
  39005. },
  39006. {
  39007. name: "Earth-Eclipsing",
  39008. height: math.unit(2.4e8, "feet")
  39009. },
  39010. {
  39011. name: "Sol-Swallowing",
  39012. height: math.unit(8e10, "feet")
  39013. },
  39014. {
  39015. name: "Galaxy Gulper",
  39016. height: math.unit(8, "galaxies")
  39017. },
  39018. {
  39019. name: "Light Universal",
  39020. height: math.unit(4, "universes")
  39021. },
  39022. {
  39023. name: "Universe Atoms",
  39024. height: math.unit(1.829e9, "universes")
  39025. },
  39026. {
  39027. name: "Light Multiversal",
  39028. height: math.unit(4, "multiverses")
  39029. },
  39030. {
  39031. name: "Multiverse Atoms",
  39032. height: math.unit(1.829e9, "multiverses")
  39033. },
  39034. {
  39035. name: "Nigh-Omnipresence",
  39036. height: math.unit(8e261, "multiverses")
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(10, "feet"),
  39045. weight: math.unit(1500, "lb"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/miles-thestia/front.svg",
  39049. extra: 1812/1727,
  39050. bottom: 86/1898
  39051. }
  39052. },
  39053. back: {
  39054. height: math.unit(10, "feet"),
  39055. weight: math.unit(1500, "lb"),
  39056. name: "Back",
  39057. image: {
  39058. source: "./media/characters/miles-thestia/back.svg",
  39059. extra: 1799/1690,
  39060. bottom: 47/1846
  39061. }
  39062. },
  39063. frontNsfw: {
  39064. height: math.unit(10, "feet"),
  39065. weight: math.unit(1500, "lb"),
  39066. name: "Front (NSFW)",
  39067. image: {
  39068. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39069. extra: 1812/1727,
  39070. bottom: 86/1898
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Mini-Macro",
  39077. height: math.unit(10, "feet"),
  39078. default: true
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(25, "feet"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/titan-s-wulf/front.svg",
  39090. extra: 1560/1484,
  39091. bottom: 76/1636
  39092. }
  39093. },
  39094. },
  39095. [
  39096. {
  39097. name: "Smallest",
  39098. height: math.unit(25, "feet"),
  39099. default: true
  39100. },
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(200, "feet")
  39104. },
  39105. {
  39106. name: "Macro",
  39107. height: math.unit(200000, "feet")
  39108. },
  39109. {
  39110. name: "Multiversal Original",
  39111. height: math.unit(10000, "multiverses")
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(8, "feet"),
  39120. weight: math.unit(553, "lb"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/tawendeh/front.svg",
  39124. extra: 2365/2268,
  39125. bottom: 83/2448
  39126. }
  39127. },
  39128. frontClothed: {
  39129. height: math.unit(8, "feet"),
  39130. weight: math.unit(553, "lb"),
  39131. name: "Front (Clothed)",
  39132. image: {
  39133. source: "./media/characters/tawendeh/front-clothed.svg",
  39134. extra: 2365/2268,
  39135. bottom: 83/2448
  39136. }
  39137. },
  39138. back: {
  39139. height: math.unit(8, "feet"),
  39140. weight: math.unit(553, "lb"),
  39141. name: "Back",
  39142. image: {
  39143. source: "./media/characters/tawendeh/back.svg",
  39144. extra: 2397/2294,
  39145. bottom: 42/2439
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Mortal Interaction",
  39152. height: math.unit(8, "feet"),
  39153. default: true
  39154. },
  39155. {
  39156. name: "Giant",
  39157. height: math.unit(80, "feet")
  39158. },
  39159. {
  39160. name: "Macro",
  39161. height: math.unit(800, "feet")
  39162. },
  39163. {
  39164. name: "Megamacro",
  39165. height: math.unit(8000, "feet")
  39166. },
  39167. {
  39168. name: "City-Crushing",
  39169. height: math.unit(24000, "feet")
  39170. },
  39171. {
  39172. name: "Mountain-Mashing",
  39173. height: math.unit(80000, "feet")
  39174. },
  39175. {
  39176. name: "Nation Nemesis",
  39177. height: math.unit(8e6, "feet")
  39178. },
  39179. {
  39180. name: "Continent Cracker",
  39181. height: math.unit(24e6, "feet")
  39182. },
  39183. {
  39184. name: "Earth-Eclipsing",
  39185. height: math.unit(2.4e8, "feet")
  39186. },
  39187. {
  39188. name: "Gas Giant Gulper",
  39189. height: math.unit(2.4e9, "feet")
  39190. },
  39191. {
  39192. name: "Sol-Swallowing",
  39193. height: math.unit(8e10, "feet")
  39194. },
  39195. {
  39196. name: "Galaxy Gulper",
  39197. height: math.unit(8, "galaxies")
  39198. },
  39199. {
  39200. name: "Cosmos Churner",
  39201. height: math.unit(8, "universes")
  39202. },
  39203. {
  39204. name: "Omnipotent Otter",
  39205. height: math.unit(80, "universes")
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(2.6, "meters"),
  39214. weight: math.unit(900, "kg"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/neesha/front.svg",
  39218. extra: 1803/1653,
  39219. bottom: 128/1931
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Normal",
  39226. height: math.unit(2.6, "meters"),
  39227. default: true
  39228. },
  39229. {
  39230. name: "Macro",
  39231. height: math.unit(50, "meters")
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(5, "feet"),
  39240. weight: math.unit(185, "lb"),
  39241. name: "Front",
  39242. image: {
  39243. source: "./media/characters/kyera/front.svg",
  39244. extra: 1875/1790,
  39245. bottom: 96/1971
  39246. }
  39247. },
  39248. },
  39249. [
  39250. {
  39251. name: "Normal",
  39252. height: math.unit(5, "feet"),
  39253. default: true
  39254. },
  39255. ]
  39256. ))
  39257. characterMakers.push(() => makeCharacter(
  39258. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39259. {
  39260. front: {
  39261. height: math.unit(7 + 6/12, "feet"),
  39262. weight: math.unit(540, "lb"),
  39263. name: "Front",
  39264. image: {
  39265. source: "./media/characters/yuko/front.svg",
  39266. extra: 1282/1222,
  39267. bottom: 101/1383
  39268. }
  39269. },
  39270. frontClothed: {
  39271. height: math.unit(7 + 6/12, "feet"),
  39272. weight: math.unit(540, "lb"),
  39273. name: "Front (Clothed)",
  39274. image: {
  39275. source: "./media/characters/yuko/front-clothed.svg",
  39276. extra: 1282/1222,
  39277. bottom: 101/1383
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(7 + 6/12, "feet"),
  39285. default: true
  39286. },
  39287. {
  39288. name: "Macro",
  39289. height: math.unit(26 + 9/12, "feet")
  39290. },
  39291. {
  39292. name: "Megamacro",
  39293. height: math.unit(300, "feet")
  39294. },
  39295. {
  39296. name: "Gigamacro",
  39297. height: math.unit(5000, "feet")
  39298. },
  39299. {
  39300. name: "Planetary",
  39301. height: math.unit(10000, "miles")
  39302. },
  39303. ]
  39304. ))
  39305. characterMakers.push(() => makeCharacter(
  39306. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39307. {
  39308. front: {
  39309. height: math.unit(8 + 2/12, "feet"),
  39310. weight: math.unit(600, "lb"),
  39311. name: "Front",
  39312. image: {
  39313. source: "./media/characters/deam-nitrel/front.svg",
  39314. extra: 1308/1234,
  39315. bottom: 125/1433
  39316. }
  39317. },
  39318. },
  39319. [
  39320. {
  39321. name: "Normal",
  39322. height: math.unit(8 + 2/12, "feet"),
  39323. default: true
  39324. },
  39325. ]
  39326. ))
  39327. characterMakers.push(() => makeCharacter(
  39328. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39329. {
  39330. front: {
  39331. height: math.unit(6.1, "feet"),
  39332. weight: math.unit(180, "lb"),
  39333. name: "Front",
  39334. image: {
  39335. source: "./media/characters/skyress/front.svg",
  39336. extra: 1045/915,
  39337. bottom: 28/1073
  39338. }
  39339. },
  39340. maw: {
  39341. height: math.unit(1, "feet"),
  39342. name: "Maw",
  39343. image: {
  39344. source: "./media/characters/skyress/maw.svg"
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(6.1, "feet"),
  39352. default: true
  39353. },
  39354. {
  39355. name: "Macro",
  39356. height: math.unit(200, "feet")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(4 + 2/12, "feet"),
  39365. weight: math.unit(40, "kg"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/amethyst-jones/front.svg",
  39369. extra: 1220/1150,
  39370. bottom: 101/1321
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(4 + 2/12, "feet"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(1.7, "m"),
  39387. weight: math.unit(135, "lb"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/jade/front.svg",
  39391. extra: 1818/1767,
  39392. bottom: 32/1850
  39393. }
  39394. },
  39395. back: {
  39396. height: math.unit(1.7, "m"),
  39397. weight: math.unit(135, "lb"),
  39398. name: "Back",
  39399. image: {
  39400. source: "./media/characters/jade/back.svg",
  39401. extra: 1869/1809,
  39402. bottom: 35/1904
  39403. }
  39404. },
  39405. hand: {
  39406. height: math.unit(0.24, "m"),
  39407. name: "Hand",
  39408. image: {
  39409. source: "./media/characters/jade/hand.svg"
  39410. }
  39411. },
  39412. foot: {
  39413. height: math.unit(0.263, "m"),
  39414. name: "Foot",
  39415. image: {
  39416. source: "./media/characters/jade/foot.svg"
  39417. }
  39418. },
  39419. dick: {
  39420. height: math.unit(0.47, "m"),
  39421. name: "Dick",
  39422. image: {
  39423. source: "./media/characters/jade/dick.svg"
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Micro",
  39430. height: math.unit(22, "cm")
  39431. },
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(1.7, "m"),
  39435. default: true
  39436. },
  39437. {
  39438. name: "Macro",
  39439. height: math.unit(152, "m")
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(100, "miles"),
  39448. weight: math.unit(20000, "tons"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/cookie/front.svg",
  39452. extra: 1125/1070,
  39453. bottom: 30/1155
  39454. }
  39455. },
  39456. },
  39457. [
  39458. {
  39459. name: "Big",
  39460. height: math.unit(50, "feet")
  39461. },
  39462. {
  39463. name: "Macro",
  39464. height: math.unit(100, "miles"),
  39465. default: true
  39466. },
  39467. {
  39468. name: "Megamacro",
  39469. height: math.unit(90000, "miles")
  39470. },
  39471. ]
  39472. ))
  39473. characterMakers.push(() => makeCharacter(
  39474. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39475. {
  39476. front: {
  39477. height: math.unit(6, "feet"),
  39478. weight: math.unit(145, "lb"),
  39479. name: "Front",
  39480. image: {
  39481. source: "./media/characters/farzian/front.svg",
  39482. extra: 1902/1693,
  39483. bottom: 108/2010
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Macro",
  39490. height: math.unit(500, "feet"),
  39491. default: true
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(3 + 6/12, "feet"),
  39500. weight: math.unit(50, "lb"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/kimberly-tilson/front.svg",
  39504. extra: 1400/1322,
  39505. bottom: 36/1436
  39506. }
  39507. },
  39508. back: {
  39509. height: math.unit(3 + 6/12, "feet"),
  39510. weight: math.unit(50, "lb"),
  39511. name: "Back",
  39512. image: {
  39513. source: "./media/characters/kimberly-tilson/back.svg",
  39514. extra: 1370/1307,
  39515. bottom: 20/1390
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(3 + 6/12, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(1148, "feet"),
  39532. weight: math.unit(34057, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/harthos/front.svg",
  39536. extra: 1391/1339,
  39537. bottom: 13/1404
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Macro",
  39544. height: math.unit(1148, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(15, "feet"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/hypatia/front.svg",
  39557. extra: 1653/1591,
  39558. bottom: 79/1732
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(15, "feet")
  39566. },
  39567. {
  39568. name: "Small",
  39569. height: math.unit(300, "feet")
  39570. },
  39571. {
  39572. name: "Macro",
  39573. height: math.unit(2500, "feet"),
  39574. default: true
  39575. },
  39576. {
  39577. name: "Mega Macro",
  39578. height: math.unit(1500, "miles")
  39579. },
  39580. {
  39581. name: "Giga Macro",
  39582. height: math.unit(1.5e6, "miles")
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(6, "feet"),
  39591. weight: math.unit(200, "lb"),
  39592. name: "Front",
  39593. image: {
  39594. source: "./media/characters/wulver/front.svg",
  39595. extra: 1724/1632,
  39596. bottom: 130/1854
  39597. }
  39598. },
  39599. frontNsfw: {
  39600. height: math.unit(6, "feet"),
  39601. weight: math.unit(200, "lb"),
  39602. name: "Front (NSFW)",
  39603. image: {
  39604. source: "./media/characters/wulver/front-nsfw.svg",
  39605. extra: 1724/1632,
  39606. bottom: 130/1854
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Human-Sized",
  39613. height: math.unit(6, "feet")
  39614. },
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(4, "meters"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Large",
  39622. height: math.unit(6, "m")
  39623. },
  39624. ]
  39625. ))
  39626. characterMakers.push(() => makeCharacter(
  39627. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39628. {
  39629. front: {
  39630. height: math.unit(7, "feet"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/maru/front.svg",
  39634. extra: 1595/1570,
  39635. bottom: 0/1595
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(7, "feet"),
  39643. default: true
  39644. },
  39645. {
  39646. name: "Macro",
  39647. height: math.unit(700, "feet")
  39648. },
  39649. {
  39650. name: "Mega Macro",
  39651. height: math.unit(25, "miles")
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(6, "feet"),
  39660. weight: math.unit(170, "lb"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/xenon/front.svg",
  39664. extra: 1376/1305,
  39665. bottom: 56/1432
  39666. }
  39667. },
  39668. back: {
  39669. height: math.unit(6, "feet"),
  39670. weight: math.unit(170, "lb"),
  39671. name: "Back",
  39672. image: {
  39673. source: "./media/characters/xenon/back.svg",
  39674. extra: 1328/1259,
  39675. bottom: 95/1423
  39676. }
  39677. },
  39678. maw: {
  39679. height: math.unit(0.52, "feet"),
  39680. name: "Maw",
  39681. image: {
  39682. source: "./media/characters/xenon/maw.svg"
  39683. }
  39684. },
  39685. hand: {
  39686. height: math.unit(0.82, "feet"),
  39687. name: "Hand",
  39688. image: {
  39689. source: "./media/characters/xenon/hand.svg"
  39690. }
  39691. },
  39692. foot: {
  39693. height: math.unit(1.13, "feet"),
  39694. name: "Foot",
  39695. image: {
  39696. source: "./media/characters/xenon/foot.svg"
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Micro",
  39703. height: math.unit(0.8, "inches")
  39704. },
  39705. {
  39706. name: "Normal",
  39707. height: math.unit(6, "feet")
  39708. },
  39709. {
  39710. name: "Macro",
  39711. height: math.unit(50, "feet"),
  39712. default: true
  39713. },
  39714. {
  39715. name: "Macro+",
  39716. height: math.unit(250, "feet")
  39717. },
  39718. {
  39719. name: "Megamacro",
  39720. height: math.unit(1500, "feet")
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(7 + 5/12, "feet"),
  39729. name: "Front",
  39730. image: {
  39731. source: "./media/characters/zane/front.svg",
  39732. extra: 1260/1203,
  39733. bottom: 94/1354
  39734. }
  39735. },
  39736. back: {
  39737. height: math.unit(5.05, "feet"),
  39738. name: "Back",
  39739. image: {
  39740. source: "./media/characters/zane/back.svg",
  39741. extra: 893/829,
  39742. bottom: 30/923
  39743. }
  39744. },
  39745. werewolf: {
  39746. height: math.unit(11, "feet"),
  39747. name: "Werewolf",
  39748. image: {
  39749. source: "./media/characters/zane/werewolf.svg",
  39750. extra: 1383/1323,
  39751. bottom: 89/1472
  39752. }
  39753. },
  39754. foot: {
  39755. height: math.unit(1.46, "feet"),
  39756. name: "Foot",
  39757. image: {
  39758. source: "./media/characters/zane/foot.svg"
  39759. }
  39760. },
  39761. footFront: {
  39762. height: math.unit(0.784, "feet"),
  39763. name: "Foot (Front)",
  39764. image: {
  39765. source: "./media/characters/zane/foot-front.svg"
  39766. }
  39767. },
  39768. dick: {
  39769. height: math.unit(1.95, "feet"),
  39770. name: "Dick",
  39771. image: {
  39772. source: "./media/characters/zane/dick.svg"
  39773. }
  39774. },
  39775. dickWerewolf: {
  39776. height: math.unit(3.77, "feet"),
  39777. name: "Dick (Werewolf)",
  39778. image: {
  39779. source: "./media/characters/zane/dick.svg"
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(7 + 5/12, "feet"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(6 + 2/12, "feet"),
  39796. weight: math.unit(284, "lb"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/benni-desparque/front.svg",
  39800. extra: 1353/1126,
  39801. bottom: 69/1422
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Civilian",
  39808. height: math.unit(6 + 2/12, "feet")
  39809. },
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(98, "feet"),
  39813. default: true
  39814. },
  39815. {
  39816. name: "Kaiju Fighter",
  39817. height: math.unit(268, "feet")
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39823. {
  39824. front: {
  39825. height: math.unit(5, "feet"),
  39826. weight: math.unit(105, "lb"),
  39827. name: "Front",
  39828. image: {
  39829. source: "./media/characters/maxine/front.svg",
  39830. extra: 1386/1250,
  39831. bottom: 71/1457
  39832. }
  39833. },
  39834. },
  39835. [
  39836. {
  39837. name: "Normal",
  39838. height: math.unit(5, "feet"),
  39839. default: true
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(11 + 7/12, "feet"),
  39848. weight: math.unit(9576, "lb"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/scaly/front.svg",
  39852. extra: 888/867,
  39853. bottom: 36/924
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(11 + 7/12, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(9, "inches"),
  39870. name: "Front",
  39871. image: {
  39872. source: "./media/characters/saelria/front.svg",
  39873. extra: 662/621,
  39874. bottom: 12/674
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Tiny",
  39881. height: math.unit(9, "inches"),
  39882. default: true
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(80, "meters"),
  39891. weight: math.unit(7000, "tonnes"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/tef/front.svg",
  39895. extra: 2036/1991,
  39896. bottom: 54/2090
  39897. }
  39898. },
  39899. back: {
  39900. height: math.unit(80, "meters"),
  39901. weight: math.unit(7000, "tonnes"),
  39902. name: "Back",
  39903. image: {
  39904. source: "./media/characters/tef/back.svg",
  39905. extra: 2036/1991,
  39906. bottom: 54/2090
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Macro",
  39913. height: math.unit(80, "meters"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(13, "feet"),
  39923. weight: math.unit(6, "tons"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/rover/front.svg",
  39927. extra: 1233/1156,
  39928. bottom: 50/1283
  39929. }
  39930. },
  39931. back: {
  39932. height: math.unit(13, "feet"),
  39933. weight: math.unit(6, "tons"),
  39934. name: "Back",
  39935. image: {
  39936. source: "./media/characters/rover/back.svg",
  39937. extra: 1327/1258,
  39938. bottom: 39/1366
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(13, "feet"),
  39946. default: true
  39947. },
  39948. {
  39949. name: "Macro",
  39950. height: math.unit(1300, "feet")
  39951. },
  39952. {
  39953. name: "Megamacro",
  39954. height: math.unit(1300, "miles")
  39955. },
  39956. {
  39957. name: "Gigamacro",
  39958. height: math.unit(1300000, "miles")
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(6, "feet"),
  39967. weight: math.unit(150, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/ariz/front.svg",
  39971. extra: 1401/1346,
  39972. bottom: 5/1406
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Normal",
  39979. height: math.unit(10, "feet"),
  39980. default: true
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(6, "feet"),
  39989. weight: math.unit(140, "lb"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/sigrun/front.svg",
  39993. extra: 1418/1359,
  39994. bottom: 27/1445
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Macro",
  40001. height: math.unit(35, "feet"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(6, "feet"),
  40011. weight: math.unit(150, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/numin/front.svg",
  40015. extra: 1433/1388,
  40016. bottom: 12/1445
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(21.5, "km"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(6, "feet"),
  40033. weight: math.unit(463, "lb"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/melwa/front.svg",
  40037. extra: 1307/1248,
  40038. bottom: 93/1400
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Macro",
  40045. height: math.unit(50, "meters"),
  40046. default: true
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40052. {
  40053. front: {
  40054. height: math.unit(325, "feet"),
  40055. name: "Front",
  40056. image: {
  40057. source: "./media/characters/zorkaiju/front.svg",
  40058. extra: 1955/1814,
  40059. bottom: 40/1995
  40060. }
  40061. },
  40062. frontExtended: {
  40063. height: math.unit(325, "feet"),
  40064. name: "Front (Extended)",
  40065. image: {
  40066. source: "./media/characters/zorkaiju/front-extended.svg",
  40067. extra: 1955/1814,
  40068. bottom: 40/1995
  40069. }
  40070. },
  40071. side: {
  40072. height: math.unit(325, "feet"),
  40073. name: "Side",
  40074. image: {
  40075. source: "./media/characters/zorkaiju/side.svg",
  40076. extra: 1495/1396,
  40077. bottom: 17/1512
  40078. }
  40079. },
  40080. sideExtended: {
  40081. height: math.unit(325, "feet"),
  40082. name: "Side (Extended)",
  40083. image: {
  40084. source: "./media/characters/zorkaiju/side-extended.svg",
  40085. extra: 1495/1396,
  40086. bottom: 17/1512
  40087. }
  40088. },
  40089. back: {
  40090. height: math.unit(325, "feet"),
  40091. name: "Back",
  40092. image: {
  40093. source: "./media/characters/zorkaiju/back.svg",
  40094. extra: 1959/1821,
  40095. bottom: 31/1990
  40096. }
  40097. },
  40098. backExtended: {
  40099. height: math.unit(325, "feet"),
  40100. name: "Back (Extended)",
  40101. image: {
  40102. source: "./media/characters/zorkaiju/back-extended.svg",
  40103. extra: 1959/1821,
  40104. bottom: 31/1990
  40105. }
  40106. },
  40107. hand: {
  40108. height: math.unit(58.4, "feet"),
  40109. name: "Hand",
  40110. image: {
  40111. source: "./media/characters/zorkaiju/hand.svg"
  40112. }
  40113. },
  40114. handExtended: {
  40115. height: math.unit(61.4, "feet"),
  40116. name: "Hand (Extended)",
  40117. image: {
  40118. source: "./media/characters/zorkaiju/hand-extended.svg"
  40119. }
  40120. },
  40121. foot: {
  40122. height: math.unit(95, "feet"),
  40123. name: "Foot",
  40124. image: {
  40125. source: "./media/characters/zorkaiju/foot.svg"
  40126. }
  40127. },
  40128. leftArm: {
  40129. height: math.unit(59, "feet"),
  40130. name: "Left Arm",
  40131. image: {
  40132. source: "./media/characters/zorkaiju/left-arm.svg"
  40133. }
  40134. },
  40135. rightArm: {
  40136. height: math.unit(59, "feet"),
  40137. name: "Right Arm",
  40138. image: {
  40139. source: "./media/characters/zorkaiju/right-arm.svg"
  40140. }
  40141. },
  40142. tail: {
  40143. height: math.unit(104, "feet"),
  40144. name: "Tail",
  40145. image: {
  40146. source: "./media/characters/zorkaiju/tail.svg"
  40147. }
  40148. },
  40149. tailExtended: {
  40150. height: math.unit(104, "feet"),
  40151. name: "Tail (Extended)",
  40152. image: {
  40153. source: "./media/characters/zorkaiju/tail-extended.svg"
  40154. }
  40155. },
  40156. tailBottom: {
  40157. height: math.unit(104, "feet"),
  40158. name: "Tail Bottom",
  40159. image: {
  40160. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40161. }
  40162. },
  40163. crystal: {
  40164. height: math.unit(27.54, "feet"),
  40165. name: "Crystal",
  40166. image: {
  40167. source: "./media/characters/zorkaiju/crystal.svg"
  40168. }
  40169. },
  40170. },
  40171. [
  40172. {
  40173. name: "Kaiju",
  40174. height: math.unit(325, "feet"),
  40175. default: true
  40176. },
  40177. ]
  40178. ))
  40179. characterMakers.push(() => makeCharacter(
  40180. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40181. {
  40182. front: {
  40183. height: math.unit(6 + 1/12, "feet"),
  40184. weight: math.unit(115, "lb"),
  40185. name: "Front",
  40186. image: {
  40187. source: "./media/characters/bailey-belfry/front.svg",
  40188. extra: 1240/1121,
  40189. bottom: 101/1341
  40190. }
  40191. },
  40192. },
  40193. [
  40194. {
  40195. name: "Normal",
  40196. height: math.unit(6 + 1/12, "feet"),
  40197. default: true
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40203. {
  40204. side: {
  40205. height: math.unit(4, "meters"),
  40206. weight: math.unit(250, "kg"),
  40207. name: "Side",
  40208. image: {
  40209. source: "./media/characters/blacky/side.svg",
  40210. extra: 1027/919,
  40211. bottom: 43/1070
  40212. }
  40213. },
  40214. maw: {
  40215. height: math.unit(1, "meters"),
  40216. name: "Maw",
  40217. image: {
  40218. source: "./media/characters/blacky/maw.svg"
  40219. }
  40220. },
  40221. paw: {
  40222. height: math.unit(1, "meters"),
  40223. name: "Paw",
  40224. image: {
  40225. source: "./media/characters/blacky/paw.svg"
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(4, "meters"),
  40233. default: true
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(170, "cm"),
  40242. weight: math.unit(66, "kg"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/thux-ei/front.svg",
  40246. extra: 1109/1011,
  40247. bottom: 8/1117
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(170, "cm"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(5, "feet"),
  40264. weight: math.unit(120, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/roxanne-voltaire/front.svg",
  40268. extra: 1901/1779,
  40269. bottom: 53/1954
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(5, "feet"),
  40277. default: true
  40278. },
  40279. {
  40280. name: "Giant",
  40281. height: math.unit(50, "feet")
  40282. },
  40283. {
  40284. name: "Titan",
  40285. height: math.unit(500, "feet")
  40286. },
  40287. {
  40288. name: "Macro",
  40289. height: math.unit(5000, "feet")
  40290. },
  40291. {
  40292. name: "Megamacro",
  40293. height: math.unit(50000, "feet")
  40294. },
  40295. {
  40296. name: "Gigamacro",
  40297. height: math.unit(500000, "feet")
  40298. },
  40299. {
  40300. name: "Teramacro",
  40301. height: math.unit(5e6, "feet")
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40307. {
  40308. front: {
  40309. height: math.unit(6 + 2/12, "feet"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/squeaks/front.svg",
  40313. extra: 1823/1768,
  40314. bottom: 138/1961
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Micro",
  40321. height: math.unit(0.5, "inches")
  40322. },
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(6 + 2/12, "feet"),
  40326. default: true
  40327. },
  40328. {
  40329. name: "Macro",
  40330. height: math.unit(600, "feet")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(1.72, "meters"),
  40339. name: "Front",
  40340. image: {
  40341. source: "./media/characters/archinger/front.svg",
  40342. extra: 1861/1675,
  40343. bottom: 125/1986
  40344. }
  40345. },
  40346. back: {
  40347. height: math.unit(1.72, "meters"),
  40348. name: "Back",
  40349. image: {
  40350. source: "./media/characters/archinger/back.svg",
  40351. extra: 1844/1701,
  40352. bottom: 104/1948
  40353. }
  40354. },
  40355. cock: {
  40356. height: math.unit(0.59, "feet"),
  40357. name: "Cock",
  40358. image: {
  40359. source: "./media/characters/archinger/cock.svg"
  40360. }
  40361. },
  40362. },
  40363. [
  40364. {
  40365. name: "Normal",
  40366. height: math.unit(1.72, "meters"),
  40367. default: true
  40368. },
  40369. {
  40370. name: "Macro",
  40371. height: math.unit(84, "meters")
  40372. },
  40373. {
  40374. name: "Macro+",
  40375. height: math.unit(112, "meters")
  40376. },
  40377. {
  40378. name: "Macro++",
  40379. height: math.unit(960, "meters")
  40380. },
  40381. {
  40382. name: "Macro+++",
  40383. height: math.unit(4, "km")
  40384. },
  40385. {
  40386. name: "Macro++++",
  40387. height: math.unit(48, "km")
  40388. },
  40389. {
  40390. name: "Macro+++++",
  40391. height: math.unit(4500, "km")
  40392. },
  40393. ]
  40394. ))
  40395. characterMakers.push(() => makeCharacter(
  40396. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40397. {
  40398. front: {
  40399. height: math.unit(5 + 5/12, "feet"),
  40400. name: "Front",
  40401. image: {
  40402. source: "./media/characters/alsnapz/front.svg",
  40403. extra: 1157/1065,
  40404. bottom: 42/1199
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Normal",
  40411. height: math.unit(5 + 5/12, "feet"),
  40412. default: true
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40418. {
  40419. side: {
  40420. height: math.unit(3.2, "earths"),
  40421. name: "Side",
  40422. image: {
  40423. source: "./media/characters/mag/side.svg",
  40424. extra: 1331/1008,
  40425. bottom: 52/1383
  40426. }
  40427. },
  40428. wing: {
  40429. height: math.unit(1.94, "earths"),
  40430. name: "Wing",
  40431. image: {
  40432. source: "./media/characters/mag/wing.svg"
  40433. }
  40434. },
  40435. dick: {
  40436. height: math.unit(1.8, "earths"),
  40437. name: "Dick",
  40438. image: {
  40439. source: "./media/characters/mag/dick.svg"
  40440. }
  40441. },
  40442. ass: {
  40443. height: math.unit(1.33, "earths"),
  40444. name: "Ass",
  40445. image: {
  40446. source: "./media/characters/mag/ass.svg"
  40447. }
  40448. },
  40449. head: {
  40450. height: math.unit(1.1, "earths"),
  40451. name: "Head",
  40452. image: {
  40453. source: "./media/characters/mag/head.svg"
  40454. }
  40455. },
  40456. maw: {
  40457. height: math.unit(1.62, "earths"),
  40458. name: "Maw",
  40459. image: {
  40460. source: "./media/characters/mag/maw.svg"
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Small",
  40467. height: math.unit(162, "feet")
  40468. },
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(3.2, "earths"),
  40472. default: true
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40478. {
  40479. front: {
  40480. height: math.unit(512, "feet"),
  40481. weight: math.unit(63509, "tonnes"),
  40482. name: "Front",
  40483. image: {
  40484. source: "./media/characters/vorrel-harroc/front.svg",
  40485. extra: 1075/1063,
  40486. bottom: 62/1137
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(10, "feet")
  40494. },
  40495. {
  40496. name: "Macro",
  40497. height: math.unit(512, "feet"),
  40498. default: true
  40499. },
  40500. {
  40501. name: "Megamacro",
  40502. height: math.unit(256, "miles")
  40503. },
  40504. {
  40505. name: "Gigamacro",
  40506. height: math.unit(4096, "miles")
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40512. {
  40513. side: {
  40514. height: math.unit(50, "feet"),
  40515. name: "Side",
  40516. image: {
  40517. source: "./media/characters/froimar/side.svg",
  40518. extra: 855/638,
  40519. bottom: 99/954
  40520. }
  40521. },
  40522. },
  40523. [
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(50, "feet"),
  40527. default: true
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40533. {
  40534. front: {
  40535. height: math.unit(210, "miles"),
  40536. name: "Front",
  40537. image: {
  40538. source: "./media/characters/timothy/front.svg",
  40539. extra: 1007/943,
  40540. bottom: 62/1069
  40541. }
  40542. },
  40543. frontSkirt: {
  40544. height: math.unit(210, "miles"),
  40545. name: "Front (Skirt)",
  40546. image: {
  40547. source: "./media/characters/timothy/front-skirt.svg",
  40548. extra: 1007/943,
  40549. bottom: 62/1069
  40550. }
  40551. },
  40552. frontCoat: {
  40553. height: math.unit(210, "miles"),
  40554. name: "Front (Coat)",
  40555. image: {
  40556. source: "./media/characters/timothy/front-coat.svg",
  40557. extra: 1007/943,
  40558. bottom: 62/1069
  40559. }
  40560. },
  40561. },
  40562. [
  40563. {
  40564. name: "Macro",
  40565. height: math.unit(210, "miles"),
  40566. default: true
  40567. },
  40568. {
  40569. name: "Megamacro",
  40570. height: math.unit(210000, "miles")
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(188, "feet"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/pyotr/front.svg",
  40582. extra: 1912/1826,
  40583. bottom: 18/1930
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Macro",
  40590. height: math.unit(188, "feet"),
  40591. default: true
  40592. },
  40593. {
  40594. name: "Megamacro",
  40595. height: math.unit(8, "miles")
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40601. {
  40602. side: {
  40603. height: math.unit(10, "feet"),
  40604. weight: math.unit(4500, "lb"),
  40605. name: "Side",
  40606. image: {
  40607. source: "./media/characters/ackart/side.svg",
  40608. extra: 1776/1668,
  40609. bottom: 116/1892
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Normal",
  40616. height: math.unit(10, "feet"),
  40617. default: true
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40623. {
  40624. side: {
  40625. height: math.unit(21, "feet"),
  40626. name: "Side",
  40627. image: {
  40628. source: "./media/characters/nolow/side.svg",
  40629. extra: 1484/1434,
  40630. bottom: 85/1569
  40631. }
  40632. },
  40633. sideErect: {
  40634. height: math.unit(21, "feet"),
  40635. name: "Side-erect",
  40636. image: {
  40637. source: "./media/characters/nolow/side-erect.svg",
  40638. extra: 1484/1434,
  40639. bottom: 85/1569
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Regular",
  40646. height: math.unit(12, "feet")
  40647. },
  40648. {
  40649. name: "Big Chee",
  40650. height: math.unit(21, "feet"),
  40651. default: true
  40652. },
  40653. ]
  40654. ))
  40655. characterMakers.push(() => makeCharacter(
  40656. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40657. {
  40658. front: {
  40659. height: math.unit(7, "feet"),
  40660. weight: math.unit(250, "lb"),
  40661. name: "Front",
  40662. image: {
  40663. source: "./media/characters/nines/front.svg",
  40664. extra: 1741/1607,
  40665. bottom: 41/1782
  40666. }
  40667. },
  40668. side: {
  40669. height: math.unit(7, "feet"),
  40670. weight: math.unit(250, "lb"),
  40671. name: "Side",
  40672. image: {
  40673. source: "./media/characters/nines/side.svg",
  40674. extra: 1854/1735,
  40675. bottom: 93/1947
  40676. }
  40677. },
  40678. back: {
  40679. height: math.unit(7, "feet"),
  40680. weight: math.unit(250, "lb"),
  40681. name: "Back",
  40682. image: {
  40683. source: "./media/characters/nines/back.svg",
  40684. extra: 1748/1615,
  40685. bottom: 20/1768
  40686. }
  40687. },
  40688. },
  40689. [
  40690. {
  40691. name: "Megamacro",
  40692. height: math.unit(99, "km"),
  40693. default: true
  40694. },
  40695. ]
  40696. ))
  40697. characterMakers.push(() => makeCharacter(
  40698. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40699. {
  40700. front: {
  40701. height: math.unit(5 + 10/12, "feet"),
  40702. weight: math.unit(210, "lb"),
  40703. name: "Front",
  40704. image: {
  40705. source: "./media/characters/zenith/front.svg",
  40706. extra: 1531/1452,
  40707. bottom: 198/1729
  40708. }
  40709. },
  40710. back: {
  40711. height: math.unit(5 + 10/12, "feet"),
  40712. weight: math.unit(210, "lb"),
  40713. name: "Back",
  40714. image: {
  40715. source: "./media/characters/zenith/back.svg",
  40716. extra: 1571/1487,
  40717. bottom: 75/1646
  40718. }
  40719. },
  40720. },
  40721. [
  40722. {
  40723. name: "Normal",
  40724. height: math.unit(5 + 10/12, "feet"),
  40725. default: true
  40726. }
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(4, "feet"),
  40734. weight: math.unit(60, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/jasper/front.svg",
  40738. extra: 1450/1379,
  40739. bottom: 19/1469
  40740. }
  40741. },
  40742. },
  40743. [
  40744. {
  40745. name: "Normal",
  40746. height: math.unit(4, "feet"),
  40747. default: true
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(6 + 5/12, "feet"),
  40756. weight: math.unit(290, "lb"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/tiberius-thyben/front.svg",
  40760. extra: 757/739,
  40761. bottom: 39/796
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Micro",
  40768. height: math.unit(1.5, "inches")
  40769. },
  40770. {
  40771. name: "Normal",
  40772. height: math.unit(6 + 5/12, "feet"),
  40773. default: true
  40774. },
  40775. {
  40776. name: "Macro",
  40777. height: math.unit(300, "feet")
  40778. },
  40779. ]
  40780. ))
  40781. characterMakers.push(() => makeCharacter(
  40782. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40783. {
  40784. front: {
  40785. height: math.unit(5 + 6/12, "feet"),
  40786. weight: math.unit(60, "kg"),
  40787. name: "Front",
  40788. image: {
  40789. source: "./media/characters/sabre/front.svg",
  40790. extra: 738/671,
  40791. bottom: 27/765
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Teeny",
  40798. height: math.unit(2, "inches")
  40799. },
  40800. {
  40801. name: "Smol",
  40802. height: math.unit(8, "inches")
  40803. },
  40804. {
  40805. name: "Normal",
  40806. height: math.unit(5 + 6/12, "feet"),
  40807. default: true
  40808. },
  40809. {
  40810. name: "Mini-Macro",
  40811. height: math.unit(15, "feet")
  40812. },
  40813. {
  40814. name: "Macro",
  40815. height: math.unit(50, "feet")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(6 + 4/12, "feet"),
  40824. weight: math.unit(170, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/charlie/front.svg",
  40828. extra: 1348/1228,
  40829. bottom: 15/1363
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(1700, "meters"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "MegaMacro",
  40841. height: math.unit(20400, "meters")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(6 + 3/12, "feet"),
  40850. weight: math.unit(185, "lb"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/susan-grant/front.svg",
  40854. extra: 1351/1327,
  40855. bottom: 26/1377
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(6 + 3/12, "feet"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(225, "feet")
  40868. },
  40869. {
  40870. name: "Macro+",
  40871. height: math.unit(900, "feet")
  40872. },
  40873. {
  40874. name: "MegaMacro",
  40875. height: math.unit(14400, "feet")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(5 + 4/12, "feet"),
  40884. weight: math.unit(110, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/axel-isanov/front.svg",
  40888. extra: 1096/1065,
  40889. bottom: 13/1109
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(5 + 4/12, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(9, "feet"),
  40906. weight: math.unit(467, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/necahual/front.svg",
  40910. extra: 920/873,
  40911. bottom: 26/946
  40912. }
  40913. },
  40914. back: {
  40915. height: math.unit(9, "feet"),
  40916. weight: math.unit(467, "lb"),
  40917. name: "Back",
  40918. image: {
  40919. source: "./media/characters/necahual/back.svg",
  40920. extra: 930/884,
  40921. bottom: 16/946
  40922. }
  40923. },
  40924. frontUnderwear: {
  40925. height: math.unit(9, "feet"),
  40926. weight: math.unit(467, "lb"),
  40927. name: "Front (Underwear)",
  40928. image: {
  40929. source: "./media/characters/necahual/front-underwear.svg",
  40930. extra: 920/873,
  40931. bottom: 26/946
  40932. }
  40933. },
  40934. frontDressed: {
  40935. height: math.unit(9, "feet"),
  40936. weight: math.unit(467, "lb"),
  40937. name: "Front (Dressed)",
  40938. image: {
  40939. source: "./media/characters/necahual/front-dressed.svg",
  40940. extra: 920/873,
  40941. bottom: 26/946
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Comprsesed",
  40948. height: math.unit(9, "feet")
  40949. },
  40950. {
  40951. name: "Natural",
  40952. height: math.unit(15, "feet"),
  40953. default: true
  40954. },
  40955. {
  40956. name: "Boosted",
  40957. height: math.unit(50, "feet")
  40958. },
  40959. {
  40960. name: "Boosted+",
  40961. height: math.unit(150, "feet")
  40962. },
  40963. {
  40964. name: "Max",
  40965. height: math.unit(500, "feet")
  40966. },
  40967. ]
  40968. ))
  40969. characterMakers.push(() => makeCharacter(
  40970. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40971. {
  40972. front: {
  40973. height: math.unit(22 + 1/12, "feet"),
  40974. weight: math.unit(3200, "lb"),
  40975. name: "Front",
  40976. image: {
  40977. source: "./media/characters/theo-acacia/front.svg",
  40978. extra: 1796/1741,
  40979. bottom: 83/1879
  40980. }
  40981. },
  40982. frontUnderwear: {
  40983. height: math.unit(22 + 1/12, "feet"),
  40984. weight: math.unit(3200, "lb"),
  40985. name: "Front (Underwear)",
  40986. image: {
  40987. source: "./media/characters/theo-acacia/front-underwear.svg",
  40988. extra: 1796/1741,
  40989. bottom: 83/1879
  40990. }
  40991. },
  40992. frontNude: {
  40993. height: math.unit(22 + 1/12, "feet"),
  40994. weight: math.unit(3200, "lb"),
  40995. name: "Front (Nude)",
  40996. image: {
  40997. source: "./media/characters/theo-acacia/front-nude.svg",
  40998. extra: 1796/1741,
  40999. bottom: 83/1879
  41000. }
  41001. },
  41002. },
  41003. [
  41004. {
  41005. name: "Normal",
  41006. height: math.unit(22 + 1/12, "feet"),
  41007. default: true
  41008. },
  41009. ]
  41010. ))
  41011. characterMakers.push(() => makeCharacter(
  41012. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41013. {
  41014. front: {
  41015. height: math.unit(20, "feet"),
  41016. name: "Front",
  41017. image: {
  41018. source: "./media/characters/astra/front.svg",
  41019. extra: 1850/1714,
  41020. bottom: 106/1956
  41021. }
  41022. },
  41023. frontUndressed: {
  41024. height: math.unit(20, "feet"),
  41025. name: "Front (Undressed)",
  41026. image: {
  41027. source: "./media/characters/astra/front-undressed.svg",
  41028. extra: 1926/1749,
  41029. bottom: 0/1926
  41030. }
  41031. },
  41032. hand: {
  41033. height: math.unit(1.53, "feet"),
  41034. name: "Hand",
  41035. image: {
  41036. source: "./media/characters/astra/hand.svg"
  41037. }
  41038. },
  41039. paw: {
  41040. height: math.unit(1.53, "feet"),
  41041. name: "Paw",
  41042. image: {
  41043. source: "./media/characters/astra/paw.svg"
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Smallest",
  41050. height: math.unit(20, "feet")
  41051. },
  41052. {
  41053. name: "Normal",
  41054. height: math.unit(1e9, "miles"),
  41055. default: true
  41056. },
  41057. {
  41058. name: "Larger",
  41059. height: math.unit(5, "multiverses")
  41060. },
  41061. {
  41062. name: "Largest",
  41063. height: math.unit(1e9, "multiverses")
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41069. {
  41070. front: {
  41071. height: math.unit(8, "feet"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/breanna/front.svg",
  41075. extra: 1912/1632,
  41076. bottom: 33/1945
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Smallest",
  41083. height: math.unit(8, "feet")
  41084. },
  41085. {
  41086. name: "Normal",
  41087. height: math.unit(1, "mile"),
  41088. default: true
  41089. },
  41090. {
  41091. name: "Maximum",
  41092. height: math.unit(1500000000000, "lightyears")
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(5 + 11/12, "feet"),
  41101. weight: math.unit(155, "lb"),
  41102. name: "Front",
  41103. image: {
  41104. source: "./media/characters/cai/front.svg",
  41105. extra: 1823/1702,
  41106. bottom: 32/1855
  41107. }
  41108. },
  41109. back: {
  41110. height: math.unit(5 + 11/12, "feet"),
  41111. weight: math.unit(155, "lb"),
  41112. name: "Back",
  41113. image: {
  41114. source: "./media/characters/cai/back.svg",
  41115. extra: 1809/1708,
  41116. bottom: 31/1840
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(5 + 11/12, "feet"),
  41124. default: true
  41125. },
  41126. {
  41127. name: "Big",
  41128. height: math.unit(15, "feet")
  41129. },
  41130. {
  41131. name: "Macro",
  41132. height: math.unit(200, "feet")
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(5 + 6/12, "feet"),
  41141. weight: math.unit(160, "lb"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41145. extra: 1227/1174,
  41146. bottom: 37/1264
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Macro",
  41153. height: math.unit(444, "meters"),
  41154. default: true
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(18 + 7/12, "feet"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/rex/front.svg",
  41166. extra: 1941/1807,
  41167. bottom: 66/2007
  41168. }
  41169. },
  41170. back: {
  41171. height: math.unit(18 + 7/12, "feet"),
  41172. name: "Back",
  41173. image: {
  41174. source: "./media/characters/rex/back.svg",
  41175. extra: 1937/1822,
  41176. bottom: 42/1979
  41177. }
  41178. },
  41179. boot: {
  41180. height: math.unit(3.45, "feet"),
  41181. name: "Boot",
  41182. image: {
  41183. source: "./media/characters/rex/boot.svg"
  41184. }
  41185. },
  41186. paw: {
  41187. height: math.unit(4.17, "feet"),
  41188. name: "Paw",
  41189. image: {
  41190. source: "./media/characters/rex/paw.svg"
  41191. }
  41192. },
  41193. head: {
  41194. height: math.unit(6.728, "feet"),
  41195. name: "Head",
  41196. image: {
  41197. source: "./media/characters/rex/head.svg"
  41198. }
  41199. },
  41200. },
  41201. [
  41202. {
  41203. name: "Nano",
  41204. height: math.unit(18 + 7/12, "feet")
  41205. },
  41206. {
  41207. name: "Micro",
  41208. height: math.unit(1.5, "megameters")
  41209. },
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(440, "megameters"),
  41213. default: true
  41214. },
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(2.5, "gigameters")
  41218. },
  41219. {
  41220. name: "Gigamacro",
  41221. height: math.unit(2, "galaxies")
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41227. {
  41228. side: {
  41229. height: math.unit(32, "feet"),
  41230. weight: math.unit(250000, "lb"),
  41231. name: "Side",
  41232. image: {
  41233. source: "./media/characters/silverwing/side.svg",
  41234. extra: 1100/1019,
  41235. bottom: 204/1304
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(32, "feet"),
  41243. default: true
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(6 + 6/12, "feet"),
  41252. weight: math.unit(350, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/tristan-hawthorne/front.svg",
  41256. extra: 1159/1124,
  41257. bottom: 37/1196
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(6 + 6/12, "feet"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(5 + 11/12, "feet"),
  41274. weight: math.unit(190, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/mizu/front.svg",
  41278. extra: 1988/1788,
  41279. bottom: 14/2002
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(5 + 11/12, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(6, "feet"),
  41296. name: "Front",
  41297. image: {
  41298. source: "./media/characters/moonlight-rose-terra/front.svg",
  41299. extra: 1434/1252,
  41300. bottom: 48/1482
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "TRAPPIST-1D",
  41307. height: math.unit(4992*2, "km")
  41308. },
  41309. {
  41310. name: "Earth",
  41311. height: math.unit(6367*2, "km"),
  41312. default: true
  41313. },
  41314. {
  41315. name: "Kepler-22b",
  41316. height: math.unit(15282*2, "km")
  41317. },
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41322. {
  41323. front: {
  41324. height: math.unit(6, "feet"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41328. extra: 1851/1712,
  41329. bottom: 0/1851
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Enceladus",
  41336. height: math.unit(513*2, "km")
  41337. },
  41338. {
  41339. name: "Europe",
  41340. height: math.unit(1560*2, "km")
  41341. },
  41342. {
  41343. name: "Neptune",
  41344. height: math.unit(24622*2, "km"),
  41345. default: true
  41346. },
  41347. {
  41348. name: "CoRoT-9b",
  41349. height: math.unit(75067*2, "km")
  41350. },
  41351. ]
  41352. ))
  41353. characterMakers.push(() => makeCharacter(
  41354. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41355. {
  41356. front: {
  41357. height: math.unit(6, "feet"),
  41358. name: "Front",
  41359. image: {
  41360. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41361. extra: 1367/1286,
  41362. bottom: 55/1422
  41363. }
  41364. },
  41365. },
  41366. [
  41367. {
  41368. name: "Saturn",
  41369. height: math.unit(58232*2, "km")
  41370. },
  41371. {
  41372. name: "Jupiter",
  41373. height: math.unit(69911*2, "km"),
  41374. default: true
  41375. },
  41376. {
  41377. name: "HD 100546 b",
  41378. height: math.unit(482938, "km")
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(1.7, "feet"),
  41387. weight: math.unit(50, "lb"),
  41388. name: "Front",
  41389. image: {
  41390. source: "./media/characters/dechroma/front.svg",
  41391. extra: 1095/859,
  41392. bottom: 64/1159
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Normal",
  41399. height: math.unit(1.7, "feet"),
  41400. default: true
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41406. {
  41407. side: {
  41408. height: math.unit(30, "feet"),
  41409. name: "Side",
  41410. image: {
  41411. source: "./media/characters/veluren-thanazel/side.svg",
  41412. extra: 1611/633,
  41413. bottom: 118/1729
  41414. }
  41415. },
  41416. front: {
  41417. height: math.unit(30, "feet"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/veluren-thanazel/front.svg",
  41421. extra: 1486/636,
  41422. bottom: 238/1724
  41423. }
  41424. },
  41425. head: {
  41426. height: math.unit(21.4, "feet"),
  41427. name: "Head",
  41428. image: {
  41429. source: "./media/characters/veluren-thanazel/head.svg"
  41430. }
  41431. },
  41432. genitals: {
  41433. height: math.unit(19.4, "feet"),
  41434. name: "Genitals",
  41435. image: {
  41436. source: "./media/characters/veluren-thanazel/genitals.svg"
  41437. }
  41438. },
  41439. },
  41440. [
  41441. {
  41442. name: "Social",
  41443. height: math.unit(6, "feet")
  41444. },
  41445. {
  41446. name: "Play",
  41447. height: math.unit(12, "feet")
  41448. },
  41449. {
  41450. name: "True",
  41451. height: math.unit(30, "feet"),
  41452. default: true
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41458. {
  41459. front: {
  41460. height: math.unit(7 + 6/12, "feet"),
  41461. weight: math.unit(500, "kg"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/arcturas/front.svg",
  41465. extra: 1700/1500,
  41466. bottom: 145/1845
  41467. }
  41468. },
  41469. },
  41470. [
  41471. {
  41472. name: "Normal",
  41473. height: math.unit(7 + 6/12, "feet"),
  41474. default: true
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41480. {
  41481. side: {
  41482. height: math.unit(6, "feet"),
  41483. weight: math.unit(2, "tons"),
  41484. name: "Side",
  41485. image: {
  41486. source: "./media/characters/vitaen/side.svg",
  41487. extra: 1157/617,
  41488. bottom: 122/1279
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(6, "feet"),
  41496. default: true
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41502. {
  41503. front: {
  41504. height: math.unit(19, "feet"),
  41505. name: "Front",
  41506. image: {
  41507. source: "./media/characters/fia-dreamweaver/front.svg",
  41508. extra: 1630/1504,
  41509. bottom: 25/1655
  41510. }
  41511. },
  41512. },
  41513. [
  41514. {
  41515. name: "Normal",
  41516. height: math.unit(19, "feet"),
  41517. default: true
  41518. },
  41519. ]
  41520. ))
  41521. characterMakers.push(() => makeCharacter(
  41522. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41523. {
  41524. front: {
  41525. height: math.unit(5 + 4/12, "feet"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/artan/front.svg",
  41529. extra: 1618/1535,
  41530. bottom: 46/1664
  41531. }
  41532. },
  41533. back: {
  41534. height: math.unit(5 + 4/12, "feet"),
  41535. name: "Back",
  41536. image: {
  41537. source: "./media/characters/artan/back.svg",
  41538. extra: 1618/1543,
  41539. bottom: 31/1649
  41540. }
  41541. },
  41542. },
  41543. [
  41544. {
  41545. name: "Normal",
  41546. height: math.unit(5 + 4/12, "feet"),
  41547. default: true
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41553. {
  41554. side: {
  41555. height: math.unit(182, "cm"),
  41556. weight: math.unit(1000, "lb"),
  41557. name: "Side",
  41558. image: {
  41559. source: "./media/characters/silver-dragon/side.svg",
  41560. extra: 710/287,
  41561. bottom: 88/798
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(182, "cm"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41575. {
  41576. side: {
  41577. height: math.unit(6 + 6/12, "feet"),
  41578. weight: math.unit(1.5, "tons"),
  41579. name: "Side",
  41580. image: {
  41581. source: "./media/characters/zephyr/side.svg",
  41582. extra: 1433/586,
  41583. bottom: 109/1542
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(6 + 6/12, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41597. {
  41598. side: {
  41599. height: math.unit(1, "feet"),
  41600. name: "Side",
  41601. image: {
  41602. source: "./media/characters/vixye/side.svg",
  41603. extra: 632/541,
  41604. bottom: 0/632
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(1, "feet"),
  41612. default: true
  41613. },
  41614. {
  41615. name: "True",
  41616. height: math.unit(1e15, "multiverses")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(8 + 2/12, "feet"),
  41625. weight: math.unit(650, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41629. extra: 1174/1137,
  41630. bottom: 82/1256
  41631. }
  41632. },
  41633. back: {
  41634. height: math.unit(8 + 2/12, "feet"),
  41635. weight: math.unit(650, "lb"),
  41636. name: "Back",
  41637. image: {
  41638. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41639. extra: 1204/1157,
  41640. bottom: 46/1250
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Wildform",
  41647. height: math.unit(8 + 2/12, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(18, "feet"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/cyphin/front.svg",
  41660. extra: 970/886,
  41661. bottom: 42/1012
  41662. }
  41663. },
  41664. back: {
  41665. height: math.unit(18, "feet"),
  41666. name: "Back",
  41667. image: {
  41668. source: "./media/characters/cyphin/back.svg",
  41669. extra: 1009/894,
  41670. bottom: 24/1033
  41671. }
  41672. },
  41673. head: {
  41674. height: math.unit(5.05, "feet"),
  41675. name: "Head",
  41676. image: {
  41677. source: "./media/characters/cyphin/head.svg"
  41678. }
  41679. },
  41680. tailbud: {
  41681. height: math.unit(5, "feet"),
  41682. name: "Tailbud",
  41683. image: {
  41684. source: "./media/characters/cyphin/tailbud.svg"
  41685. }
  41686. },
  41687. },
  41688. [
  41689. ]
  41690. ))
  41691. characterMakers.push(() => makeCharacter(
  41692. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41693. {
  41694. side: {
  41695. height: math.unit(10, "feet"),
  41696. weight: math.unit(6, "tons"),
  41697. name: "Side",
  41698. image: {
  41699. source: "./media/characters/raijin/side.svg",
  41700. extra: 1529/613,
  41701. bottom: 337/1866
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(10, "feet"),
  41709. default: true
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41715. {
  41716. side: {
  41717. height: math.unit(9, "feet"),
  41718. name: "Side",
  41719. image: {
  41720. source: "./media/characters/nilghais/side.svg",
  41721. extra: 1047/744,
  41722. bottom: 91/1138
  41723. }
  41724. },
  41725. head: {
  41726. height: math.unit(3.14, "feet"),
  41727. name: "Head",
  41728. image: {
  41729. source: "./media/characters/nilghais/head.svg"
  41730. }
  41731. },
  41732. mouth: {
  41733. height: math.unit(4.6, "feet"),
  41734. name: "Mouth",
  41735. image: {
  41736. source: "./media/characters/nilghais/mouth.svg"
  41737. }
  41738. },
  41739. wings: {
  41740. height: math.unit(24, "feet"),
  41741. name: "Wings",
  41742. image: {
  41743. source: "./media/characters/nilghais/wings.svg"
  41744. }
  41745. },
  41746. ass: {
  41747. height: math.unit(6.12, "feet"),
  41748. name: "Ass",
  41749. image: {
  41750. source: "./media/characters/nilghais/ass.svg"
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(9, "feet"),
  41758. default: true
  41759. },
  41760. ]
  41761. ))
  41762. characterMakers.push(() => makeCharacter(
  41763. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41764. {
  41765. regular: {
  41766. height: math.unit(16 + 2/12, "feet"),
  41767. weight: math.unit(2300, "lb"),
  41768. name: "Regular",
  41769. image: {
  41770. source: "./media/characters/zolgar/regular.svg",
  41771. extra: 1246/1004,
  41772. bottom: 124/1370
  41773. }
  41774. },
  41775. boxers: {
  41776. height: math.unit(16 + 2/12, "feet"),
  41777. weight: math.unit(2300, "lb"),
  41778. name: "Boxers",
  41779. image: {
  41780. source: "./media/characters/zolgar/boxers.svg",
  41781. extra: 1246/1004,
  41782. bottom: 124/1370
  41783. }
  41784. },
  41785. armored: {
  41786. height: math.unit(16 + 2/12, "feet"),
  41787. weight: math.unit(2300, "lb"),
  41788. name: "Armored",
  41789. image: {
  41790. source: "./media/characters/zolgar/armored.svg",
  41791. extra: 1246/1004,
  41792. bottom: 124/1370
  41793. }
  41794. },
  41795. goth: {
  41796. height: math.unit(16 + 2/12, "feet"),
  41797. weight: math.unit(2300, "lb"),
  41798. name: "Goth",
  41799. image: {
  41800. source: "./media/characters/zolgar/goth.svg",
  41801. extra: 1246/1004,
  41802. bottom: 124/1370
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Shrunken Down",
  41809. height: math.unit(9 + 2/12, "feet")
  41810. },
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(16 + 2/12, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41820. {
  41821. front: {
  41822. height: math.unit(6, "feet"),
  41823. weight: math.unit(168, "lb"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/luca/front.svg",
  41827. extra: 841/667,
  41828. bottom: 102/943
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(6, "feet"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41842. {
  41843. side: {
  41844. height: math.unit(7 + 3/12, "feet"),
  41845. weight: math.unit(312, "lb"),
  41846. name: "Side",
  41847. image: {
  41848. source: "./media/characters/zezo/side.svg",
  41849. extra: 1192/1067,
  41850. bottom: 63/1255
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(7 + 3/12, "feet"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(5 + 5/12, "feet"),
  41867. weight: math.unit(170, "lb"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/mayso/front.svg",
  41871. extra: 1215/1108,
  41872. bottom: 16/1231
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(5 + 5/12, "feet"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(4 + 3/12, "feet"),
  41889. weight: math.unit(80, "lb"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/hess/front.svg",
  41893. extra: 1200/1123,
  41894. bottom: 16/1216
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(4 + 3/12, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41908. {
  41909. front: {
  41910. height: math.unit(1.9, "meters"),
  41911. name: "Front",
  41912. image: {
  41913. source: "./media/characters/ashgar/front.svg",
  41914. extra: 1177/1146,
  41915. bottom: 99/1276
  41916. }
  41917. },
  41918. back: {
  41919. height: math.unit(1.9, "meters"),
  41920. name: "Back",
  41921. image: {
  41922. source: "./media/characters/ashgar/back.svg",
  41923. extra: 1201/1183,
  41924. bottom: 53/1254
  41925. }
  41926. },
  41927. feral: {
  41928. height: math.unit(1.4, "meters"),
  41929. name: "Feral",
  41930. image: {
  41931. source: "./media/characters/ashgar/feral.svg",
  41932. extra: 370/345,
  41933. bottom: 45/415
  41934. }
  41935. },
  41936. },
  41937. [
  41938. {
  41939. name: "Normal",
  41940. height: math.unit(1.9, "meters"),
  41941. default: true
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41947. {
  41948. regular: {
  41949. height: math.unit(6, "feet"),
  41950. weight: math.unit(220, "lb"),
  41951. name: "Regular",
  41952. image: {
  41953. source: "./media/characters/phillip/regular.svg",
  41954. extra: 1373/1277,
  41955. bottom: 75/1448
  41956. }
  41957. },
  41958. dressed: {
  41959. height: math.unit(6, "feet"),
  41960. weight: math.unit(220, "lb"),
  41961. name: "Dressed",
  41962. image: {
  41963. source: "./media/characters/phillip/dressed.svg",
  41964. extra: 1373/1277,
  41965. bottom: 75/1448
  41966. }
  41967. },
  41968. paw: {
  41969. height: math.unit(1.44, "feet"),
  41970. name: "Paw",
  41971. image: {
  41972. source: "./media/characters/phillip/paw.svg"
  41973. }
  41974. },
  41975. },
  41976. [
  41977. {
  41978. name: "Normal",
  41979. height: math.unit(6, "feet"),
  41980. default: true
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41986. {
  41987. side: {
  41988. height: math.unit(42, "feet"),
  41989. name: "Side",
  41990. image: {
  41991. source: "./media/characters/uvula/side.svg",
  41992. extra: 683/586,
  41993. bottom: 60/743
  41994. }
  41995. },
  41996. front: {
  41997. height: math.unit(42, "feet"),
  41998. name: "Front",
  41999. image: {
  42000. source: "./media/characters/uvula/front.svg",
  42001. extra: 705/613,
  42002. bottom: 54/759
  42003. }
  42004. },
  42005. maw: {
  42006. height: math.unit(23.5, "feet"),
  42007. name: "Maw",
  42008. image: {
  42009. source: "./media/characters/uvula/maw.svg"
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Original Size",
  42016. height: math.unit(14, "inches")
  42017. },
  42018. {
  42019. name: "Human Size",
  42020. height: math.unit(6, "feet")
  42021. },
  42022. {
  42023. name: "Big",
  42024. height: math.unit(42, "feet"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Bigger",
  42029. height: math.unit(100, "feet")
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(5 + 11/12, "feet"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/lannah/front.svg",
  42041. extra: 1208/1113,
  42042. bottom: 97/1305
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(5 + 11/12, "feet"),
  42050. default: true
  42051. },
  42052. ]
  42053. ))
  42054. characterMakers.push(() => makeCharacter(
  42055. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42056. {
  42057. front: {
  42058. height: math.unit(6 + 3/12, "feet"),
  42059. weight: math.unit(3.5, "tons"),
  42060. name: "Front",
  42061. image: {
  42062. source: "./media/characters/emberflame/front.svg",
  42063. extra: 1198/672,
  42064. bottom: 82/1280
  42065. }
  42066. },
  42067. side: {
  42068. height: math.unit(6 + 3/12, "feet"),
  42069. weight: math.unit(3.5, "tons"),
  42070. name: "Side",
  42071. image: {
  42072. source: "./media/characters/emberflame/side.svg",
  42073. extra: 938/527,
  42074. bottom: 56/994
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(6 + 3/12, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42088. {
  42089. side: {
  42090. height: math.unit(17.5, "feet"),
  42091. weight: math.unit(35, "tons"),
  42092. name: "Side",
  42093. image: {
  42094. source: "./media/characters/sophie-ambrose/side.svg",
  42095. extra: 1573/1242,
  42096. bottom: 71/1644
  42097. }
  42098. },
  42099. maw: {
  42100. height: math.unit(7.4, "feet"),
  42101. name: "Maw",
  42102. image: {
  42103. source: "./media/characters/sophie-ambrose/maw.svg"
  42104. }
  42105. },
  42106. },
  42107. [
  42108. {
  42109. name: "Normal",
  42110. height: math.unit(17.5, "feet"),
  42111. default: true
  42112. },
  42113. ]
  42114. ))
  42115. characterMakers.push(() => makeCharacter(
  42116. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42117. {
  42118. front: {
  42119. height: math.unit(280, "feet"),
  42120. weight: math.unit(550, "tons"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/king-mugi/front.svg",
  42124. extra: 1102/947,
  42125. bottom: 104/1206
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "King Mugi",
  42132. height: math.unit(280, "feet"),
  42133. default: true
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(64, "meters"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/nova-fox/front.svg",
  42145. extra: 1310/1246,
  42146. bottom: 65/1375
  42147. }
  42148. },
  42149. },
  42150. [
  42151. {
  42152. name: "Macro",
  42153. height: math.unit(64, "meters"),
  42154. default: true
  42155. },
  42156. ]
  42157. ))
  42158. characterMakers.push(() => makeCharacter(
  42159. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42160. {
  42161. front: {
  42162. height: math.unit(6 + 3/12, "feet"),
  42163. weight: math.unit(170, "lb"),
  42164. name: "Front",
  42165. image: {
  42166. source: "./media/characters/sam-bat/front.svg",
  42167. extra: 1601/1411,
  42168. bottom: 125/1726
  42169. }
  42170. },
  42171. back: {
  42172. height: math.unit(6 + 3/12, "feet"),
  42173. weight: math.unit(170, "lb"),
  42174. name: "Back",
  42175. image: {
  42176. source: "./media/characters/sam-bat/back.svg",
  42177. extra: 1577/1405,
  42178. bottom: 58/1635
  42179. }
  42180. },
  42181. },
  42182. [
  42183. {
  42184. name: "Normal",
  42185. height: math.unit(6 + 3/12, "feet"),
  42186. default: true
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42192. {
  42193. front: {
  42194. height: math.unit(59, "feet"),
  42195. weight: math.unit(40000, "lb"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/inari/front.svg",
  42199. extra: 1884/1350,
  42200. bottom: 95/1979
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Gigantamax",
  42207. height: math.unit(59, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(5 + 8/12, "feet"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/elizabeth/front.svg",
  42220. extra: 1395/1298,
  42221. bottom: 54/1449
  42222. }
  42223. },
  42224. mouth: {
  42225. height: math.unit(1.97, "feet"),
  42226. name: "Mouth",
  42227. image: {
  42228. source: "./media/characters/elizabeth/mouth.svg"
  42229. }
  42230. },
  42231. foot: {
  42232. height: math.unit(1.17, "feet"),
  42233. name: "Foot",
  42234. image: {
  42235. source: "./media/characters/elizabeth/foot.svg"
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Normal",
  42242. height: math.unit(5 + 8/12, "feet"),
  42243. default: true
  42244. },
  42245. {
  42246. name: "Minimacro",
  42247. height: math.unit(18, "feet")
  42248. },
  42249. {
  42250. name: "Macro",
  42251. height: math.unit(180, "feet")
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42257. {
  42258. front: {
  42259. height: math.unit(5 + 2/12, "feet"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/october-gossamer/front.svg",
  42263. extra: 505/454,
  42264. bottom: 7/512
  42265. }
  42266. },
  42267. back: {
  42268. height: math.unit(5 + 2/12, "feet"),
  42269. name: "Back",
  42270. image: {
  42271. source: "./media/characters/october-gossamer/back.svg",
  42272. extra: 501/454,
  42273. bottom: 11/512
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(5 + 2/12, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(5, "feet"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/epiglottis/front.svg",
  42293. extra: 923/849,
  42294. bottom: 17/940
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Original Size",
  42301. height: math.unit(10, "inches")
  42302. },
  42303. {
  42304. name: "Human Size",
  42305. height: math.unit(5, "feet"),
  42306. default: true
  42307. },
  42308. {
  42309. name: "Big",
  42310. height: math.unit(25, "feet")
  42311. },
  42312. {
  42313. name: "Bigger",
  42314. height: math.unit(50, "feet")
  42315. },
  42316. {
  42317. name: "oh lawd",
  42318. height: math.unit(75, "feet")
  42319. },
  42320. ]
  42321. ))
  42322. characterMakers.push(() => makeCharacter(
  42323. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42324. {
  42325. front: {
  42326. height: math.unit(2 + 4/12, "feet"),
  42327. weight: math.unit(60, "lb"),
  42328. name: "Front",
  42329. image: {
  42330. source: "./media/characters/lerm/front.svg",
  42331. extra: 796/790,
  42332. bottom: 79/875
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Normal",
  42339. height: math.unit(2 + 4/12, "feet"),
  42340. default: true
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(5.5, "feet"),
  42349. weight: math.unit(130, "lb"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/xena-nebadon/front.svg",
  42353. extra: 1828/1730,
  42354. bottom: 79/1907
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Tiny Puppy",
  42361. height: math.unit(3, "inches")
  42362. },
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(5.5, "feet"),
  42366. default: true
  42367. },
  42368. {
  42369. name: "Lotta Lady",
  42370. height: math.unit(12, "feet")
  42371. },
  42372. {
  42373. name: "Pretty Big",
  42374. height: math.unit(100, "feet")
  42375. },
  42376. {
  42377. name: "Big",
  42378. height: math.unit(500, "feet")
  42379. },
  42380. {
  42381. name: "Skyscraper Toys",
  42382. height: math.unit(2500, "feet")
  42383. },
  42384. {
  42385. name: "Plane Catcher",
  42386. height: math.unit(8, "miles")
  42387. },
  42388. {
  42389. name: "Planet Toys",
  42390. height: math.unit(15, "earths")
  42391. },
  42392. {
  42393. name: "Stardust",
  42394. height: math.unit(0.25, "galaxies")
  42395. },
  42396. {
  42397. name: "Snacks",
  42398. height: math.unit(70, "universes")
  42399. },
  42400. ]
  42401. ))
  42402. characterMakers.push(() => makeCharacter(
  42403. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42404. {
  42405. front: {
  42406. height: math.unit(1.6, "meters"),
  42407. weight: math.unit(60, "kg"),
  42408. name: "Front",
  42409. image: {
  42410. source: "./media/characters/bounty/front.svg",
  42411. extra: 1426/1308,
  42412. bottom: 15/1441
  42413. }
  42414. },
  42415. back: {
  42416. height: math.unit(1.6, "meters"),
  42417. weight: math.unit(60, "kg"),
  42418. name: "Back",
  42419. image: {
  42420. source: "./media/characters/bounty/back.svg",
  42421. extra: 1417/1307,
  42422. bottom: 8/1425
  42423. }
  42424. },
  42425. },
  42426. [
  42427. {
  42428. name: "Normal",
  42429. height: math.unit(1.6, "meters"),
  42430. default: true
  42431. },
  42432. {
  42433. name: "Macro",
  42434. height: math.unit(300, "meters")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42440. {
  42441. front: {
  42442. height: math.unit(2 + 8/12, "feet"),
  42443. weight: math.unit(15, "lb"),
  42444. name: "Front",
  42445. image: {
  42446. source: "./media/characters/mochi/front.svg",
  42447. extra: 1022/852,
  42448. bottom: 435/1457
  42449. }
  42450. },
  42451. back: {
  42452. height: math.unit(2 + 8/12, "feet"),
  42453. weight: math.unit(15, "lb"),
  42454. name: "Back",
  42455. image: {
  42456. source: "./media/characters/mochi/back.svg",
  42457. extra: 1335/1119,
  42458. bottom: 39/1374
  42459. }
  42460. },
  42461. bird: {
  42462. height: math.unit(2 + 8/12, "feet"),
  42463. weight: math.unit(15, "lb"),
  42464. name: "Bird",
  42465. image: {
  42466. source: "./media/characters/mochi/bird.svg",
  42467. extra: 1251/1113,
  42468. bottom: 178/1429
  42469. }
  42470. },
  42471. kaiju: {
  42472. height: math.unit(154, "feet"),
  42473. weight: math.unit(1e7, "lb"),
  42474. name: "Kaiju",
  42475. image: {
  42476. source: "./media/characters/mochi/kaiju.svg",
  42477. extra: 460/324,
  42478. bottom: 40/500
  42479. }
  42480. },
  42481. head: {
  42482. height: math.unit(1.21, "feet"),
  42483. name: "Head",
  42484. image: {
  42485. source: "./media/characters/mochi/head.svg"
  42486. }
  42487. },
  42488. alternateTail: {
  42489. height: math.unit(2 + 8/12, "feet"),
  42490. weight: math.unit(45, "lb"),
  42491. name: "Alternate Tail",
  42492. image: {
  42493. source: "./media/characters/mochi/alternate-tail.svg",
  42494. extra: 139/76,
  42495. bottom: 45/184
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Micro",
  42502. height: math.unit(2, "inches")
  42503. },
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(2 + 8/12, "feet"),
  42507. default: true
  42508. },
  42509. {
  42510. name: "Macro",
  42511. height: math.unit(106, "feet")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(5.67, "feet"),
  42520. weight: math.unit(135, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/sarel/front.svg",
  42524. extra: 865/788,
  42525. bottom: 97/962
  42526. }
  42527. },
  42528. back: {
  42529. height: math.unit(5.67, "feet"),
  42530. weight: math.unit(135, "lb"),
  42531. name: "Back",
  42532. image: {
  42533. source: "./media/characters/sarel/back.svg",
  42534. extra: 857/777,
  42535. bottom: 32/889
  42536. }
  42537. },
  42538. chozoan: {
  42539. height: math.unit(5.67, "feet"),
  42540. weight: math.unit(135, "lb"),
  42541. name: "Chozoan",
  42542. image: {
  42543. source: "./media/characters/sarel/chozoan.svg",
  42544. extra: 865/788,
  42545. bottom: 97/962
  42546. }
  42547. },
  42548. current: {
  42549. height: math.unit(5.67, "feet"),
  42550. weight: math.unit(135, "lb"),
  42551. name: "Current",
  42552. image: {
  42553. source: "./media/characters/sarel/current.svg",
  42554. extra: 865/788,
  42555. bottom: 97/962
  42556. }
  42557. },
  42558. head: {
  42559. height: math.unit(1.77, "feet"),
  42560. name: "Head",
  42561. image: {
  42562. source: "./media/characters/sarel/head.svg"
  42563. }
  42564. },
  42565. claws: {
  42566. height: math.unit(1.8, "feet"),
  42567. name: "Claws",
  42568. image: {
  42569. source: "./media/characters/sarel/claws.svg"
  42570. }
  42571. },
  42572. clawsAlt: {
  42573. height: math.unit(1.8, "feet"),
  42574. name: "Claws-alt",
  42575. image: {
  42576. source: "./media/characters/sarel/claws-alt.svg"
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Normal",
  42583. height: math.unit(5.67, "feet"),
  42584. default: true
  42585. },
  42586. ]
  42587. ))
  42588. characterMakers.push(() => makeCharacter(
  42589. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42590. {
  42591. front: {
  42592. height: math.unit(5500, "feet"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/alyonia/front.svg",
  42596. extra: 1200/1135,
  42597. bottom: 29/1229
  42598. }
  42599. },
  42600. back: {
  42601. height: math.unit(5500, "feet"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/alyonia/back.svg",
  42605. extra: 1205/1138,
  42606. bottom: 10/1215
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Small",
  42613. height: math.unit(10, "feet")
  42614. },
  42615. {
  42616. name: "Macro",
  42617. height: math.unit(500, "feet")
  42618. },
  42619. {
  42620. name: "Mega Macro",
  42621. height: math.unit(5500, "feet"),
  42622. default: true
  42623. },
  42624. {
  42625. name: "Mega Macro+",
  42626. height: math.unit(500000, "feet")
  42627. },
  42628. {
  42629. name: "Giga Macro",
  42630. height: math.unit(3000, "miles")
  42631. },
  42632. {
  42633. name: "Tera Macro",
  42634. height: math.unit(2.8e6, "miles")
  42635. },
  42636. {
  42637. name: "Galactic",
  42638. height: math.unit(120000, "lightyears")
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42644. {
  42645. werewolf: {
  42646. height: math.unit(8, "feet"),
  42647. weight: math.unit(425, "lb"),
  42648. name: "Werewolf",
  42649. image: {
  42650. source: "./media/characters/autumn/werewolf.svg",
  42651. extra: 2154/2031,
  42652. bottom: 160/2314
  42653. }
  42654. },
  42655. human: {
  42656. height: math.unit(5 + 8/12, "feet"),
  42657. weight: math.unit(150, "lb"),
  42658. name: "Human",
  42659. image: {
  42660. source: "./media/characters/autumn/human.svg",
  42661. extra: 1200/1149,
  42662. bottom: 30/1230
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(8, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(8 + 5/12, "feet"),
  42679. weight: math.unit(825, "lb"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/cobalt-charizard/front.svg",
  42683. extra: 1268/1155,
  42684. bottom: 122/1390
  42685. }
  42686. },
  42687. side: {
  42688. height: math.unit(8 + 5/12, "feet"),
  42689. weight: math.unit(825, "lb"),
  42690. name: "Side",
  42691. image: {
  42692. source: "./media/characters/cobalt-charizard/side.svg",
  42693. extra: 1348/1257,
  42694. bottom: 58/1406
  42695. }
  42696. },
  42697. gMax: {
  42698. height: math.unit(134 + 11/12, "feet"),
  42699. name: "G-Max",
  42700. image: {
  42701. source: "./media/characters/cobalt-charizard/g-max.svg",
  42702. extra: 1835/1541,
  42703. bottom: 151/1986
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(8 + 5/12, "feet"),
  42711. default: true
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(6 + 3/12, "feet"),
  42720. weight: math.unit(210, "lb"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/stella/front.svg",
  42724. extra: 3549/3335,
  42725. bottom: 51/3600
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Normal",
  42732. height: math.unit(6 + 3/12, "feet"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(5, "feet"),
  42742. weight: math.unit(90, "lb"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/riley-bishop/front.svg",
  42746. extra: 1450/1428,
  42747. bottom: 152/1602
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(5, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42761. {
  42762. side: {
  42763. height: math.unit(8 + 2/12, "feet"),
  42764. weight: math.unit(500, "kg"),
  42765. name: "Side",
  42766. image: {
  42767. source: "./media/characters/theo-arcanine/side.svg",
  42768. extra: 1342/1074,
  42769. bottom: 111/1453
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(8 + 2/12, "feet"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42783. {
  42784. front: {
  42785. height: math.unit(4, "feet"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/kali/front.svg",
  42789. extra: 1921/1357,
  42790. bottom: 70/1991
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(4, "feet"),
  42798. default: true
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(32, "meters")
  42803. },
  42804. {
  42805. name: "Macro+",
  42806. height: math.unit(150, "meters")
  42807. },
  42808. {
  42809. name: "Megamacro",
  42810. height: math.unit(7500, "meters")
  42811. },
  42812. {
  42813. name: "Megamacro+",
  42814. height: math.unit(80, "kilometers")
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42820. {
  42821. side: {
  42822. height: math.unit(5 + 11/12, "feet"),
  42823. weight: math.unit(236, "lb"),
  42824. name: "Side",
  42825. image: {
  42826. source: "./media/characters/gapp/side.svg",
  42827. extra: 775/340,
  42828. bottom: 58/833
  42829. }
  42830. },
  42831. mouth: {
  42832. height: math.unit(2.98, "feet"),
  42833. name: "Mouth",
  42834. image: {
  42835. source: "./media/characters/gapp/mouth.svg"
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Normal",
  42842. height: math.unit(5 + 1/12, "feet"),
  42843. default: true
  42844. },
  42845. ]
  42846. ))
  42847. characterMakers.push(() => makeCharacter(
  42848. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42849. {
  42850. front: {
  42851. height: math.unit(6, "feet"),
  42852. name: "Front",
  42853. image: {
  42854. source: "./media/characters/persephone/front.svg",
  42855. extra: 1895/1717,
  42856. bottom: 96/1991
  42857. }
  42858. },
  42859. back: {
  42860. height: math.unit(6, "feet"),
  42861. name: "Back",
  42862. image: {
  42863. source: "./media/characters/persephone/back.svg",
  42864. extra: 1868/1679,
  42865. bottom: 26/1894
  42866. }
  42867. },
  42868. casual: {
  42869. height: math.unit(6, "feet"),
  42870. name: "Casual",
  42871. image: {
  42872. source: "./media/characters/persephone/casual.svg",
  42873. extra: 1713/1541,
  42874. bottom: 76/1789
  42875. }
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Human Size",
  42881. height: math.unit(6, "feet")
  42882. },
  42883. {
  42884. name: "Big Steppy",
  42885. height: math.unit(600, "meters"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Galaxy Brain",
  42890. height: math.unit(1, "zettameter")
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42896. {
  42897. front: {
  42898. height: math.unit(1.85, "meters"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/riley-foxthing/front.svg",
  42902. extra: 1495/1354,
  42903. bottom: 122/1617
  42904. }
  42905. },
  42906. frontAlt: {
  42907. height: math.unit(1.85, "meters"),
  42908. name: "Front (Alt)",
  42909. image: {
  42910. source: "./media/characters/riley-foxthing/front-alt.svg",
  42911. extra: 1572/1389,
  42912. bottom: 116/1688
  42913. }
  42914. },
  42915. },
  42916. [
  42917. {
  42918. name: "Normal Sized",
  42919. height: math.unit(1.85, "meters"),
  42920. default: true
  42921. },
  42922. {
  42923. name: "Quite Sizable",
  42924. height: math.unit(5, "meters")
  42925. },
  42926. {
  42927. name: "Rather Large",
  42928. height: math.unit(20, "meters")
  42929. },
  42930. {
  42931. name: "Macro",
  42932. height: math.unit(450, "meters")
  42933. },
  42934. {
  42935. name: "Giga",
  42936. height: math.unit(5, "km")
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42942. {
  42943. front: {
  42944. height: math.unit(6, "feet"),
  42945. weight: math.unit(200, "lb"),
  42946. name: "Front",
  42947. image: {
  42948. source: "./media/characters/blizzard/front.svg",
  42949. extra: 1136/990,
  42950. bottom: 136/1272
  42951. }
  42952. },
  42953. back: {
  42954. height: math.unit(6, "feet"),
  42955. weight: math.unit(200, "lb"),
  42956. name: "Back",
  42957. image: {
  42958. source: "./media/characters/blizzard/back.svg",
  42959. extra: 1175/1034,
  42960. bottom: 97/1272
  42961. }
  42962. },
  42963. sitting: {
  42964. height: math.unit(3.725, "feet"),
  42965. weight: math.unit(200, "lb"),
  42966. name: "Sitting",
  42967. image: {
  42968. source: "./media/characters/blizzard/sitting.svg",
  42969. extra: 581/485,
  42970. bottom: 90/671
  42971. }
  42972. },
  42973. frontWizard: {
  42974. height: math.unit(7.9, "feet"),
  42975. weight: math.unit(200, "lb"),
  42976. name: "Front (Wizard)",
  42977. image: {
  42978. source: "./media/characters/blizzard/front-wizard.svg"
  42979. }
  42980. },
  42981. backWizard: {
  42982. height: math.unit(7.9, "feet"),
  42983. weight: math.unit(200, "lb"),
  42984. name: "Back (Wizard)",
  42985. image: {
  42986. source: "./media/characters/blizzard/back-wizard.svg"
  42987. }
  42988. },
  42989. frontNsfw: {
  42990. height: math.unit(6, "feet"),
  42991. weight: math.unit(200, "lb"),
  42992. name: "Front (NSFW)",
  42993. image: {
  42994. source: "./media/characters/blizzard/front-nsfw.svg",
  42995. extra: 1136/990,
  42996. bottom: 136/1272
  42997. }
  42998. },
  42999. backNsfw: {
  43000. height: math.unit(6, "feet"),
  43001. weight: math.unit(200, "lb"),
  43002. name: "Back (NSFW)",
  43003. image: {
  43004. source: "./media/characters/blizzard/back-nsfw.svg",
  43005. extra: 1175/1034,
  43006. bottom: 97/1272
  43007. }
  43008. },
  43009. sittingNsfw: {
  43010. height: math.unit(3.725, "feet"),
  43011. weight: math.unit(200, "lb"),
  43012. name: "Sitting (NSFW)",
  43013. image: {
  43014. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43015. extra: 581/485,
  43016. bottom: 90/671
  43017. }
  43018. },
  43019. wizardFrontNsfw: {
  43020. height: math.unit(7.9, "feet"),
  43021. weight: math.unit(200, "lb"),
  43022. name: "Wizard (Front, NSFW)",
  43023. image: {
  43024. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Normal",
  43031. height: math.unit(6, "feet"),
  43032. default: true
  43033. },
  43034. ]
  43035. ))
  43036. characterMakers.push(() => makeCharacter(
  43037. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43038. {
  43039. front: {
  43040. height: math.unit(5 + 2/12, "feet"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/lumi/front.svg",
  43044. extra: 1328/1268,
  43045. bottom: 103/1431
  43046. }
  43047. },
  43048. back: {
  43049. height: math.unit(5 + 2/12, "feet"),
  43050. name: "Back",
  43051. image: {
  43052. source: "./media/characters/lumi/back.svg",
  43053. extra: 1381/1327,
  43054. bottom: 43/1424
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Normal",
  43061. height: math.unit(5 + 2/12, "feet"),
  43062. default: true
  43063. },
  43064. ]
  43065. ))
  43066. characterMakers.push(() => makeCharacter(
  43067. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43068. {
  43069. front: {
  43070. height: math.unit(5 + 9/12, "feet"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/aliya-cotton/front.svg",
  43074. extra: 577/564,
  43075. bottom: 29/606
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(5 + 9/12, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(2.7, "meters"),
  43092. weight: math.unit(25000, "lb"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/noah-luxray/front.svg",
  43096. extra: 1644/825,
  43097. bottom: 339/1983
  43098. }
  43099. },
  43100. side: {
  43101. height: math.unit(2.97, "meters"),
  43102. weight: math.unit(25000, "lb"),
  43103. name: "Side",
  43104. image: {
  43105. source: "./media/characters/noah-luxray/side.svg",
  43106. extra: 1319/650,
  43107. bottom: 163/1482
  43108. }
  43109. },
  43110. dick: {
  43111. height: math.unit(7.4, "feet"),
  43112. weight: math.unit(2500, "lb"),
  43113. name: "Dick",
  43114. image: {
  43115. source: "./media/characters/noah-luxray/dick.svg"
  43116. }
  43117. },
  43118. dickAlt: {
  43119. height: math.unit(10.83, "feet"),
  43120. weight: math.unit(2500, "lb"),
  43121. name: "Dick-alt",
  43122. image: {
  43123. source: "./media/characters/noah-luxray/dick-alt.svg"
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "BIG",
  43130. height: math.unit(2.7, "meters"),
  43131. default: true
  43132. },
  43133. ]
  43134. ))
  43135. characterMakers.push(() => makeCharacter(
  43136. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43137. {
  43138. standing: {
  43139. height: math.unit(183, "cm"),
  43140. weight: math.unit(68, "kg"),
  43141. name: "Standing",
  43142. image: {
  43143. source: "./media/characters/arion/standing.svg",
  43144. extra: 1869/1807,
  43145. bottom: 93/1962
  43146. }
  43147. },
  43148. reclining: {
  43149. height: math.unit(70.5, "cm"),
  43150. weight: math.unit(68, "lb"),
  43151. name: "Reclining",
  43152. image: {
  43153. source: "./media/characters/arion/reclining.svg",
  43154. extra: 937/870,
  43155. bottom: 63/1000
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "Colossus Size, Low",
  43162. height: math.unit(33, "meters"),
  43163. default: true
  43164. },
  43165. {
  43166. name: "Colossus Size, Mid",
  43167. height: math.unit(52, "meters")
  43168. },
  43169. {
  43170. name: "Colossus Size, High",
  43171. height: math.unit(60, "meters")
  43172. },
  43173. {
  43174. name: "Titan Size, Low",
  43175. height: math.unit(91, "meters"),
  43176. },
  43177. {
  43178. name: "Titan Size, Mid",
  43179. height: math.unit(122, "meters")
  43180. },
  43181. {
  43182. name: "Titan Size, High",
  43183. height: math.unit(162, "meters")
  43184. },
  43185. ]
  43186. ))
  43187. characterMakers.push(() => makeCharacter(
  43188. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43189. {
  43190. front: {
  43191. height: math.unit(53, "meters"),
  43192. name: "Front",
  43193. image: {
  43194. source: "./media/characters/stellar-marbey/front.svg",
  43195. extra: 1913/1805,
  43196. bottom: 92/2005
  43197. }
  43198. },
  43199. back: {
  43200. height: math.unit(53, "meters"),
  43201. name: "Back",
  43202. image: {
  43203. source: "./media/characters/stellar-marbey/back.svg",
  43204. extra: 1960/1851,
  43205. bottom: 28/1988
  43206. }
  43207. },
  43208. mouth: {
  43209. height: math.unit(3.5, "meters"),
  43210. name: "Mouth",
  43211. image: {
  43212. source: "./media/characters/stellar-marbey/mouth.svg"
  43213. }
  43214. },
  43215. },
  43216. [
  43217. {
  43218. name: "Macro",
  43219. height: math.unit(53, "meters"),
  43220. default: true
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43226. {
  43227. front: {
  43228. height: math.unit(8 + 1/12, "feet"),
  43229. weight: math.unit(233, "lb"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/matsu/front.svg",
  43233. extra: 832/772,
  43234. bottom: 40/872
  43235. }
  43236. },
  43237. back: {
  43238. height: math.unit(8 + 1/12, "feet"),
  43239. weight: math.unit(233, "lb"),
  43240. name: "Back",
  43241. image: {
  43242. source: "./media/characters/matsu/back.svg",
  43243. extra: 839/780,
  43244. bottom: 47/886
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Normal",
  43251. height: math.unit(8 + 1/12, "feet"),
  43252. default: true
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(4, "feet"),
  43261. weight: math.unit(148, "lb"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/thiz/front.svg",
  43265. extra: 1913/1748,
  43266. bottom: 62/1975
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(4, "feet"),
  43274. default: true
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(7 + 6/12, "feet"),
  43283. weight: math.unit(267, "lb"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/marcel/front.svg",
  43287. extra: 1221/1096,
  43288. bottom: 76/1297
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(7 + 6/12, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43302. {
  43303. side: {
  43304. height: math.unit(42, "meters"),
  43305. name: "Side",
  43306. image: {
  43307. source: "./media/characters/flake/side.svg",
  43308. extra: 1525/1306,
  43309. bottom: 209/1734
  43310. }
  43311. },
  43312. },
  43313. [
  43314. {
  43315. name: "Normal",
  43316. height: math.unit(42, "meters"),
  43317. default: true
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43323. {
  43324. dressed: {
  43325. height: math.unit(6 + 4/12, "feet"),
  43326. weight: math.unit(520, "lb"),
  43327. name: "Dressed",
  43328. image: {
  43329. source: "./media/characters/someonne/dressed.svg",
  43330. extra: 1020/1010,
  43331. bottom: 178/1198
  43332. }
  43333. },
  43334. undressed: {
  43335. height: math.unit(6 + 4/12, "feet"),
  43336. weight: math.unit(520, "lb"),
  43337. name: "Undressed",
  43338. image: {
  43339. source: "./media/characters/someonne/undressed.svg",
  43340. extra: 1019/1014,
  43341. bottom: 169/1188
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(6 + 4/12, "feet"),
  43349. default: true
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43355. {
  43356. front: {
  43357. height: math.unit(3, "feet"),
  43358. weight: math.unit(30, "lb"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/till/front.svg",
  43362. extra: 892/823,
  43363. bottom: 55/947
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(3, "feet"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(9 + 8/12, "feet"),
  43380. weight: math.unit(800, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/sydney-heki/front.svg",
  43384. extra: 1360/1300,
  43385. bottom: 22/1382
  43386. }
  43387. },
  43388. back: {
  43389. height: math.unit(9 + 8/12, "feet"),
  43390. weight: math.unit(800, "lb"),
  43391. name: "Back",
  43392. image: {
  43393. source: "./media/characters/sydney-heki/back.svg",
  43394. extra: 1356/1293,
  43395. bottom: 12/1368
  43396. }
  43397. },
  43398. frontDressed: {
  43399. height: math.unit(9 + 8/12, "feet"),
  43400. weight: math.unit(800, "lb"),
  43401. name: "Front-dressed",
  43402. image: {
  43403. source: "./media/characters/sydney-heki/front-dressed.svg",
  43404. extra: 1360/1300,
  43405. bottom: 22/1382
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(9 + 8/12, "feet"),
  43413. default: true
  43414. },
  43415. {
  43416. name: "Macro",
  43417. height: math.unit(500, "feet")
  43418. },
  43419. {
  43420. name: "Megamacro",
  43421. height: math.unit(3.6, "miles")
  43422. },
  43423. ]
  43424. ))
  43425. characterMakers.push(() => makeCharacter(
  43426. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43427. {
  43428. front: {
  43429. height: math.unit(200, "cm"),
  43430. weight: math.unit(250, "lb"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/fowler-karlsson/front.svg",
  43434. extra: 897/845,
  43435. bottom: 123/1020
  43436. }
  43437. },
  43438. back: {
  43439. height: math.unit(200, "cm"),
  43440. weight: math.unit(250, "lb"),
  43441. name: "Back",
  43442. image: {
  43443. source: "./media/characters/fowler-karlsson/back.svg",
  43444. extra: 999/944,
  43445. bottom: 26/1025
  43446. }
  43447. },
  43448. dick: {
  43449. height: math.unit(1.92, "feet"),
  43450. weight: math.unit(150, "lb"),
  43451. name: "Dick",
  43452. image: {
  43453. source: "./media/characters/fowler-karlsson/dick.svg"
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Normal",
  43460. height: math.unit(200, "cm"),
  43461. default: true
  43462. },
  43463. {
  43464. name: "Smaller Macro",
  43465. height: math.unit(90, "m")
  43466. },
  43467. {
  43468. name: "Macro",
  43469. height: math.unit(150, "m")
  43470. },
  43471. {
  43472. name: "Bigger Macro",
  43473. height: math.unit(300, "m")
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43479. {
  43480. side: {
  43481. height: math.unit(8 + 2/12, "feet"),
  43482. weight: math.unit(1, "tonne"),
  43483. name: "Side",
  43484. image: {
  43485. source: "./media/characters/rylide/side.svg",
  43486. extra: 1318/1034,
  43487. bottom: 106/1424
  43488. }
  43489. },
  43490. sitting: {
  43491. height: math.unit(303, "cm"),
  43492. weight: math.unit(1, "tonne"),
  43493. name: "Sitting",
  43494. image: {
  43495. source: "./media/characters/rylide/sitting.svg",
  43496. extra: 1303/1103,
  43497. bottom: 36/1339
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(8 + 2/12, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(5 + 10/12, "feet"),
  43514. weight: math.unit(160, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/pudask/front.svg",
  43518. extra: 1616/1590,
  43519. bottom: 161/1777
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Ferret Height",
  43526. height: math.unit(2 + 5/12, "feet")
  43527. },
  43528. {
  43529. name: "Canon Height",
  43530. height: math.unit(5 + 10/12, "feet"),
  43531. default: true
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(3 + 6/12, "feet"),
  43540. weight: math.unit(60, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/ramita/front.svg",
  43544. extra: 1402/1232,
  43545. bottom: 62/1464
  43546. }
  43547. },
  43548. dressed: {
  43549. height: math.unit(3 + 6/12, "feet"),
  43550. weight: math.unit(60, "lb"),
  43551. name: "Dressed",
  43552. image: {
  43553. source: "./media/characters/ramita/dressed.svg",
  43554. extra: 1534/1249,
  43555. bottom: 50/1584
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(3 + 6/12, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(8, "feet"),
  43572. name: "Front",
  43573. image: {
  43574. source: "./media/characters/ark/front.svg",
  43575. extra: 772/693,
  43576. bottom: 45/817
  43577. }
  43578. },
  43579. },
  43580. [
  43581. {
  43582. name: "Normal",
  43583. height: math.unit(8, "feet"),
  43584. default: true
  43585. },
  43586. ]
  43587. ))
  43588. characterMakers.push(() => makeCharacter(
  43589. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43590. {
  43591. front: {
  43592. height: math.unit(6, "feet"),
  43593. weight: math.unit(250, "lb"),
  43594. volume: math.unit(5/8, "gallons"),
  43595. name: "Front",
  43596. image: {
  43597. source: "./media/characters/ludwig-horn/front.svg",
  43598. extra: 1782/1635,
  43599. bottom: 96/1878
  43600. }
  43601. },
  43602. back: {
  43603. height: math.unit(6, "feet"),
  43604. weight: math.unit(250, "lb"),
  43605. volume: math.unit(5/8, "gallons"),
  43606. name: "Back",
  43607. image: {
  43608. source: "./media/characters/ludwig-horn/back.svg",
  43609. extra: 1874/1729,
  43610. bottom: 27/1901
  43611. }
  43612. },
  43613. dick: {
  43614. height: math.unit(1.05, "feet"),
  43615. weight: math.unit(15, "lb"),
  43616. volume: math.unit(5/8, "gallons"),
  43617. name: "Dick",
  43618. image: {
  43619. source: "./media/characters/ludwig-horn/dick.svg"
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Small",
  43626. height: math.unit(6, "feet")
  43627. },
  43628. {
  43629. name: "Typical",
  43630. height: math.unit(12, "feet"),
  43631. default: true
  43632. },
  43633. {
  43634. name: "Building",
  43635. height: math.unit(80, "feet")
  43636. },
  43637. {
  43638. name: "Town",
  43639. height: math.unit(800, "feet")
  43640. },
  43641. {
  43642. name: "Kingdom",
  43643. height: math.unit(80000, "feet")
  43644. },
  43645. {
  43646. name: "Planet",
  43647. height: math.unit(8000000, "feet")
  43648. },
  43649. {
  43650. name: "Universe",
  43651. height: math.unit(8000000000, "feet")
  43652. },
  43653. {
  43654. name: "Transcended",
  43655. height: math.unit(8e27, "feet")
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(5, "feet"),
  43664. weight: math.unit(50, "kg"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/biot-avery/front.svg",
  43668. extra: 1295/1232,
  43669. bottom: 86/1381
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(5, "feet"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(6, "feet"),
  43686. name: "Front",
  43687. image: {
  43688. source: "./media/characters/kitsune-kiro/front.svg",
  43689. extra: 1270/1158,
  43690. bottom: 42/1312
  43691. }
  43692. },
  43693. frontAlt: {
  43694. height: math.unit(6, "feet"),
  43695. name: "Front-alt",
  43696. image: {
  43697. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43698. extra: 1130/1081,
  43699. bottom: 36/1166
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Smol",
  43706. height: math.unit(3, "feet")
  43707. },
  43708. {
  43709. name: "Normal",
  43710. height: math.unit(6, "feet"),
  43711. default: true
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43717. {
  43718. front: {
  43719. height: math.unit(6, "feet"),
  43720. weight: math.unit(125, "lb"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/jack-thatcher/front.svg",
  43724. extra: 1474/1370,
  43725. bottom: 26/1500
  43726. }
  43727. },
  43728. back: {
  43729. height: math.unit(6, "feet"),
  43730. weight: math.unit(125, "lb"),
  43731. name: "Back",
  43732. image: {
  43733. source: "./media/characters/jack-thatcher/back.svg",
  43734. extra: 1489/1384,
  43735. bottom: 18/1507
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(6, "feet"),
  43743. default: true
  43744. },
  43745. {
  43746. name: "Macro",
  43747. height: math.unit(75, "feet")
  43748. },
  43749. {
  43750. name: "Macro-er",
  43751. height: math.unit(250, "feet")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(7, "feet"),
  43760. weight: math.unit(110, "kg"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/max-hyper/front.svg",
  43764. extra: 1969/1881,
  43765. bottom: 49/2018
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(7, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(5 + 5/12, "feet"),
  43782. weight: math.unit(160, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/spook/front.svg",
  43786. extra: 794/791,
  43787. bottom: 54/848
  43788. }
  43789. },
  43790. back: {
  43791. height: math.unit(5 + 5/12, "feet"),
  43792. weight: math.unit(160, "lb"),
  43793. name: "Back",
  43794. image: {
  43795. source: "./media/characters/spook/back.svg",
  43796. extra: 812/798,
  43797. bottom: 32/844
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(5 + 5/12, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(18, "feet"),
  43814. name: "Front",
  43815. image: {
  43816. source: "./media/characters/xeaduulix/front.svg",
  43817. extra: 1380/1166,
  43818. bottom: 110/1490
  43819. }
  43820. },
  43821. back: {
  43822. height: math.unit(18, "feet"),
  43823. name: "Back",
  43824. image: {
  43825. source: "./media/characters/xeaduulix/back.svg",
  43826. extra: 1592/1170,
  43827. bottom: 128/1720
  43828. }
  43829. },
  43830. frontNsfw: {
  43831. height: math.unit(18, "feet"),
  43832. name: "Front (NSFW)",
  43833. image: {
  43834. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43835. extra: 1380/1166,
  43836. bottom: 110/1490
  43837. }
  43838. },
  43839. backNsfw: {
  43840. height: math.unit(18, "feet"),
  43841. name: "Back (NSFW)",
  43842. image: {
  43843. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43844. extra: 1592/1170,
  43845. bottom: 128/1720
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Normal",
  43852. height: math.unit(18, "feet"),
  43853. default: true
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43859. {
  43860. spreadWings: {
  43861. height: math.unit(20, "feet"),
  43862. name: "Spread Wings",
  43863. image: {
  43864. source: "./media/characters/fledge/spread-wings.svg",
  43865. extra: 693/635,
  43866. bottom: 26/719
  43867. }
  43868. },
  43869. front: {
  43870. height: math.unit(20, "feet"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/fledge/front.svg",
  43874. extra: 684/637,
  43875. bottom: 18/702
  43876. }
  43877. },
  43878. frontAlt: {
  43879. height: math.unit(20, "feet"),
  43880. name: "Front (Alt)",
  43881. image: {
  43882. source: "./media/characters/fledge/front-alt.svg",
  43883. extra: 708/664,
  43884. bottom: 13/721
  43885. }
  43886. },
  43887. back: {
  43888. height: math.unit(20, "feet"),
  43889. name: "Back",
  43890. image: {
  43891. source: "./media/characters/fledge/back.svg",
  43892. extra: 718/634,
  43893. bottom: 22/740
  43894. }
  43895. },
  43896. head: {
  43897. height: math.unit(5.55, "feet"),
  43898. name: "Head",
  43899. image: {
  43900. source: "./media/characters/fledge/head.svg"
  43901. }
  43902. },
  43903. headAlt: {
  43904. height: math.unit(5.1, "feet"),
  43905. name: "Head (Alt)",
  43906. image: {
  43907. source: "./media/characters/fledge/head-alt.svg"
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Small",
  43914. height: math.unit(6 + 2/12, "feet")
  43915. },
  43916. {
  43917. name: "Big",
  43918. height: math.unit(20, "feet"),
  43919. default: true
  43920. },
  43921. {
  43922. name: "Giant",
  43923. height: math.unit(100, "feet")
  43924. },
  43925. {
  43926. name: "Macro",
  43927. height: math.unit(200, "feet")
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(1, "meter"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/atlas-morenai/front.svg",
  43939. extra: 1275/1043,
  43940. bottom: 19/1294
  43941. }
  43942. },
  43943. back: {
  43944. height: math.unit(1, "meter"),
  43945. name: "Back",
  43946. image: {
  43947. source: "./media/characters/atlas-morenai/back.svg",
  43948. extra: 1141/1001,
  43949. bottom: 25/1166
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Normal",
  43956. height: math.unit(1, "meter"),
  43957. default: true
  43958. },
  43959. {
  43960. name: "Magic-Infused",
  43961. height: math.unit(5, "meters")
  43962. },
  43963. ]
  43964. ))
  43965. characterMakers.push(() => makeCharacter(
  43966. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43967. {
  43968. front: {
  43969. height: math.unit(5, "meters"),
  43970. name: "Front",
  43971. image: {
  43972. source: "./media/characters/cintia/front.svg",
  43973. extra: 1312/1228,
  43974. bottom: 38/1350
  43975. }
  43976. },
  43977. back: {
  43978. height: math.unit(5, "meters"),
  43979. name: "Back",
  43980. image: {
  43981. source: "./media/characters/cintia/back.svg",
  43982. extra: 1260/1166,
  43983. bottom: 98/1358
  43984. }
  43985. },
  43986. frontDick: {
  43987. height: math.unit(5, "meters"),
  43988. name: "Front (Dick)",
  43989. image: {
  43990. source: "./media/characters/cintia/front-dick.svg",
  43991. extra: 1312/1228,
  43992. bottom: 38/1350
  43993. }
  43994. },
  43995. backDick: {
  43996. height: math.unit(5, "meters"),
  43997. name: "Back (Dick)",
  43998. image: {
  43999. source: "./media/characters/cintia/back-dick.svg",
  44000. extra: 1260/1166,
  44001. bottom: 98/1358
  44002. }
  44003. },
  44004. bust: {
  44005. height: math.unit(1.97, "meters"),
  44006. name: "Bust",
  44007. image: {
  44008. source: "./media/characters/cintia/bust.svg",
  44009. extra: 617/565,
  44010. bottom: 0/617
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Normal",
  44017. height: math.unit(5, "meters"),
  44018. default: true
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44024. {
  44025. side: {
  44026. height: math.unit(100, "feet"),
  44027. name: "Side",
  44028. image: {
  44029. source: "./media/characters/denora/side.svg",
  44030. extra: 875/803,
  44031. bottom: 9/884
  44032. }
  44033. },
  44034. },
  44035. [
  44036. {
  44037. name: "Standard",
  44038. height: math.unit(100, "feet"),
  44039. default: true
  44040. },
  44041. {
  44042. name: "Grand",
  44043. height: math.unit(1000, "feet")
  44044. },
  44045. {
  44046. name: "Conquering",
  44047. height: math.unit(10000, "feet")
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44053. {
  44054. dressed: {
  44055. height: math.unit(8 + 5/12, "feet"),
  44056. weight: math.unit(700, "lb"),
  44057. name: "Dressed",
  44058. image: {
  44059. source: "./media/characters/kiva/dressed.svg",
  44060. extra: 1102/1055,
  44061. bottom: 60/1162
  44062. }
  44063. },
  44064. nude: {
  44065. height: math.unit(8 + 5/12, "feet"),
  44066. weight: math.unit(700, "lb"),
  44067. name: "Nude",
  44068. image: {
  44069. source: "./media/characters/kiva/nude.svg",
  44070. extra: 1102/1055,
  44071. bottom: 60/1162
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Base Height",
  44078. height: math.unit(8 + 5/12, "feet"),
  44079. default: true
  44080. },
  44081. {
  44082. name: "Macro",
  44083. height: math.unit(100, "feet")
  44084. },
  44085. {
  44086. name: "Max",
  44087. height: math.unit(3280, "feet")
  44088. },
  44089. ]
  44090. ))
  44091. characterMakers.push(() => makeCharacter(
  44092. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44093. {
  44094. front: {
  44095. height: math.unit(6 + 8/12, "feet"),
  44096. weight: math.unit(250, "lb"),
  44097. name: "Front",
  44098. image: {
  44099. source: "./media/characters/ztragon/front.svg",
  44100. extra: 1825/1684,
  44101. bottom: 98/1923
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(6 + 8/12, "feet"),
  44109. default: true
  44110. },
  44111. {
  44112. name: "Macro",
  44113. height: math.unit(80, "feet")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44119. {
  44120. front: {
  44121. height: math.unit(10.4, "feet"),
  44122. weight: math.unit(2, "tons"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/yesenia/front.svg",
  44126. extra: 1479/1474,
  44127. bottom: 233/1712
  44128. }
  44129. },
  44130. },
  44131. [
  44132. {
  44133. name: "Normal",
  44134. height: math.unit(10.4, "feet"),
  44135. default: true
  44136. },
  44137. ]
  44138. ))
  44139. characterMakers.push(() => makeCharacter(
  44140. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44141. {
  44142. normal: {
  44143. height: math.unit(6 + 1/12, "feet"),
  44144. weight: math.unit(180, "lb"),
  44145. name: "Normal",
  44146. image: {
  44147. source: "./media/characters/leanne-lycheborne/normal.svg",
  44148. extra: 1748/1660,
  44149. bottom: 98/1846
  44150. }
  44151. },
  44152. were: {
  44153. height: math.unit(12, "feet"),
  44154. weight: math.unit(1600, "lb"),
  44155. name: "Were",
  44156. image: {
  44157. source: "./media/characters/leanne-lycheborne/were.svg",
  44158. extra: 1485/1432,
  44159. bottom: 66/1551
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(6 + 1/12, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44173. {
  44174. side: {
  44175. height: math.unit(13, "feet"),
  44176. name: "Side",
  44177. image: {
  44178. source: "./media/characters/kira-tyler/side.svg",
  44179. extra: 693/393,
  44180. bottom: 58/751
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(13, "feet"),
  44188. default: true
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(10.3, "feet"),
  44197. weight: math.unit(150, "lb"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/blaze/front.svg",
  44201. extra: 1378/1286,
  44202. bottom: 172/1550
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(10.3, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44216. {
  44217. side: {
  44218. height: math.unit(2, "meters"),
  44219. weight: math.unit(400, "kg"),
  44220. name: "Side",
  44221. image: {
  44222. source: "./media/characters/anu/side.svg",
  44223. extra: 506/394,
  44224. bottom: 18/524
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Humanoid",
  44231. height: math.unit(2, "meters")
  44232. },
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(5, "meters"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44242. {
  44243. front: {
  44244. height: math.unit(5 + 5/12, "feet"),
  44245. weight: math.unit(170, "lb"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/synx-the-lynx/front.svg",
  44249. extra: 1893/1745,
  44250. bottom: 17/1910
  44251. }
  44252. },
  44253. side: {
  44254. height: math.unit(5 + 5/12, "feet"),
  44255. weight: math.unit(170, "lb"),
  44256. name: "Side",
  44257. image: {
  44258. source: "./media/characters/synx-the-lynx/side.svg",
  44259. extra: 1884/1740,
  44260. bottom: 39/1923
  44261. }
  44262. },
  44263. back: {
  44264. height: math.unit(5 + 5/12, "feet"),
  44265. weight: math.unit(170, "lb"),
  44266. name: "Back",
  44267. image: {
  44268. source: "./media/characters/synx-the-lynx/back.svg",
  44269. extra: 1903/1755,
  44270. bottom: 14/1917
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Normal",
  44277. height: math.unit(5 + 5/12, "feet"),
  44278. default: true
  44279. },
  44280. ]
  44281. ))
  44282. characterMakers.push(() => makeCharacter(
  44283. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44284. {
  44285. back: {
  44286. height: math.unit(15, "feet"),
  44287. name: "Back",
  44288. image: {
  44289. source: "./media/characters/nadezda-fex/back.svg",
  44290. extra: 1695/1481,
  44291. bottom: 25/1720
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(15, "feet"),
  44299. default: true
  44300. },
  44301. {
  44302. name: "Macro",
  44303. height: math.unit(2.5, "miles")
  44304. },
  44305. {
  44306. name: "Goddess",
  44307. height: math.unit(2, "multiverses")
  44308. },
  44309. ]
  44310. ))
  44311. characterMakers.push(() => makeCharacter(
  44312. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44313. {
  44314. front: {
  44315. height: math.unit(216, "cm"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/lev/front.svg",
  44319. extra: 1728/1670,
  44320. bottom: 82/1810
  44321. }
  44322. },
  44323. back: {
  44324. height: math.unit(216, "cm"),
  44325. name: "Back",
  44326. image: {
  44327. source: "./media/characters/lev/back.svg",
  44328. extra: 1738/1675,
  44329. bottom: 24/1762
  44330. }
  44331. },
  44332. dressed: {
  44333. height: math.unit(216, "cm"),
  44334. name: "Dressed",
  44335. image: {
  44336. source: "./media/characters/lev/dressed.svg",
  44337. extra: 1397/1351,
  44338. bottom: 73/1470
  44339. }
  44340. },
  44341. head: {
  44342. height: math.unit(0.51, "meter"),
  44343. name: "Head",
  44344. image: {
  44345. source: "./media/characters/lev/head.svg"
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal",
  44352. height: math.unit(216, "cm"),
  44353. default: true
  44354. },
  44355. {
  44356. name: "Relatively Macro",
  44357. height: math.unit(80, "meters")
  44358. },
  44359. {
  44360. name: "Megamacro",
  44361. height: math.unit(21600, "meters")
  44362. },
  44363. {
  44364. name: "Megamacro+",
  44365. height: math.unit(64800, "meters")
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(2, "meters"),
  44374. weight: math.unit(80, "kg"),
  44375. name: "Front",
  44376. image: {
  44377. source: "./media/characters/moka/front.svg",
  44378. extra: 1337/1255,
  44379. bottom: 58/1395
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Micro",
  44386. height: math.unit(15, "cm")
  44387. },
  44388. {
  44389. name: "Normal",
  44390. height: math.unit(2, "meters"),
  44391. default: true
  44392. },
  44393. {
  44394. name: "Macro",
  44395. height: math.unit(20, "meters"),
  44396. },
  44397. ]
  44398. ))
  44399. characterMakers.push(() => makeCharacter(
  44400. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44401. {
  44402. front: {
  44403. height: math.unit(9, "feet"),
  44404. weight: math.unit(240, "lb"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/kuzco/front.svg",
  44408. extra: 1593/1487,
  44409. bottom: 32/1625
  44410. }
  44411. },
  44412. side: {
  44413. height: math.unit(9, "feet"),
  44414. weight: math.unit(240, "lb"),
  44415. name: "Side",
  44416. image: {
  44417. source: "./media/characters/kuzco/side.svg",
  44418. extra: 1575/1485,
  44419. bottom: 30/1605
  44420. }
  44421. },
  44422. back: {
  44423. height: math.unit(9, "feet"),
  44424. weight: math.unit(240, "lb"),
  44425. name: "Back",
  44426. image: {
  44427. source: "./media/characters/kuzco/back.svg",
  44428. extra: 1603/1514,
  44429. bottom: 14/1617
  44430. }
  44431. },
  44432. },
  44433. [
  44434. {
  44435. name: "Normal",
  44436. height: math.unit(9, "feet"),
  44437. default: true
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44443. {
  44444. side: {
  44445. height: math.unit(2, "meters"),
  44446. weight: math.unit(300, "kg"),
  44447. name: "Side",
  44448. image: {
  44449. source: "./media/characters/ceruleus/side.svg",
  44450. extra: 1068/974,
  44451. bottom: 126/1194
  44452. }
  44453. },
  44454. },
  44455. [
  44456. {
  44457. name: "Normal",
  44458. height: math.unit(16, "meters"),
  44459. default: true
  44460. },
  44461. ]
  44462. ))
  44463. characterMakers.push(() => makeCharacter(
  44464. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44465. {
  44466. front: {
  44467. height: math.unit(9, "feet"),
  44468. weight: math.unit(500, "kg"),
  44469. name: "Front",
  44470. image: {
  44471. source: "./media/characters/acouya/front.svg",
  44472. extra: 1660/1473,
  44473. bottom: 28/1688
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(9, "feet"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(5 + 6/12, "feet"),
  44490. weight: math.unit(195, "lb"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/vant/front.svg",
  44494. extra: 1396/1320,
  44495. bottom: 20/1416
  44496. }
  44497. },
  44498. back: {
  44499. height: math.unit(5 + 6/12, "feet"),
  44500. weight: math.unit(195, "lb"),
  44501. name: "Back",
  44502. image: {
  44503. source: "./media/characters/vant/back.svg",
  44504. extra: 1396/1320,
  44505. bottom: 20/1416
  44506. }
  44507. },
  44508. maw: {
  44509. height: math.unit(0.75, "feet"),
  44510. name: "Maw",
  44511. image: {
  44512. source: "./media/characters/vant/maw.svg"
  44513. }
  44514. },
  44515. paw: {
  44516. height: math.unit(1.07, "feet"),
  44517. name: "Paw",
  44518. image: {
  44519. source: "./media/characters/vant/paw.svg"
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "Micro",
  44526. height: math.unit(0.25, "inches")
  44527. },
  44528. {
  44529. name: "Normal",
  44530. height: math.unit(5 + 6/12, "feet"),
  44531. default: true
  44532. },
  44533. {
  44534. name: "Macro",
  44535. height: math.unit(75, "feet")
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(30, "meters"),
  44544. weight: math.unit(363, "tons"),
  44545. name: "Front",
  44546. image: {
  44547. source: "./media/characters/ahra/front.svg",
  44548. extra: 1914/1814,
  44549. bottom: 46/1960
  44550. }
  44551. },
  44552. },
  44553. [
  44554. {
  44555. name: "Macro",
  44556. height: math.unit(30, "meters"),
  44557. default: true
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44563. {
  44564. undressed: {
  44565. height: math.unit(2, "m"),
  44566. weight: math.unit(250, "kg"),
  44567. name: "Undressed",
  44568. image: {
  44569. source: "./media/characters/coriander/undressed.svg",
  44570. extra: 1757/1606,
  44571. bottom: 107/1864
  44572. }
  44573. },
  44574. dressed: {
  44575. height: math.unit(2, "m"),
  44576. weight: math.unit(250, "kg"),
  44577. name: "Dressed",
  44578. image: {
  44579. source: "./media/characters/coriander/dressed.svg",
  44580. extra: 1757/1606,
  44581. bottom: 107/1864
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(4, "meters"),
  44589. default: true
  44590. },
  44591. {
  44592. name: "XL",
  44593. height: math.unit(6, "meters")
  44594. },
  44595. {
  44596. name: "XXL",
  44597. height: math.unit(8, "meters")
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44603. {
  44604. front: {
  44605. height: math.unit(6, "feet"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/syrinx/front.svg",
  44609. extra: 1557/1259,
  44610. bottom: 171/1728
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Normal",
  44617. height: math.unit(6 + 3/12, "feet"),
  44618. default: true
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44624. {
  44625. front: {
  44626. height: math.unit(11 + 6/12, "feet"),
  44627. weight: math.unit(1.5, "tons"),
  44628. name: "Front",
  44629. image: {
  44630. source: "./media/characters/bor/front.svg",
  44631. extra: 1189/1109,
  44632. bottom: 170/1359
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Normal",
  44639. height: math.unit(11 + 6/12, "feet"),
  44640. default: true
  44641. },
  44642. {
  44643. name: "Macro",
  44644. height: math.unit(32 + 9/12, "feet")
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44650. {
  44651. anthro: {
  44652. height: math.unit(9, "feet"),
  44653. weight: math.unit(2076, "lb"),
  44654. name: "Anthro",
  44655. image: {
  44656. source: "./media/characters/abacus/anthro.svg",
  44657. extra: 1540/1494,
  44658. bottom: 233/1773
  44659. }
  44660. },
  44661. pigeon: {
  44662. height: math.unit(1, "feet"),
  44663. name: "Pigeon",
  44664. image: {
  44665. source: "./media/characters/abacus/pigeon.svg",
  44666. extra: 528/525,
  44667. bottom: 46/574
  44668. }
  44669. },
  44670. },
  44671. [
  44672. {
  44673. name: "Normal",
  44674. height: math.unit(9, "feet"),
  44675. default: true
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44681. {
  44682. side: {
  44683. height: math.unit(6, "feet"),
  44684. name: "Side",
  44685. image: {
  44686. source: "./media/characters/delkhan/side.svg",
  44687. extra: 1884/1786,
  44688. bottom: 308/2192
  44689. }
  44690. },
  44691. head: {
  44692. height: math.unit(3.38, "feet"),
  44693. name: "Head",
  44694. image: {
  44695. source: "./media/characters/delkhan/head.svg"
  44696. }
  44697. },
  44698. },
  44699. [
  44700. {
  44701. name: "Normal",
  44702. height: math.unit(72, "feet"),
  44703. default: true
  44704. },
  44705. {
  44706. name: "Giant",
  44707. height: math.unit(172, "feet")
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44713. {
  44714. standing: {
  44715. height: math.unit(6, "feet"),
  44716. name: "Standing",
  44717. image: {
  44718. source: "./media/characters/euchidat/standing.svg",
  44719. extra: 1612/1553,
  44720. bottom: 116/1728
  44721. }
  44722. },
  44723. leaning: {
  44724. height: math.unit(6, "feet"),
  44725. name: "Leaning",
  44726. image: {
  44727. source: "./media/characters/euchidat/leaning.svg",
  44728. extra: 1719/1674,
  44729. bottom: 27/1746
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Normal",
  44736. height: math.unit(175, "feet"),
  44737. default: true
  44738. },
  44739. {
  44740. name: "Megamacro",
  44741. height: math.unit(190, "miles")
  44742. },
  44743. {
  44744. name: "Gigamacro",
  44745. height: math.unit(190000, "miles")
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44751. {
  44752. front: {
  44753. height: math.unit(6, "feet"),
  44754. weight: math.unit(150, "lb"),
  44755. name: "Front",
  44756. image: {
  44757. source: "./media/characters/rebecca-stack/front.svg",
  44758. extra: 1256/1201,
  44759. bottom: 18/1274
  44760. }
  44761. },
  44762. },
  44763. [
  44764. {
  44765. name: "Normal",
  44766. height: math.unit(5 + 8/12, "feet"),
  44767. default: true
  44768. },
  44769. {
  44770. name: "Demolitionist",
  44771. height: math.unit(200, "feet")
  44772. },
  44773. {
  44774. name: "Out of Control",
  44775. height: math.unit(2, "miles")
  44776. },
  44777. {
  44778. name: "Giga",
  44779. height: math.unit(7200, "miles")
  44780. },
  44781. ]
  44782. ))
  44783. characterMakers.push(() => makeCharacter(
  44784. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44785. {
  44786. front: {
  44787. height: math.unit(6, "feet"),
  44788. weight: math.unit(150, "lb"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/jenny-cartwright/front.svg",
  44792. extra: 1384/1376,
  44793. bottom: 58/1442
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(6 + 7/12, "feet"),
  44801. default: true
  44802. },
  44803. {
  44804. name: "Librarian",
  44805. height: math.unit(55, "feet")
  44806. },
  44807. {
  44808. name: "Sightseer",
  44809. height: math.unit(50, "miles")
  44810. },
  44811. {
  44812. name: "Giga",
  44813. height: math.unit(30000, "miles")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44819. {
  44820. nude: {
  44821. height: math.unit(8, "feet"),
  44822. weight: math.unit(225, "lb"),
  44823. name: "Nude",
  44824. image: {
  44825. source: "./media/characters/marvy/nude.svg",
  44826. extra: 1900/1683,
  44827. bottom: 89/1989
  44828. }
  44829. },
  44830. dressed: {
  44831. height: math.unit(8, "feet"),
  44832. weight: math.unit(225, "lb"),
  44833. name: "Dressed",
  44834. image: {
  44835. source: "./media/characters/marvy/dressed.svg",
  44836. extra: 1900/1683,
  44837. bottom: 89/1989
  44838. }
  44839. },
  44840. head: {
  44841. height: math.unit(2.85, "feet"),
  44842. name: "Head",
  44843. image: {
  44844. source: "./media/characters/marvy/head.svg"
  44845. }
  44846. },
  44847. },
  44848. [
  44849. {
  44850. name: "Normal",
  44851. height: math.unit(8, "feet"),
  44852. default: true
  44853. },
  44854. ]
  44855. ))
  44856. //characters
  44857. function makeCharacters() {
  44858. const results = [];
  44859. characterMakers.forEach(character => {
  44860. results.push(character());
  44861. });
  44862. return results;
  44863. }