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

47931 wiersze
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon0"]
  1882. },
  1883. }
  1884. //species
  1885. function getSpeciesInfo(speciesList) {
  1886. let result = new Set();
  1887. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1888. result.add(entry)
  1889. });
  1890. return Array.from(result);
  1891. };
  1892. function getSpeciesInfoHelper(species) {
  1893. if (!speciesData[species]) {
  1894. console.warn(species + " doesn't exist");
  1895. return [];
  1896. }
  1897. if (speciesData[species].parents) {
  1898. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1899. } else {
  1900. return [species];
  1901. }
  1902. }
  1903. characterMakers.push(() => makeCharacter(
  1904. {
  1905. name: "Fen",
  1906. species: ["crux"],
  1907. description: {
  1908. title: "Bio",
  1909. text: "Very furry. Sheds on everything."
  1910. },
  1911. tags: [
  1912. "anthro",
  1913. "goo"
  1914. ]
  1915. },
  1916. {
  1917. front: {
  1918. height: math.unit(12, "feet"),
  1919. weight: math.unit(2400, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/fen/front.svg",
  1923. extra: 1804/1562,
  1924. bottom: 205/2009
  1925. }
  1926. },
  1927. diving: {
  1928. height: math.unit(4.9, "meters"),
  1929. weight: math.unit(2400, "lb"),
  1930. name: "Diving",
  1931. image: {
  1932. source: "./media/characters/fen/diving.svg"
  1933. }
  1934. },
  1935. goo: {
  1936. height: math.unit(12, "feet"),
  1937. weight: math.unit(3000, "lb"),
  1938. capacity: math.unit(6, "people"),
  1939. name: "Goo",
  1940. image: {
  1941. source: "./media/characters/fen/goo.svg",
  1942. extra: 1307/1071,
  1943. bottom: 134/1441
  1944. }
  1945. },
  1946. maw: {
  1947. height: math.unit(5.03, "feet"),
  1948. name: "Maw",
  1949. image: {
  1950. source: "./media/characters/fen/maw.svg"
  1951. }
  1952. },
  1953. gooCeiling: {
  1954. height: math.unit(6.6, "feet"),
  1955. weight: math.unit(3000, "lb"),
  1956. capacity: math.unit(6, "people"),
  1957. name: "Goo (Ceiling)",
  1958. image: {
  1959. source: "./media/characters/fen/goo-ceiling.svg"
  1960. }
  1961. },
  1962. back: {
  1963. height: math.unit(12, "feet"),
  1964. weight: math.unit(2400, "lb"),
  1965. name: "Back",
  1966. image: {
  1967. source: "./media/characters/fen/back.svg",
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nHe is not currently looking at you."
  1973. }
  1974. }
  1975. },
  1976. full: {
  1977. height: math.unit(1.6, "meter"),
  1978. weight: math.unit(3200, "lb"),
  1979. name: "Full",
  1980. image: {
  1981. source: "./media/characters/fen/full.svg",
  1982. extra: 1133/859,
  1983. bottom: 145/1278
  1984. },
  1985. info: {
  1986. description: {
  1987. mode: "append",
  1988. text: "\n\nMunch."
  1989. }
  1990. }
  1991. },
  1992. gooLounging: {
  1993. height: math.unit(4.53, "feet"),
  1994. weight: math.unit(3000, "lb"),
  1995. capacity: math.unit(6, "people"),
  1996. name: "Goo (Lounging)",
  1997. image: {
  1998. source: "./media/characters/fen/goo.svg",
  1999. bottom: 116 / 613
  2000. }
  2001. },
  2002. lounging: {
  2003. height: math.unit(10.52, "feet"),
  2004. weight: math.unit(2400, "lb"),
  2005. name: "Lounging",
  2006. image: {
  2007. source: "./media/characters/fen/lounging.svg"
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Small",
  2014. height: math.unit(2.2428, "meter")
  2015. },
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(12, "feet"),
  2019. default: true,
  2020. },
  2021. {
  2022. name: "Big",
  2023. height: math.unit(20, "feet")
  2024. },
  2025. {
  2026. name: "Minimacro",
  2027. height: math.unit(40, "feet"),
  2028. info: {
  2029. description: {
  2030. mode: "append",
  2031. text: "\n\nTOO DAMN BIG"
  2032. }
  2033. }
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(100, "feet"),
  2038. info: {
  2039. description: {
  2040. mode: "append",
  2041. text: "\n\nTOO DAMN BIG"
  2042. }
  2043. }
  2044. },
  2045. {
  2046. name: "Megamacro",
  2047. height: math.unit(2, "miles")
  2048. },
  2049. {
  2050. name: "Gigamacro",
  2051. height: math.unit(10, "earths")
  2052. },
  2053. ]
  2054. ))
  2055. characterMakers.push(() => makeCharacter(
  2056. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2057. {
  2058. front: {
  2059. height: math.unit(183, "cm"),
  2060. weight: math.unit(80, "kg"),
  2061. name: "Front",
  2062. image: {
  2063. source: "./media/characters/sofia-fluttertail/front.svg",
  2064. bottom: 0.01,
  2065. extra: 2154 / 2081
  2066. }
  2067. },
  2068. frontAlt: {
  2069. height: math.unit(183, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Front (alt)",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2074. }
  2075. },
  2076. back: {
  2077. height: math.unit(183, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Back",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/back.svg"
  2082. }
  2083. },
  2084. kneeling: {
  2085. height: math.unit(125, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Kneeling",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2090. extra: 1033 / 977,
  2091. bottom: 23.7 / 1057
  2092. }
  2093. },
  2094. maw: {
  2095. height: math.unit(183 / 5, "cm"),
  2096. name: "Maw",
  2097. image: {
  2098. source: "./media/characters/sofia-fluttertail/maw.svg"
  2099. }
  2100. },
  2101. mawcloseup: {
  2102. height: math.unit(183 / 5 * 0.41, "cm"),
  2103. name: "Maw (Closeup)",
  2104. image: {
  2105. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2106. }
  2107. },
  2108. paws: {
  2109. height: math.unit(1.17, "feet"),
  2110. name: "Paws",
  2111. image: {
  2112. source: "./media/characters/sofia-fluttertail/paws.svg",
  2113. extra: 851 / 851,
  2114. bottom: 17 / 868
  2115. }
  2116. },
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(1.83, "meter")
  2122. },
  2123. {
  2124. name: "Size Thief",
  2125. height: math.unit(18, "feet")
  2126. },
  2127. {
  2128. name: "50 Foot Collie",
  2129. height: math.unit(50, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(96, "feet"),
  2134. default: true
  2135. },
  2136. {
  2137. name: "Megamerger",
  2138. height: math.unit(650, "feet")
  2139. },
  2140. ]
  2141. ))
  2142. characterMakers.push(() => makeCharacter(
  2143. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2144. {
  2145. front: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(100, "kg"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/march/front.svg",
  2151. extra: 1992/1851,
  2152. bottom: 39/2031
  2153. }
  2154. },
  2155. foot: {
  2156. height: math.unit(0.9, "feet"),
  2157. name: "Foot",
  2158. image: {
  2159. source: "./media/characters/march/foot.svg"
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(7.9, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(220, "meters")
  2171. },
  2172. {
  2173. name: "Megamacro",
  2174. height: math.unit(2.98, "km"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Gigamacro",
  2179. height: math.unit(15963, "km")
  2180. },
  2181. {
  2182. name: "Teramacro",
  2183. height: math.unit(2980000000, "km")
  2184. },
  2185. {
  2186. name: "Examacro",
  2187. height: math.unit(250, "parsecs")
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(6, "feet"),
  2196. weight: math.unit(60, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/noir/front.svg",
  2200. extra: 1,
  2201. bottom: 0.032
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(6.6, "feet")
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(500, "feet")
  2213. },
  2214. {
  2215. name: "Megamacro",
  2216. height: math.unit(2.5, "km"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(22500, "km")
  2222. },
  2223. {
  2224. name: "Teramacro",
  2225. height: math.unit(2500000000, "km")
  2226. },
  2227. {
  2228. name: "Examacro",
  2229. height: math.unit(200, "parsecs")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/okuri/front.svg",
  2242. extra: 1,
  2243. bottom: 0.037
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/okuri/back.svg",
  2252. extra: 1,
  2253. bottom: 0.007
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(100, "miles"),
  2261. default: true
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/manny/front.svg",
  2274. extra: 1,
  2275. bottom: 0.06
  2276. }
  2277. },
  2278. back: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Back",
  2282. image: {
  2283. source: "./media/characters/manny/back.svg",
  2284. extra: 1,
  2285. bottom: 0.014
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Normal",
  2292. height: math.unit(7, "feet"),
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(78, "feet"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "Macro+",
  2301. height: math.unit(300, "meters")
  2302. },
  2303. {
  2304. name: "Macro++",
  2305. height: math.unit(2400, "meters")
  2306. },
  2307. {
  2308. name: "Megamacro",
  2309. height: math.unit(5167, "meters")
  2310. },
  2311. {
  2312. name: "Gigamacro",
  2313. height: math.unit(41769, "miles")
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/adake/front-1.svg"
  2326. }
  2327. },
  2328. frontAlt: {
  2329. height: math.unit(7, "feet"),
  2330. weight: math.unit(100, "kg"),
  2331. name: "Front (Alt)",
  2332. image: {
  2333. source: "./media/characters/adake/front-2.svg",
  2334. extra: 1,
  2335. bottom: 0.01
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(7, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/adake/back.svg",
  2344. }
  2345. },
  2346. kneel: {
  2347. height: math.unit(5.385, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Kneeling",
  2350. image: {
  2351. source: "./media/characters/adake/kneel.svg",
  2352. bottom: 0.052
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(7, "feet"),
  2360. },
  2361. {
  2362. name: "Macro",
  2363. height: math.unit(78, "feet"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Macro+",
  2368. height: math.unit(300, "meters")
  2369. },
  2370. {
  2371. name: "Macro++",
  2372. height: math.unit(2400, "meters")
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(5167, "meters")
  2377. },
  2378. {
  2379. name: "Gigamacro",
  2380. height: math.unit(41769, "miles")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(1.65, "meters"),
  2389. weight: math.unit(50, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/elijah/front.svg",
  2393. extra: 858 / 830,
  2394. bottom: 95.5 / 953.8559
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(1.65, "meters"),
  2399. weight: math.unit(50, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/elijah/back.svg",
  2403. extra: 895 / 850,
  2404. bottom: 5.3 / 897.956
  2405. }
  2406. },
  2407. frontNsfw: {
  2408. height: math.unit(1.65, "meters"),
  2409. weight: math.unit(50, "kg"),
  2410. name: "Front (NSFW)",
  2411. image: {
  2412. source: "./media/characters/elijah/front-nsfw.svg",
  2413. extra: 858 / 830,
  2414. bottom: 95.5 / 953.8559
  2415. }
  2416. },
  2417. backNsfw: {
  2418. height: math.unit(1.65, "meters"),
  2419. weight: math.unit(50, "kg"),
  2420. name: "Back (NSFW)",
  2421. image: {
  2422. source: "./media/characters/elijah/back-nsfw.svg",
  2423. extra: 895 / 850,
  2424. bottom: 5.3 / 897.956
  2425. }
  2426. },
  2427. dick: {
  2428. height: math.unit(1, "feet"),
  2429. name: "Dick",
  2430. image: {
  2431. source: "./media/characters/elijah/dick.svg"
  2432. }
  2433. },
  2434. beakOpen: {
  2435. height: math.unit(1.25, "feet"),
  2436. name: "Beak (Open)",
  2437. image: {
  2438. source: "./media/characters/elijah/beak-open.svg"
  2439. }
  2440. },
  2441. beakShut: {
  2442. height: math.unit(1.25, "feet"),
  2443. name: "Beak (Shut)",
  2444. image: {
  2445. source: "./media/characters/elijah/beak-shut.svg"
  2446. }
  2447. },
  2448. footFlexing: {
  2449. height: math.unit(1.61, "feet"),
  2450. name: "Foot (Flexing)",
  2451. image: {
  2452. source: "./media/characters/elijah/foot-flexing.svg"
  2453. }
  2454. },
  2455. footStepping: {
  2456. height: math.unit(1.44, "feet"),
  2457. name: "Foot (Stepping)",
  2458. image: {
  2459. source: "./media/characters/elijah/foot-stepping.svg"
  2460. }
  2461. },
  2462. plantigradeLeg: {
  2463. height: math.unit(2.34, "feet"),
  2464. name: "Plantigrade Leg",
  2465. image: {
  2466. source: "./media/characters/elijah/plantigrade-leg.svg"
  2467. }
  2468. },
  2469. plantigradeFootLeft: {
  2470. height: math.unit(0.9, "feet"),
  2471. name: "Plantigrade Foot (Left)",
  2472. image: {
  2473. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2474. }
  2475. },
  2476. plantigradeFootRight: {
  2477. height: math.unit(0.9, "feet"),
  2478. name: "Plantigrade Foot (Right)",
  2479. image: {
  2480. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Normal",
  2487. height: math.unit(1.65, "meters")
  2488. },
  2489. {
  2490. name: "Macro",
  2491. height: math.unit(55, "meters"),
  2492. default: true
  2493. },
  2494. {
  2495. name: "Macro+",
  2496. height: math.unit(105, "meters")
  2497. },
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2502. {
  2503. front: {
  2504. height: math.unit(7 + 2/12, "feet"),
  2505. weight: math.unit(320, "kg"),
  2506. name: "Front",
  2507. image: {
  2508. source: "./media/characters/rai/front.svg",
  2509. extra: 1802/1696,
  2510. bottom: 68/1870
  2511. }
  2512. },
  2513. frontDressed: {
  2514. height: math.unit(7 + 2/12, "feet"),
  2515. weight: math.unit(320, "kg"),
  2516. name: "Front (Dressed)",
  2517. image: {
  2518. source: "./media/characters/rai/front-dressed.svg",
  2519. extra: 1802/1696,
  2520. bottom: 68/1870
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(7 + 2/12, "feet"),
  2525. weight: math.unit(320, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/rai/side.svg",
  2529. extra: 1789/1710,
  2530. bottom: 115/1904
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(7 + 2/12, "feet"),
  2535. weight: math.unit(320, "kg"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/rai/back.svg",
  2539. extra: 1770/1707,
  2540. bottom: 28/1798
  2541. }
  2542. },
  2543. feral: {
  2544. height: math.unit(9.5, "feet"),
  2545. weight: math.unit(640, "kg"),
  2546. name: "Feral",
  2547. image: {
  2548. source: "./media/characters/rai/feral.svg",
  2549. extra: 945/553,
  2550. bottom: 176/1121
  2551. }
  2552. },
  2553. dragon: {
  2554. height: math.unit(23, "feet"),
  2555. weight: math.unit(50000, "lb"),
  2556. name: "Dragon",
  2557. image: {
  2558. source: "./media/characters/rai/dragon.svg",
  2559. extra: 2498 / 2030,
  2560. bottom: 85.2 / 2584
  2561. }
  2562. },
  2563. maw: {
  2564. height: math.unit(1.69, "feet"),
  2565. name: "Maw",
  2566. image: {
  2567. source: "./media/characters/rai/maw.svg"
  2568. }
  2569. },
  2570. },
  2571. [
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(7 + 2/12, "feet")
  2575. },
  2576. {
  2577. name: "Big",
  2578. height: math.unit(11, "feet")
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(302, "feet"),
  2583. default: true
  2584. },
  2585. ]
  2586. ))
  2587. characterMakers.push(() => makeCharacter(
  2588. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2589. {
  2590. frontDressed: {
  2591. height: math.unit(216, "feet"),
  2592. weight: math.unit(7000000, "lb"),
  2593. name: "Front (Dressed)",
  2594. image: {
  2595. source: "./media/characters/jazzy/front-dressed.svg",
  2596. extra: 2738 / 2651,
  2597. bottom: 41.8 / 2786
  2598. }
  2599. },
  2600. backDressed: {
  2601. height: math.unit(216, "feet"),
  2602. weight: math.unit(7000000, "lb"),
  2603. name: "Back (Dressed)",
  2604. image: {
  2605. source: "./media/characters/jazzy/back-dressed.svg",
  2606. extra: 2775 / 2673,
  2607. bottom: 36.8 / 2817
  2608. }
  2609. },
  2610. front: {
  2611. height: math.unit(216, "feet"),
  2612. weight: math.unit(7000000, "lb"),
  2613. name: "Front",
  2614. image: {
  2615. source: "./media/characters/jazzy/front.svg",
  2616. extra: 2738 / 2651,
  2617. bottom: 41.8 / 2786
  2618. }
  2619. },
  2620. back: {
  2621. height: math.unit(216, "feet"),
  2622. weight: math.unit(7000000, "lb"),
  2623. name: "Back",
  2624. image: {
  2625. source: "./media/characters/jazzy/back.svg",
  2626. extra: 2775 / 2673,
  2627. bottom: 36.8 / 2817
  2628. }
  2629. },
  2630. maw: {
  2631. height: math.unit(20, "feet"),
  2632. name: "Maw",
  2633. image: {
  2634. source: "./media/characters/jazzy/maw.svg"
  2635. }
  2636. },
  2637. paws: {
  2638. height: math.unit(27.5, "feet"),
  2639. name: "Paws",
  2640. image: {
  2641. source: "./media/characters/jazzy/paws.svg"
  2642. }
  2643. },
  2644. eye: {
  2645. height: math.unit(4.4, "feet"),
  2646. name: "Eye",
  2647. image: {
  2648. source: "./media/characters/jazzy/eye.svg"
  2649. }
  2650. },
  2651. droneOffense: {
  2652. height: math.unit(9.5, "inches"),
  2653. name: "Drone (Offense)",
  2654. image: {
  2655. source: "./media/characters/jazzy/drone-offense.svg"
  2656. }
  2657. },
  2658. droneRecon: {
  2659. height: math.unit(9.5, "inches"),
  2660. name: "Drone (Recon)",
  2661. image: {
  2662. source: "./media/characters/jazzy/drone-recon.svg"
  2663. }
  2664. },
  2665. droneDefense: {
  2666. height: math.unit(9.5, "inches"),
  2667. name: "Drone (Defense)",
  2668. image: {
  2669. source: "./media/characters/jazzy/drone-defense.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(216, "feet"),
  2677. default: true
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(9 + 6/12, "feet"),
  2686. weight: math.unit(700, "lb"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/flamm/front.svg",
  2690. extra: 1751/1632,
  2691. bottom: 46/1797
  2692. }
  2693. },
  2694. buff: {
  2695. height: math.unit(9 + 6/12, "feet"),
  2696. weight: math.unit(950, "lb"),
  2697. name: "Buff",
  2698. image: {
  2699. source: "./media/characters/flamm/buff.svg",
  2700. extra: 3018/2874,
  2701. bottom: 221/3239
  2702. }
  2703. },
  2704. },
  2705. [
  2706. {
  2707. name: "Normal",
  2708. height: math.unit(9.5, "feet")
  2709. },
  2710. {
  2711. name: "Macro",
  2712. height: math.unit(200, "feet"),
  2713. default: true
  2714. },
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2719. {
  2720. front: {
  2721. height: math.unit(5 + 3/12, "feet"),
  2722. weight: math.unit(60, "kg"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/zephiro/front.svg",
  2726. extra: 2309 / 2162,
  2727. bottom: 0.069
  2728. }
  2729. },
  2730. side: {
  2731. height: math.unit(5 + 3/12, "feet"),
  2732. weight: math.unit(60, "kg"),
  2733. name: "Side",
  2734. image: {
  2735. source: "./media/characters/zephiro/side.svg",
  2736. extra: 2403 / 2279,
  2737. bottom: 0.015
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(5 + 3/12, "feet"),
  2742. weight: math.unit(60, "kg"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/zephiro/back.svg",
  2746. extra: 2373 / 2244,
  2747. bottom: 0.013
  2748. }
  2749. },
  2750. hand: {
  2751. height: math.unit(0.68, "feet"),
  2752. name: "Hand",
  2753. image: {
  2754. source: "./media/characters/zephiro/hand.svg"
  2755. }
  2756. },
  2757. paw: {
  2758. height: math.unit(1, "feet"),
  2759. name: "Paw",
  2760. image: {
  2761. source: "./media/characters/zephiro/paw.svg"
  2762. }
  2763. },
  2764. beans: {
  2765. height: math.unit(0.93, "feet"),
  2766. name: "Beans",
  2767. image: {
  2768. source: "./media/characters/zephiro/beans.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Micro",
  2775. height: math.unit(3, "inches")
  2776. },
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(5 + 3 / 12, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(118, "feet")
  2785. },
  2786. ]
  2787. ))
  2788. characterMakers.push(() => makeCharacter(
  2789. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2790. {
  2791. front: {
  2792. height: math.unit(5, "feet"),
  2793. weight: math.unit(90, "kg"),
  2794. name: "Front",
  2795. image: {
  2796. source: "./media/characters/fory/front.svg",
  2797. extra: 2862 / 2674,
  2798. bottom: 180 / 3043.8
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(5, "feet"),
  2803. weight: math.unit(90, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/fory/back.svg",
  2807. extra: 2962 / 2791,
  2808. bottom: 106 / 3071.8
  2809. }
  2810. },
  2811. foot: {
  2812. height: math.unit(2.14, "feet"),
  2813. name: "Foot",
  2814. image: {
  2815. source: "./media/characters/fory/foot.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(5, "feet")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(50, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Megamacro",
  2831. height: math.unit(10, "miles")
  2832. },
  2833. {
  2834. name: "Gigamacro",
  2835. height: math.unit(5, "earths")
  2836. },
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(7, "feet"),
  2844. weight: math.unit(90, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/kurrikage/front.svg",
  2848. extra: 1845/1733,
  2849. bottom: 119/1964
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(7, "feet"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/kurrikage/back.svg",
  2858. extra: 1790/1677,
  2859. bottom: 61/1851
  2860. }
  2861. },
  2862. dressed: {
  2863. height: math.unit(7, "feet"),
  2864. weight: math.unit(90, "kg"),
  2865. name: "Dressed",
  2866. image: {
  2867. source: "./media/characters/kurrikage/dressed.svg",
  2868. extra: 1845/1733,
  2869. bottom: 119/1964
  2870. }
  2871. },
  2872. foot: {
  2873. height: math.unit(1.5, "feet"),
  2874. name: "Foot",
  2875. image: {
  2876. source: "./media/characters/kurrikage/foot.svg"
  2877. }
  2878. },
  2879. staff: {
  2880. height: math.unit(6.7, "feet"),
  2881. name: "Staff",
  2882. image: {
  2883. source: "./media/characters/kurrikage/staff.svg"
  2884. }
  2885. },
  2886. peek: {
  2887. height: math.unit(1.05, "feet"),
  2888. name: "Peeking",
  2889. image: {
  2890. source: "./media/characters/kurrikage/peek.svg",
  2891. bottom: 0.08
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(12, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Big",
  2903. height: math.unit(20, "feet")
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(500, "feet")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(20, "miles")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/shingo/front.svg",
  2924. extra: 1900/1825,
  2925. bottom: 82/1982
  2926. }
  2927. },
  2928. side: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/shingo/side.svg",
  2934. extra: 1930/1865,
  2935. bottom: 16/1946
  2936. }
  2937. },
  2938. back: {
  2939. height: math.unit(6, "feet"),
  2940. weight: math.unit(75, "kg"),
  2941. name: "Back",
  2942. image: {
  2943. source: "./media/characters/shingo/back.svg",
  2944. extra: 1922/1852,
  2945. bottom: 16/1938
  2946. }
  2947. },
  2948. frontDressed: {
  2949. height: math.unit(6, "feet"),
  2950. weight: math.unit(150, "lb"),
  2951. name: "Front-dressed",
  2952. image: {
  2953. source: "./media/characters/shingo/front-dressed.svg",
  2954. extra: 1900/1825,
  2955. bottom: 82/1982
  2956. }
  2957. },
  2958. paw: {
  2959. height: math.unit(1.29, "feet"),
  2960. name: "Paw",
  2961. image: {
  2962. source: "./media/characters/shingo/paw.svg"
  2963. }
  2964. },
  2965. hand: {
  2966. height: math.unit(1.07, "feet"),
  2967. name: "Hand",
  2968. image: {
  2969. source: "./media/characters/shingo/hand.svg"
  2970. }
  2971. },
  2972. frontAlt: {
  2973. height: math.unit(6, "feet"),
  2974. weight: math.unit(75, "kg"),
  2975. name: "Front (Alt)",
  2976. image: {
  2977. source: "./media/characters/shingo/front-alt.svg",
  2978. extra: 3511 / 3338,
  2979. bottom: 0.005
  2980. }
  2981. },
  2982. frontAlt2: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Front (Alt 2)",
  2986. image: {
  2987. source: "./media/characters/shingo/front-alt-2.svg",
  2988. extra: 706/681,
  2989. bottom: 11/717
  2990. }
  2991. },
  2992. pawAlt: {
  2993. height: math.unit(1, "feet"),
  2994. name: "Paw (Alt)",
  2995. image: {
  2996. source: "./media/characters/shingo/paw-alt.svg"
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Micro",
  3003. height: math.unit(4, "inches")
  3004. },
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(6, "feet"),
  3008. default: true
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(108, "feet")
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(1500, "feet")
  3017. },
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3022. {
  3023. side: {
  3024. height: math.unit(6, "feet"),
  3025. weight: math.unit(75, "kg"),
  3026. name: "Side",
  3027. image: {
  3028. source: "./media/characters/aigey/side.svg"
  3029. }
  3030. },
  3031. },
  3032. [
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(200, "feet"),
  3036. default: true
  3037. },
  3038. {
  3039. name: "Megamacro",
  3040. height: math.unit(100, "miles")
  3041. },
  3042. ]
  3043. )
  3044. )
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/natasha/front.svg",
  3054. extra: 859 / 824,
  3055. bottom: 23 / 879.6
  3056. }
  3057. },
  3058. frontNsfw: {
  3059. height: math.unit(5 + 5 / 12, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (NSFW)",
  3062. image: {
  3063. source: "./media/characters/natasha/front-nsfw.svg",
  3064. extra: 859 / 824,
  3065. bottom: 23 / 879.6
  3066. }
  3067. },
  3068. frontErect: {
  3069. height: math.unit(5 + 5 / 12, "feet"),
  3070. weight: math.unit(75, "kg"),
  3071. name: "Front (Erect)",
  3072. image: {
  3073. source: "./media/characters/natasha/front-erect.svg",
  3074. extra: 859 / 824,
  3075. bottom: 23 / 879.6
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(5 + 5 / 12, "feet"),
  3080. weight: math.unit(75, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/natasha/back.svg",
  3084. extra: 887.9 / 852.6,
  3085. bottom: 9.7 / 896.4
  3086. }
  3087. },
  3088. backAlt: {
  3089. height: math.unit(5 + 5 / 12, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Back (Alt)",
  3092. image: {
  3093. source: "./media/characters/natasha/back-alt.svg",
  3094. extra: 1236.7 / 1192,
  3095. bottom: 22.3 / 1258.2
  3096. }
  3097. },
  3098. dick: {
  3099. height: math.unit(1.772, "feet"),
  3100. name: "Dick",
  3101. image: {
  3102. source: "./media/characters/natasha/dick.svg"
  3103. }
  3104. },
  3105. paw: {
  3106. height: math.unit(0.250, "meters"),
  3107. name: "Paw",
  3108. image: {
  3109. source: "./media/characters/natasha/paw.svg"
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5 + 5 / 12, "feet")
  3117. },
  3118. {
  3119. name: "Large",
  3120. height: math.unit(12, "feet")
  3121. },
  3122. {
  3123. name: "Macro",
  3124. height: math.unit(100, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Macro+",
  3129. height: math.unit(260, "feet")
  3130. },
  3131. {
  3132. name: "Macro++",
  3133. height: math.unit(1, "mile")
  3134. },
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/malik/front.svg"
  3146. }
  3147. },
  3148. side: {
  3149. height: math.unit(6, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Side",
  3152. image: {
  3153. source: "./media/characters/malik/side.svg",
  3154. extra: 1.1539
  3155. }
  3156. },
  3157. back: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Back",
  3161. image: {
  3162. source: "./media/characters/malik/back.svg"
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(156, "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro+",
  3174. height: math.unit(1188, "feet")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(75, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/sefer/front.svg",
  3187. extra: 848 / 659,
  3188. bottom: 28.3 / 876.442
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(75, "kg"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/sefer/back.svg",
  3197. extra: 864 / 695,
  3198. bottom: 10 / 871
  3199. }
  3200. },
  3201. frontDressed: {
  3202. height: math.unit(6, "feet"),
  3203. weight: math.unit(75, "kg"),
  3204. name: "Front (Dressed)",
  3205. image: {
  3206. source: "./media/characters/sefer/front-dressed.svg",
  3207. extra: 839 / 653,
  3208. bottom: 37.6 / 878
  3209. }
  3210. },
  3211. },
  3212. [
  3213. {
  3214. name: "Normal",
  3215. height: math.unit(6, "feet"),
  3216. default: true
  3217. },
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3222. {
  3223. body: {
  3224. height: math.unit(2.2428, "meter"),
  3225. weight: math.unit(124.738, "kg"),
  3226. name: "Body",
  3227. image: {
  3228. extra: 1225 / 1050,
  3229. source: "./media/characters/north/front.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Micro",
  3236. height: math.unit(4, "inches")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(63, "meters")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(101, "miles"),
  3245. default: true
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3251. {
  3252. angled: {
  3253. height: math.unit(4, "meter"),
  3254. weight: math.unit(150, "kg"),
  3255. name: "Angled",
  3256. image: {
  3257. source: "./media/characters/talan/angled-sfw.svg",
  3258. bottom: 29 / 3734
  3259. }
  3260. },
  3261. angledNsfw: {
  3262. height: math.unit(4, "meter"),
  3263. weight: math.unit(150, "kg"),
  3264. name: "Angled (NSFW)",
  3265. image: {
  3266. source: "./media/characters/talan/angled-nsfw.svg",
  3267. bottom: 29 / 3734
  3268. }
  3269. },
  3270. frontNsfw: {
  3271. height: math.unit(4, "meter"),
  3272. weight: math.unit(150, "kg"),
  3273. name: "Front (NSFW)",
  3274. image: {
  3275. source: "./media/characters/talan/front-nsfw.svg",
  3276. bottom: 29 / 3734
  3277. }
  3278. },
  3279. sideNsfw: {
  3280. height: math.unit(4, "meter"),
  3281. weight: math.unit(150, "kg"),
  3282. name: "Side (NSFW)",
  3283. image: {
  3284. source: "./media/characters/talan/side-nsfw.svg",
  3285. bottom: 29 / 3734
  3286. }
  3287. },
  3288. back: {
  3289. height: math.unit(4, "meter"),
  3290. weight: math.unit(150, "kg"),
  3291. name: "Back",
  3292. image: {
  3293. source: "./media/characters/talan/back.svg"
  3294. }
  3295. },
  3296. dickBottom: {
  3297. height: math.unit(0.621, "meter"),
  3298. name: "Dick (Bottom)",
  3299. image: {
  3300. source: "./media/characters/talan/dick-bottom.svg"
  3301. }
  3302. },
  3303. dickTop: {
  3304. height: math.unit(0.621, "meter"),
  3305. name: "Dick (Top)",
  3306. image: {
  3307. source: "./media/characters/talan/dick-top.svg"
  3308. }
  3309. },
  3310. dickSide: {
  3311. height: math.unit(0.305, "meter"),
  3312. name: "Dick (Side)",
  3313. image: {
  3314. source: "./media/characters/talan/dick-side.svg"
  3315. }
  3316. },
  3317. dickFront: {
  3318. height: math.unit(0.305, "meter"),
  3319. name: "Dick (Front)",
  3320. image: {
  3321. source: "./media/characters/talan/dick-front.svg"
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(4, "meters")
  3329. },
  3330. {
  3331. name: "Macro",
  3332. height: math.unit(100, "meters")
  3333. },
  3334. {
  3335. name: "Megamacro",
  3336. height: math.unit(2, "miles"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Gigamacro",
  3341. height: math.unit(5000, "miles")
  3342. },
  3343. {
  3344. name: "Teramacro",
  3345. height: math.unit(100, "parsecs")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front.svg"
  3358. }
  3359. },
  3360. frontAlt: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(90, "kg"),
  3363. name: "Front (alt)",
  3364. image: {
  3365. source: "./media/characters/gael'rathus/front-alt.svg"
  3366. }
  3367. },
  3368. frontAlt2: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(90, "kg"),
  3371. name: "Front (alt 2)",
  3372. image: {
  3373. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(9, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Large",
  3385. height: math.unit(25, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(0.25, "miles")
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(10, "miles")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3399. {
  3400. side: {
  3401. height: math.unit(2, "meter"),
  3402. weight: math.unit(140, "kg"),
  3403. name: "Side",
  3404. image: {
  3405. source: "./media/characters/sosha/side.svg",
  3406. bottom: 0.042
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(12, "feet"),
  3414. default: true
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3420. {
  3421. side: {
  3422. height: math.unit(5 + 5 / 12, "feet"),
  3423. weight: math.unit(170, "kg"),
  3424. name: "Side",
  3425. image: {
  3426. source: "./media/characters/runnola/side.svg",
  3427. extra: 741 / 448,
  3428. bottom: 0.05
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Small",
  3435. height: math.unit(3, "feet")
  3436. },
  3437. {
  3438. name: "Normal",
  3439. height: math.unit(5 + 5 / 12, "feet"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Big",
  3444. height: math.unit(10, "feet")
  3445. },
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kurribird/front.svg",
  3457. bottom: 0.015
  3458. }
  3459. },
  3460. frontAlt: {
  3461. height: math.unit(1.5, "meter"),
  3462. weight: math.unit(50, "kg"),
  3463. name: "Front (Alt)",
  3464. image: {
  3465. source: "./media/characters/kurribird/front-alt.svg",
  3466. extra: 1.45
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Normal",
  3473. height: math.unit(7, "feet")
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(12, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(1500, "feet")
  3483. },
  3484. {
  3485. name: "Megamacro",
  3486. height: math.unit(2, "miles")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(2, "meter"),
  3495. weight: math.unit(80, "kg"),
  3496. name: "Front",
  3497. image: {
  3498. source: "./media/characters/elbial/front.svg",
  3499. extra: 1643 / 1556,
  3500. bottom: 60.2 / 1696
  3501. }
  3502. },
  3503. side: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(80, "kg"),
  3506. name: "Side",
  3507. image: {
  3508. source: "./media/characters/elbial/side.svg",
  3509. extra: 1601/1528,
  3510. bottom: 97/1698
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(2, "meter"),
  3515. weight: math.unit(80, "kg"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/elbial/back.svg",
  3519. extra: 1653/1569,
  3520. bottom: 20/1673
  3521. }
  3522. },
  3523. frontDressed: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front (Dressed)",
  3527. image: {
  3528. source: "./media/characters/elbial/front-dressed.svg",
  3529. extra: 1638/1569,
  3530. bottom: 70/1708
  3531. }
  3532. },
  3533. genitals: {
  3534. height: math.unit(2 / 3.367, "meter"),
  3535. name: "Genitals",
  3536. image: {
  3537. source: "./media/characters/elbial/genitals.svg"
  3538. }
  3539. },
  3540. },
  3541. [
  3542. {
  3543. name: "Large",
  3544. height: math.unit(100, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "feet"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Megamacro",
  3553. height: math.unit(10, "miles")
  3554. },
  3555. {
  3556. name: "Gigamacro",
  3557. height: math.unit(25000, "miles")
  3558. },
  3559. {
  3560. name: "Full-Size",
  3561. height: math.unit(8000000, "gigaparsecs")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(2, "meter"),
  3570. weight: math.unit(60, "kg"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/noah/front.svg"
  3574. }
  3575. },
  3576. talons: {
  3577. height: math.unit(0.315, "meter"),
  3578. name: "Talons",
  3579. image: {
  3580. source: "./media/characters/noah/talons.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Large",
  3587. height: math.unit(50, "feet")
  3588. },
  3589. {
  3590. name: "Macro",
  3591. height: math.unit(750, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(50, "miles")
  3597. },
  3598. {
  3599. name: "Gigamacro",
  3600. height: math.unit(100000, "miles")
  3601. },
  3602. {
  3603. name: "Full-Size",
  3604. height: math.unit(3000000000, "miles")
  3605. }
  3606. ]
  3607. ))
  3608. characterMakers.push(() => makeCharacter(
  3609. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3610. {
  3611. front: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(80, "kg"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/natalya/front.svg"
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(80, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/natalya/back.svg"
  3625. }
  3626. }
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(150, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Megamacro",
  3636. height: math.unit(5, "miles")
  3637. },
  3638. {
  3639. name: "Full-Size",
  3640. height: math.unit(600, "kiloparsecs")
  3641. }
  3642. ]
  3643. ))
  3644. characterMakers.push(() => makeCharacter(
  3645. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3646. {
  3647. front: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(50, "kg"),
  3650. name: "Front",
  3651. image: {
  3652. source: "./media/characters/erestrebah/front.svg",
  3653. extra: 1262/1162,
  3654. bottom: 96/1358
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(50, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/erestrebah/back.svg",
  3663. extra: 1257/1139,
  3664. bottom: 13/1270
  3665. }
  3666. },
  3667. wing: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Wing",
  3671. image: {
  3672. source: "./media/characters/erestrebah/wing.svg",
  3673. extra: 1262/1162,
  3674. bottom: 96/1358
  3675. }
  3676. },
  3677. mouth: {
  3678. height: math.unit(0.39, "feet"),
  3679. name: "Mouth",
  3680. image: {
  3681. source: "./media/characters/erestrebah/mouth.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Normal",
  3688. height: math.unit(10, "feet")
  3689. },
  3690. {
  3691. name: "Large",
  3692. height: math.unit(50, "feet"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(300, "feet")
  3698. },
  3699. {
  3700. name: "Macro+",
  3701. height: math.unit(750, "feet")
  3702. },
  3703. {
  3704. name: "Megamacro",
  3705. height: math.unit(3, "miles")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(2, "meter"),
  3714. weight: math.unit(80, "kg"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/jennifer/front.svg",
  3718. bottom: 0.11,
  3719. extra: 1.16
  3720. }
  3721. },
  3722. frontAlt: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(80, "kg"),
  3725. name: "Front (Alt)",
  3726. image: {
  3727. source: "./media/characters/jennifer/front-alt.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Canon Height",
  3734. height: math.unit(120, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro+",
  3739. height: math.unit(300, "feet")
  3740. },
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(20000, "feet")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(50, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/kalista/front.svg",
  3756. extra: 1314/1145,
  3757. bottom: 101/1415
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(2, "meter"),
  3762. weight: math.unit(50, "kg"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/kalista/back.svg",
  3766. extra: 1366 / 1156,
  3767. bottom: 33.9 / 1362.78
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Uncomfortably Small",
  3774. height: math.unit(10, "feet")
  3775. },
  3776. {
  3777. name: "Small",
  3778. height: math.unit(30, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(100, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(2000, "feet")
  3788. },
  3789. {
  3790. name: "True Form",
  3791. height: math.unit(8924, "miles")
  3792. }
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(120, "kg"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/ggv/front.svg"
  3804. }
  3805. },
  3806. side: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(120, "kg"),
  3809. name: "Side",
  3810. image: {
  3811. source: "./media/characters/ggv/side.svg"
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Extremely Puny",
  3818. height: math.unit(9 + 5 / 12, "feet")
  3819. },
  3820. {
  3821. name: "Horribly Small",
  3822. height: math.unit(47.7, "miles"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Reasonably Sized",
  3827. height: math.unit(25000, "parsecs")
  3828. },
  3829. {
  3830. name: "Slightly Uncompressed",
  3831. height: math.unit(7.77e31, "parsecs")
  3832. },
  3833. {
  3834. name: "Omniversal",
  3835. height: math.unit(1e300, "meters")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(75, "lb"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/napalm/front.svg"
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(75, "lb"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/napalm/back.svg"
  3856. }
  3857. }
  3858. },
  3859. [
  3860. {
  3861. name: "Standard",
  3862. height: math.unit(55, "feet"),
  3863. default: true
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(7 + 5 / 6, "feet"),
  3872. weight: math.unit(325, "lb"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/asana/front.svg",
  3876. extra: 1133 / 1060,
  3877. bottom: 15.2 / 1148.6
  3878. }
  3879. },
  3880. back: {
  3881. height: math.unit(7 + 5 / 6, "feet"),
  3882. weight: math.unit(325, "lb"),
  3883. name: "Back",
  3884. image: {
  3885. source: "./media/characters/asana/back.svg",
  3886. extra: 1114 / 1043,
  3887. bottom: 5 / 1120
  3888. }
  3889. },
  3890. dressedDark: {
  3891. height: math.unit(7 + 5 / 6, "feet"),
  3892. weight: math.unit(325, "lb"),
  3893. name: "Dressed (Dark)",
  3894. image: {
  3895. source: "./media/characters/asana/dressed-dark.svg",
  3896. extra: 1133 / 1060,
  3897. bottom: 15.2 / 1148.6
  3898. }
  3899. },
  3900. dressedLight: {
  3901. height: math.unit(7 + 5 / 6, "feet"),
  3902. weight: math.unit(325, "lb"),
  3903. name: "Dressed (Light)",
  3904. image: {
  3905. source: "./media/characters/asana/dressed-light.svg",
  3906. extra: 1133 / 1060,
  3907. bottom: 15.2 / 1148.6
  3908. }
  3909. },
  3910. },
  3911. [
  3912. {
  3913. name: "Standard",
  3914. height: math.unit(7 + 5 / 6, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Large",
  3919. height: math.unit(10, "meters")
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(2500, "meters")
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(5e6, "meters")
  3928. },
  3929. {
  3930. name: "Examacro",
  3931. height: math.unit(5e12, "lightyears")
  3932. },
  3933. {
  3934. name: "Max Size",
  3935. height: math.unit(1e31, "lightyears")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(60, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/ebony/front.svg",
  3948. bottom: 0.03,
  3949. extra: 1045 / 810 + 0.03
  3950. }
  3951. },
  3952. side: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(60, "kg"),
  3955. name: "Side",
  3956. image: {
  3957. source: "./media/characters/ebony/side.svg",
  3958. bottom: 0.03,
  3959. extra: 1045 / 810 + 0.03
  3960. }
  3961. },
  3962. back: {
  3963. height: math.unit(2, "meter"),
  3964. weight: math.unit(60, "kg"),
  3965. name: "Back",
  3966. image: {
  3967. source: "./media/characters/ebony/back.svg",
  3968. bottom: 0.01,
  3969. extra: 1045 / 810 + 0.01
  3970. }
  3971. },
  3972. },
  3973. [
  3974. // TODO check why I did this lol
  3975. {
  3976. name: "Standard",
  3977. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(200, "feet")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(13000, "km")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(175, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/mountain/front.svg",
  3999. extra: 972 / 955,
  4000. bottom: 64 / 1036.6
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(175, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/mountain/back.svg",
  4009. extra: 970 / 950,
  4010. bottom: 28.25 / 999
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Large",
  4017. height: math.unit(20, "meters")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(300, "meters")
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(10000, "km"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Examacro",
  4030. height: math.unit(10e9, "lightyears")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(500, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/rick/front.svg"
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(8, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(5, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/ona/front.svg"
  4067. }
  4068. },
  4069. frontAlt: {
  4070. height: math.unit(8, "feet"),
  4071. weight: math.unit(120, "lb"),
  4072. name: "Front (Alt)",
  4073. image: {
  4074. source: "./media/characters/ona/front-alt.svg"
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(8, "feet"),
  4079. weight: math.unit(120, "lb"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/ona/back.svg"
  4083. }
  4084. },
  4085. foot: {
  4086. height: math.unit(1.1, "feet"),
  4087. name: "Foot",
  4088. image: {
  4089. source: "./media/characters/ona/foot.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(70, "km"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(681818, "miles")
  4102. },
  4103. {
  4104. name: "Examacro",
  4105. height: math.unit(3800000, "lightyears")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(12, "feet"),
  4114. weight: math.unit(3000, "lb"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/mech/front.svg",
  4118. extra: 2900 / 2770,
  4119. bottom: 110 / 3010
  4120. }
  4121. },
  4122. back: {
  4123. height: math.unit(12, "feet"),
  4124. weight: math.unit(3000, "lb"),
  4125. name: "Back",
  4126. image: {
  4127. source: "./media/characters/mech/back.svg",
  4128. extra: 3011 / 2890,
  4129. bottom: 94 / 3105
  4130. }
  4131. },
  4132. maw: {
  4133. height: math.unit(3.07, "feet"),
  4134. name: "Maw",
  4135. image: {
  4136. source: "./media/characters/mech/maw.svg"
  4137. }
  4138. },
  4139. head: {
  4140. height: math.unit(2.82, "feet"),
  4141. name: "Head",
  4142. image: {
  4143. source: "./media/characters/mech/head.svg"
  4144. }
  4145. },
  4146. dick: {
  4147. height: math.unit(1.43, "feet"),
  4148. name: "Dick",
  4149. image: {
  4150. source: "./media/characters/mech/dick.svg"
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(12, "feet")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(300, "feet"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1500, "feet")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(1.3, "meter"),
  4175. weight: math.unit(30, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/gregory/front.svg",
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(1.3, "meter"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(20, "meter")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(2.8, "meter"),
  4199. weight: math.unit(200, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/elory/front.svg",
  4203. }
  4204. }
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(2.8, "meter"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(38, "meter")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(470, "feet"),
  4223. weight: math.unit(924, "tons"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/angelpatamon/front.svg",
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(470, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Deity Size I",
  4238. height: math.unit(28651.2, "km")
  4239. },
  4240. {
  4241. name: "Deity Size II",
  4242. height: math.unit(171907.2, "km")
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4248. {
  4249. side: {
  4250. height: math.unit(7.2, "meter"),
  4251. weight: math.unit(8.2, "tons"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/cryae/side.svg",
  4255. extra: 3500 / 1500
  4256. }
  4257. }
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(7.2, "meter"),
  4263. default: true
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(175, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/xera/front.svg",
  4276. extra: 2377 / 1972,
  4277. bottom: 75.5 / 2452
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(175, "lb"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/xera/side.svg",
  4286. extra: 2345 / 2019,
  4287. bottom: 39.7 / 2384
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(175, "lb"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/xera/back.svg",
  4296. extra: 2095 / 1984,
  4297. bottom: 67 / 2166
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Small",
  4304. height: math.unit(10, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(500, "meters"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(10, "km")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(25000, "km")
  4318. },
  4319. {
  4320. name: "Teramacro",
  4321. height: math.unit(3e6, "km")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(6, "feet"),
  4330. weight: math.unit(175, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/nebula/front.svg",
  4334. extra: 2566 / 2362,
  4335. bottom: 81 / 2644
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Small",
  4342. height: math.unit(4.5, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(1500, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(150, "km")
  4352. },
  4353. {
  4354. name: "Gigamacro",
  4355. height: math.unit(27000, "km")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(225, "lb"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/abysgar/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Small",
  4374. height: math.unit(4.5, "meters")
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(1250, "meters"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(125, "km")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(26000, "km")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(180, "lb"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/yakuz/front.svg"
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Small",
  4406. height: math.unit(5, "meters")
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(1500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(200, "km")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(100000, "km")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(175, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/mirova/front.svg",
  4432. extra: 3334 / 3071,
  4433. bottom: 42 / 3375.6
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Small",
  4440. height: math.unit(5, "meters")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(900, "meters"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Megamacro",
  4449. height: math.unit(135, "km")
  4450. },
  4451. {
  4452. name: "Gigamacro",
  4453. height: math.unit(20000, "km")
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4459. {
  4460. side: {
  4461. height: math.unit(28.35, "feet"),
  4462. weight: math.unit(99.75, "tons"),
  4463. name: "Side",
  4464. image: {
  4465. source: "./media/characters/asana-mech/side.svg",
  4466. extra: 923 / 699,
  4467. bottom: 50 / 975
  4468. }
  4469. },
  4470. chaingun: {
  4471. height: math.unit(7, "feet"),
  4472. weight: math.unit(2400, "lb"),
  4473. name: "Chaingun",
  4474. image: {
  4475. source: "./media/characters/asana-mech/chaingun.svg"
  4476. }
  4477. },
  4478. laser: {
  4479. height: math.unit(7.12, "feet"),
  4480. weight: math.unit(2000, "lb"),
  4481. name: "Laser",
  4482. image: {
  4483. source: "./media/characters/asana-mech/laser.svg"
  4484. }
  4485. },
  4486. },
  4487. [
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(28.35, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(2500, "feet")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(25, "miles")
  4500. },
  4501. {
  4502. name: "Examacro",
  4503. height: math.unit(6e8, "lightyears")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(5, "meters"),
  4512. weight: math.unit(1000, "kg"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/asche/front.svg",
  4516. extra: 1258 / 1190,
  4517. bottom: 47 / 1305
  4518. }
  4519. },
  4520. frontUnderwear: {
  4521. height: math.unit(5, "meters"),
  4522. weight: math.unit(1000, "kg"),
  4523. name: "Front (Underwear)",
  4524. image: {
  4525. source: "./media/characters/asche/front-underwear.svg",
  4526. extra: 1258 / 1190,
  4527. bottom: 47 / 1305
  4528. }
  4529. },
  4530. frontDressed: {
  4531. height: math.unit(5, "meters"),
  4532. weight: math.unit(1000, "kg"),
  4533. name: "Front (Dressed)",
  4534. image: {
  4535. source: "./media/characters/asche/front-dressed.svg",
  4536. extra: 1258 / 1190,
  4537. bottom: 47 / 1305
  4538. }
  4539. },
  4540. frontArmor: {
  4541. height: math.unit(5, "meters"),
  4542. weight: math.unit(1000, "kg"),
  4543. name: "Front (Armored)",
  4544. image: {
  4545. source: "./media/characters/asche/front-armored.svg",
  4546. extra: 1374 / 1308,
  4547. bottom: 23 / 1397
  4548. }
  4549. },
  4550. mp724: {
  4551. height: math.unit(0.96, "meters"),
  4552. weight: math.unit(38, "kg"),
  4553. name: "H&K MP724",
  4554. image: {
  4555. source: "./media/characters/asche/h&k-mp724.svg"
  4556. }
  4557. },
  4558. side: {
  4559. height: math.unit(5, "meters"),
  4560. weight: math.unit(1000, "kg"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/asche/side.svg",
  4564. extra: 1717 / 1609,
  4565. bottom: 0.005
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(5, "meters"),
  4570. weight: math.unit(1000, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/asche/back.svg",
  4574. extra: 1570 / 1501
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "DEFCON 5",
  4581. height: math.unit(5, "meters")
  4582. },
  4583. {
  4584. name: "DEFCON 4",
  4585. height: math.unit(500, "meters"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "DEFCON 3",
  4590. height: math.unit(5, "km")
  4591. },
  4592. {
  4593. name: "DEFCON 2",
  4594. height: math.unit(500, "km")
  4595. },
  4596. {
  4597. name: "DEFCON 1",
  4598. height: math.unit(500000, "km")
  4599. },
  4600. {
  4601. name: "DEFCON 0",
  4602. height: math.unit(3, "gigaparsecs")
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4608. {
  4609. front: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/gale/front.svg"
  4615. }
  4616. },
  4617. frontAlt1: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(76, "kg"),
  4620. name: "Front (Alt 1)",
  4621. image: {
  4622. source: "./media/characters/gale/front-alt-1.svg"
  4623. }
  4624. },
  4625. frontAlt2: {
  4626. height: math.unit(2, "meters"),
  4627. weight: math.unit(76, "kg"),
  4628. name: "Front (Alt 2)",
  4629. image: {
  4630. source: "./media/characters/gale/front-alt-2.svg"
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(7, "feet")
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(150, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(5 + 10/12, "feet"),
  4655. weight: math.unit(67, "kg"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/draylen/front.svg",
  4659. extra: 832/777,
  4660. bottom: 85/917
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(5 + 10/12, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(150, "feet"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(7 + 9 / 12, "feet"),
  4681. weight: math.unit(379, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/chez/front.svg"
  4685. }
  4686. },
  4687. side: {
  4688. height: math.unit(7 + 9 / 12, "feet"),
  4689. weight: math.unit(379, "lbs"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/chez/side.svg"
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(7 + 9 / 12, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "God King",
  4704. height: math.unit(9750000, "meters")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(275, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/kaylum/front.svg",
  4717. bottom: 0.01,
  4718. extra: 1166 / 1031
  4719. }
  4720. },
  4721. frontWingless: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(275, "lbs"),
  4724. name: "Front (Wingless)",
  4725. image: {
  4726. source: "./media/characters/kaylum/front-wingless.svg",
  4727. bottom: 0.01,
  4728. extra: 1117 / 1031
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(3.05, "meters")
  4736. },
  4737. {
  4738. name: "Master",
  4739. height: math.unit(5.5, "meters")
  4740. },
  4741. {
  4742. name: "Rampage",
  4743. height: math.unit(19, "meters")
  4744. },
  4745. {
  4746. name: "Macro Lite",
  4747. height: math.unit(37, "meters")
  4748. },
  4749. {
  4750. name: "Hyper Predator",
  4751. height: math.unit(61, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(138, "meters"),
  4756. default: true
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(150, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/geta/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Micro",
  4775. height: math.unit(3, "inches"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(5 + 5 / 12, "feet")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(300, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/tyrnn/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Main Height",
  4799. height: math.unit(355, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Fave. Height",
  4804. height: math.unit(2400, "feet")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(300, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/appledectomy/front.svg"
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(2500, "feet")
  4824. },
  4825. {
  4826. name: "Megamacro",
  4827. height: math.unit(50, "miles"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(5000, "miles")
  4833. },
  4834. {
  4835. name: "Teramacro",
  4836. height: math.unit(250000, "miles")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(200, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/vulpes/front.svg",
  4849. extra: 573 / 543,
  4850. bottom: 0.033
  4851. }
  4852. },
  4853. side: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(200, "lbs"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/vulpes/side.svg",
  4859. extra: 577 / 549,
  4860. bottom: 11 / 588
  4861. }
  4862. },
  4863. back: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(200, "lbs"),
  4866. name: "Back",
  4867. image: {
  4868. source: "./media/characters/vulpes/back.svg",
  4869. extra: 573 / 549,
  4870. bottom: 20 / 593
  4871. }
  4872. },
  4873. feet: {
  4874. height: math.unit(1.276, "feet"),
  4875. name: "Feet",
  4876. image: {
  4877. source: "./media/characters/vulpes/feet.svg"
  4878. }
  4879. },
  4880. maw: {
  4881. height: math.unit(1.18, "feet"),
  4882. name: "Maw",
  4883. image: {
  4884. source: "./media/characters/vulpes/maw.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Micro",
  4891. height: math.unit(2, "inches")
  4892. },
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(6.3, "feet")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(850, "feet")
  4900. },
  4901. {
  4902. name: "Megamacro",
  4903. height: math.unit(7500, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(570000, "miles")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/front.svg"
  4921. }
  4922. },
  4923. side: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(210, "lbs"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/side.svg"
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/back.svg"
  4937. }
  4938. },
  4939. feral: {
  4940. height: math.unit(9, "feet"),
  4941. weight: math.unit(700, "lbs"),
  4942. name: "Feral",
  4943. image: {
  4944. source: "./media/characters/rain-fallen/feral.svg"
  4945. }
  4946. },
  4947. },
  4948. [
  4949. {
  4950. name: "Meddling with Mortals",
  4951. height: math.unit(8 + 8/12, "feet")
  4952. },
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(5, "meter")
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(150, "meter"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Megamacro",
  4964. height: math.unit(278e6, "meter")
  4965. },
  4966. {
  4967. name: "Gigamacro",
  4968. height: math.unit(2e9, "meter")
  4969. },
  4970. {
  4971. name: "Teramacro",
  4972. height: math.unit(8e12, "meter")
  4973. },
  4974. {
  4975. name: "Devourer",
  4976. height: math.unit(14, "zettameters")
  4977. },
  4978. {
  4979. name: "Scarlet King",
  4980. height: math.unit(18, "yottameters")
  4981. },
  4982. {
  4983. name: "Void",
  4984. height: math.unit(1e88, "yottameters")
  4985. }
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4990. {
  4991. standing: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(180, "lbs"),
  4994. name: "Standing",
  4995. image: {
  4996. source: "./media/characters/zaakira/standing.svg",
  4997. extra: 1599/1504,
  4998. bottom: 39/1638
  4999. }
  5000. },
  5001. laying: {
  5002. height: math.unit(3, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Laying",
  5005. image: {
  5006. source: "./media/characters/zaakira/laying.svg"
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(279, "feet"),
  5018. default: true
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5024. {
  5025. femSfw: {
  5026. height: math.unit(8, "feet"),
  5027. weight: math.unit(350, "lb"),
  5028. name: "Fem",
  5029. image: {
  5030. source: "./media/characters/sigvald/fem-sfw.svg",
  5031. extra: 182 / 164,
  5032. bottom: 8.7 / 190.5
  5033. }
  5034. },
  5035. femNsfw: {
  5036. height: math.unit(8, "feet"),
  5037. weight: math.unit(350, "lb"),
  5038. name: "Fem (NSFW)",
  5039. image: {
  5040. source: "./media/characters/sigvald/fem-nsfw.svg",
  5041. extra: 182 / 164,
  5042. bottom: 8.7 / 190.5
  5043. }
  5044. },
  5045. maleNsfw: {
  5046. height: math.unit(8, "feet"),
  5047. weight: math.unit(350, "lb"),
  5048. name: "Male (NSFW)",
  5049. image: {
  5050. source: "./media/characters/sigvald/male-nsfw.svg",
  5051. extra: 182 / 164,
  5052. bottom: 8.7 / 190.5
  5053. }
  5054. },
  5055. hermNsfw: {
  5056. height: math.unit(8, "feet"),
  5057. weight: math.unit(350, "lb"),
  5058. name: "Herm (NSFW)",
  5059. image: {
  5060. source: "./media/characters/sigvald/herm-nsfw.svg",
  5061. extra: 182 / 164,
  5062. bottom: 8.7 / 190.5
  5063. }
  5064. },
  5065. dick: {
  5066. height: math.unit(2.36, "feet"),
  5067. name: "Dick",
  5068. image: {
  5069. source: "./media/characters/sigvald/dick.svg"
  5070. }
  5071. },
  5072. eye: {
  5073. height: math.unit(0.31, "feet"),
  5074. name: "Eye",
  5075. image: {
  5076. source: "./media/characters/sigvald/eye.svg"
  5077. }
  5078. },
  5079. mouth: {
  5080. height: math.unit(0.92, "feet"),
  5081. name: "Mouth",
  5082. image: {
  5083. source: "./media/characters/sigvald/mouth.svg"
  5084. }
  5085. },
  5086. paws: {
  5087. height: math.unit(2.2, "feet"),
  5088. name: "Paws",
  5089. image: {
  5090. source: "./media/characters/sigvald/paws.svg"
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(8, "feet")
  5098. },
  5099. {
  5100. name: "Large",
  5101. height: math.unit(12, "feet")
  5102. },
  5103. {
  5104. name: "Larger",
  5105. height: math.unit(20, "feet")
  5106. },
  5107. {
  5108. name: "Macro",
  5109. height: math.unit(150, "feet")
  5110. },
  5111. {
  5112. name: "Macro+",
  5113. height: math.unit(200, "feet"),
  5114. default: true
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(12, "feet"),
  5123. weight: math.unit(2000, "kg"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/scott/side.svg",
  5127. extra: 754 / 724,
  5128. bottom: 0.069
  5129. }
  5130. },
  5131. upright: {
  5132. height: math.unit(12, "feet"),
  5133. weight: math.unit(2000, "kg"),
  5134. name: "Upright",
  5135. image: {
  5136. source: "./media/characters/scott/upright.svg",
  5137. extra: 3881 / 3722,
  5138. bottom: 0.05
  5139. }
  5140. },
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(12, "feet"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5152. {
  5153. side: {
  5154. height: math.unit(8, "meters"),
  5155. weight: math.unit(84755, "lbs"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/tobias/side.svg",
  5159. extra: 1474 / 1096,
  5160. bottom: 38.9 / 1513.1235
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(8, "meters"),
  5168. default: true
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5174. {
  5175. front: {
  5176. height: math.unit(5.5, "feet"),
  5177. weight: math.unit(400, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/kieran/front.svg",
  5181. extra: 2694 / 2364,
  5182. bottom: 217 / 2908
  5183. }
  5184. },
  5185. side: {
  5186. height: math.unit(5.5, "feet"),
  5187. weight: math.unit(400, "lbs"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/kieran/side.svg",
  5191. extra: 875 / 777,
  5192. bottom: 84.6 / 959
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(5.5, "feet"),
  5200. default: true
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5206. {
  5207. side: {
  5208. height: math.unit(2, "meters"),
  5209. weight: math.unit(70, "kg"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/sanya/side.svg",
  5213. bottom: 0.02,
  5214. extra: 1.02
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Small",
  5221. height: math.unit(2, "meters")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(3, "meters")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(16, "meters"),
  5230. default: true
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(2, "meters"),
  5239. weight: math.unit(120, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/miranda/front.svg",
  5243. extra: 195 / 185,
  5244. bottom: 10.9 / 206.5
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(120, "kg"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/miranda/back.svg",
  5253. extra: 201 / 193,
  5254. bottom: 2.3 / 203.7
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(10, "feet"),
  5262. default: true
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "James", species: ["deer"], tags: ["anthro"] },
  5268. {
  5269. side: {
  5270. height: math.unit(2, "meters"),
  5271. weight: math.unit(100, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/james/front.svg",
  5275. extra: 10 / 8.5
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(8.5, "feet"),
  5283. default: true
  5284. }
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5289. {
  5290. side: {
  5291. height: math.unit(9.5, "feet"),
  5292. weight: math.unit(2500, "lbs"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/heather/side.svg"
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Normal",
  5302. height: math.unit(9.5, "feet"),
  5303. default: true
  5304. }
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5309. {
  5310. side: {
  5311. height: math.unit(6.5, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Side",
  5314. image: {
  5315. source: "./media/characters/lukas/side.svg",
  5316. extra: 7.25 / 6.5
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(6.5, "feet"),
  5324. default: true
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5330. {
  5331. side: {
  5332. height: math.unit(5, "feet"),
  5333. weight: math.unit(3000, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/louise/side.svg"
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5, "feet"),
  5344. default: true
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5350. {
  5351. side: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(150, "lbs"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/ramona/side.svg",
  5357. extra: 871/854,
  5358. bottom: 41/912
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5.3, "meters"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(20, "stories")
  5371. },
  5372. {
  5373. name: "Macro+",
  5374. height: math.unit(50, "stories")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5380. {
  5381. standing: {
  5382. height: math.unit(5.75, "feet"),
  5383. weight: math.unit(160, "lbs"),
  5384. name: "Standing",
  5385. image: {
  5386. source: "./media/characters/deerpuff/standing.svg",
  5387. extra: 682 / 624
  5388. }
  5389. },
  5390. sitting: {
  5391. height: math.unit(5.75 / 1.79, "feet"),
  5392. weight: math.unit(160, "lbs"),
  5393. name: "Sitting",
  5394. image: {
  5395. source: "./media/characters/deerpuff/sitting.svg",
  5396. bottom: 44 / 400,
  5397. extra: 1
  5398. }
  5399. },
  5400. taurLaying: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(400, "lbs"),
  5403. name: "Taur (Laying)",
  5404. image: {
  5405. source: "./media/characters/deerpuff/taur-laying.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Puffball",
  5412. height: math.unit(6, "inches")
  5413. },
  5414. {
  5415. name: "Normalpuff",
  5416. height: math.unit(5.75, "feet")
  5417. },
  5418. {
  5419. name: "Macropuff",
  5420. height: math.unit(1500, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megapuff",
  5425. height: math.unit(500, "miles")
  5426. },
  5427. {
  5428. name: "Gigapuff",
  5429. height: math.unit(250000, "miles")
  5430. },
  5431. {
  5432. name: "Omegapuff",
  5433. height: math.unit(1000, "lightyears")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5439. {
  5440. stomping: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Stomping",
  5444. image: {
  5445. source: "./media/characters/vivian/stomping.svg"
  5446. }
  5447. },
  5448. sitting: {
  5449. height: math.unit(6 / 1.75, "feet"),
  5450. weight: math.unit(170, "lbs"),
  5451. name: "Sitting",
  5452. image: {
  5453. source: "./media/characters/vivian/sitting.svg",
  5454. bottom: 1 / 6.4,
  5455. extra: 1,
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(7, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(10, "stories")
  5468. },
  5469. {
  5470. name: "Macro+",
  5471. height: math.unit(30, "stories")
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(10, "miles")
  5476. },
  5477. {
  5478. name: "Megamacro+",
  5479. height: math.unit(2750000, "meters")
  5480. },
  5481. ]
  5482. ))
  5483. characterMakers.push(() => makeCharacter(
  5484. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5485. {
  5486. front: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(160, "lbs"),
  5489. name: "Front",
  5490. image: {
  5491. source: "./media/characters/prince/front.svg",
  5492. extra: 3400 / 3000
  5493. }
  5494. },
  5495. jumping: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(160, "lbs"),
  5498. name: "Jumping",
  5499. image: {
  5500. source: "./media/characters/prince/jump.svg",
  5501. extra: 2555 / 2134
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(7.75, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Not cute",
  5513. height: math.unit(17, "feet")
  5514. },
  5515. {
  5516. name: "I said NOT",
  5517. height: math.unit(91, "feet")
  5518. },
  5519. {
  5520. name: "Please stop",
  5521. height: math.unit(560, "feet")
  5522. },
  5523. {
  5524. name: "What have you done",
  5525. height: math.unit(2200, "feet")
  5526. },
  5527. {
  5528. name: "Deer God",
  5529. height: math.unit(3.6, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5535. {
  5536. standing: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(300, "lbs"),
  5539. name: "Standing",
  5540. image: {
  5541. source: "./media/characters/psymon/standing.svg",
  5542. extra: 1888 / 1810,
  5543. bottom: 0.05
  5544. }
  5545. },
  5546. slithering: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(300, "lbs"),
  5549. name: "Slithering",
  5550. image: {
  5551. source: "./media/characters/psymon/slithering.svg",
  5552. extra: 1330 / 1224
  5553. }
  5554. },
  5555. slitheringAlt: {
  5556. height: math.unit(6, "feet"),
  5557. weight: math.unit(300, "lbs"),
  5558. name: "Slithering (Alt)",
  5559. image: {
  5560. source: "./media/characters/psymon/slithering-alt.svg",
  5561. extra: 1330 / 1224
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(11.25, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Large",
  5573. height: math.unit(27, "feet")
  5574. },
  5575. {
  5576. name: "Giant",
  5577. height: math.unit(87, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(365, "feet")
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(3, "miles")
  5586. },
  5587. {
  5588. name: "World Serpent",
  5589. height: math.unit(8000, "miles")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/daimos/front.svg",
  5602. extra: 4160 / 3897,
  5603. bottom: 0.021
  5604. }
  5605. }
  5606. },
  5607. [
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(8, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Big Dog",
  5615. height: math.unit(22, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(127, "feet")
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(3600, "feet")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5629. {
  5630. side: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Side",
  5634. image: {
  5635. source: "./media/characters/blake/side.svg",
  5636. extra: 1212 / 1120,
  5637. bottom: 0.05
  5638. }
  5639. },
  5640. crouched: {
  5641. height: math.unit(6 * 0.57, "feet"),
  5642. weight: math.unit(180, "lbs"),
  5643. name: "Crouched",
  5644. image: {
  5645. source: "./media/characters/blake/crouched.svg",
  5646. extra: 840 / 587,
  5647. bottom: 0.04
  5648. }
  5649. },
  5650. bent: {
  5651. height: math.unit(6 * 0.75, "feet"),
  5652. weight: math.unit(180, "lbs"),
  5653. name: "Bent",
  5654. image: {
  5655. source: "./media/characters/blake/bent.svg",
  5656. extra: 592 / 544,
  5657. bottom: 0.035
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(8 + 1 / 6, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Big Backside",
  5669. height: math.unit(37, "feet")
  5670. },
  5671. {
  5672. name: "Subway Shredder",
  5673. height: math.unit(72, "feet")
  5674. },
  5675. {
  5676. name: "City Carver",
  5677. height: math.unit(1675, "feet")
  5678. },
  5679. {
  5680. name: "Tectonic Tweaker",
  5681. height: math.unit(2300, "miles")
  5682. },
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(180, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/guisetto/front.svg",
  5694. extra: 856 / 817,
  5695. bottom: 0.06
  5696. }
  5697. },
  5698. airborne: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Airborne",
  5702. image: {
  5703. source: "./media/characters/guisetto/airborne.svg",
  5704. extra: 584 / 525
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(10 + 11 / 12, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Large",
  5716. height: math.unit(35, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(475, "feet")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(6, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/luxor/front.svg",
  5733. extra: 2940 / 2152
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(180, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/luxor/back.svg",
  5742. extra: 1083 / 960
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5 + 5 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Lamp",
  5754. height: math.unit(50, "feet")
  5755. },
  5756. {
  5757. name: "Lämp",
  5758. height: math.unit(300, "feet")
  5759. },
  5760. {
  5761. name: "The sun is a lamp",
  5762. height: math.unit(250000, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(50, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/huoyan/front.svg"
  5775. }
  5776. },
  5777. side: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(180, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/huoyan/side.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Chef",
  5789. height: math.unit(9, "feet")
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(65, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(780, "feet")
  5799. },
  5800. {
  5801. name: "Flaming Mountain",
  5802. height: math.unit(4.8, "miles")
  5803. },
  5804. {
  5805. name: "Celestial",
  5806. height: math.unit(765000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(5 + 3 / 4, "feet"),
  5815. weight: math.unit(120, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/tails/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(5 + 3 / 4, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(4, "feet"),
  5835. weight: math.unit(50, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/rainy/front.svg"
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(800, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(150, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/rainier/front.svg"
  5859. }
  5860. }
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "mm"),
  5866. default: true
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5872. {
  5873. front: {
  5874. height: math.unit(8 + 4/12, "feet"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/andy-renard/front.svg",
  5878. extra: 1839/1726,
  5879. bottom: 134/1973
  5880. }
  5881. },
  5882. back: {
  5883. height: math.unit(8 + 4/12, "feet"),
  5884. name: "Back",
  5885. image: {
  5886. source: "./media/characters/andy-renard/back.svg",
  5887. extra: 1838/1710,
  5888. bottom: 105/1943
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Tall",
  5895. height: math.unit(8 + 4/12, "feet")
  5896. },
  5897. {
  5898. name: "Mini Macro",
  5899. height: math.unit(15, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(100, "feet")
  5905. },
  5906. {
  5907. name: "Mega Macro",
  5908. height: math.unit(1000, "feet")
  5909. },
  5910. {
  5911. name: "Giga Macro",
  5912. height: math.unit(10, "miles")
  5913. },
  5914. {
  5915. name: "God Macro",
  5916. height: math.unit(1, "multiverse")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(210, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/cimmaron/front-sfw.svg",
  5929. extra: 701 / 676,
  5930. bottom: 0.046
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/cimmaron/back-sfw.svg",
  5939. extra: 701 / 676,
  5940. bottom: 0.046
  5941. }
  5942. },
  5943. frontNsfw: {
  5944. height: math.unit(6, "feet"),
  5945. weight: math.unit(210, "lbs"),
  5946. name: "Front (NSFW)",
  5947. image: {
  5948. source: "./media/characters/cimmaron/front-nsfw.svg",
  5949. extra: 701 / 676,
  5950. bottom: 0.046
  5951. }
  5952. },
  5953. backNsfw: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(210, "lbs"),
  5956. name: "Back (NSFW)",
  5957. image: {
  5958. source: "./media/characters/cimmaron/back-nsfw.svg",
  5959. extra: 701 / 676,
  5960. bottom: 0.046
  5961. }
  5962. },
  5963. dick: {
  5964. height: math.unit(1.714, "feet"),
  5965. name: "Dick",
  5966. image: {
  5967. source: "./media/characters/cimmaron/dick.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(6, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Macro Mayor",
  5979. height: math.unit(350, "meters")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(200, "lbs"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/akari/front.svg",
  5992. extra: 962 / 901,
  5993. bottom: 0.04
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Micro",
  6000. height: math.unit(5, "inches"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(7, "feet")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(140, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/cynosura/front.svg",
  6018. extra: 896 / 847
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(140, "lbs"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/cynosura/back.svg",
  6027. extra: 1365 / 1250
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Micro",
  6034. height: math.unit(4, "inches")
  6035. },
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(5.75, "feet"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Tall",
  6043. height: math.unit(10, "feet")
  6044. },
  6045. {
  6046. name: "Big",
  6047. height: math.unit(20, "feet")
  6048. },
  6049. {
  6050. name: "Macro",
  6051. height: math.unit(50, "feet")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(13 + 2/12, "feet"),
  6060. weight: math.unit(800, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/gin/front.svg",
  6064. extra: 1312/1191,
  6065. bottom: 45/1357
  6066. }
  6067. },
  6068. mouth: {
  6069. height: math.unit(2.39 * 1.8, "feet"),
  6070. name: "Mouth",
  6071. image: {
  6072. source: "./media/characters/gin/mouth.svg"
  6073. }
  6074. },
  6075. hand: {
  6076. height: math.unit(1.57 * 2.19, "feet"),
  6077. name: "Hand",
  6078. image: {
  6079. source: "./media/characters/gin/hand.svg"
  6080. }
  6081. },
  6082. foot: {
  6083. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6084. name: "Foot",
  6085. image: {
  6086. source: "./media/characters/gin/foot.svg"
  6087. }
  6088. },
  6089. sole: {
  6090. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6091. name: "Sole",
  6092. image: {
  6093. source: "./media/characters/gin/sole.svg"
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Very Small",
  6100. height: math.unit(13 + 2 / 12, "feet")
  6101. },
  6102. {
  6103. name: "Micro",
  6104. height: math.unit(600, "miles")
  6105. },
  6106. {
  6107. name: "Regular",
  6108. height: math.unit(20, "earths"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Macro",
  6113. height: math.unit(2.2, "solarradii")
  6114. },
  6115. {
  6116. name: "Teramacro",
  6117. height: math.unit(1.2, "galaxies")
  6118. },
  6119. {
  6120. name: "Omegamacro",
  6121. height: math.unit(200, "universes")
  6122. },
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(6 + 1 / 6, "feet"),
  6130. weight: math.unit(178, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/guy/front.svg"
  6134. }
  6135. }
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6 + 1 / 6, "feet"),
  6141. default: true
  6142. },
  6143. {
  6144. name: "Large",
  6145. height: math.unit(25 + 7 / 12, "feet")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(60 + 9 / 12, "feet")
  6150. },
  6151. {
  6152. name: "Macro+",
  6153. height: math.unit(246, "feet")
  6154. },
  6155. {
  6156. name: "Macro++",
  6157. height: math.unit(878, "feet")
  6158. }
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(9, "feet"),
  6166. weight: math.unit(800, "lbs"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/tiberius/front.svg",
  6170. extra: 2295 / 2071
  6171. }
  6172. },
  6173. back: {
  6174. height: math.unit(9, "feet"),
  6175. weight: math.unit(800, "lbs"),
  6176. name: "Back",
  6177. image: {
  6178. source: "./media/characters/tiberius/back.svg",
  6179. extra: 2373 / 2160
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(9, "feet"),
  6187. default: true
  6188. }
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(600, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/surgo/front.svg",
  6200. extra: 3591 / 2227
  6201. }
  6202. },
  6203. back: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(600, "lbs"),
  6206. name: "Back",
  6207. image: {
  6208. source: "./media/characters/surgo/back.svg",
  6209. extra: 3557 / 2228
  6210. }
  6211. },
  6212. laying: {
  6213. height: math.unit(6 * 0.85, "feet"),
  6214. weight: math.unit(600, "lbs"),
  6215. name: "Laying",
  6216. image: {
  6217. source: "./media/characters/surgo/laying.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(6, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/cibus/side.svg",
  6238. extra: 800 / 400
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(240, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/nibbles/front.svg"
  6259. }
  6260. },
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(240, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/nibbles/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(9, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(5 + 1 / 6, "feet"),
  6283. weight: math.unit(130, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/rikky/side.svg",
  6287. extra: 851 / 801
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(5 + 1 / 6, "feet")
  6295. },
  6296. {
  6297. name: "Macro",
  6298. height: math.unit(152, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Megamacro",
  6303. height: math.unit(7, "miles")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6309. {
  6310. side: {
  6311. height: math.unit(370, "cm"),
  6312. weight: math.unit(350, "lbs"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/malfressa/side.svg"
  6316. }
  6317. },
  6318. walking: {
  6319. height: math.unit(370, "cm"),
  6320. weight: math.unit(350, "lbs"),
  6321. name: "Walking",
  6322. image: {
  6323. source: "./media/characters/malfressa/walking.svg"
  6324. }
  6325. },
  6326. feral: {
  6327. height: math.unit(2500, "cm"),
  6328. weight: math.unit(100000, "lbs"),
  6329. name: "Feral",
  6330. image: {
  6331. source: "./media/characters/malfressa/feral.svg",
  6332. extra: 2108 / 837,
  6333. bottom: 0.02
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(370, "cm")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(300, "meters"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(60, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/jaro/front.svg",
  6358. extra: 845/817,
  6359. bottom: 45/890
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(60, "kg"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/jaro/back.svg",
  6368. extra: 847/817,
  6369. bottom: 34/881
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(7, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.5, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Minimacro",
  6385. height: math.unit(20, "feet")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(200, "meters")
  6390. }
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(195, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/rogue/front.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(90, "feet"),
  6409. default: true
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(5 + 8 / 12, "feet"),
  6418. weight: math.unit(140, "lb"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/piper/front.svg",
  6422. extra: 3948/3655,
  6423. bottom: 0/3948
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(2, "inches")
  6431. },
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5 + 8 / 12, "feet")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(250, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(7, "miles")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/gemini/front.svg"
  6456. }
  6457. },
  6458. back: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(220, "lb"),
  6461. name: "Back",
  6462. image: {
  6463. source: "./media/characters/gemini/back.svg"
  6464. }
  6465. },
  6466. kneeling: {
  6467. height: math.unit(6 / 1.5, "feet"),
  6468. weight: math.unit(220, "lb"),
  6469. name: "Kneeling",
  6470. image: {
  6471. source: "./media/characters/gemini/kneeling.svg",
  6472. bottom: 0.02
  6473. }
  6474. },
  6475. },
  6476. [
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(300, "meters"),
  6480. default: true
  6481. },
  6482. {
  6483. name: "Megamacro",
  6484. height: math.unit(6900, "meters")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6490. {
  6491. anthro: {
  6492. height: math.unit(2.35, "meters"),
  6493. weight: math.unit(73, "kg"),
  6494. name: "Anthro",
  6495. image: {
  6496. source: "./media/characters/alicia/anthro.svg",
  6497. extra: 2571 / 2385,
  6498. bottom: 75 / 2648
  6499. }
  6500. },
  6501. paw: {
  6502. height: math.unit(1.32, "feet"),
  6503. name: "Paw",
  6504. image: {
  6505. source: "./media/characters/alicia/paw.svg"
  6506. }
  6507. },
  6508. feral: {
  6509. height: math.unit(1.69, "meters"),
  6510. weight: math.unit(73, "kg"),
  6511. name: "Feral",
  6512. image: {
  6513. source: "./media/characters/alicia/feral.svg",
  6514. extra: 2123 / 1715,
  6515. bottom: 222 / 2349
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(2.35, "meters")
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(60, "meters"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(10000, "kilometers")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(7, "feet"),
  6540. weight: math.unit(250, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/archy/front.svg"
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Micro",
  6550. height: math.unit(1, "inch")
  6551. },
  6552. {
  6553. name: "Shorty",
  6554. height: math.unit(5, "feet")
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(7, "feet")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(600, "meters"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Megamacro",
  6567. height: math.unit(1, "mile")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(1.65, "meters"),
  6576. weight: math.unit(74, "kg"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/berri/front.svg",
  6580. extra: 857 / 837,
  6581. bottom: 18 / 877
  6582. }
  6583. },
  6584. bum: {
  6585. height: math.unit(1.46, "feet"),
  6586. name: "Bum",
  6587. image: {
  6588. source: "./media/characters/berri/bum.svg"
  6589. }
  6590. },
  6591. mouth: {
  6592. height: math.unit(0.44, "feet"),
  6593. name: "Mouth",
  6594. image: {
  6595. source: "./media/characters/berri/mouth.svg"
  6596. }
  6597. },
  6598. paw: {
  6599. height: math.unit(0.826, "feet"),
  6600. name: "Paw",
  6601. image: {
  6602. source: "./media/characters/berri/paw.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(1.65, "meters")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(60, "m"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(9.213, "km")
  6619. },
  6620. {
  6621. name: "Planet Eater",
  6622. height: math.unit(489, "megameters")
  6623. },
  6624. {
  6625. name: "Teramacro",
  6626. height: math.unit(2471635000000, "meters")
  6627. },
  6628. {
  6629. name: "Examacro",
  6630. height: math.unit(8.0624e+26, "meters")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(1.72, "meters"),
  6639. weight: math.unit(68, "kg"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/lexi/front.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Very Smol",
  6649. height: math.unit(10, "mm")
  6650. },
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(6.8, "cm"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.72, "m")
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(1.69, "meters"),
  6667. weight: math.unit(68, "kg"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/martin/front.svg",
  6671. extra: 596 / 581
  6672. }
  6673. }
  6674. },
  6675. [
  6676. {
  6677. name: "Micro",
  6678. height: math.unit(6.85, "cm"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(1.69, "m")
  6684. }
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(1.69, "meters"),
  6692. weight: math.unit(68, "kg"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/juno/front.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(7, "cm")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.89, "m")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(353, "meters"),
  6711. default: true
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/samantha/front.svg"
  6724. }
  6725. },
  6726. frontClothed: {
  6727. height: math.unit(1.93, "meters"),
  6728. weight: math.unit(83, "kg"),
  6729. name: "Front (Clothed)",
  6730. image: {
  6731. source: "./media/characters/samantha/front-clothed.svg"
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(1.93, "meters"),
  6736. weight: math.unit(83, "kg"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/samantha/back.svg"
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(1.93, "m")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(74, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro+",
  6755. height: math.unit(223, "meters"),
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(8381, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro+",
  6763. height: math.unit(12000, "kilometers")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(1.92, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/dr-clay/front.svg"
  6776. }
  6777. },
  6778. frontClothed: {
  6779. height: math.unit(1.92, "meters"),
  6780. weight: math.unit(80, "kg"),
  6781. name: "Front (Clothed)",
  6782. image: {
  6783. source: "./media/characters/dr-clay/front-clothed.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.92, "m")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(214, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro+",
  6799. height: math.unit(12.237, "meters"),
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(557, "megameters"),
  6804. },
  6805. {
  6806. name: "Unimaginable",
  6807. height: math.unit(120e9, "lightyears")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(80, "kg"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Teramacro",
  6826. height: math.unit(500000, "lightyears"),
  6827. default: true
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6833. {
  6834. crux: {
  6835. height: math.unit(2, "meters"),
  6836. weight: math.unit(150, "kg"),
  6837. name: "Crux",
  6838. image: {
  6839. source: "./media/characters/vemus/crux.svg",
  6840. extra: 1074/936,
  6841. bottom: 23/1097
  6842. }
  6843. },
  6844. skunkTanuki: {
  6845. height: math.unit(2, "meters"),
  6846. weight: math.unit(150, "kg"),
  6847. name: "Skunk-Tanuki",
  6848. image: {
  6849. source: "./media/characters/vemus/skunk-tanuki.svg",
  6850. extra: 926/893,
  6851. bottom: 20/946
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(3.75, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Big",
  6863. height: math.unit(8, "meters")
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(100, "meters")
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(1500, "meters")
  6872. },
  6873. {
  6874. name: "Stellar",
  6875. height: math.unit(14e8, "meters")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(70, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/beherit/front.svg",
  6888. extra: 1234/1109,
  6889. bottom: 55/1289
  6890. }
  6891. }
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(6, "feet")
  6897. },
  6898. {
  6899. name: "Lorg",
  6900. height: math.unit(25, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Lorger",
  6905. height: math.unit(75, "feet")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(200, "meters")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/everett/front.svg",
  6922. extra: 1017/866,
  6923. bottom: 86/1103
  6924. }
  6925. },
  6926. paw: {
  6927. height: math.unit(2 / 3.6, "meters"),
  6928. name: "Paw",
  6929. image: {
  6930. source: "./media/characters/everett/paw.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(15, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Lorg",
  6942. height: math.unit(70, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Lorger",
  6947. height: math.unit(250, "feet")
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(500, "meters")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(2, "meters"),
  6960. weight: math.unit(86, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/rose/front.svg",
  6964. extra: 1785/1636,
  6965. bottom: 30/1815
  6966. }
  6967. },
  6968. frontSporty: {
  6969. height: math.unit(2, "meters"),
  6970. weight: math.unit(86, "kg"),
  6971. name: "Front (Sporty)",
  6972. image: {
  6973. source: "./media/characters/rose/front-sporty.svg",
  6974. extra: 350/335,
  6975. bottom: 10/360
  6976. }
  6977. },
  6978. frontAlt: {
  6979. height: math.unit(1.6, "meters"),
  6980. weight: math.unit(86, "kg"),
  6981. name: "Front (Alt)",
  6982. image: {
  6983. source: "./media/characters/rose/front-alt.svg",
  6984. extra: 299/283,
  6985. bottom: 3/302
  6986. }
  6987. },
  6988. plush: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(86/3, "kg"),
  6991. name: "Plush",
  6992. image: {
  6993. source: "./media/characters/rose/plush.svg",
  6994. extra: 361/337,
  6995. bottom: 11/372
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "True Micro",
  7002. height: math.unit(9, "cm")
  7003. },
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(16, "cm")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(1.85, "meters"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Mini-Macro",
  7015. height: math.unit(5, "meters")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(15, "meters")
  7020. },
  7021. {
  7022. name: "True Macro",
  7023. height: math.unit(40, "meters")
  7024. },
  7025. {
  7026. name: "City Scale",
  7027. height: math.unit(1, "km")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(350, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/regal/front.svg"
  7040. }
  7041. },
  7042. back: {
  7043. height: math.unit(2, "meters"),
  7044. weight: math.unit(350, "lbs"),
  7045. name: "Back",
  7046. image: {
  7047. source: "./media/characters/regal/back.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(350, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(4 + 11 / 12, "feet"),
  7064. weight: math.unit(100, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/opal/front.svg"
  7068. }
  7069. },
  7070. frontAlt: {
  7071. height: math.unit(4 + 11 / 12, "feet"),
  7072. weight: math.unit(100, "lbs"),
  7073. name: "Front (Alt)",
  7074. image: {
  7075. source: "./media/characters/opal/front-alt.svg"
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Small",
  7082. height: math.unit(4 + 11 / 12, "feet")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(20, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(120, "feet")
  7092. },
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(80, "miles")
  7096. },
  7097. {
  7098. name: "True Size",
  7099. height: math.unit(100000, "lightyears")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(200, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/vector-wuff/front.svg"
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(2.8, "meters")
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(450, "meters"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Megamacro",
  7127. height: math.unit(15, "kilometers")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(256, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/dannik/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(69.57, "meters"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(120, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/azura-saharah/front.svg"
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(120, "lbs"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/azura-saharah/back.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(100, "feet"),
  7175. default: true
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7181. {
  7182. side: {
  7183. height: math.unit(5 + 4 / 12, "feet"),
  7184. weight: math.unit(163, "lbs"),
  7185. name: "Side",
  7186. image: {
  7187. source: "./media/characters/kennedy/side.svg"
  7188. }
  7189. }
  7190. },
  7191. [
  7192. {
  7193. name: "Standard Doggo",
  7194. height: math.unit(5 + 4 / 12, "feet")
  7195. },
  7196. {
  7197. name: "Big Doggo",
  7198. height: math.unit(25 + 3 / 12, "feet"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(5 + 5/12, "feet"),
  7208. weight: math.unit(100, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/odios-de-lunar/front.svg",
  7212. extra: 1468/1323,
  7213. bottom: 22/1490
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(3, "inches")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5.5, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(100, "feet")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7235. {
  7236. back: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(220, "lbs"),
  7239. name: "Back",
  7240. image: {
  7241. source: "./media/characters/mandake/back.svg"
  7242. }
  7243. }
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(7, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(78, "feet")
  7254. },
  7255. {
  7256. name: "Macro+",
  7257. height: math.unit(300, "meters")
  7258. },
  7259. {
  7260. name: "Macro++",
  7261. height: math.unit(2400, "feet")
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(5167, "meters")
  7266. },
  7267. {
  7268. name: "Gigamacro",
  7269. height: math.unit(41769, "miles")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/yozey/front.svg"
  7282. }
  7283. },
  7284. frontAlt: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Front (Alt)",
  7288. image: {
  7289. source: "./media/characters/yozey/front-alt.svg"
  7290. }
  7291. },
  7292. side: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Side",
  7296. image: {
  7297. source: "./media/characters/yozey/side.svg"
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Micro",
  7304. height: math.unit(3, "inches"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(6, "feet")
  7310. }
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(103, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/valeska-voss/front.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Mini-Sized Sub",
  7328. height: math.unit(3.1, "inches")
  7329. },
  7330. {
  7331. name: "Mid-Sized Sub",
  7332. height: math.unit(6.2, "inches")
  7333. },
  7334. {
  7335. name: "Full-Sized Sub",
  7336. height: math.unit(9.3, "inches")
  7337. },
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(5 + 2 / 12, "foot"),
  7341. default: true
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(160, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/gene-zeta/front.svg",
  7354. extra: 3006 / 2826,
  7355. bottom: 182 / 3188
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(6, "inches")
  7363. },
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5 + 11 / 12, "foot"),
  7367. default: true
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(140, "feet")
  7372. },
  7373. {
  7374. name: "Supercharged",
  7375. height: math.unit(2500, "feet")
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(350, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/razinox/front.svg",
  7388. extra: 1686 / 1548,
  7389. bottom: 28.2 / 1868
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(350, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/razinox/back.svg",
  7398. extra: 1660 / 1590,
  7399. bottom: 15 / 1665
  7400. }
  7401. },
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(10 + 8 / 12, "foot")
  7407. },
  7408. {
  7409. name: "Minimacro",
  7410. height: math.unit(15, "foot")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(60, "foot"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(5, "miles")
  7420. },
  7421. {
  7422. name: "Gigamacro",
  7423. height: math.unit(6000, "miles")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/cobalt/front.svg"
  7436. }
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(8 + 1 / 12, "foot")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(111, "foot"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Supracosmic",
  7451. height: math.unit(1e42, "feet")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(140, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/amanda/front.svg"
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(5, "inches"),
  7471. default: true
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(2.75, "meters"),
  7480. weight: math.unit(1200, "lb"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/teal/front.svg",
  7484. extra: 2463 / 2320,
  7485. bottom: 166 / 2629
  7486. }
  7487. },
  7488. back: {
  7489. height: math.unit(2.75, "meters"),
  7490. weight: math.unit(1200, "lb"),
  7491. name: "Back",
  7492. image: {
  7493. source: "./media/characters/teal/back.svg",
  7494. extra: 2580 / 2489,
  7495. bottom: 151 / 2731
  7496. }
  7497. },
  7498. sitting: {
  7499. height: math.unit(1.9, "meters"),
  7500. weight: math.unit(1200, "lb"),
  7501. name: "Sitting",
  7502. image: {
  7503. source: "./media/characters/teal/sitting.svg",
  7504. extra: 623 / 590,
  7505. bottom: 121 / 744
  7506. }
  7507. },
  7508. standing: {
  7509. height: math.unit(2.75, "meters"),
  7510. weight: math.unit(1200, "lb"),
  7511. name: "Standing",
  7512. image: {
  7513. source: "./media/characters/teal/standing.svg",
  7514. extra: 923 / 893,
  7515. bottom: 60 / 983
  7516. }
  7517. },
  7518. stretching: {
  7519. height: math.unit(3.65, "meters"),
  7520. weight: math.unit(1200, "lb"),
  7521. name: "Stretching",
  7522. image: {
  7523. source: "./media/characters/teal/stretching.svg",
  7524. extra: 1276 / 1244,
  7525. bottom: 0 / 1276
  7526. }
  7527. },
  7528. legged: {
  7529. height: math.unit(1.3, "meters"),
  7530. weight: math.unit(100, "lb"),
  7531. name: "Legged",
  7532. image: {
  7533. source: "./media/characters/teal/legged.svg",
  7534. extra: 462 / 437,
  7535. bottom: 24 / 486
  7536. }
  7537. },
  7538. naga: {
  7539. height: math.unit(5.4, "meters"),
  7540. weight: math.unit(4000, "lb"),
  7541. name: "Naga",
  7542. image: {
  7543. source: "./media/characters/teal/naga.svg",
  7544. extra: 1902 / 1858,
  7545. bottom: 0 / 1902
  7546. }
  7547. },
  7548. hand: {
  7549. height: math.unit(0.52, "meters"),
  7550. name: "Hand",
  7551. image: {
  7552. source: "./media/characters/teal/hand.svg"
  7553. }
  7554. },
  7555. maw: {
  7556. height: math.unit(0.43, "meters"),
  7557. name: "Maw",
  7558. image: {
  7559. source: "./media/characters/teal/maw.svg"
  7560. }
  7561. },
  7562. slit: {
  7563. height: math.unit(0.25, "meters"),
  7564. name: "Slit",
  7565. image: {
  7566. source: "./media/characters/teal/slit.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(2.75, "meters"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(300, "feet")
  7579. },
  7580. {
  7581. name: "Macro+",
  7582. height: math.unit(2000, "feet")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7588. {
  7589. frontCat: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(180, "lbs"),
  7592. name: "Front (Cat)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-cat.svg"
  7595. }
  7596. },
  7597. frontCatAlt: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(180, "lbs"),
  7600. name: "Front (Alt, Cat)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7603. }
  7604. },
  7605. frontWerewolf: {
  7606. height: math.unit(6 * 1.2, "feet"),
  7607. weight: math.unit(225, "lbs"),
  7608. name: "Front (Werewolf)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7611. }
  7612. },
  7613. backWerewolf: {
  7614. height: math.unit(6 * 1.2, "feet"),
  7615. weight: math.unit(225, "lbs"),
  7616. name: "Back (Werewolf)",
  7617. image: {
  7618. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Nano",
  7625. height: math.unit(1, "micrometer")
  7626. },
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(1, "inch")
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(6, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "feet")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(165, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/fluoresce/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(6, "cm")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(5 + 7 / 12, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Macro",
  7666. height: math.unit(56, "feet")
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(1.9, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(9 + 6 / 12, "feet"),
  7679. weight: math.unit(523, "lbs"),
  7680. name: "Side",
  7681. image: {
  7682. source: "./media/characters/aurora/side.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(9 + 6 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(96, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro+",
  7698. height: math.unit(243, "feet")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/ranek/front.svg"
  7711. }
  7712. },
  7713. side: {
  7714. height: math.unit(194, "cm"),
  7715. weight: math.unit(90, "kg"),
  7716. name: "Side",
  7717. image: {
  7718. source: "./media/characters/ranek/side.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(194, "cm"),
  7723. weight: math.unit(90, "kg"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/ranek/back.svg"
  7727. }
  7728. },
  7729. feral: {
  7730. height: math.unit(30, "cm"),
  7731. weight: math.unit(1.6, "lbs"),
  7732. name: "Feral",
  7733. image: {
  7734. source: "./media/characters/ranek/feral.svg"
  7735. }
  7736. },
  7737. },
  7738. [
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(194, "cm"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(100, "meters")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(5 + 6 / 12, "feet"),
  7755. weight: math.unit(153, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/andrew-cooper/front.svg"
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Nano",
  7765. height: math.unit(1, "mm")
  7766. },
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(2, "inches")
  7770. },
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(5 + 6 / 12, "feet"),
  7774. default: true
  7775. }
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(180, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/akane-sato/front.svg",
  7787. extra: 1219 / 1140
  7788. }
  7789. },
  7790. back: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(180, "lbs"),
  7793. name: "Back",
  7794. image: {
  7795. source: "./media/characters/akane-sato/back.svg",
  7796. extra: 1219 / 1170
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(2.5, "meters")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(250, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Megamacro",
  7812. height: math.unit(25, "km")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(65, "kg"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/rook/front.svg",
  7825. extra: 960 / 950
  7826. }
  7827. }
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(8.8, "feet")
  7833. },
  7834. {
  7835. name: "Macro",
  7836. height: math.unit(88, "feet"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(8, "miles")
  7842. },
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(12 + 2 / 12, "feet"),
  7850. weight: math.unit(808, "lbs"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/prodigy/front.svg"
  7854. }
  7855. }
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(12 + 2 / 12, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(143, "feet")
  7866. },
  7867. {
  7868. name: "Macro+",
  7869. height: math.unit(400, "feet")
  7870. },
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(225, "lbs"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/daniel/front.svg"
  7882. }
  7883. },
  7884. leaning: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(225, "lbs"),
  7887. name: "Leaning",
  7888. image: {
  7889. source: "./media/characters/daniel/leaning.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(1000, "feet"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(88, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/chiros/front.svg",
  7910. extra: 306 / 226
  7911. }
  7912. },
  7913. side: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(88, "lbs"),
  7916. name: "Side",
  7917. image: {
  7918. source: "./media/characters/chiros/side.svg",
  7919. extra: 306 / 226
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(6, "cm"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7933. {
  7934. front: {
  7935. height: math.unit(6, "feet"),
  7936. weight: math.unit(100, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/selka/front.svg",
  7940. extra: 947 / 887
  7941. }
  7942. }
  7943. },
  7944. [
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(5, "cm"),
  7948. default: true
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(8 + 3 / 12, "feet"),
  7957. weight: math.unit(424, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/verin/front.svg",
  7961. extra: 1845 / 1550
  7962. }
  7963. },
  7964. frontArmored: {
  7965. height: math.unit(8 + 3 / 12, "feet"),
  7966. weight: math.unit(424, "lbs"),
  7967. name: "Front (Armored)",
  7968. image: {
  7969. source: "./media/characters/verin/front-armor.svg",
  7970. extra: 1845 / 1550,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(8 + 3 / 12, "feet"),
  7976. weight: math.unit(424, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/verin/back.svg",
  7980. bottom: 0.1,
  7981. extra: 1
  7982. }
  7983. },
  7984. foot: {
  7985. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7986. name: "Foot",
  7987. image: {
  7988. source: "./media/characters/verin/foot.svg"
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(8 + 3 / 12, "feet")
  7996. },
  7997. {
  7998. name: "Minimacro",
  7999. height: math.unit(21, "feet"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(626, "feet")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(2.718, "meters"),
  8013. weight: math.unit(150, "lbs"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/sovrim-terraquian/front.svg",
  8017. extra: 1752/1689,
  8018. bottom: 36/1788
  8019. }
  8020. },
  8021. back: {
  8022. height: math.unit(2.718, "meters"),
  8023. weight: math.unit(150, "lbs"),
  8024. name: "Back",
  8025. image: {
  8026. source: "./media/characters/sovrim-terraquian/back.svg",
  8027. extra: 1698/1657,
  8028. bottom: 58/1756
  8029. }
  8030. },
  8031. tongue: {
  8032. height: math.unit(2.865, "feet"),
  8033. name: "Tongue",
  8034. image: {
  8035. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8036. }
  8037. },
  8038. hand: {
  8039. height: math.unit(1.61, "feet"),
  8040. name: "Hand",
  8041. image: {
  8042. source: "./media/characters/sovrim-terraquian/hand.svg"
  8043. }
  8044. },
  8045. foot: {
  8046. height: math.unit(1.05, "feet"),
  8047. name: "Foot",
  8048. image: {
  8049. source: "./media/characters/sovrim-terraquian/foot.svg"
  8050. }
  8051. },
  8052. footAlt: {
  8053. height: math.unit(0.88, "feet"),
  8054. name: "Foot (Alt)",
  8055. image: {
  8056. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(2, "inches")
  8064. },
  8065. {
  8066. name: "Small",
  8067. height: math.unit(1, "meter")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(Math.E, "meters"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(20, "meters")
  8077. },
  8078. {
  8079. name: "Macro+",
  8080. height: math.unit(400, "meters")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(7, "feet"),
  8089. weight: math.unit(489, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/reece-silvermane/front.svg",
  8093. bottom: 0.02,
  8094. extra: 1
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(1.5, "miles"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(78, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/kane/front.svg",
  8115. extra: 978 / 899
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(2.1, "m"),
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(1, "km"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(200, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/tegon/front.svg",
  8140. bottom: 0.01,
  8141. extra: 1
  8142. }
  8143. },
  8144. },
  8145. [
  8146. {
  8147. name: "Micro",
  8148. height: math.unit(1, "inch")
  8149. },
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(6 + 3 / 12, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(300, "feet")
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(69, "miles")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8167. {
  8168. side: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(2304, "lbs"),
  8171. name: "Side",
  8172. image: {
  8173. source: "./media/characters/arcturax/side.svg",
  8174. extra: 790 / 376,
  8175. bottom: 0.01
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(2, "inch")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(39, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(7, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(50, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/sentri/front.svg",
  8208. extra: 1750 / 1570,
  8209. bottom: 0.025
  8210. }
  8211. },
  8212. frontAlt: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(50, "lbs"),
  8215. name: "Front (Alt)",
  8216. image: {
  8217. source: "./media/characters/sentri/front-alt.svg",
  8218. extra: 1750 / 1570,
  8219. bottom: 0.025
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(15, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(2500, "feet")
  8232. }
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(5 + 8 / 12, "feet"),
  8240. weight: math.unit(130, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/corvin/front.svg",
  8244. extra: 1803 / 1629
  8245. }
  8246. },
  8247. frontShirt: {
  8248. height: math.unit(5 + 8 / 12, "feet"),
  8249. weight: math.unit(130, "lbs"),
  8250. name: "Front (Shirt)",
  8251. image: {
  8252. source: "./media/characters/corvin/front-shirt.svg",
  8253. extra: 1803 / 1629
  8254. }
  8255. },
  8256. frontPoncho: {
  8257. height: math.unit(5 + 8 / 12, "feet"),
  8258. weight: math.unit(130, "lbs"),
  8259. name: "Front (Poncho)",
  8260. image: {
  8261. source: "./media/characters/corvin/front-poncho.svg",
  8262. extra: 1803 / 1629
  8263. }
  8264. },
  8265. side: {
  8266. height: math.unit(5 + 8 / 12, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Side",
  8269. image: {
  8270. source: "./media/characters/corvin/side.svg",
  8271. extra: 1012 / 945
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(5 + 8 / 12, "feet"),
  8276. weight: math.unit(130, "lbs"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/corvin/back.svg",
  8280. extra: 1803 / 1629
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(3, "inches")
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(5 + 8 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(300, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(500, "miles")
  8301. }
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(135, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/q/front.svg",
  8313. extra: 854 / 752,
  8314. bottom: 0.005
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/q/back.svg",
  8323. extra: 854 / 752
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(90, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Extra Macro",
  8335. height: math.unit(300, "feet"),
  8336. },
  8337. {
  8338. name: "BIG WALF",
  8339. height: math.unit(750, "feet"),
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(150, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/carley/front.svg",
  8352. extra: 3927 / 3540,
  8353. bottom: 29.2 / 735
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(6 + 3 / 12, "feet")
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(185, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Megamacro",
  8369. height: math.unit(8, "miles"),
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(3, "feet"),
  8378. weight: math.unit(28, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/citrine/front.svg"
  8382. }
  8383. }
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(3, "feet"),
  8389. default: true
  8390. }
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8395. {
  8396. front: {
  8397. height: math.unit(14, "feet"),
  8398. weight: math.unit(1450, "kg"),
  8399. capacity: math.unit(15, "people"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/aura-starwind/front.svg",
  8403. extra: 1440/1327,
  8404. bottom: 11/1451
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(14, "feet"),
  8409. weight: math.unit(1450, "kg"),
  8410. capacity: math.unit(15, "people"),
  8411. name: "Side",
  8412. image: {
  8413. source: "./media/characters/aura-starwind/side.svg",
  8414. extra: 1654 / 1497
  8415. }
  8416. },
  8417. taur: {
  8418. height: math.unit(18, "feet"),
  8419. weight: math.unit(5500, "kg"),
  8420. capacity: math.unit(50, "people"),
  8421. name: "Taur",
  8422. image: {
  8423. source: "./media/characters/aura-starwind/taur.svg",
  8424. extra: 1760 / 1650
  8425. }
  8426. },
  8427. feral: {
  8428. height: math.unit(46, "feet"),
  8429. weight: math.unit(25000, "kg"),
  8430. capacity: math.unit(120, "people"),
  8431. name: "Feral",
  8432. image: {
  8433. source: "./media/characters/aura-starwind/feral.svg"
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(14, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(50, "meters")
  8446. },
  8447. {
  8448. name: "Megamacro",
  8449. height: math.unit(5000, "meters")
  8450. },
  8451. {
  8452. name: "Gigamacro",
  8453. height: math.unit(100000, "kilometers")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(2 + 7 / 12, "feet"),
  8462. weight: math.unit(32, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/rivet/front.svg",
  8466. extra: 1716 / 1658,
  8467. bottom: 0.03
  8468. }
  8469. },
  8470. foot: {
  8471. height: math.unit(0.551, "feet"),
  8472. name: "Rivet's Foot",
  8473. image: {
  8474. source: "./media/characters/rivet/foot.svg"
  8475. },
  8476. rename: true
  8477. }
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1.5, "inches"),
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(2 + 7 / 12, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(85, "feet")
  8492. },
  8493. {
  8494. name: "Megamacro",
  8495. height: math.unit(2.2, "km")
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(5 + 9 / 12, "feet"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/coffee/front.svg",
  8508. extra: 3666 / 3032,
  8509. bottom: 0.04
  8510. }
  8511. },
  8512. foot: {
  8513. height: math.unit(1.29, "feet"),
  8514. name: "Foot",
  8515. image: {
  8516. source: "./media/characters/coffee/foot.svg"
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(2, "inches"),
  8524. },
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(5 + 9 / 12, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(800, "feet")
  8533. },
  8534. {
  8535. name: "Megamacro",
  8536. height: math.unit(25, "miles")
  8537. }
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(200, "lbs"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/chari-gal/front.svg",
  8549. extra: 1568 / 1385,
  8550. bottom: 0.047
  8551. }
  8552. },
  8553. gigantamax: {
  8554. height: math.unit(6 * 16, "feet"),
  8555. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8556. name: "Gigantamax",
  8557. image: {
  8558. source: "./media/characters/chari-gal/gigantamax.svg",
  8559. extra: 1124 / 888,
  8560. bottom: 0.03
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(5 + 7 / 12, "feet")
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(200, "feet"),
  8572. default: true
  8573. }
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(6, "feet"),
  8581. weight: math.unit(150, "lbs"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/nova/front.svg",
  8585. extra: 5000 / 4722,
  8586. bottom: 0.02
  8587. }
  8588. }
  8589. },
  8590. [
  8591. {
  8592. name: "Micro-",
  8593. height: math.unit(0.8, "inches")
  8594. },
  8595. {
  8596. name: "Micro",
  8597. height: math.unit(2, "inches"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(3 + 1 / 12, "feet"),
  8607. weight: math.unit(21.7, "lbs"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/argent/front.svg",
  8611. extra: 1471 / 1331,
  8612. bottom: 100.8 / 1575.5
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(2, "inches")
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3 + 1 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(120, "feet")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8634. {
  8635. lamp: {
  8636. height: math.unit(7 * 1559 / 989, "feet"),
  8637. name: "Magic Lamp",
  8638. image: {
  8639. source: "./media/characters/mira-al-cul/lamp.svg",
  8640. extra: 1617 / 1559
  8641. }
  8642. },
  8643. front: {
  8644. height: math.unit(7, "feet"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/mira-al-cul/front.svg",
  8648. extra: 1044 / 990
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Heavily Restricted",
  8655. height: math.unit(7 * 1559 / 989, "feet")
  8656. },
  8657. {
  8658. name: "Freshly Freed",
  8659. height: math.unit(50 * 1559 / 989, "feet")
  8660. },
  8661. {
  8662. name: "World Encompassing",
  8663. height: math.unit(10000 * 1559 / 989, "miles")
  8664. },
  8665. {
  8666. name: "Galactic",
  8667. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8668. },
  8669. {
  8670. name: "Palmed Universe",
  8671. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Multiversal Matriarch",
  8676. height: math.unit(8.87e10, "yottameters")
  8677. },
  8678. {
  8679. name: "Void Mother",
  8680. height: math.unit(3.14e110, "yottaparsecs")
  8681. },
  8682. {
  8683. name: "Toying with Transcendence",
  8684. height: math.unit(1e307, "meters")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8690. {
  8691. front: {
  8692. height: math.unit(17 + 1 / 12, "feet"),
  8693. weight: math.unit(476.2 * 5, "lbs"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/kuro-shi-uchū/front.svg",
  8697. extra: 2329 / 1835,
  8698. bottom: 0.02
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inches")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12, "meters")
  8710. },
  8711. {
  8712. name: "Planetary",
  8713. height: math.unit(0.00929, "AU"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Universal",
  8718. height: math.unit(20, "gigaparsecs")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(5 + 2 / 12, "feet"),
  8727. weight: math.unit(120, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/katherine/front.svg",
  8731. extra: 2075 / 1969
  8732. }
  8733. },
  8734. dress: {
  8735. height: math.unit(5 + 2 / 12, "feet"),
  8736. weight: math.unit(120, "lbs"),
  8737. name: "Dress",
  8738. image: {
  8739. source: "./media/characters/katherine/dress.svg",
  8740. extra: 2258 / 2064
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(1, "inches"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(5 + 2 / 12, "feet")
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(100, "meters")
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(80, "miles")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(7 + 8 / 12, "feet"),
  8769. weight: math.unit(250, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/yevis/front.svg",
  8773. extra: 1938 / 1755
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Mortal",
  8780. height: math.unit(7 + 8 / 12, "feet")
  8781. },
  8782. {
  8783. name: "Battle",
  8784. height: math.unit(25 + 11 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Wrath",
  8788. height: math.unit(1654 + 11 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Planet Destroyer",
  8792. height: math.unit(12000, "miles")
  8793. },
  8794. {
  8795. name: "Galaxy Conqueror",
  8796. height: math.unit(1.45, "zettameters"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Universal War",
  8801. height: math.unit(184, "gigaparsecs")
  8802. },
  8803. {
  8804. name: "Eternity War",
  8805. height: math.unit(1.98e55, "yottaparsecs")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(5 + 8 / 12, "feet"),
  8814. weight: math.unit(63, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/xavier/front.svg",
  8818. extra: 944 / 883
  8819. }
  8820. },
  8821. frontStretch: {
  8822. height: math.unit(5 + 8 / 12, "feet"),
  8823. weight: math.unit(63, "kg"),
  8824. name: "Stretching",
  8825. image: {
  8826. source: "./media/characters/xavier/front-stretch.svg",
  8827. extra: 962 / 820
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 8 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(100, "meters"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "McLargeHuge",
  8843. height: math.unit(10, "miles")
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5 + 5 / 12, "feet"),
  8852. weight: math.unit(150, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/joshii/front.svg",
  8856. extra: 765 / 653,
  8857. bottom: 51 / 816
  8858. }
  8859. },
  8860. foot: {
  8861. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8862. name: "Foot",
  8863. image: {
  8864. source: "./media/characters/joshii/foot.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(2, "inches"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(5 + 5 / 12, "feet")
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(785, "feet")
  8881. },
  8882. {
  8883. name: "Megamacro",
  8884. height: math.unit(24.5, "miles")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(150, "lb"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/goddess-elizabeth/front.svg",
  8897. extra: 1800 / 1525,
  8898. bottom: 0.005
  8899. }
  8900. },
  8901. foot: {
  8902. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8903. name: "Foot",
  8904. image: {
  8905. source: "./media/characters/goddess-elizabeth/foot.svg"
  8906. }
  8907. },
  8908. mouth: {
  8909. height: math.unit(6, "feet"),
  8910. name: "Mouth",
  8911. image: {
  8912. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Micro",
  8919. height: math.unit(12, "feet")
  8920. },
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(80, "miles"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(15000, "parsecs")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(5 + 9 / 12, "feet"),
  8937. weight: math.unit(144, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/kara/front.svg"
  8941. }
  8942. },
  8943. feet: {
  8944. height: math.unit(6 / 6.765, "feet"),
  8945. name: "Kara's Feet",
  8946. rename: true,
  8947. image: {
  8948. source: "./media/characters/kara/feet.svg"
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(5 + 9 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(174, "feet"),
  8960. default: true
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(18, "feet"),
  8969. weight: math.unit(4050, "lb"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/tyrone/front.svg",
  8973. extra: 2405 / 2270,
  8974. bottom: 182 / 2587
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(18, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(300, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(15, "km")
  8991. },
  8992. {
  8993. name: "Gigamacro",
  8994. height: math.unit(500, "km")
  8995. },
  8996. {
  8997. name: "Teramacro",
  8998. height: math.unit(0.5, "gigameters")
  8999. },
  9000. {
  9001. name: "Omnimacro",
  9002. height: math.unit(1e252, "yottauniverse")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(7 + 8 / 12, "feet"),
  9011. weight: math.unit(120, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/danny/front.svg",
  9015. extra: 1490 / 1350
  9016. }
  9017. },
  9018. back: {
  9019. height: math.unit(7 + 8 / 12, "feet"),
  9020. weight: math.unit(120, "lb"),
  9021. name: "Back",
  9022. image: {
  9023. source: "./media/characters/danny/back.svg",
  9024. extra: 1490 / 1350
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(7 + 8 / 12, "feet"),
  9032. default: true
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(3.5, "inches"),
  9041. weight: math.unit(19, "grams"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/mallow/front.svg",
  9045. extra: 471 / 431
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(3.5, "inches"),
  9050. weight: math.unit(19, "grams"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/mallow/back.svg",
  9054. extra: 471 / 431
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(3.5, "inches"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(9, "feet"),
  9071. weight: math.unit(230, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/starry-aqua/front.svg"
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(9, "feet"),
  9079. weight: math.unit(230, "kg"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/starry-aqua/back.svg"
  9083. }
  9084. },
  9085. hand: {
  9086. height: math.unit(9 * 0.1168, "feet"),
  9087. name: "Hand",
  9088. image: {
  9089. source: "./media/characters/starry-aqua/hand.svg"
  9090. }
  9091. },
  9092. foot: {
  9093. height: math.unit(9 * 0.18, "feet"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/starry-aqua/foot.svg"
  9097. }
  9098. }
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(3, "inches")
  9104. },
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(9, "feet")
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(300, "feet"),
  9112. default: true
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(3200, "feet")
  9117. }
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(15, "feet"),
  9125. weight: math.unit(5026, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/luka-towers/front.svg",
  9129. extra: 1269/1133,
  9130. bottom: 51/1320
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(15, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Minimacro",
  9142. height: math.unit(25, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(320, "feet")
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(35000, "feet")
  9151. },
  9152. {
  9153. name: "Gigamacro",
  9154. height: math.unit(4000, "miles")
  9155. },
  9156. {
  9157. name: "Teramacro",
  9158. height: math.unit(15000, "miles")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(150, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/natalie-nightring/front.svg",
  9171. extra: 1,
  9172. bottom: 0.06
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Uh Oh",
  9179. height: math.unit(0.1, "mm")
  9180. },
  9181. {
  9182. name: "Small",
  9183. height: math.unit(3, "inches")
  9184. },
  9185. {
  9186. name: "Human Scale",
  9187. height: math.unit(6, "feet")
  9188. },
  9189. {
  9190. name: "Librarian",
  9191. height: math.unit(50, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Immense",
  9196. height: math.unit(200, "miles")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(180, "lbs"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/danni-rosie/front.svg",
  9209. extra: 1260 / 1128,
  9210. bottom: 0.022
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Micro",
  9217. height: math.unit(2, "inches"),
  9218. default: true
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(5 + 9 / 12, "feet"),
  9227. weight: math.unit(220, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/samantha-kruse/front.svg",
  9231. extra: (985 / 935),
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. frontUndressed: {
  9236. height: math.unit(5 + 9 / 12, "feet"),
  9237. weight: math.unit(220, "lb"),
  9238. name: "Front (Undressed)",
  9239. image: {
  9240. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9241. extra: (973 / 923),
  9242. bottom: 0.025
  9243. }
  9244. },
  9245. fat: {
  9246. height: math.unit(5 + 9 / 12, "feet"),
  9247. weight: math.unit(900, "lb"),
  9248. name: "Front (Fat)",
  9249. image: {
  9250. source: "./media/characters/samantha-kruse/fat.svg",
  9251. extra: 2688 / 2561
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(5 + 9 / 12, "feet"),
  9259. default: true
  9260. }
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9265. {
  9266. back: {
  9267. height: math.unit(5 + 4 / 12, "feet"),
  9268. weight: math.unit(4963, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/amelia-rosie/back.svg",
  9272. extra: 1113 / 963,
  9273. bottom: 0.01
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Level 0",
  9280. height: math.unit(5 + 4 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Level 1",
  9284. height: math.unit(164597, "feet"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Level 2",
  9289. height: math.unit(956243, "miles")
  9290. },
  9291. {
  9292. name: "Level 3",
  9293. height: math.unit(29421709423, "miles")
  9294. },
  9295. {
  9296. name: "Level 4",
  9297. height: math.unit(154, "lightyears")
  9298. },
  9299. {
  9300. name: "Level 5",
  9301. height: math.unit(4738272, "lightyears")
  9302. },
  9303. {
  9304. name: "Level 6",
  9305. height: math.unit(145787152896, "lightyears")
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(5 + 11 / 12, "feet"),
  9314. weight: math.unit(65, "kg"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/rook-kitara/front.svg",
  9318. extra: 1347 / 1274,
  9319. bottom: 0.005
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Totally Unfair",
  9326. height: math.unit(1.8, "mm")
  9327. },
  9328. {
  9329. name: "Lap Rookie",
  9330. height: math.unit(1.4, "feet")
  9331. },
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(5 + 11 / 12, "feet"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "How Did This Happen",
  9339. height: math.unit(80, "miles")
  9340. }
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(7, "feet"),
  9348. weight: math.unit(300, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/pisces/front.svg",
  9352. extra: 2255 / 2115,
  9353. bottom: 0.03
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(7, "feet"),
  9358. weight: math.unit(300, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/pisces/back.svg",
  9362. extra: 2146 / 2055,
  9363. bottom: 0.04
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(7, "feet"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Swimming Pool",
  9375. height: math.unit(12.2, "meters")
  9376. },
  9377. {
  9378. name: "Olympic Swimming Pool",
  9379. height: math.unit(56.3, "meters")
  9380. },
  9381. {
  9382. name: "Lake Superior",
  9383. height: math.unit(93900, "meters")
  9384. },
  9385. {
  9386. name: "Mediterranean Sea",
  9387. height: math.unit(644457, "meters")
  9388. },
  9389. {
  9390. name: "World's Oceans",
  9391. height: math.unit(4567491, "meters")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(2.3, "meters"),
  9400. weight: math.unit(120, "kg"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/zelas/front.svg"
  9404. }
  9405. },
  9406. side: {
  9407. height: math.unit(2.3, "meters"),
  9408. weight: math.unit(120, "kg"),
  9409. name: "Side",
  9410. image: {
  9411. source: "./media/characters/zelas/side.svg"
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(2.3, "meters"),
  9416. weight: math.unit(120, "kg"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/zelas/back.svg"
  9420. }
  9421. },
  9422. foot: {
  9423. height: math.unit(1.116, "feet"),
  9424. name: "Foot",
  9425. image: {
  9426. source: "./media/characters/zelas/foot.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(2.3, "meters")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(30, "meters"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(1, "inch"),
  9447. weight: math.unit(0.21, "grams"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/talbot/front.svg",
  9451. extra: 594 / 544
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(1, "inch"),
  9459. default: true
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9465. {
  9466. front: {
  9467. height: math.unit(3 + 3 / 12, "feet"),
  9468. weight: math.unit(51.8, "lb"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/fliss/front.svg",
  9472. extra: 840 / 640
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Teeny Tiny",
  9479. height: math.unit(1, "mm")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(1, "inch"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Standard Sylveon",
  9488. height: math.unit(3 + 3 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Large Nuisance",
  9492. height: math.unit(33, "feet")
  9493. },
  9494. {
  9495. name: "City Filler",
  9496. height: math.unit(3000, "feet")
  9497. },
  9498. {
  9499. name: "New Horizon",
  9500. height: math.unit(6000, "miles")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(5, "cm"),
  9509. weight: math.unit(1.94, "g"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/fleta/front.svg",
  9513. extra: 835 / 803
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(5, "cm"),
  9518. weight: math.unit(1.94, "g"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/fleta/back.svg",
  9522. extra: 835 / 803
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(5, "cm"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(225, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/dominic/front.svg",
  9543. extra: 1770 / 1620,
  9544. bottom: 0.025
  9545. }
  9546. },
  9547. back: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(225, "lb"),
  9550. name: "Back",
  9551. image: {
  9552. source: "./media/characters/dominic/back.svg",
  9553. extra: 1745 / 1620,
  9554. bottom: 0.065
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Nano",
  9561. height: math.unit(0.1, "mm")
  9562. },
  9563. {
  9564. name: "Micro-",
  9565. height: math.unit(1, "mm")
  9566. },
  9567. {
  9568. name: "Micro",
  9569. height: math.unit(4, "inches")
  9570. },
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(6 + 4 / 12, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Macro",
  9578. height: math.unit(115, "feet")
  9579. },
  9580. {
  9581. name: "Macro+",
  9582. height: math.unit(955, "feet")
  9583. },
  9584. {
  9585. name: "Megamacro",
  9586. height: math.unit(8990, "feet")
  9587. },
  9588. {
  9589. name: "Gigmacro",
  9590. height: math.unit(9310, "miles")
  9591. },
  9592. {
  9593. name: "Teramacro",
  9594. height: math.unit(1567005010, "miles")
  9595. },
  9596. {
  9597. name: "Examacro",
  9598. height: math.unit(1425, "parsecs")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(400, "feet"),
  9607. weight: math.unit(44444444, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/major-colonel/front.svg"
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(400, "feet"),
  9615. weight: math.unit(44444444, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/major-colonel/back.svg"
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(400, "feet"),
  9626. default: true
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9632. {
  9633. catFront: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(120, "lb"),
  9636. name: "Front (Cat Side)",
  9637. image: {
  9638. source: "./media/characters/axel-lycan/cat-front.svg",
  9639. extra: 430 / 402,
  9640. bottom: 43 / 472.35
  9641. }
  9642. },
  9643. catBack: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(120, "lb"),
  9646. name: "Back (Cat Side)",
  9647. image: {
  9648. source: "./media/characters/axel-lycan/cat-back.svg",
  9649. extra: 447 / 419,
  9650. bottom: 23.3 / 469
  9651. }
  9652. },
  9653. wolfFront: {
  9654. height: math.unit(6, "feet"),
  9655. weight: math.unit(120, "lb"),
  9656. name: "Front (Wolf Side)",
  9657. image: {
  9658. source: "./media/characters/axel-lycan/wolf-front.svg",
  9659. extra: 485 / 456,
  9660. bottom: 19 / 504
  9661. }
  9662. },
  9663. wolfBack: {
  9664. height: math.unit(6, "feet"),
  9665. weight: math.unit(120, "lb"),
  9666. name: "Back (Wolf Side)",
  9667. image: {
  9668. source: "./media/characters/axel-lycan/wolf-back.svg",
  9669. extra: 475 / 438,
  9670. bottom: 39.2 / 514
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(1, "km"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(5 + 9 / 12, "feet"),
  9687. weight: math.unit(175, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/vanrel-hyena/front.svg",
  9691. extra: 1086 / 1010,
  9692. bottom: 0.04
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(5 + 9 / 12, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(103, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/abbott-absol/front.svg",
  9713. extra: 2010 / 1842
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Megamicro",
  9720. height: math.unit(0.1, "mm")
  9721. },
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(1, "inch")
  9725. },
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(6, "feet"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(264, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/hector/front.svg",
  9742. extra: 2280 / 2130,
  9743. bottom: 0.07
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(12.25, "foot"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(160, "feet")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(6, "feet"),
  9764. weight: math.unit(150, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/sal/front.svg",
  9768. extra: 1846 / 1699,
  9769. bottom: 0.04
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(10, "miles"),
  9777. default: true
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9783. {
  9784. front: {
  9785. height: math.unit(3, "meters"),
  9786. weight: math.unit(450, "kg"),
  9787. name: "front",
  9788. image: {
  9789. source: "./media/characters/ranger/front.svg",
  9790. extra: 2401 / 2243,
  9791. bottom: 0.05
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(3, "meters"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(14, "feet"),
  9808. weight: math.unit(800, "kg"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/theresa/front.svg",
  9812. extra: 3575 / 3346,
  9813. bottom: 0.03
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(14, "feet"),
  9821. default: true
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(3, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/ine/front.svg",
  9834. extra: 678 / 539,
  9835. bottom: 0.023
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(2.265, "feet"),
  9843. default: true
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(5, "feet"),
  9852. weight: math.unit(30, "kg"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/vial/front.svg",
  9856. extra: 1365 / 1277,
  9857. bottom: 0.04
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(5, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9871. {
  9872. side: {
  9873. height: math.unit(3.4, "meters"),
  9874. weight: math.unit(1000, "lb"),
  9875. name: "Side",
  9876. image: {
  9877. source: "./media/characters/rovoska/side.svg",
  9878. extra: 4403 / 1515
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(3.4, "meters"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(8, "feet"),
  9895. weight: math.unit(315, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/gunner-rotthbauer/front.svg"
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(8, "feet"),
  9903. weight: math.unit(315, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/gunner-rotthbauer/back.svg"
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(3.5, "inches")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(8, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(250, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(1, "AU")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(5 + 5 / 12, "feet"),
  9935. weight: math.unit(140, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/allatia/front.svg",
  9939. extra: 1227 / 1180,
  9940. bottom: 0.027
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(5 + 5 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(250, "feet"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(8, "miles")
  9957. }
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(120, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/tene/front.svg",
  9969. extra: 1728 / 1578,
  9970. bottom: 0.022
  9971. }
  9972. },
  9973. stomping: {
  9974. height: math.unit(2.025, "meters"),
  9975. weight: math.unit(120, "lb"),
  9976. name: "Stomping",
  9977. image: {
  9978. source: "./media/characters/tene/stomping.svg",
  9979. extra: 938 / 873,
  9980. bottom: 0.01
  9981. }
  9982. },
  9983. sitting: {
  9984. height: math.unit(1, "meter"),
  9985. weight: math.unit(120, "lb"),
  9986. name: "Sitting",
  9987. image: {
  9988. source: "./media/characters/tene/sitting.svg",
  9989. extra: 437 / 415,
  9990. bottom: 0.1
  9991. }
  9992. },
  9993. feral: {
  9994. height: math.unit(3.9, "feet"),
  9995. weight: math.unit(250, "lb"),
  9996. name: "Feral",
  9997. image: {
  9998. source: "./media/characters/tene/feral.svg",
  9999. extra: 717 / 458,
  10000. bottom: 0.179
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(6, "feet")
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(300, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(5, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10022. {
  10023. side: {
  10024. height: math.unit(6, "feet"),
  10025. name: "Side",
  10026. image: {
  10027. source: "./media/characters/evander/side.svg",
  10028. extra: 877 / 477
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(0.83, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(12, "feet"),
  10045. weight: math.unit(1000, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10049. extra: 1762 / 1611
  10050. }
  10051. },
  10052. back: {
  10053. height: math.unit(12, "feet"),
  10054. weight: math.unit(1000, "lb"),
  10055. name: "Back",
  10056. image: {
  10057. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10058. extra: 1762 / 1611
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(12, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Kaiju",
  10070. height: math.unit(150, "feet")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/zero-alurus/front.svg"
  10083. }
  10084. },
  10085. back: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "lb"),
  10088. name: "Back",
  10089. image: {
  10090. source: "./media/characters/zero-alurus/back.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(5 + 10 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(60, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro+",
  10106. height: math.unit(450, "feet")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(200, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/mega-shi/front.svg",
  10119. extra: 1279 / 1250,
  10120. bottom: 0.02
  10121. }
  10122. },
  10123. back: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(200, "lb"),
  10126. name: "Back",
  10127. image: {
  10128. source: "./media/characters/mega-shi/back.svg",
  10129. extra: 1279 / 1250,
  10130. bottom: 0.02
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(16 + 6 / 12, "feet")
  10138. },
  10139. {
  10140. name: "Third Dimension",
  10141. height: math.unit(40, "meters")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(660, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(10, "miles")
  10151. },
  10152. {
  10153. name: "Planetary Launch",
  10154. height: math.unit(500, "miles")
  10155. },
  10156. {
  10157. name: "Interstellar",
  10158. height: math.unit(1e9, "miles")
  10159. },
  10160. {
  10161. name: "Leaving the Universe",
  10162. height: math.unit(1, "gigaparsec")
  10163. },
  10164. {
  10165. name: "Travelling Universes",
  10166. height: math.unit(30e15, "parsecs")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(5 + 4/12, "feet"),
  10175. weight: math.unit(120, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/odyssey/front.svg",
  10179. extra: 1747/1571,
  10180. bottom: 47/1794
  10181. }
  10182. },
  10183. side: {
  10184. height: math.unit(5.1, "feet"),
  10185. weight: math.unit(120, "lb"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/odyssey/side.svg",
  10189. extra: 1847/1619,
  10190. bottom: 47/1894
  10191. }
  10192. },
  10193. lounging: {
  10194. height: math.unit(1.464, "feet"),
  10195. weight: math.unit(120, "lb"),
  10196. name: "Lounging",
  10197. image: {
  10198. source: "./media/characters/odyssey/lounging.svg",
  10199. extra: 1235/837,
  10200. bottom: 551/1786
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 4 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(1, "km")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(3000, "km")
  10216. },
  10217. {
  10218. name: "Gigamacro",
  10219. height: math.unit(1, "AU"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Omniversal",
  10224. height: math.unit(100e14, "lightyears")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(300, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/mekuto/front.svg",
  10237. extra: 921 / 832,
  10238. bottom: 0.03
  10239. }
  10240. },
  10241. hand: {
  10242. height: math.unit(6 / 10.24, "feet"),
  10243. name: "Hand",
  10244. image: {
  10245. source: "./media/characters/mekuto/hand.svg"
  10246. }
  10247. },
  10248. foot: {
  10249. height: math.unit(6 / 5.05, "feet"),
  10250. name: "Foot",
  10251. image: {
  10252. source: "./media/characters/mekuto/foot.svg"
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Minimicro",
  10259. height: math.unit(0.2, "inches")
  10260. },
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(1.5, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(5 + 11 / 12, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Minimacro",
  10272. height: math.unit(17 + 9 / 12, "feet")
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(177.5, "feet")
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(152, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6.5, "inches"),
  10289. weight: math.unit(13, "oz"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/dafydd-tomos/front.svg",
  10293. extra: 2990 / 2603,
  10294. bottom: 0.03
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(6.5, "inches"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/splinter/front.svg",
  10315. extra: 2990 / 2882,
  10316. bottom: 0.04
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/splinter/back.svg",
  10325. extra: 2990 / 2882,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(6, "feet")
  10334. },
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(230, "meters"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(4 + 10 / 12, "feet"),
  10347. weight: math.unit(480, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/snow-gabumon/front.svg",
  10351. extra: 1140 / 963,
  10352. bottom: 0.058
  10353. }
  10354. },
  10355. back: {
  10356. height: math.unit(4 + 10 / 12, "feet"),
  10357. weight: math.unit(480, "lb"),
  10358. name: "Back",
  10359. image: {
  10360. source: "./media/characters/snow-gabumon/back.svg",
  10361. extra: 1115 / 962,
  10362. bottom: 0.041
  10363. }
  10364. },
  10365. frontUndresed: {
  10366. height: math.unit(4 + 10 / 12, "feet"),
  10367. weight: math.unit(480, "lb"),
  10368. name: "Front (Undressed)",
  10369. image: {
  10370. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10371. extra: 1061 / 960,
  10372. bottom: 0.045
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(1, "inch")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(4 + 10 / 12, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(200, "feet")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(120, "miles")
  10393. },
  10394. {
  10395. name: "Gigamacro",
  10396. height: math.unit(9800, "miles")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(1.7, "meters"),
  10405. weight: math.unit(140, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/moody/front.svg",
  10409. extra: 3226 / 3007,
  10410. bottom: 0.087
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Micro",
  10417. height: math.unit(1, "mm")
  10418. },
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(1.7, "meters"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(80, "meters")
  10427. },
  10428. {
  10429. name: "Macro+",
  10430. height: math.unit(500, "meters")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(150, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/zyas/front.svg",
  10443. extra: 1180 / 1120,
  10444. bottom: 0.045
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(10, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(500, "feet")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(5, "miles")
  10461. },
  10462. {
  10463. name: "Teramacro",
  10464. height: math.unit(150000, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(150, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/cuon/front.svg",
  10477. extra: 1390 / 1320,
  10478. bottom: 0.008
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Micro",
  10485. height: math.unit(3, "inches")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(18 + 9 / 12, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(360, "feet")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(360, "miles")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(2.4, "meters"),
  10507. weight: math.unit(70, "kg"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/nyanuxk/front.svg",
  10511. extra: 1172 / 1084,
  10512. bottom: 0.065
  10513. }
  10514. },
  10515. side: {
  10516. height: math.unit(2.4, "meters"),
  10517. weight: math.unit(70, "kg"),
  10518. name: "Side",
  10519. image: {
  10520. source: "./media/characters/nyanuxk/side.svg",
  10521. extra: 1190 / 1132,
  10522. bottom: 0.007
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(2.4, "meters"),
  10527. weight: math.unit(70, "kg"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/nyanuxk/back.svg",
  10531. extra: 1200 / 1141,
  10532. bottom: 0.015
  10533. }
  10534. },
  10535. foot: {
  10536. height: math.unit(0.52, "meters"),
  10537. name: "Foot",
  10538. image: {
  10539. source: "./media/characters/nyanuxk/foot.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Micro",
  10546. height: math.unit(2, "cm")
  10547. },
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(2.4, "meters"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Smaller Macro",
  10555. height: math.unit(120, "meters")
  10556. },
  10557. {
  10558. name: "Bigger Macro",
  10559. height: math.unit(1.2, "km")
  10560. },
  10561. {
  10562. name: "Megamacro",
  10563. height: math.unit(15, "kilometers")
  10564. },
  10565. {
  10566. name: "Gigamacro",
  10567. height: math.unit(2000, "km")
  10568. },
  10569. {
  10570. name: "Teramacro",
  10571. height: math.unit(500000, "km")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10577. {
  10578. side: {
  10579. height: math.unit(6, "feet"),
  10580. name: "Side",
  10581. image: {
  10582. source: "./media/characters/ailbhe/side.svg",
  10583. extra: 757 / 464,
  10584. bottom: 0.041
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(1.07, "meters"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(120, "kg"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/zevulfius/front.svg",
  10605. extra: 965 / 903
  10606. }
  10607. },
  10608. side: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(120, "kg"),
  10611. name: "Side",
  10612. image: {
  10613. source: "./media/characters/zevulfius/side.svg",
  10614. extra: 939 / 900
  10615. }
  10616. },
  10617. back: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(120, "kg"),
  10620. name: "Back",
  10621. image: {
  10622. source: "./media/characters/zevulfius/back.svg",
  10623. extra: 918 / 854,
  10624. bottom: 0.005
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(6 / 3.72, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/zevulfius/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(750, "meters")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(20, "km"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(2000, "km")
  10648. },
  10649. {
  10650. name: "Teramacro",
  10651. height: math.unit(250000, "km")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(100, "feet"),
  10660. weight: math.unit(350, "kg"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/rikes/front.svg",
  10664. extra: 1565 / 1483,
  10665. bottom: 0.017
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(100, "feet"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(8, "feet"),
  10682. weight: math.unit(356, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/adam-silver-mane/front.svg",
  10686. extra: 1036/937,
  10687. bottom: 63/1099
  10688. }
  10689. },
  10690. side: {
  10691. height: math.unit(8, "feet"),
  10692. weight: math.unit(356, "lb"),
  10693. name: "Side",
  10694. image: {
  10695. source: "./media/characters/adam-silver-mane/side.svg",
  10696. extra: 997/901,
  10697. bottom: 59/1056
  10698. }
  10699. },
  10700. frontNsfw: {
  10701. height: math.unit(8, "feet"),
  10702. weight: math.unit(356, "lb"),
  10703. name: "Front (NSFW)",
  10704. image: {
  10705. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10706. extra: 1036/937,
  10707. bottom: 63/1099
  10708. }
  10709. },
  10710. sideNsfw: {
  10711. height: math.unit(8, "feet"),
  10712. weight: math.unit(356, "lb"),
  10713. name: "Side (NSFW)",
  10714. image: {
  10715. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10716. extra: 997/901,
  10717. bottom: 59/1056
  10718. }
  10719. },
  10720. dick: {
  10721. height: math.unit(2.1, "feet"),
  10722. name: "Dick",
  10723. image: {
  10724. source: "./media/characters/adam-silver-mane/dick.svg"
  10725. }
  10726. },
  10727. taur: {
  10728. height: math.unit(16, "feet"),
  10729. weight: math.unit(1500, "kg"),
  10730. name: "Taur",
  10731. image: {
  10732. source: "./media/characters/adam-silver-mane/taur.svg",
  10733. extra: 1713 / 1571,
  10734. bottom: 0.01
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(8, "feet")
  10742. },
  10743. {
  10744. name: "Minimacro",
  10745. height: math.unit(80, "feet")
  10746. },
  10747. {
  10748. name: "MDA",
  10749. height: math.unit(80, "meters")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(800, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(8000, "feet")
  10759. },
  10760. {
  10761. name: "Gigamacro",
  10762. height: math.unit(800, "miles")
  10763. },
  10764. {
  10765. name: "Teramacro",
  10766. height: math.unit(80000, "miles")
  10767. },
  10768. {
  10769. name: "Celestial",
  10770. height: math.unit(8e6, "miles")
  10771. },
  10772. {
  10773. name: "Star Dragon",
  10774. height: math.unit(800000, "parsecs")
  10775. },
  10776. {
  10777. name: "Godly",
  10778. height: math.unit(800, "teraparsecs")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/ky'owin/front.svg",
  10791. extra: 3888 / 3068,
  10792. bottom: 0.015
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(6 + 8 / 12, "feet")
  10800. },
  10801. {
  10802. name: "Large",
  10803. height: math.unit(68, "feet")
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(132, "feet")
  10808. },
  10809. {
  10810. name: "Macro+",
  10811. height: math.unit(340, "feet")
  10812. },
  10813. {
  10814. name: "Macro++",
  10815. height: math.unit(680, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Megamacro",
  10820. height: math.unit(1, "mile")
  10821. },
  10822. {
  10823. name: "Megamacro+",
  10824. height: math.unit(10, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(4, "feet"),
  10833. weight: math.unit(50, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/mal/front.svg",
  10837. extra: 785 / 724,
  10838. bottom: 0.07
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(4, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(4, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(200, "feet")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/jordan-deware/front.svg",
  10867. extra: 1191 / 1012
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Nano",
  10874. height: math.unit(0.01, "mm")
  10875. },
  10876. {
  10877. name: "Minimicro",
  10878. height: math.unit(1, "mm")
  10879. },
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(0.5, "inches")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(4, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Minimacro",
  10891. height: math.unit(40, "meters")
  10892. },
  10893. {
  10894. name: "Small Macro",
  10895. height: math.unit(400, "meters")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(4, "miles")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(40, "miles")
  10904. },
  10905. {
  10906. name: "Megamacro+",
  10907. height: math.unit(400, "miles")
  10908. },
  10909. {
  10910. name: "Gigamacro",
  10911. height: math.unit(400000, "miles")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10917. {
  10918. side: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Side",
  10922. image: {
  10923. source: "./media/characters/kimiko/side.svg",
  10924. extra: 600 / 358
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(15, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(220, "feet")
  10937. },
  10938. {
  10939. name: "Macro+",
  10940. height: math.unit(1450, "feet")
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(11500, "feet")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(9500, "miles")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(2208005005, "miles")
  10953. },
  10954. {
  10955. name: "Examacro",
  10956. height: math.unit(2750, "parsecs")
  10957. },
  10958. {
  10959. name: "Zettamacro",
  10960. height: math.unit(101500, "parsecs")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(70, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/andrew-sleepy/front.svg"
  10973. }
  10974. },
  10975. side: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(70, "kg"),
  10978. name: "Side",
  10979. image: {
  10980. source: "./media/characters/andrew-sleepy/side.svg"
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(1, "mm"),
  10988. default: true
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/judio/front.svg",
  11001. extra: 1258 / 1110
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5 + 6 / 12, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(1000, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(10, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(68, "kg"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/nomaxice/front.svg",
  11030. extra: 1498 / 1073,
  11031. bottom: 0.075
  11032. }
  11033. },
  11034. foot: {
  11035. height: math.unit(1.1, "feet"),
  11036. name: "Foot",
  11037. image: {
  11038. source: "./media/characters/nomaxice/foot.svg"
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(8, "cm")
  11046. },
  11047. {
  11048. name: "Norm",
  11049. height: math.unit(1.82, "m")
  11050. },
  11051. {
  11052. name: "Norm+",
  11053. height: math.unit(8.8, "feet")
  11054. },
  11055. {
  11056. name: "Big",
  11057. height: math.unit(8, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(18, "meters")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(88, "meters")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(12, "feet"),
  11075. weight: math.unit(1.5, "tons"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/dydros/front.svg",
  11079. extra: 863 / 800,
  11080. bottom: 0.015
  11081. }
  11082. },
  11083. back: {
  11084. height: math.unit(12, "feet"),
  11085. weight: math.unit(1.5, "tons"),
  11086. name: "Back",
  11087. image: {
  11088. source: "./media/characters/dydros/back.svg",
  11089. extra: 900 / 843,
  11090. bottom: 0.005
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(12, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(100, "kg"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/riggi/front.svg",
  11111. extra: 5787 / 5303
  11112. }
  11113. },
  11114. hyper: {
  11115. height: math.unit(6 * 5 / 3, "feet"),
  11116. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11117. name: "Hyper",
  11118. image: {
  11119. source: "./media/characters/riggi/hyper.svg",
  11120. extra: 3595 / 3485
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Small Macro",
  11127. height: math.unit(50, "feet")
  11128. },
  11129. {
  11130. name: "Default",
  11131. height: math.unit(200, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Loom",
  11136. height: math.unit(10000, "feet")
  11137. },
  11138. {
  11139. name: "Cruising Altitude",
  11140. height: math.unit(30000, "feet")
  11141. },
  11142. {
  11143. name: "Megamacro",
  11144. height: math.unit(100, "miles")
  11145. },
  11146. {
  11147. name: "Continent Sized",
  11148. height: math.unit(2800, "miles")
  11149. },
  11150. {
  11151. name: "Earth Sized",
  11152. height: math.unit(8000, "miles")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(250, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/alexi/front.svg",
  11165. extra: 3483 / 3291,
  11166. bottom: 0.04
  11167. }
  11168. },
  11169. back: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(250, "lb"),
  11172. name: "Back",
  11173. image: {
  11174. source: "./media/characters/alexi/back.svg",
  11175. extra: 3533 / 3356,
  11176. bottom: 0.021
  11177. }
  11178. },
  11179. frontTransforming: {
  11180. height: math.unit(8.58, "feet"),
  11181. weight: math.unit(1300, "lb"),
  11182. name: "Transforming",
  11183. image: {
  11184. source: "./media/characters/alexi/front-transforming.svg",
  11185. extra: 437 / 409,
  11186. bottom: 19 / 458.66
  11187. }
  11188. },
  11189. frontTransformed: {
  11190. height: math.unit(12.5, "feet"),
  11191. weight: math.unit(4000, "lb"),
  11192. name: "Transformed",
  11193. image: {
  11194. source: "./media/characters/alexi/front-transformed.svg",
  11195. extra: 639 / 614,
  11196. bottom: 30.55 / 671
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(14, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Minimacro",
  11208. height: math.unit(30, "meters")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(500, "meters")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(9000, "km")
  11217. },
  11218. {
  11219. name: "Teramacro",
  11220. height: math.unit(384000, "km")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(150, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/kayroo/front.svg",
  11233. extra: 1153 / 1038,
  11234. bottom: 0.06
  11235. }
  11236. },
  11237. foot: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Foot",
  11241. image: {
  11242. source: "./media/characters/kayroo/foot.svg"
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(8, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Minimacro",
  11254. height: math.unit(250, "feet")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(2800, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(5200, "feet")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(27000, "feet")
  11267. },
  11268. {
  11269. name: "Omega",
  11270. height: math.unit(45000, "feet")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(18, "feet"),
  11279. weight: math.unit(5800, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/rhys/front.svg",
  11283. extra: 3386 / 3090,
  11284. bottom: 0.07
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(18, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Working Size",
  11296. height: math.unit(200, "feet")
  11297. },
  11298. {
  11299. name: "Demolition Size",
  11300. height: math.unit(2000, "feet")
  11301. },
  11302. {
  11303. name: "Maximum Licensed Size",
  11304. height: math.unit(5, "miles")
  11305. },
  11306. {
  11307. name: "Maximum Observed Size",
  11308. height: math.unit(10, "yottameters")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(250, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/toto/front.svg",
  11321. extra: 527 / 479,
  11322. bottom: 0.05
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(3, "feet")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(10, "feet")
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(150, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(1200, "feet")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "King", species: ["lion"], tags: ["anthro"] },
  11348. {
  11349. back: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/king/back.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(2, "inches")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(8, "feet")
  11366. },
  11367. {
  11368. name: "Macro",
  11369. height: math.unit(200, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(50, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(11, "feet"),
  11383. weight: math.unit(1400, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/cordite/front.svg",
  11387. extra: 1919/1827,
  11388. bottom: 40/1959
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(11, "feet"),
  11393. weight: math.unit(1400, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/cordite/side.svg",
  11397. extra: 1908/1793,
  11398. bottom: 38/1946
  11399. }
  11400. },
  11401. back: {
  11402. height: math.unit(11, "feet"),
  11403. weight: math.unit(1400, "lb"),
  11404. name: "Back",
  11405. image: {
  11406. source: "./media/characters/cordite/back.svg",
  11407. extra: 1938/1837,
  11408. bottom: 10/1948
  11409. }
  11410. },
  11411. feral: {
  11412. height: math.unit(2, "feet"),
  11413. weight: math.unit(90, "lb"),
  11414. name: "Feral",
  11415. image: {
  11416. source: "./media/characters/cordite/feral.svg",
  11417. extra: 1260 / 755,
  11418. bottom: 0.05
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(11, "feet"),
  11426. default: true
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(150, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/pianostrong/front.svg",
  11439. extra: 6577 / 6254,
  11440. bottom: 0.02
  11441. }
  11442. },
  11443. side: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Side",
  11447. image: {
  11448. source: "./media/characters/pianostrong/side.svg",
  11449. extra: 6106 / 5730
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/pianostrong/back.svg",
  11458. extra: 6085 / 5733,
  11459. bottom: 0.01
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(100, "feet")
  11467. },
  11468. {
  11469. name: "Macro+",
  11470. height: math.unit(300, "feet"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(1000, "feet")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/kona/front.svg",
  11488. extra: 2960 / 2629,
  11489. bottom: 0.005
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(11 + 8 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(850, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro+",
  11505. height: math.unit(1.5, "km"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(80, "miles")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(3500, "miles")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. side: {
  11522. height: math.unit(1.9, "meters"),
  11523. weight: math.unit(326, "kg"),
  11524. name: "Side",
  11525. image: {
  11526. source: "./media/characters/levi/side.svg",
  11527. extra: 1704 / 1334,
  11528. bottom: 0.02
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(1.9, "meters"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(20, "meters")
  11541. },
  11542. {
  11543. name: "Macro+",
  11544. height: math.unit(200, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(2, "km")
  11549. },
  11550. {
  11551. name: "Megamacro+",
  11552. height: math.unit(20, "km")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(2500, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro+",
  11560. height: math.unit(120000, "km")
  11561. },
  11562. {
  11563. name: "Teramacro",
  11564. height: math.unit(7.77e6, "km")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6 + 4/12, "feet"),
  11573. weight: math.unit(190, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/bmc/front.svg",
  11577. extra: 1626/1472,
  11578. bottom: 79/1705
  11579. }
  11580. },
  11581. back: {
  11582. height: math.unit(6 + 4/12, "feet"),
  11583. weight: math.unit(190, "lb"),
  11584. name: "Back",
  11585. image: {
  11586. source: "./media/characters/bmc/back.svg",
  11587. extra: 1640/1479,
  11588. bottom: 45/1685
  11589. }
  11590. },
  11591. frontArmor: {
  11592. height: math.unit(6 + 4/12, "feet"),
  11593. weight: math.unit(190, "lb"),
  11594. name: "Front-armor",
  11595. image: {
  11596. source: "./media/characters/bmc/front-armor.svg",
  11597. extra: 1538/1468,
  11598. bottom: 79/1617
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Human-sized",
  11605. height: math.unit(6 + 4 / 12, "feet")
  11606. },
  11607. {
  11608. name: "Interactive Size",
  11609. height: math.unit(25, "feet")
  11610. },
  11611. {
  11612. name: "Small",
  11613. height: math.unit(250, "feet")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(1250, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Good Day",
  11622. height: math.unit(88, "miles")
  11623. },
  11624. {
  11625. name: "Largest Measured Size",
  11626. height: math.unit(105.960, "galaxies")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(20, "feet"),
  11635. weight: math.unit(2016, "kg"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/sven-the-kaiju/front.svg",
  11639. extra: 1277/1250,
  11640. bottom: 35/1312
  11641. }
  11642. },
  11643. mouth: {
  11644. height: math.unit(1.85, "feet"),
  11645. name: "Mouth",
  11646. image: {
  11647. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Fairy",
  11654. height: math.unit(6, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(20, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Rampage",
  11663. height: math.unit(200, "feet")
  11664. },
  11665. {
  11666. name: "Archfey Forest Guardian",
  11667. height: math.unit(1, "mile")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(4, "meters"),
  11676. weight: math.unit(2, "tons"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/marik/front.svg",
  11680. extra: 1057 / 1003,
  11681. bottom: 0.08
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Normal",
  11688. height: math.unit(4, "meters"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(20, "meters")
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(50, "km")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(100, "km")
  11702. },
  11703. {
  11704. name: "Alpha Macro",
  11705. height: math.unit(7.88e7, "yottameters")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(110, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/mel/front.svg",
  11718. extra: 736 / 617,
  11719. bottom: 0.017
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Pico",
  11726. height: math.unit(3, "pm")
  11727. },
  11728. {
  11729. name: "Nano",
  11730. height: math.unit(3, "nm")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(0.3, "mm"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Micro+",
  11739. height: math.unit(3, "mm")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5 + 10.5 / 12, "feet")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11749. {
  11750. kaiju: {
  11751. height: math.unit(1.75, "meters"),
  11752. weight: math.unit(55, "kg"),
  11753. name: "Kaiju",
  11754. image: {
  11755. source: "./media/characters/lykonous/kaiju.svg",
  11756. extra: 1055 / 946,
  11757. bottom: 0.135
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(2.5, "meters"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Kaiju Dragon",
  11769. height: math.unit(60, "meters")
  11770. },
  11771. {
  11772. name: "Mega Kaiju",
  11773. height: math.unit(120, "km")
  11774. },
  11775. {
  11776. name: "Giga Kaiju",
  11777. height: math.unit(200, "megameters")
  11778. },
  11779. {
  11780. name: "Terra Kaiju",
  11781. height: math.unit(400, "gigameters")
  11782. },
  11783. {
  11784. name: "Kaiju Dragon God",
  11785. height: math.unit(13000, "exaparsecs")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(150, "lb"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/blü/front.svg",
  11798. extra: 1883 / 1564,
  11799. bottom: 0.031
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(13, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Big Boi",
  11811. height: math.unit(150, "meters")
  11812. },
  11813. {
  11814. name: "Mini Stomper",
  11815. height: math.unit(300, "meters")
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(1000, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(11000, "meters")
  11824. },
  11825. {
  11826. name: "Gigamacro",
  11827. height: math.unit(11000, "km")
  11828. },
  11829. {
  11830. name: "Teramacro",
  11831. height: math.unit(420000, "km")
  11832. },
  11833. {
  11834. name: "Examacro",
  11835. height: math.unit(120, "parsecs")
  11836. },
  11837. {
  11838. name: "God Tho",
  11839. height: math.unit(98000000000, "parsecs")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11845. {
  11846. taurFront: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(200, "lb"),
  11849. name: "Taur (Front)",
  11850. image: {
  11851. source: "./media/characters/scales/taur-front.svg",
  11852. extra: 1,
  11853. bottom: 0.05
  11854. }
  11855. },
  11856. taurBack: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(200, "lb"),
  11859. name: "Taur (Back)",
  11860. image: {
  11861. source: "./media/characters/scales/taur-back.svg",
  11862. extra: 1,
  11863. bottom: 0.08
  11864. }
  11865. },
  11866. anthro: {
  11867. height: math.unit(6 * 7 / 12, "feet"),
  11868. weight: math.unit(100, "lb"),
  11869. name: "Anthro",
  11870. image: {
  11871. source: "./media/characters/scales/anthro.svg",
  11872. extra: 1,
  11873. bottom: 0.06
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(12, "feet"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/koragos/front.svg",
  11894. extra: 841 / 794,
  11895. bottom: 0.035
  11896. }
  11897. },
  11898. back: {
  11899. height: math.unit(6, "feet"),
  11900. weight: math.unit(150, "lb"),
  11901. name: "Back",
  11902. image: {
  11903. source: "./media/characters/koragos/back.svg",
  11904. extra: 841 / 810,
  11905. bottom: 0.022
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(6 + 11 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(490, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(10, "miles")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(50, "miles")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(250, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/xylrem/front.svg",
  11938. extra: 3323 / 3050,
  11939. bottom: 0.065
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(4, "feet")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(16, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(2720, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(25000, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(8, "feet"),
  11968. weight: math.unit(250, "kg"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/ikideru/front.svg",
  11972. extra: 930 / 870,
  11973. bottom: 0.087
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(8, "feet"),
  11978. weight: math.unit(250, "kg"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/ikideru/back.svg",
  11982. extra: 919 / 852,
  11983. bottom: 0.055
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Rare",
  11990. height: math.unit(8, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Playful Loom",
  11995. height: math.unit(80, "feet")
  11996. },
  11997. {
  11998. name: "City Leaner",
  11999. height: math.unit(230, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(2500, "feet")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(26400, "feet")
  12008. },
  12009. {
  12010. name: "Tectonic Shifter",
  12011. height: math.unit(1.7, "megameters")
  12012. },
  12013. {
  12014. name: "Planet Carer",
  12015. height: math.unit(21, "megameters")
  12016. },
  12017. {
  12018. name: "God",
  12019. height: math.unit(11157.22, "parsecs")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(120, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/neo/front.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(2, "inches"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Human Size",
  12043. height: math.unit(5 + 8 / 12, "feet")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(13 + 10 / 12, "feet"),
  12052. weight: math.unit(5320, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/chauncey-chantz/front.svg",
  12056. extra: 1587 / 1435,
  12057. bottom: 0.02
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(13 + 10 / 12, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(45, "feet")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(250, "miles")
  12074. },
  12075. {
  12076. name: "Planetary",
  12077. height: math.unit(10000, "miles")
  12078. },
  12079. {
  12080. name: "Galactic",
  12081. height: math.unit(40000, "parsecs")
  12082. },
  12083. {
  12084. name: "Universal",
  12085. height: math.unit(1, "yottameter")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12091. {
  12092. front: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/epifox/front.svg",
  12098. extra: 1,
  12099. bottom: 0.075
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(6, "inches")
  12107. },
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(12, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(3810, "feet")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(500, "miles")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(1.8796, "m"),
  12128. weight: math.unit(230, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/colin-t/front.svg",
  12132. extra: 1272 / 1193,
  12133. bottom: 0.07
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Micro",
  12140. height: math.unit(0.571, "meters")
  12141. },
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(1.8796, "meters"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Tall",
  12149. height: math.unit(4, "meters")
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(67.241, "meters")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(371.856, "meters")
  12158. },
  12159. {
  12160. name: "Planetary",
  12161. height: math.unit(12631.5689, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(1.85, "meters"),
  12170. weight: math.unit(80, "kg"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/matvei/front.svg",
  12174. extra: 614 / 594,
  12175. bottom: 0.01
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(1.85, "meters"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(5 + 9 / 12, "feet"),
  12192. weight: math.unit(70, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/quincy/front.svg",
  12196. extra: 3041 / 2751
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(5 + 9 / 12, "feet"),
  12201. weight: math.unit(70, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/quincy/back.svg",
  12205. extra: 3041 / 2751
  12206. }
  12207. },
  12208. flying: {
  12209. height: math.unit(5 + 4 / 12, "feet"),
  12210. weight: math.unit(70, "lb"),
  12211. name: "Flying",
  12212. image: {
  12213. source: "./media/characters/quincy/flying.svg",
  12214. extra: 1044 / 930
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(3, "cm")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(5 + 9 / 12, "feet")
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(200, "meters"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(1000, "meters")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(3 + 11/12, "feet"),
  12243. weight: math.unit(50, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/vanrel/front.svg",
  12247. extra: 1104/949,
  12248. bottom: 52/1156
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(3 + 11/12, "feet"),
  12253. weight: math.unit(50, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/vanrel/back.svg",
  12257. extra: 1119/976,
  12258. bottom: 37/1156
  12259. }
  12260. },
  12261. tome: {
  12262. height: math.unit(1.35, "feet"),
  12263. weight: math.unit(10, "lb"),
  12264. name: "Vanrel's Tome",
  12265. rename: true,
  12266. image: {
  12267. source: "./media/characters/vanrel/tome.svg"
  12268. }
  12269. },
  12270. beans: {
  12271. height: math.unit(0.89, "feet"),
  12272. name: "Beans",
  12273. image: {
  12274. source: "./media/characters/vanrel/beans.svg"
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(3 + 11/12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(7 + 5 / 12, "feet"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/kuiper-vanrel/front.svg",
  12294. extra: 1219/1169,
  12295. bottom: 69/1288
  12296. }
  12297. },
  12298. back: {
  12299. height: math.unit(7 + 5 / 12, "feet"),
  12300. name: "Back",
  12301. image: {
  12302. source: "./media/characters/kuiper-vanrel/back.svg",
  12303. extra: 1236/1193,
  12304. bottom: 27/1263
  12305. }
  12306. },
  12307. foot: {
  12308. height: math.unit(0.55, "meters"),
  12309. name: "Foot",
  12310. image: {
  12311. source: "./media/characters/kuiper-vanrel/foot.svg",
  12312. }
  12313. },
  12314. battle: {
  12315. height: math.unit(6.824, "feet"),
  12316. name: "Battle",
  12317. image: {
  12318. source: "./media/characters/kuiper-vanrel/battle.svg",
  12319. extra: 1466 / 1327,
  12320. bottom: 29 / 1492.5
  12321. }
  12322. },
  12323. meerkui: {
  12324. height: math.unit(18, "inches"),
  12325. name: "Meerkui",
  12326. image: {
  12327. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12328. extra: 1354/1289,
  12329. bottom: 69/1423
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(7 + 5 / 12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(8 + 5 / 12, "feet"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/keset-vanrel/front.svg",
  12349. extra: 1231/1148,
  12350. bottom: 82/1313
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(8 + 5 / 12, "feet"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/keset-vanrel/back.svg",
  12358. extra: 1240/1174,
  12359. bottom: 33/1273
  12360. }
  12361. },
  12362. hand: {
  12363. height: math.unit(0.6, "meters"),
  12364. name: "Hand",
  12365. image: {
  12366. source: "./media/characters/keset-vanrel/hand.svg"
  12367. }
  12368. },
  12369. foot: {
  12370. height: math.unit(0.94978, "meters"),
  12371. name: "Foot",
  12372. image: {
  12373. source: "./media/characters/keset-vanrel/foot.svg"
  12374. }
  12375. },
  12376. battle: {
  12377. height: math.unit(7.408, "feet"),
  12378. name: "Battle",
  12379. image: {
  12380. source: "./media/characters/keset-vanrel/battle.svg",
  12381. extra: 1890 / 1386,
  12382. bottom: 73.28 / 1970
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(8 + 5 / 12, "feet"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/neos/front.svg",
  12403. extra: 1696 / 992,
  12404. bottom: 0.14
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(54, "cm"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(100, "m")
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(10, "km")
  12421. },
  12422. {
  12423. name: "Megamacro+",
  12424. height: math.unit(100, "km")
  12425. },
  12426. {
  12427. name: "Gigamacro",
  12428. height: math.unit(100, "Mm")
  12429. },
  12430. {
  12431. name: "Teramacro",
  12432. height: math.unit(100, "Gm")
  12433. },
  12434. {
  12435. name: "Examacro",
  12436. height: math.unit(100, "Em")
  12437. },
  12438. {
  12439. name: "Godly",
  12440. height: math.unit(10000, "Ym")
  12441. },
  12442. {
  12443. name: "Beyond Godly",
  12444. height: math.unit(25, "multiverses")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12450. {
  12451. feminine: {
  12452. height: math.unit(5, "feet"),
  12453. weight: math.unit(100, "lb"),
  12454. name: "Feminine",
  12455. image: {
  12456. source: "./media/characters/sammy-mouse/feminine.svg",
  12457. extra: 2526 / 2425,
  12458. bottom: 0.123
  12459. }
  12460. },
  12461. masculine: {
  12462. height: math.unit(5, "feet"),
  12463. weight: math.unit(100, "lb"),
  12464. name: "Masculine",
  12465. image: {
  12466. source: "./media/characters/sammy-mouse/masculine.svg",
  12467. extra: 2526 / 2425,
  12468. bottom: 0.123
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(5, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(60, "feet")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(4, "feet"),
  12493. weight: math.unit(50, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/kole/front.svg",
  12497. extra: 1423 / 1303,
  12498. bottom: 0.025
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(4, "feet"),
  12503. weight: math.unit(50, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/kole/back.svg",
  12507. extra: 1426 / 1280,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(4, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(2.5, "feet"),
  12525. weight: math.unit(32, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/rufran/front.svg",
  12529. extra: 1313/885,
  12530. bottom: 94/1407
  12531. }
  12532. },
  12533. side: {
  12534. height: math.unit(2.5, "feet"),
  12535. weight: math.unit(32, "lb"),
  12536. name: "Side",
  12537. image: {
  12538. source: "./media/characters/rufran/side.svg",
  12539. extra: 1109/852,
  12540. bottom: 118/1227
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(2.5, "feet"),
  12545. weight: math.unit(32, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/rufran/back.svg",
  12549. extra: 1280/878,
  12550. bottom: 131/1411
  12551. }
  12552. },
  12553. mouth: {
  12554. height: math.unit(1.13, "feet"),
  12555. name: "Mouth",
  12556. image: {
  12557. source: "./media/characters/rufran/mouth.svg"
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(1.33, "feet"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/rufran/foot.svg"
  12565. }
  12566. },
  12567. koboldFront: {
  12568. height: math.unit(2 + 6 / 12, "feet"),
  12569. weight: math.unit(20, "lb"),
  12570. name: "Front (Kobold)",
  12571. image: {
  12572. source: "./media/characters/rufran/kobold-front.svg",
  12573. extra: 2041 / 1839,
  12574. bottom: 0.055
  12575. }
  12576. },
  12577. koboldBack: {
  12578. height: math.unit(2 + 6 / 12, "feet"),
  12579. weight: math.unit(20, "lb"),
  12580. name: "Back (Kobold)",
  12581. image: {
  12582. source: "./media/characters/rufran/kobold-back.svg",
  12583. extra: 2054 / 1839,
  12584. bottom: 0.01
  12585. }
  12586. },
  12587. koboldHand: {
  12588. height: math.unit(0.2166, "meters"),
  12589. name: "Hand (Kobold)",
  12590. image: {
  12591. source: "./media/characters/rufran/kobold-hand.svg"
  12592. }
  12593. },
  12594. koboldFoot: {
  12595. height: math.unit(0.185, "meters"),
  12596. name: "Foot (Kobold)",
  12597. image: {
  12598. source: "./media/characters/rufran/kobold-foot.svg"
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Micro",
  12605. height: math.unit(1, "inch")
  12606. },
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(2 + 6 / 12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Big",
  12614. height: math.unit(60, "feet")
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(325, "feet")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(0.3, "meters"),
  12627. weight: math.unit(3.5, "kg"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/chip/front.svg",
  12631. extra: 748 / 674
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Micro",
  12638. height: math.unit(1, "inch"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12645. {
  12646. side: {
  12647. height: math.unit(2.3, "meters"),
  12648. weight: math.unit(3500, "lb"),
  12649. name: "Side",
  12650. image: {
  12651. source: "./media/characters/torvid/side.svg",
  12652. extra: 1972 / 722,
  12653. bottom: 0.035
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(2.3, "meters"),
  12661. default: true
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(2, "meters"),
  12670. weight: math.unit(150.5, "kg"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/susan/front.svg",
  12674. extra: 693 / 635,
  12675. bottom: 0.05
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(505, "miles"),
  12683. default: true
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/raindrops/front.svg",
  12696. extra: 2655 / 2461,
  12697. bottom: 49 / 2705
  12698. }
  12699. },
  12700. back: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Back",
  12704. image: {
  12705. source: "./media/characters/raindrops/back.svg",
  12706. extra: 2574 / 2400,
  12707. bottom: 65 / 2634
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Micro",
  12714. height: math.unit(6, "inches")
  12715. },
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(6 + 2 / 12, "feet")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(131, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(15, "miles")
  12728. },
  12729. {
  12730. name: "Gigamacro",
  12731. height: math.unit(4000, "miles")
  12732. },
  12733. {
  12734. name: "Teramacro",
  12735. height: math.unit(315000, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(2.794, "meters"),
  12744. weight: math.unit(325, "kg"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/tezwa/front.svg",
  12748. extra: 2083 / 1906,
  12749. bottom: 0.031
  12750. }
  12751. },
  12752. foot: {
  12753. height: math.unit(0.687, "meters"),
  12754. name: "Foot",
  12755. image: {
  12756. source: "./media/characters/tezwa/foot.svg"
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(9 + 2 / 12, "feet"),
  12764. default: true
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(58, "feet"),
  12773. weight: math.unit(89000, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/typhus/front.svg",
  12777. extra: 816 / 800,
  12778. bottom: 0.065
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(58, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(12, "feet"),
  12795. weight: math.unit(6, "tonnes"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/lyra-von-wulf/front.svg",
  12799. extra: 1,
  12800. bottom: 0.10
  12801. }
  12802. },
  12803. frontMecha: {
  12804. height: math.unit(12, "feet"),
  12805. weight: math.unit(12, "tonnes"),
  12806. name: "Front (Mecha)",
  12807. image: {
  12808. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12809. extra: 1,
  12810. bottom: 0.042
  12811. }
  12812. },
  12813. maw: {
  12814. height: math.unit(2.2, "feet"),
  12815. name: "Maw",
  12816. image: {
  12817. source: "./media/characters/lyra-von-wulf/maw.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(12, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Classic",
  12829. height: math.unit(50, "feet")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(500, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(1, "mile")
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(400, "miles")
  12842. },
  12843. {
  12844. name: "Teramacro",
  12845. height: math.unit(22000, "miles")
  12846. },
  12847. {
  12848. name: "Solarmacro",
  12849. height: math.unit(8600000, "miles")
  12850. },
  12851. {
  12852. name: "Galactic",
  12853. height: math.unit(1057000, "lightyears")
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(6 + 10 / 12, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/dixon/front.svg",
  12866. extra: 3361 / 3209,
  12867. bottom: 0.01
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 10 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Big",
  12879. height: math.unit(12, "meters")
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(500, "meters")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(2, "km")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(185, "cm"),
  12896. weight: math.unit(68, "kg"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/kauko/front.svg",
  12900. extra: 1455 / 1421,
  12901. bottom: 0.03
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(185, "cm"),
  12906. weight: math.unit(68, "kg"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/kauko/back.svg",
  12910. extra: 1455 / 1421,
  12911. bottom: 0.004
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(185, "cm"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "kg"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/varg/front.svg",
  12932. extra: 1108 / 1018,
  12933. bottom: 0.0375
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(5, "meters")
  12941. },
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(200, "meters")
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(20, "kilometers")
  12949. },
  12950. {
  12951. name: "True Size",
  12952. height: math.unit(211, "km"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Gigamacro",
  12957. height: math.unit(1000, "km")
  12958. },
  12959. {
  12960. name: "Gigamacro+",
  12961. height: math.unit(8000, "km")
  12962. },
  12963. {
  12964. name: "Teramacro",
  12965. height: math.unit(1000000, "km")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(7 + 7 / 12, "feet"),
  12974. weight: math.unit(267, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/dayza/front.svg",
  12978. extra: 1262 / 1200,
  12979. bottom: 0.035
  12980. }
  12981. },
  12982. side: {
  12983. height: math.unit(7 + 7 / 12, "feet"),
  12984. weight: math.unit(267, "lb"),
  12985. name: "Side",
  12986. image: {
  12987. source: "./media/characters/dayza/side.svg",
  12988. extra: 1295 / 1245,
  12989. bottom: 0.05
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(7 + 7 / 12, "feet"),
  12994. weight: math.unit(267, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/dayza/back.svg",
  12998. extra: 1241 / 1170
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(7 + 7 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(155, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6 + 5 / 12, "feet"),
  13019. weight: math.unit(160, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/xanthos/front.svg",
  13023. extra: 1,
  13024. bottom: 0.04
  13025. }
  13026. },
  13027. back: {
  13028. height: math.unit(6 + 5 / 12, "feet"),
  13029. weight: math.unit(160, "lb"),
  13030. name: "Back",
  13031. image: {
  13032. source: "./media/characters/xanthos/back.svg",
  13033. extra: 1,
  13034. bottom: 0.03
  13035. }
  13036. },
  13037. hand: {
  13038. height: math.unit(0.928, "feet"),
  13039. name: "Hand",
  13040. image: {
  13041. source: "./media/characters/xanthos/hand.svg"
  13042. }
  13043. },
  13044. foot: {
  13045. height: math.unit(1.286, "feet"),
  13046. name: "Foot",
  13047. image: {
  13048. source: "./media/characters/xanthos/foot.svg"
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(6 + 5 / 12, "feet"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Normal+",
  13060. height: math.unit(6, "meters")
  13061. },
  13062. {
  13063. name: "Macro",
  13064. height: math.unit(40, "feet")
  13065. },
  13066. {
  13067. name: "Macro+",
  13068. height: math.unit(200, "meters")
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(20, "km")
  13073. },
  13074. {
  13075. name: "Megamacro+",
  13076. height: math.unit(100, "km")
  13077. },
  13078. {
  13079. name: "Gigamacro",
  13080. height: math.unit(200, "megameters")
  13081. },
  13082. {
  13083. name: "Gigamacro+",
  13084. height: math.unit(1.5, "gigameters")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6 + 3 / 12, "feet"),
  13093. weight: math.unit(215, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/grynn/front.svg",
  13097. extra: 4627 / 4209,
  13098. bottom: 0.047
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Micro",
  13105. height: math.unit(6, "inches")
  13106. },
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(6 + 3 / 12, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Big",
  13114. height: math.unit(104, "feet")
  13115. },
  13116. {
  13117. name: "Macro",
  13118. height: math.unit(944, "feet")
  13119. },
  13120. {
  13121. name: "Macro+",
  13122. height: math.unit(9480, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(78752, "feet")
  13127. },
  13128. {
  13129. name: "Megamacro+",
  13130. height: math.unit(630128, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro++",
  13134. height: math.unit(3150695, "feet")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(7 + 5 / 12, "feet"),
  13143. weight: math.unit(450, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/mocha-aura/front.svg",
  13147. extra: 1907 / 1817,
  13148. bottom: 0.04
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(7 + 5 / 12, "feet"),
  13153. weight: math.unit(450, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/mocha-aura/back.svg",
  13157. extra: 1900 / 1825,
  13158. bottom: 0.045
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Nano",
  13165. height: math.unit(1, "nm")
  13166. },
  13167. {
  13168. name: "Megamicro",
  13169. height: math.unit(1, "mm")
  13170. },
  13171. {
  13172. name: "Micro",
  13173. height: math.unit(3, "inches")
  13174. },
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(7 + 5 / 12, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(30, "feet")
  13183. },
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(3500, "feet")
  13187. },
  13188. {
  13189. name: "Teramacro",
  13190. height: math.unit(500000, "miles")
  13191. },
  13192. {
  13193. name: "Petamacro",
  13194. height: math.unit(50000000000000000, "parsecs")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/ilisha-devya/front.svg",
  13207. extra: 1053/1049,
  13208. bottom: 270/1323
  13209. }
  13210. },
  13211. back: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Back",
  13215. image: {
  13216. source: "./media/characters/ilisha-devya/back.svg",
  13217. extra: 1131/1128,
  13218. bottom: 39/1170
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(500, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(10, "miles")
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(100000, "miles")
  13235. },
  13236. {
  13237. name: "Examacro",
  13238. height: math.unit(1e9, "lightyears")
  13239. },
  13240. {
  13241. name: "Omniversal",
  13242. height: math.unit(1e33, "lightyears")
  13243. },
  13244. {
  13245. name: "Beyond Infinite",
  13246. height: math.unit(1e100, "lightyears")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13252. {
  13253. Side: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Side",
  13257. image: {
  13258. source: "./media/characters/mira/side.svg",
  13259. extra: 900 / 799,
  13260. bottom: 0.02
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Human Size",
  13267. height: math.unit(6, "feet")
  13268. },
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(100, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Megamacro",
  13276. height: math.unit(10, "miles")
  13277. },
  13278. {
  13279. name: "Gigamacro",
  13280. height: math.unit(25000, "miles")
  13281. },
  13282. {
  13283. name: "Teramacro",
  13284. height: math.unit(300, "AU")
  13285. },
  13286. {
  13287. name: "Full Size",
  13288. height: math.unit(4.5e10, "lightyears")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/holly/front.svg",
  13301. extra: 639 / 606
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/holly/back.svg",
  13310. extra: 623 / 598
  13311. }
  13312. },
  13313. frontWorking: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front (Working)",
  13317. image: {
  13318. source: "./media/characters/holly/front-working.svg",
  13319. extra: 607 / 577,
  13320. bottom: 0.048
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(12 + 3 / 12, "feet"),
  13328. default: true
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/porter/front.svg",
  13341. extra: 1,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. frontRobes: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front (Robes)",
  13349. image: {
  13350. source: "./media/characters/porter/front-robes.svg",
  13351. extra: 1.01,
  13352. bottom: 0.01
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(11 + 9 / 12, "feet"),
  13360. default: true
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13366. {
  13367. legendary: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Legendary",
  13371. image: {
  13372. source: "./media/characters/lucy/legendary.svg",
  13373. extra: 1355 / 1100,
  13374. bottom: 0.045
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Legendary",
  13381. height: math.unit(86882 * 2, "miles"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/drusilla/front.svg",
  13395. extra: 678 / 635,
  13396. bottom: 0.03
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/drusilla/back.svg",
  13405. extra: 678 / 635,
  13406. bottom: 0.005
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(100, "feet")
  13414. },
  13415. {
  13416. name: "Canon Height",
  13417. height: math.unit(2000, "feet"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(180, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/renard-thatch/front.svg",
  13431. extra: 2411 / 2275,
  13432. bottom: 0.01
  13433. }
  13434. },
  13435. frontPosing: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(180, "lb"),
  13438. name: "Front (Posing)",
  13439. image: {
  13440. source: "./media/characters/renard-thatch/front-posing.svg",
  13441. extra: 2381 / 2261,
  13442. bottom: 0.01
  13443. }
  13444. },
  13445. back: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(180, "lb"),
  13448. name: "Back",
  13449. image: {
  13450. source: "./media/characters/renard-thatch/back.svg",
  13451. extra: 2428 / 2288
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(3, "inches")
  13459. },
  13460. {
  13461. name: "Default",
  13462. height: math.unit(6, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(75, "feet")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(1450, "feet"),
  13476. weight: math.unit(1.21e6, "tons"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/sekvra/front.svg",
  13480. extra: 1193/1190,
  13481. bottom: 78/1271
  13482. }
  13483. },
  13484. side: {
  13485. height: math.unit(1450, "feet"),
  13486. weight: math.unit(1.21e6, "tons"),
  13487. name: "Side",
  13488. image: {
  13489. source: "./media/characters/sekvra/side.svg",
  13490. extra: 1193/1190,
  13491. bottom: 52/1245
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(1450, "feet"),
  13496. weight: math.unit(1.21e6, "tons"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/sekvra/back.svg",
  13500. extra: 1219/1216,
  13501. bottom: 21/1240
  13502. }
  13503. },
  13504. frontClothed: {
  13505. height: math.unit(1450, "feet"),
  13506. weight: math.unit(1.21e6, "tons"),
  13507. name: "Front (Clothed)",
  13508. image: {
  13509. source: "./media/characters/sekvra/front-clothed.svg",
  13510. extra: 1192/1189,
  13511. bottom: 79/1271
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(1450, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(15000, "feet")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/carmine/front.svg",
  13536. extra: 1,
  13537. bottom: 0.035
  13538. }
  13539. },
  13540. frontArmor: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front (Armor)",
  13544. image: {
  13545. source: "./media/characters/carmine/front-armor.svg",
  13546. extra: 1,
  13547. bottom: 0.035
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Large",
  13554. height: math.unit(1, "mile")
  13555. },
  13556. {
  13557. name: "Huge",
  13558. height: math.unit(40, "miles"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Colossal",
  13563. height: math.unit(2500, "miles")
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(6, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/elyssia/front.svg",
  13576. extra: 2201 / 2035,
  13577. bottom: 0.05
  13578. }
  13579. },
  13580. frontClothed: {
  13581. height: math.unit(6, "feet"),
  13582. weight: math.unit(150, "lb"),
  13583. name: "Front (Clothed)",
  13584. image: {
  13585. source: "./media/characters/elyssia/front-clothed.svg",
  13586. extra: 2201 / 2035,
  13587. bottom: 0.05
  13588. }
  13589. },
  13590. back: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Back",
  13594. image: {
  13595. source: "./media/characters/elyssia/back.svg",
  13596. extra: 2201 / 2035,
  13597. bottom: 0.013
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Smaller",
  13604. height: math.unit(150, "feet")
  13605. },
  13606. {
  13607. name: "Standard",
  13608. height: math.unit(1400, "feet"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Distracted",
  13613. height: math.unit(15000, "feet")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(7 + 4/12, "feet"),
  13622. weight: math.unit(690, "lb"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/geno-maxwell/front.svg",
  13626. extra: 984/856,
  13627. bottom: 87/1071
  13628. }
  13629. },
  13630. back: {
  13631. height: math.unit(7 + 4/12, "feet"),
  13632. weight: math.unit(690, "lb"),
  13633. name: "Back",
  13634. image: {
  13635. source: "./media/characters/geno-maxwell/back.svg",
  13636. extra: 981/854,
  13637. bottom: 57/1038
  13638. }
  13639. },
  13640. frontCostume: {
  13641. height: math.unit(7 + 4/12, "feet"),
  13642. weight: math.unit(690, "lb"),
  13643. name: "Front (Costume)",
  13644. image: {
  13645. source: "./media/characters/geno-maxwell/front-costume.svg",
  13646. extra: 984/856,
  13647. bottom: 87/1071
  13648. }
  13649. },
  13650. backcostume: {
  13651. height: math.unit(7 + 4/12, "feet"),
  13652. weight: math.unit(690, "lb"),
  13653. name: "Back (Costume)",
  13654. image: {
  13655. source: "./media/characters/geno-maxwell/back-costume.svg",
  13656. extra: 981/854,
  13657. bottom: 57/1038
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Micro",
  13664. height: math.unit(3, "inches")
  13665. },
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(7 + 4 / 12, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(220, "feet")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(11, "miles")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(7 + 4/12, "feet"),
  13686. weight: math.unit(750, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/regena-maxwell/front.svg",
  13690. extra: 984/856,
  13691. bottom: 87/1071
  13692. }
  13693. },
  13694. back: {
  13695. height: math.unit(7 + 4/12, "feet"),
  13696. weight: math.unit(750, "lb"),
  13697. name: "Back",
  13698. image: {
  13699. source: "./media/characters/regena-maxwell/back.svg",
  13700. extra: 981/854,
  13701. bottom: 57/1038
  13702. }
  13703. },
  13704. frontCostume: {
  13705. height: math.unit(7 + 4/12, "feet"),
  13706. weight: math.unit(750, "lb"),
  13707. name: "Front (Costume)",
  13708. image: {
  13709. source: "./media/characters/regena-maxwell/front-costume.svg",
  13710. extra: 984/856,
  13711. bottom: 87/1071
  13712. }
  13713. },
  13714. backcostume: {
  13715. height: math.unit(7 + 4/12, "feet"),
  13716. weight: math.unit(750, "lb"),
  13717. name: "Back (Costume)",
  13718. image: {
  13719. source: "./media/characters/regena-maxwell/back-costume.svg",
  13720. extra: 981/854,
  13721. bottom: 57/1038
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(7 + 4 / 12, "feet"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(220, "feet")
  13734. },
  13735. {
  13736. name: "Megamacro",
  13737. height: math.unit(11, "miles")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13750. extra: 860 / 690,
  13751. bottom: 0.03
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(1.7, "meters"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/quilly/front.svg",
  13772. extra: 890 / 776
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Gigamacro",
  13779. height: math.unit(404090, "miles"),
  13780. default: true
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(7 + 8 / 12, "feet"),
  13789. weight: math.unit(350, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/tempest/front.svg",
  13793. extra: 1175 / 1086,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(7 + 8 / 12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13808. {
  13809. side: {
  13810. height: math.unit(4 + 5 / 12, "feet"),
  13811. weight: math.unit(80, "lb"),
  13812. name: "Side",
  13813. image: {
  13814. source: "./media/characters/rodger/side.svg",
  13815. extra: 1235 / 1118
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(1, "inch")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4 + 5 / 12, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(120, "feet")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/danyel/front.svg",
  13844. extra: 1185 / 1123,
  13845. bottom: 0.05
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Shrunken",
  13852. height: math.unit(0.5, "mm")
  13853. },
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(1, "mm"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Upsized",
  13861. height: math.unit(5 + 5 / 12, "feet")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(5 + 6 / 12, "feet"),
  13870. weight: math.unit(200, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/vivian-bijoux/front.svg",
  13874. extra: 1217/1209,
  13875. bottom: 76/1293
  13876. }
  13877. },
  13878. back: {
  13879. height: math.unit(5 + 6 / 12, "feet"),
  13880. weight: math.unit(200, "lb"),
  13881. name: "Back",
  13882. image: {
  13883. source: "./media/characters/vivian-bijoux/back.svg",
  13884. extra: 1214/1208,
  13885. bottom: 51/1265
  13886. }
  13887. },
  13888. dressed: {
  13889. height: math.unit(5 + 6 / 12, "feet"),
  13890. weight: math.unit(200, "lb"),
  13891. name: "Dressed",
  13892. image: {
  13893. source: "./media/characters/vivian-bijoux/dressed.svg",
  13894. extra: 1217/1209,
  13895. bottom: 76/1293
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(5 + 6 / 12, "feet"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Bad Dream",
  13907. height: math.unit(500, "feet")
  13908. },
  13909. {
  13910. name: "Nightmare",
  13911. height: math.unit(500, "miles")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(6 + 1 / 12, "feet"),
  13920. weight: math.unit(260, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/zeta/front.svg",
  13924. extra: 1968 / 1889,
  13925. bottom: 0.06
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(6 + 1 / 12, "feet"),
  13930. weight: math.unit(260, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/zeta/back.svg",
  13934. extra: 1944 / 1858,
  13935. bottom: 0.03
  13936. }
  13937. },
  13938. hand: {
  13939. height: math.unit(1.112, "feet"),
  13940. name: "Hand",
  13941. image: {
  13942. source: "./media/characters/zeta/hand.svg"
  13943. }
  13944. },
  13945. foot: {
  13946. height: math.unit(1.48, "feet"),
  13947. name: "Foot",
  13948. image: {
  13949. source: "./media/characters/zeta/foot.svg"
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(6, "inches")
  13957. },
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 1 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(20, "feet")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/jamie-larsen/front.svg",
  13978. extra: 962 / 933,
  13979. bottom: 0.02
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/jamie-larsen/back.svg",
  13988. extra: 997 / 946
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(28 + 7 / 12, "feet"),
  13996. default: true
  13997. },
  13998. {
  13999. name: "Macro+",
  14000. height: math.unit(180, "feet")
  14001. },
  14002. {
  14003. name: "Megamacro",
  14004. height: math.unit(10, "miles")
  14005. },
  14006. {
  14007. name: "Gigamacro",
  14008. height: math.unit(200000, "miles")
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(6, "feet"),
  14017. weight: math.unit(120, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/vance/front.svg",
  14021. extra: 1980 / 1890,
  14022. bottom: 0.09
  14023. }
  14024. },
  14025. back: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(120, "lb"),
  14028. name: "Back",
  14029. image: {
  14030. source: "./media/characters/vance/back.svg",
  14031. extra: 2081 / 1994,
  14032. bottom: 0.014
  14033. }
  14034. },
  14035. hand: {
  14036. height: math.unit(0.88, "feet"),
  14037. name: "Hand",
  14038. image: {
  14039. source: "./media/characters/vance/hand.svg"
  14040. }
  14041. },
  14042. foot: {
  14043. height: math.unit(0.64, "feet"),
  14044. name: "Foot",
  14045. image: {
  14046. source: "./media/characters/vance/foot.svg"
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Small",
  14053. height: math.unit(90, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(100, "meters")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(15, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(180, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/xochitl/front.svg",
  14075. extra: 2297 / 2261,
  14076. bottom: 0.065
  14077. }
  14078. },
  14079. back: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(180, "lb"),
  14082. name: "Back",
  14083. image: {
  14084. source: "./media/characters/xochitl/back.svg",
  14085. extra: 2386 / 2354,
  14086. bottom: 0.01
  14087. }
  14088. },
  14089. foot: {
  14090. height: math.unit(6 / 5 * 1.15, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Foot",
  14093. image: {
  14094. source: "./media/characters/xochitl/foot.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(80, "feet")
  14102. },
  14103. {
  14104. name: "Macro+",
  14105. height: math.unit(400, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Gigamacro",
  14110. height: math.unit(80000, "miles")
  14111. },
  14112. {
  14113. name: "Gigamacro+",
  14114. height: math.unit(400000, "miles")
  14115. },
  14116. {
  14117. name: "Teramacro",
  14118. height: math.unit(300, "AU")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/vincent/front.svg",
  14131. extra: 1130 / 1080,
  14132. bottom: 0.055
  14133. }
  14134. },
  14135. beak: {
  14136. height: math.unit(6 * 0.1, "feet"),
  14137. name: "Beak",
  14138. image: {
  14139. source: "./media/characters/vincent/beak.svg"
  14140. }
  14141. },
  14142. hand: {
  14143. height: math.unit(6 * 0.85, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Hand",
  14146. image: {
  14147. source: "./media/characters/vincent/hand.svg"
  14148. }
  14149. },
  14150. foot: {
  14151. height: math.unit(6 * 0.19, "feet"),
  14152. weight: math.unit(150, "lb"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/vincent/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Base",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(300, "feet")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(2, "miles")
  14172. },
  14173. {
  14174. name: "Gigamacro",
  14175. height: math.unit(1000, "miles")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(2, "meters"),
  14184. weight: math.unit(500, "kg"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/coatl/front.svg",
  14188. extra: 3948 / 3500,
  14189. bottom: 0.082
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(4, "meters")
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(100, "meters"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro+",
  14205. height: math.unit(300, "meters")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(3, "gigameters")
  14210. },
  14211. {
  14212. name: "Megamacro+",
  14213. height: math.unit(300, "terameters")
  14214. },
  14215. {
  14216. name: "Megamacro++",
  14217. height: math.unit(3, "lightyears")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(50, "kg"),
  14227. name: "front",
  14228. image: {
  14229. source: "./media/characters/shiroryu/front.svg",
  14230. extra: 1990 / 1935
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Mortal Mingling",
  14237. height: math.unit(3, "meters")
  14238. },
  14239. {
  14240. name: "Kaiju-ish",
  14241. height: math.unit(250, "meters")
  14242. },
  14243. {
  14244. name: "Somewhat Godly",
  14245. height: math.unit(400, "km"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Planetary",
  14250. height: math.unit(300, "megameters")
  14251. },
  14252. {
  14253. name: "Galaxy-dwarfing",
  14254. height: math.unit(450, "kiloparsecs")
  14255. },
  14256. {
  14257. name: "Universe Eater",
  14258. height: math.unit(150, "gigaparsecs")
  14259. },
  14260. {
  14261. name: "Almost Immeasurable",
  14262. height: math.unit(1.3e266, "yottaparsecs")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/umeko/front.svg",
  14275. extra: 1,
  14276. bottom: 0.019
  14277. }
  14278. },
  14279. frontArmored: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front (Armored)",
  14283. image: {
  14284. source: "./media/characters/umeko/front-armored.svg",
  14285. extra: 1,
  14286. bottom: 0.021
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(220, "feet"),
  14294. default: true
  14295. },
  14296. {
  14297. name: "Guardian Dragon",
  14298. height: math.unit(50, "miles")
  14299. },
  14300. {
  14301. name: "Cosmic",
  14302. height: math.unit(800000, "miles")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/cassidy/front.svg",
  14315. extra: 810/808,
  14316. bottom: 41/851
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Canon Height",
  14323. height: math.unit(120, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro+",
  14328. height: math.unit(400, "feet")
  14329. },
  14330. {
  14331. name: "Macro++",
  14332. height: math.unit(4000, "feet")
  14333. },
  14334. {
  14335. name: "Megamacro",
  14336. height: math.unit(3, "miles")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/isaac/front.svg",
  14349. extra: 896 / 815,
  14350. bottom: 0.11
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Human Size",
  14357. height: math.unit(8, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(400, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(50, "miles")
  14367. },
  14368. {
  14369. name: "Canon Height",
  14370. height: math.unit(200, "AU")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(72, "kg"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/sleekit/front.svg",
  14383. extra: 4693 / 4487,
  14384. bottom: 0.012
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Minimum Height",
  14391. height: math.unit(10, "meters")
  14392. },
  14393. {
  14394. name: "Smaller",
  14395. height: math.unit(25, "meters")
  14396. },
  14397. {
  14398. name: "Larger",
  14399. height: math.unit(38, "meters"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Maximum height",
  14404. height: math.unit(100, "meters")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/nillia/front.svg",
  14417. extra: 2195 / 2037,
  14418. bottom: 0.005
  14419. }
  14420. },
  14421. back: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Back",
  14425. image: {
  14426. source: "./media/characters/nillia/back.svg",
  14427. extra: 2195 / 2037,
  14428. bottom: 0.005
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Canon Height",
  14435. height: math.unit(489, "feet"),
  14436. default: true
  14437. }
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/mesmyriza/front.svg",
  14449. extra: 2067 / 1784,
  14450. bottom: 0.035
  14451. }
  14452. },
  14453. foot: {
  14454. height: math.unit(6 / (250 / 35), "feet"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/mesmyriza/foot.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(457, "meters"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Megamacro",
  14469. height: math.unit(8, "megameters")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/saudade/front.svg",
  14482. extra: 1172 / 1139,
  14483. bottom: 0.035
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Micro",
  14490. height: math.unit(3, "inches")
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(50, "feet")
  14500. },
  14501. {
  14502. name: "Megamacro",
  14503. height: math.unit(2800, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(5 + 4 / 12, "feet"),
  14512. weight: math.unit(100, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/keireer/front.svg",
  14516. extra: 716 / 666,
  14517. bottom: 0.05
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5 + 4 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(90, "kg"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/mirja/front.svg",
  14538. extra: 1789 / 1683,
  14539. bottom: 0.05
  14540. }
  14541. },
  14542. frontDressed: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(90, "lb"),
  14545. name: "Front (Dressed)",
  14546. image: {
  14547. source: "./media/characters/mirja/front-dressed.svg",
  14548. extra: 1789 / 1683,
  14549. bottom: 0.05
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(90, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/mirja/back.svg",
  14558. extra: 953 / 917,
  14559. bottom: 0.017
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "\"Incognito\"",
  14566. height: math.unit(3, "meters")
  14567. },
  14568. {
  14569. name: "Strolling Size",
  14570. height: math.unit(15, "km")
  14571. },
  14572. {
  14573. name: "Larger Strolling Size",
  14574. height: math.unit(400, "km")
  14575. },
  14576. {
  14577. name: "Preferred Size",
  14578. height: math.unit(5000, "km")
  14579. },
  14580. {
  14581. name: "True Size",
  14582. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(15, "feet"),
  14592. weight: math.unit(880, "kg"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/nightraver/front.svg",
  14596. extra: 2444 / 2160,
  14597. bottom: 0.027
  14598. }
  14599. },
  14600. back: {
  14601. height: math.unit(15, "feet"),
  14602. weight: math.unit(880, "kg"),
  14603. name: "Back",
  14604. image: {
  14605. source: "./media/characters/nightraver/back.svg",
  14606. extra: 2309 / 2180,
  14607. bottom: 0.005
  14608. }
  14609. },
  14610. sole: {
  14611. height: math.unit(2.878, "feet"),
  14612. name: "Sole",
  14613. image: {
  14614. source: "./media/characters/nightraver/sole.svg"
  14615. }
  14616. },
  14617. foot: {
  14618. height: math.unit(2.285, "feet"),
  14619. name: "Foot",
  14620. image: {
  14621. source: "./media/characters/nightraver/foot.svg"
  14622. }
  14623. },
  14624. maw: {
  14625. height: math.unit(2.67, "feet"),
  14626. name: "Maw",
  14627. image: {
  14628. source: "./media/characters/nightraver/maw.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Micro",
  14635. height: math.unit(1, "cm")
  14636. },
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(15, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(300, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(300, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro",
  14652. height: math.unit(10000, "miles")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14658. {
  14659. side: {
  14660. height: math.unit(2, "inches"),
  14661. weight: math.unit(5, "grams"),
  14662. name: "Side",
  14663. image: {
  14664. source: "./media/characters/arc/side.svg"
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(2, "inches"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(1.1938, "meters"),
  14681. weight: math.unit(54, "kg"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/nebula-shahar/front.svg",
  14685. extra: 1642 / 1436,
  14686. bottom: 0.06
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Megamicro",
  14693. height: math.unit(0.3, "mm")
  14694. },
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(3, "cm")
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(138, "cm"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(30, "m")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5.24, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/shayla/front.svg",
  14719. extra: 1512 / 1414,
  14720. bottom: 0.01
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5.24, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/shayla/back.svg",
  14729. extra: 1512 / 1414
  14730. }
  14731. },
  14732. hand: {
  14733. height: math.unit(0.7781496062992126, "feet"),
  14734. name: "Hand",
  14735. image: {
  14736. source: "./media/characters/shayla/hand.svg"
  14737. }
  14738. },
  14739. foot: {
  14740. height: math.unit(1.4206036745406823, "feet"),
  14741. name: "Foot",
  14742. image: {
  14743. source: "./media/characters/shayla/foot.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(0.32, "feet")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(5.24, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(492.12, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(186.41, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(2.2, "m"),
  14772. weight: math.unit(120, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/pia-jr/front.svg",
  14776. extra: 1000 / 970,
  14777. bottom: 0.035
  14778. }
  14779. },
  14780. hand: {
  14781. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14782. name: "Hand",
  14783. image: {
  14784. source: "./media/characters/pia-jr/hand.svg"
  14785. }
  14786. },
  14787. paw: {
  14788. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14789. name: "Paw",
  14790. image: {
  14791. source: "./media/characters/pia-jr/paw.svg"
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Micro",
  14798. height: math.unit(1.2, "cm")
  14799. },
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(2.2, "m"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(180, "m")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(420, "km")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(2, "m"),
  14820. weight: math.unit(115, "kg"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/pia-sr/front.svg",
  14824. extra: 760 / 730,
  14825. bottom: 0.015
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(2, "m"),
  14830. weight: math.unit(115, "kg"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/pia-sr/back.svg",
  14834. extra: 760 / 730,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. hand: {
  14839. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14840. name: "Hand",
  14841. image: {
  14842. source: "./media/characters/pia-sr/hand.svg"
  14843. }
  14844. },
  14845. foot: {
  14846. height: math.unit(1.83, "feet"),
  14847. name: "Foot",
  14848. image: {
  14849. source: "./media/characters/pia-sr/foot.svg"
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Micro",
  14856. height: math.unit(88, "mm")
  14857. },
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(2, "m"),
  14861. default: true
  14862. },
  14863. {
  14864. name: "Macro",
  14865. height: math.unit(200, "m")
  14866. },
  14867. {
  14868. name: "Megamacro",
  14869. height: math.unit(420, "km")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(8 + 2 / 12, "feet"),
  14878. weight: math.unit(300, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/kibibyte/front.svg",
  14882. extra: 2221 / 2098,
  14883. bottom: 0.04
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(8 + 2 / 12, "feet"),
  14891. default: true
  14892. },
  14893. {
  14894. name: "Socialable Macro",
  14895. height: math.unit(50, "feet")
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(300, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(500, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/felix/front.svg",
  14916. extra: 762 / 722,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. frontClothed: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front (Clothed)",
  14924. image: {
  14925. source: "./media/characters/felix/front-clothed.svg",
  14926. extra: 762 / 722,
  14927. bottom: 0.02
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(6 + 8 / 12, "feet"),
  14935. default: true
  14936. },
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(2600, "feet")
  14940. },
  14941. {
  14942. name: "Megamacro",
  14943. height: math.unit(450, "miles")
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(6 + 1 / 12, "feet"),
  14952. weight: math.unit(250, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/tobo/front.svg",
  14956. extra: 608 / 586,
  14957. bottom: 0.023
  14958. }
  14959. },
  14960. back: {
  14961. height: math.unit(6 + 1 / 12, "feet"),
  14962. weight: math.unit(250, "lb"),
  14963. name: "Back",
  14964. image: {
  14965. source: "./media/characters/tobo/back.svg",
  14966. extra: 608 / 586
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Nano",
  14973. height: math.unit(2, "nm")
  14974. },
  14975. {
  14976. name: "Megamicro",
  14977. height: math.unit(0.1, "mm")
  14978. },
  14979. {
  14980. name: "Micro",
  14981. height: math.unit(1, "inch"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Human-sized",
  14986. height: math.unit(6 + 1 / 12, "feet")
  14987. },
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(250, "feet")
  14991. },
  14992. {
  14993. name: "Megamacro",
  14994. height: math.unit(75, "miles")
  14995. },
  14996. {
  14997. name: "Texas-sized",
  14998. height: math.unit(750, "miles")
  14999. },
  15000. {
  15001. name: "Teramacro",
  15002. height: math.unit(50000, "miles")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(269, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/danny-kapowsky/front.svg",
  15015. extra: 766 / 736,
  15016. bottom: 0.044
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(269, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/danny-kapowsky/back.svg",
  15025. extra: 797 / 760,
  15026. bottom: 0.025
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(150, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Macro+",
  15038. height: math.unit(200, "feet")
  15039. },
  15040. {
  15041. name: "Macro++",
  15042. height: math.unit(300, "feet")
  15043. },
  15044. {
  15045. name: "Macro+++",
  15046. height: math.unit(400, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15052. {
  15053. side: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(170, "lb"),
  15056. name: "Side",
  15057. image: {
  15058. source: "./media/characters/finn/side.svg",
  15059. extra: 1953 / 1807,
  15060. bottom: 0.057
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(14445, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(5 + 6 / 12, "feet"),
  15077. weight: math.unit(125, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/roy/front.svg",
  15081. extra: 1,
  15082. bottom: 0.11
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Micro",
  15089. height: math.unit(3, "inches"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(5 + 6 / 12, "feet")
  15095. },
  15096. {
  15097. name: "Lesser Macro",
  15098. height: math.unit(60, "feet")
  15099. },
  15100. {
  15101. name: "Greater Macro",
  15102. height: math.unit(120, "feet")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(100, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/aevsivs/front.svg",
  15115. extra: 1,
  15116. bottom: 0.03
  15117. }
  15118. },
  15119. back: {
  15120. height: math.unit(6, "feet"),
  15121. weight: math.unit(100, "lb"),
  15122. name: "Back",
  15123. image: {
  15124. source: "./media/characters/aevsivs/back.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(2, "inches"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(5, "feet")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(5 + 7 / 12, "feet"),
  15145. weight: math.unit(159, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/hildegard/front.svg",
  15149. extra: 289 / 269,
  15150. bottom: 7.63 / 297.8
  15151. }
  15152. },
  15153. back: {
  15154. height: math.unit(5 + 7 / 12, "feet"),
  15155. weight: math.unit(159, "lb"),
  15156. name: "Back",
  15157. image: {
  15158. source: "./media/characters/hildegard/back.svg",
  15159. extra: 280 / 260,
  15160. bottom: 2.3 / 282
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(5 + 7 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15174. {
  15175. bernard: {
  15176. height: math.unit(2 + 7 / 12, "feet"),
  15177. weight: math.unit(66, "lb"),
  15178. name: "Bernard",
  15179. rename: true,
  15180. image: {
  15181. source: "./media/characters/bernard-wilder/bernard.svg",
  15182. extra: 192 / 128,
  15183. bottom: 0.05
  15184. }
  15185. },
  15186. wilder: {
  15187. height: math.unit(5 + 8 / 12, "feet"),
  15188. weight: math.unit(143, "lb"),
  15189. name: "Wilder",
  15190. rename: true,
  15191. image: {
  15192. source: "./media/characters/bernard-wilder/wilder.svg",
  15193. extra: 361 / 312,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(2 + 7 / 12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15208. {
  15209. anthro: {
  15210. height: math.unit(6 + 1 / 12, "feet"),
  15211. weight: math.unit(155, "lb"),
  15212. name: "Anthro",
  15213. image: {
  15214. source: "./media/characters/hearth/anthro.svg",
  15215. extra: 1178/1136,
  15216. bottom: 28/1206
  15217. }
  15218. },
  15219. feral: {
  15220. height: math.unit(3.78, "feet"),
  15221. weight: math.unit(35, "kg"),
  15222. name: "Feral",
  15223. image: {
  15224. source: "./media/characters/hearth/feral.svg",
  15225. extra: 153 / 135,
  15226. bottom: 0.03
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6, "feet"),
  15243. weight: math.unit(182, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/ingrid/front.svg",
  15247. extra: 294 / 268,
  15248. bottom: 0.027
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15262. {
  15263. eevee: {
  15264. height: math.unit(2 + 10 / 12, "feet"),
  15265. weight: math.unit(86, "lb"),
  15266. name: "Malgam",
  15267. image: {
  15268. source: "./media/characters/malgam/eevee.svg",
  15269. extra: 952/784,
  15270. bottom: 38/990
  15271. }
  15272. },
  15273. sylveon: {
  15274. height: math.unit(4, "feet"),
  15275. weight: math.unit(101, "lb"),
  15276. name: "Future Malgam",
  15277. rename: true,
  15278. image: {
  15279. source: "./media/characters/malgam/sylveon.svg",
  15280. extra: 371 / 325,
  15281. bottom: 0.015
  15282. }
  15283. },
  15284. gigantamax: {
  15285. height: math.unit(50, "feet"),
  15286. name: "Gigantamax Malgam",
  15287. rename: true,
  15288. image: {
  15289. source: "./media/characters/malgam/gigantamax.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(2 + 10 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 11 / 12, "feet"),
  15306. weight: math.unit(188, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/fleur/front.svg",
  15310. extra: 309 / 283,
  15311. bottom: 0.007
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 11 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 4 / 12, "feet"),
  15328. weight: math.unit(122, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/jude/front.svg",
  15332. extra: 288 / 273,
  15333. bottom: 0.03
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 4 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 11 / 12, "feet"),
  15350. weight: math.unit(190, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/seara/front.svg",
  15354. extra: 1,
  15355. bottom: 0.05
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 11 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(16 + 5 / 12, "feet"),
  15372. weight: math.unit(524, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/caspian/front.svg",
  15376. extra: 1,
  15377. bottom: 0.04
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(16 + 5 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 7 / 12, "feet"),
  15394. weight: math.unit(170, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/mika/front.svg",
  15398. extra: 1,
  15399. bottom: 0.016
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(5 + 7 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6 + 2 / 12, "feet"),
  15416. weight: math.unit(268, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/sol/front.svg",
  15420. extra: 247 / 231,
  15421. bottom: 0.05
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15435. {
  15436. buizel: {
  15437. height: math.unit(2 + 5 / 12, "feet"),
  15438. weight: math.unit(87, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/umiko/buizel.svg",
  15442. extra: 172 / 157,
  15443. bottom: 0.01
  15444. },
  15445. form: "buizel",
  15446. default: true
  15447. },
  15448. floatzel: {
  15449. height: math.unit(5 + 9 / 12, "feet"),
  15450. weight: math.unit(250, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/umiko/floatzel.svg",
  15454. extra: 1076/1006,
  15455. bottom: 15/1091
  15456. },
  15457. form: "floatzel",
  15458. default: true
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(2 + 5 / 12, "feet"),
  15465. form: "buizel",
  15466. default: true
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(5 + 9 / 12, "feet"),
  15471. form: "floatzel",
  15472. default: true
  15473. },
  15474. ],
  15475. {
  15476. "buizel": {
  15477. name: "Buizel"
  15478. },
  15479. "floatzel": {
  15480. name: "Floatzel",
  15481. default: true
  15482. }
  15483. }
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6 + 2 / 12, "feet"),
  15490. weight: math.unit(146, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/iliac/front.svg",
  15494. extra: 389 / 365,
  15495. bottom: 0.035
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(6 + 2 / 12, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(6, "feet"),
  15512. weight: math.unit(170, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/topaz/front.svg",
  15516. extra: 317 / 303,
  15517. bottom: 0.055
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(6, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(5 + 11 / 12, "feet"),
  15534. weight: math.unit(144, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/gabriel/front.svg",
  15538. extra: 285 / 262,
  15539. bottom: 0.004
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(5 + 11 / 12, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15553. {
  15554. side: {
  15555. height: math.unit(6 + 5 / 12, "feet"),
  15556. weight: math.unit(300, "lb"),
  15557. name: "Side",
  15558. image: {
  15559. source: "./media/characters/tempest-suicune/side.svg",
  15560. extra: 195 / 154,
  15561. bottom: 0.04
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(6 + 5 / 12, "feet"),
  15569. default: true
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(7 + 2 / 12, "feet"),
  15578. weight: math.unit(322, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/vulcan/front.svg",
  15582. extra: 154 / 147,
  15583. bottom: 0.04
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(7 + 2 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(5 + 10 / 12, "feet"),
  15600. weight: math.unit(264, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/gault/front.svg",
  15604. extra: 161 / 140,
  15605. bottom: 0.028
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(5 + 10 / 12, "feet"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/shard/front.svg",
  15626. extra: 273 / 238,
  15627. bottom: 0.02
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(3 + 6 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(5 + 11 / 12, "feet"),
  15644. weight: math.unit(146, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/ashe/front.svg",
  15648. extra: 400 / 373,
  15649. bottom: 0.01
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(5 + 11 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(5 + 5 / 12, "feet"),
  15666. weight: math.unit(135, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/beatrix/front.svg",
  15670. extra: 392 / 379,
  15671. bottom: 0.01
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(6, "feet"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6 + 2/12, "feet"),
  15688. weight: math.unit(135, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/ignatius/front.svg",
  15692. extra: 1380/1259,
  15693. bottom: 27/1407
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(6 + 2/12, "feet"),
  15701. default: true
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6 + 2 / 12, "feet"),
  15710. weight: math.unit(138, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/mei-li/front.svg",
  15714. extra: 237 / 229,
  15715. bottom: 0.03
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Normal",
  15722. height: math.unit(6 + 2 / 12, "feet"),
  15723. default: true
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(2 + 4 / 12, "feet"),
  15732. weight: math.unit(62, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/puru/front.svg",
  15736. extra: 206 / 149,
  15737. bottom: 0.06
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(2 + 4 / 12, "feet"),
  15745. default: true
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15751. {
  15752. anthro: {
  15753. height: math.unit(5 + 8/12, "feet"),
  15754. weight: math.unit(200, "lb"),
  15755. energyNeed: math.unit(2000, "kcal"),
  15756. name: "Anthro",
  15757. image: {
  15758. source: "./media/characters/kee/anthro.svg",
  15759. extra: 3251/3184,
  15760. bottom: 250/3501
  15761. }
  15762. },
  15763. taur: {
  15764. height: math.unit(11, "feet"),
  15765. weight: math.unit(500, "lb"),
  15766. energyNeed: math.unit(5000, "kcal"),
  15767. name: "Taur",
  15768. image: {
  15769. source: "./media/characters/kee/taur.svg",
  15770. extra: 1362/1320,
  15771. bottom: 83/1445
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(5 + 8/12, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(35, "feet")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15789. {
  15790. anthro: {
  15791. height: math.unit(7, "feet"),
  15792. weight: math.unit(190, "lb"),
  15793. name: "Anthro",
  15794. image: {
  15795. source: "./media/characters/cobalt-dracha/anthro.svg",
  15796. extra: 231 / 225,
  15797. bottom: 0.04
  15798. }
  15799. },
  15800. feral: {
  15801. height: math.unit(9 + 7 / 12, "feet"),
  15802. weight: math.unit(294, "lb"),
  15803. name: "Feral",
  15804. image: {
  15805. source: "./media/characters/cobalt-dracha/feral.svg",
  15806. extra: 692 / 633,
  15807. bottom: 0.05
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(7, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15821. {
  15822. fallen: {
  15823. height: math.unit(11 + 8 / 12, "feet"),
  15824. weight: math.unit(485, "lb"),
  15825. name: "Java (Fallen)",
  15826. rename: true,
  15827. image: {
  15828. source: "./media/characters/java/fallen.svg",
  15829. extra: 226 / 208,
  15830. bottom: 0.005
  15831. }
  15832. },
  15833. godkin: {
  15834. height: math.unit(10 + 6 / 12, "feet"),
  15835. weight: math.unit(328, "lb"),
  15836. name: "Java (Godkin)",
  15837. rename: true,
  15838. image: {
  15839. source: "./media/characters/java/godkin.svg",
  15840. extra: 1104/1068,
  15841. bottom: 36/1140
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(11 + 8 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(5 + 9 / 12, "feet"),
  15858. weight: math.unit(170, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/purna/front.svg",
  15862. extra: 239 / 229,
  15863. bottom: 0.01
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(5 + 9 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 9 / 12, "feet"),
  15880. weight: math.unit(142, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/kuva/front.svg",
  15884. extra: 281 / 271,
  15885. bottom: 0.006
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 9 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15899. {
  15900. anthro: {
  15901. height: math.unit(9 + 2 / 12, "feet"),
  15902. weight: math.unit(270, "lb"),
  15903. name: "Anthro",
  15904. image: {
  15905. source: "./media/characters/embra/anthro.svg",
  15906. extra: 200 / 187,
  15907. bottom: 0.02
  15908. }
  15909. },
  15910. feral: {
  15911. height: math.unit(18 + 8 / 12, "feet"),
  15912. weight: math.unit(576, "lb"),
  15913. name: "Feral",
  15914. image: {
  15915. source: "./media/characters/embra/feral.svg",
  15916. extra: 152 / 137,
  15917. bottom: 0.037
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(9 + 2 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15931. {
  15932. anthro: {
  15933. height: math.unit(10 + 9 / 12, "feet"),
  15934. weight: math.unit(224, "lb"),
  15935. name: "Anthro",
  15936. image: {
  15937. source: "./media/characters/grottos/anthro.svg",
  15938. extra: 350 / 332,
  15939. bottom: 0.045
  15940. }
  15941. },
  15942. feral: {
  15943. height: math.unit(20 + 7 / 12, "feet"),
  15944. weight: math.unit(629, "lb"),
  15945. name: "Feral",
  15946. image: {
  15947. source: "./media/characters/grottos/feral.svg",
  15948. extra: 207 / 190,
  15949. bottom: 0.05
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(10 + 9 / 12, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15963. {
  15964. anthro: {
  15965. height: math.unit(9 + 6 / 12, "feet"),
  15966. weight: math.unit(298, "lb"),
  15967. name: "Anthro",
  15968. image: {
  15969. source: "./media/characters/frifna/anthro.svg",
  15970. extra: 282 / 269,
  15971. bottom: 0.015
  15972. }
  15973. },
  15974. feral: {
  15975. height: math.unit(16 + 2 / 12, "feet"),
  15976. weight: math.unit(624, "lb"),
  15977. name: "Feral",
  15978. image: {
  15979. source: "./media/characters/frifna/feral.svg"
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(9 + 6 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(6 + 2 / 12, "feet"),
  15996. weight: math.unit(168, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/elise/front.svg",
  16000. extra: 276 / 271
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(6 + 2 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(5 + 10 / 12, "feet"),
  16017. weight: math.unit(210, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/glade/front.svg",
  16021. extra: 258 / 247,
  16022. bottom: 0.008
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(5 + 10 / 12, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(5 + 10 / 12, "feet"),
  16039. weight: math.unit(129, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/rina/front.svg",
  16043. extra: 266 / 255,
  16044. bottom: 0.005
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(5 + 10 / 12, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(6 + 1 / 12, "feet"),
  16061. weight: math.unit(192, "lb"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/veronica/front.svg",
  16065. extra: 319 / 309,
  16066. bottom: 0.005
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(6 + 1 / 12, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(9 + 3 / 12, "feet"),
  16083. weight: math.unit(1100, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/braxton/front.svg",
  16087. extra: 1057 / 984,
  16088. bottom: 0.05
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Normal",
  16095. height: math.unit(9 + 3 / 12, "feet")
  16096. },
  16097. {
  16098. name: "Giant",
  16099. height: math.unit(300, "feet"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Macro",
  16104. height: math.unit(700, "feet")
  16105. },
  16106. {
  16107. name: "Megamacro",
  16108. height: math.unit(6000, "feet")
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(6 + 7 / 12, "feet"),
  16117. weight: math.unit(150, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/blue-feyonics/front.svg",
  16121. extra: 1403 / 1306,
  16122. bottom: 0.047
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(6 + 7 / 12, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(1.8, "meters"),
  16139. weight: math.unit(60, "kg"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/maxwell/front.svg",
  16143. extra: 2060 / 1873
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Micro",
  16150. height: math.unit(1, "mm")
  16151. },
  16152. {
  16153. name: "Normal",
  16154. height: math.unit(1.8, "meter"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Macro",
  16159. height: math.unit(30, "meters")
  16160. },
  16161. {
  16162. name: "Megamacro",
  16163. height: math.unit(10, "km")
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(6, "feet"),
  16172. weight: math.unit(150, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/jack/front.svg",
  16176. extra: 1754 / 1640,
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(80000, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Max size",
  16189. height: math.unit(10, "lightyears")
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16195. {
  16196. urban: {
  16197. height: math.unit(5, "feet"),
  16198. weight: math.unit(240, "lb"),
  16199. name: "Urban",
  16200. image: {
  16201. source: "./media/characters/cafat/urban.svg",
  16202. extra: 1223/1126,
  16203. bottom: 205/1428
  16204. }
  16205. },
  16206. summer: {
  16207. height: math.unit(5, "feet"),
  16208. weight: math.unit(240, "lb"),
  16209. name: "Summer",
  16210. image: {
  16211. source: "./media/characters/cafat/summer.svg",
  16212. extra: 1223/1126,
  16213. bottom: 205/1428
  16214. }
  16215. },
  16216. winter: {
  16217. height: math.unit(5, "feet"),
  16218. weight: math.unit(240, "lb"),
  16219. name: "Winter",
  16220. image: {
  16221. source: "./media/characters/cafat/winter.svg",
  16222. extra: 1223/1126,
  16223. bottom: 205/1428
  16224. }
  16225. },
  16226. lingerie: {
  16227. height: math.unit(5, "feet"),
  16228. weight: math.unit(240, "lb"),
  16229. name: "Lingerie",
  16230. image: {
  16231. source: "./media/characters/cafat/lingerie.svg",
  16232. extra: 1223/1126,
  16233. bottom: 205/1428
  16234. }
  16235. },
  16236. upright: {
  16237. height: math.unit(6.3, "feet"),
  16238. weight: math.unit(240, "lb"),
  16239. name: "Upright",
  16240. image: {
  16241. source: "./media/characters/cafat/upright.svg",
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. uprightFull: {
  16246. height: math.unit(6.3, "feet"),
  16247. weight: math.unit(240, "lb"),
  16248. name: "Upright (Full)",
  16249. image: {
  16250. source: "./media/characters/cafat/upright-full.svg",
  16251. bottom: 0.01
  16252. }
  16253. },
  16254. },
  16255. [
  16256. {
  16257. name: "Small",
  16258. height: math.unit(5, "feet"),
  16259. default: true
  16260. },
  16261. {
  16262. name: "Large",
  16263. height: math.unit(13, "feet")
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(6, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/verin-raharra/front.svg",
  16276. extra: 5019 / 4835,
  16277. bottom: 0.023
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(7 + 5 / 12, "feet"),
  16285. default: true
  16286. },
  16287. {
  16288. name: "Upsized",
  16289. height: math.unit(20, "feet")
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(7, "feet"),
  16298. weight: math.unit(230, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/nakata/front.svg",
  16302. extra: 1.005,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(7, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Big",
  16315. height: math.unit(14, "feet")
  16316. },
  16317. {
  16318. name: "Macro",
  16319. height: math.unit(400, "feet")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(4.91, "feet"),
  16328. weight: math.unit(100, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/lily/front.svg",
  16332. extra: 1585 / 1415,
  16333. bottom: 0.02
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Normal",
  16340. height: math.unit(4.91, "feet"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16347. {
  16348. laying: {
  16349. height: math.unit(4 + 4 / 12, "feet"),
  16350. weight: math.unit(600, "lb"),
  16351. name: "Laying",
  16352. image: {
  16353. source: "./media/characters/sheila/laying.svg",
  16354. extra: 1333 / 1265,
  16355. bottom: 0.16
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(4 + 4 / 12, "feet"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(6, "feet"),
  16372. weight: math.unit(190, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/sax/front.svg",
  16376. extra: 1187 / 973,
  16377. bottom: 0.042
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Micro",
  16384. height: math.unit(4, "inches"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6, "feet"),
  16394. weight: math.unit(150, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/pandora/front.svg",
  16398. extra: 2720 / 2556,
  16399. bottom: 0.015
  16400. }
  16401. },
  16402. back: {
  16403. height: math.unit(6, "feet"),
  16404. weight: math.unit(150, "lb"),
  16405. name: "Back",
  16406. image: {
  16407. source: "./media/characters/pandora/back.svg",
  16408. extra: 2720 / 2556,
  16409. bottom: 0.01
  16410. }
  16411. },
  16412. beans: {
  16413. height: math.unit(6 / 8, "feet"),
  16414. name: "Beans",
  16415. image: {
  16416. source: "./media/characters/pandora/beans.svg"
  16417. }
  16418. },
  16419. collar: {
  16420. height: math.unit(0.31, "feet"),
  16421. name: "Collar",
  16422. image: {
  16423. source: "./media/characters/pandora/collar.svg"
  16424. }
  16425. },
  16426. skirt: {
  16427. height: math.unit(6, "feet"),
  16428. weight: math.unit(150, "lb"),
  16429. name: "Skirt",
  16430. image: {
  16431. source: "./media/characters/pandora/skirt.svg",
  16432. extra: 1622 / 1525,
  16433. bottom: 0.015
  16434. }
  16435. },
  16436. hoodie: {
  16437. height: math.unit(6, "feet"),
  16438. weight: math.unit(150, "lb"),
  16439. name: "Hoodie",
  16440. image: {
  16441. source: "./media/characters/pandora/hoodie.svg",
  16442. extra: 1622 / 1525,
  16443. bottom: 0.015
  16444. }
  16445. },
  16446. casual: {
  16447. height: math.unit(6, "feet"),
  16448. weight: math.unit(150, "lb"),
  16449. name: "Casual",
  16450. image: {
  16451. source: "./media/characters/pandora/casual.svg",
  16452. extra: 1622 / 1525,
  16453. bottom: 0.015
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(6, "feet")
  16461. },
  16462. {
  16463. name: "Big Steppy",
  16464. height: math.unit(1, "km"),
  16465. default: true
  16466. },
  16467. {
  16468. name: "Galactic Steppy",
  16469. height: math.unit(2, "gigameters")
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16475. {
  16476. side: {
  16477. height: math.unit(10, "feet"),
  16478. weight: math.unit(800, "kg"),
  16479. name: "Side",
  16480. image: {
  16481. source: "./media/characters/venio-darcony/side.svg",
  16482. extra: 1373 / 1003,
  16483. bottom: 0.037
  16484. }
  16485. },
  16486. front: {
  16487. height: math.unit(19, "feet"),
  16488. weight: math.unit(800, "kg"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/venio-darcony/front.svg"
  16492. }
  16493. },
  16494. back: {
  16495. height: math.unit(19, "feet"),
  16496. weight: math.unit(800, "kg"),
  16497. name: "Back",
  16498. image: {
  16499. source: "./media/characters/venio-darcony/back.svg"
  16500. }
  16501. },
  16502. sideNsfw: {
  16503. height: math.unit(10, "feet"),
  16504. weight: math.unit(800, "kg"),
  16505. name: "Side (NSFW)",
  16506. image: {
  16507. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16508. extra: 1373 / 1003,
  16509. bottom: 0.037
  16510. }
  16511. },
  16512. frontNsfw: {
  16513. height: math.unit(19, "feet"),
  16514. weight: math.unit(800, "kg"),
  16515. name: "Front (NSFW)",
  16516. image: {
  16517. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16518. }
  16519. },
  16520. backNsfw: {
  16521. height: math.unit(19, "feet"),
  16522. weight: math.unit(800, "kg"),
  16523. name: "Back (NSFW)",
  16524. image: {
  16525. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16526. }
  16527. },
  16528. sideArmored: {
  16529. height: math.unit(10, "feet"),
  16530. weight: math.unit(800, "kg"),
  16531. name: "Side (Armored)",
  16532. image: {
  16533. source: "./media/characters/venio-darcony/side-armored.svg",
  16534. extra: 1373 / 1003,
  16535. bottom: 0.037
  16536. }
  16537. },
  16538. frontArmored: {
  16539. height: math.unit(19, "feet"),
  16540. weight: math.unit(900, "kg"),
  16541. name: "Front (Armored)",
  16542. image: {
  16543. source: "./media/characters/venio-darcony/front-armored.svg"
  16544. }
  16545. },
  16546. backArmored: {
  16547. height: math.unit(19, "feet"),
  16548. weight: math.unit(900, "kg"),
  16549. name: "Back (Armored)",
  16550. image: {
  16551. source: "./media/characters/venio-darcony/back-armored.svg"
  16552. }
  16553. },
  16554. sword: {
  16555. height: math.unit(10, "feet"),
  16556. weight: math.unit(50, "lb"),
  16557. name: "Sword",
  16558. image: {
  16559. source: "./media/characters/venio-darcony/sword.svg"
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(10, "feet")
  16567. },
  16568. {
  16569. name: "Macro",
  16570. height: math.unit(130, "feet"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro+",
  16575. height: math.unit(240, "feet")
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6, "feet"),
  16584. weight: math.unit(150, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/veski/front.svg",
  16588. extra: 1299 / 1225,
  16589. bottom: 0.04
  16590. }
  16591. },
  16592. back: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(150, "lb"),
  16595. name: "Back",
  16596. image: {
  16597. source: "./media/characters/veski/back.svg",
  16598. extra: 1299 / 1225,
  16599. bottom: 0.008
  16600. }
  16601. },
  16602. maw: {
  16603. height: math.unit(1.5 * 1.21, "feet"),
  16604. name: "Maw",
  16605. image: {
  16606. source: "./media/characters/veski/maw.svg"
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Macro",
  16613. height: math.unit(2, "km"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(5 + 7 / 12, "feet"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/isabelle/front.svg",
  16626. extra: 2130 / 1976,
  16627. bottom: 0.05
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Supermicro",
  16634. height: math.unit(10, "micrometers")
  16635. },
  16636. {
  16637. name: "Micro",
  16638. height: math.unit(1, "inch")
  16639. },
  16640. {
  16641. name: "Tiny",
  16642. height: math.unit(5, "inches")
  16643. },
  16644. {
  16645. name: "Standard",
  16646. height: math.unit(5 + 7 / 12, "inches")
  16647. },
  16648. {
  16649. name: "Macro",
  16650. height: math.unit(80, "meters"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Megamacro",
  16655. height: math.unit(250, "meters")
  16656. },
  16657. {
  16658. name: "Gigamacro",
  16659. height: math.unit(5, "km")
  16660. },
  16661. {
  16662. name: "Cosmic",
  16663. height: math.unit(2.5e6, "miles")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/hanzo/front.svg",
  16676. extra: 374 / 344,
  16677. bottom: 0.02
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(8, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(7, "feet"),
  16694. weight: math.unit(130, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/anna/front.svg",
  16698. extra: 169 / 145,
  16699. bottom: 0.06
  16700. }
  16701. },
  16702. full: {
  16703. height: math.unit(4.96, "feet"),
  16704. weight: math.unit(220, "lb"),
  16705. name: "Full",
  16706. image: {
  16707. source: "./media/characters/anna/full.svg",
  16708. extra: 138 / 114,
  16709. bottom: 0.15
  16710. }
  16711. },
  16712. tongue: {
  16713. height: math.unit(2.53, "feet"),
  16714. name: "Tongue",
  16715. image: {
  16716. source: "./media/characters/anna/tongue.svg"
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Normal",
  16723. height: math.unit(7, "feet"),
  16724. default: true
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16730. {
  16731. front: {
  16732. height: math.unit(7, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/ian-corvid/front.svg",
  16737. extra: 150 / 142,
  16738. bottom: 0.02
  16739. }
  16740. },
  16741. back: {
  16742. height: math.unit(7, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Back",
  16745. image: {
  16746. source: "./media/characters/ian-corvid/back.svg",
  16747. extra: 150 / 143,
  16748. bottom: 0.01
  16749. }
  16750. },
  16751. stomping: {
  16752. height: math.unit(7, "feet"),
  16753. weight: math.unit(150, "lb"),
  16754. name: "Stomping",
  16755. image: {
  16756. source: "./media/characters/ian-corvid/stomping.svg",
  16757. extra: 76 / 72
  16758. }
  16759. },
  16760. sitting: {
  16761. height: math.unit(7 / 1.8, "feet"),
  16762. weight: math.unit(150, "lb"),
  16763. name: "Sitting",
  16764. image: {
  16765. source: "./media/characters/ian-corvid/sitting.svg",
  16766. extra: 1400 / 1269,
  16767. bottom: 0.15
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Tiny Microw",
  16774. height: math.unit(1, "inch")
  16775. },
  16776. {
  16777. name: "Microw",
  16778. height: math.unit(6, "inches")
  16779. },
  16780. {
  16781. name: "Crow",
  16782. height: math.unit(7 + 1 / 12, "feet"),
  16783. default: true
  16784. },
  16785. {
  16786. name: "Macrow",
  16787. height: math.unit(176, "feet")
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(5 + 7 / 12, "feet"),
  16796. weight: math.unit(147, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/natalie-kellon/front.svg",
  16800. extra: 1214 / 1141,
  16801. bottom: 0.02
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Micro",
  16808. height: math.unit(1 / 16, "inch")
  16809. },
  16810. {
  16811. name: "Tiny",
  16812. height: math.unit(4, "inches")
  16813. },
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(5 + 7 / 12, "feet"),
  16817. default: true
  16818. },
  16819. {
  16820. name: "Amazon",
  16821. height: math.unit(12, "feet")
  16822. },
  16823. {
  16824. name: "Giantess",
  16825. height: math.unit(160, "meters")
  16826. },
  16827. {
  16828. name: "Titaness",
  16829. height: math.unit(800, "meters")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6, "feet"),
  16838. weight: math.unit(150, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/alluria/front.svg",
  16842. extra: 806 / 738,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. side: {
  16847. height: math.unit(6, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Side",
  16850. image: {
  16851. source: "./media/characters/alluria/side.svg",
  16852. extra: 800 / 750,
  16853. }
  16854. },
  16855. back: {
  16856. height: math.unit(6, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Back",
  16859. image: {
  16860. source: "./media/characters/alluria/back.svg",
  16861. extra: 806 / 738,
  16862. }
  16863. },
  16864. frontMaid: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Front (Maid)",
  16868. image: {
  16869. source: "./media/characters/alluria/front-maid.svg",
  16870. extra: 806 / 738,
  16871. bottom: 0.01
  16872. }
  16873. },
  16874. sideMaid: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Side (Maid)",
  16878. image: {
  16879. source: "./media/characters/alluria/side-maid.svg",
  16880. extra: 800 / 750,
  16881. bottom: 0.005
  16882. }
  16883. },
  16884. backMaid: {
  16885. height: math.unit(6, "feet"),
  16886. weight: math.unit(150, "lb"),
  16887. name: "Back (Maid)",
  16888. image: {
  16889. source: "./media/characters/alluria/back-maid.svg",
  16890. extra: 806 / 738,
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Micro",
  16897. height: math.unit(6, "inches"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(6, "feet"),
  16907. weight: math.unit(150, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/kyle/front.svg",
  16911. extra: 1069 / 962,
  16912. bottom: 77.228 / 1727.45
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(150, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(6, "feet"),
  16929. weight: math.unit(300, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/duncan/front.svg",
  16933. extra: 1650 / 1482,
  16934. bottom: 0.05
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Macro",
  16941. height: math.unit(100, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(5 + 4 / 12, "feet"),
  16951. weight: math.unit(220, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/memory/front.svg",
  16955. extra: 3641 / 3545,
  16956. bottom: 0.03
  16957. }
  16958. },
  16959. back: {
  16960. height: math.unit(5 + 4 / 12, "feet"),
  16961. weight: math.unit(220, "lb"),
  16962. name: "Back",
  16963. image: {
  16964. source: "./media/characters/memory/back.svg",
  16965. extra: 3641 / 3545,
  16966. bottom: 0.025
  16967. }
  16968. },
  16969. frontSkirt: {
  16970. height: math.unit(5 + 4 / 12, "feet"),
  16971. weight: math.unit(220, "lb"),
  16972. name: "Front (Skirt)",
  16973. image: {
  16974. source: "./media/characters/memory/front-skirt.svg",
  16975. extra: 3641 / 3545,
  16976. bottom: 0.03
  16977. }
  16978. },
  16979. frontDress: {
  16980. height: math.unit(5 + 4 / 12, "feet"),
  16981. weight: math.unit(220, "lb"),
  16982. name: "Front (Dress)",
  16983. image: {
  16984. source: "./media/characters/memory/front-dress.svg",
  16985. extra: 3641 / 3545,
  16986. bottom: 0.03
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Micro",
  16993. height: math.unit(6, "inches"),
  16994. default: true
  16995. },
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(5 + 4 / 12, "feet")
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17004. {
  17005. front: {
  17006. height: math.unit(4 + 11 / 12, "feet"),
  17007. weight: math.unit(100, "lb"),
  17008. name: "Front",
  17009. image: {
  17010. source: "./media/characters/luno/front.svg",
  17011. extra: 1535 / 1487,
  17012. bottom: 0.03
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Micro",
  17019. height: math.unit(3, "inches")
  17020. },
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(4 + 11 / 12, "feet"),
  17024. default: true
  17025. },
  17026. {
  17027. name: "Macro",
  17028. height: math.unit(300, "feet")
  17029. },
  17030. {
  17031. name: "Megamacro",
  17032. height: math.unit(700, "miles")
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(6 + 2 / 12, "feet"),
  17041. weight: math.unit(170, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/jamesy/front.svg",
  17045. extra: 440 / 382,
  17046. bottom: 0.005
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Micro",
  17053. height: math.unit(3, "inches")
  17054. },
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(6 + 2 / 12, "feet"),
  17058. default: true
  17059. },
  17060. {
  17061. name: "Macro",
  17062. height: math.unit(300, "feet")
  17063. },
  17064. {
  17065. name: "Megamacro",
  17066. height: math.unit(700, "miles")
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(6, "feet"),
  17075. weight: math.unit(160, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/mark/front.svg",
  17079. extra: 3300 / 3100,
  17080. bottom: 136.42 / 3440.47
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Macro",
  17087. height: math.unit(120, "meters")
  17088. },
  17089. {
  17090. name: "Bigger Macro",
  17091. height: math.unit(350, "meters")
  17092. },
  17093. {
  17094. name: "Megamacro",
  17095. height: math.unit(8, "km"),
  17096. default: true
  17097. },
  17098. {
  17099. name: "Continental",
  17100. height: math.unit(4550, "km")
  17101. },
  17102. {
  17103. name: "Planetary",
  17104. height: math.unit(65000, "km")
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(400, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/mac/front.svg",
  17117. extra: 1048 / 987.7,
  17118. bottom: 60 / 1107.6,
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(500, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 2 / 12, "feet"),
  17135. weight: math.unit(190, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/bari/front.svg",
  17139. extra: 3156 / 2880,
  17140. bottom: 0.03
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(5 + 2 / 12, "feet"),
  17145. weight: math.unit(190, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/bari/back.svg",
  17149. extra: 3260 / 2834,
  17150. bottom: 0.025
  17151. }
  17152. },
  17153. frontPlush: {
  17154. height: math.unit(5 + 2 / 12, "feet"),
  17155. weight: math.unit(190, "lb"),
  17156. name: "Front (Plush)",
  17157. image: {
  17158. source: "./media/characters/bari/front-plush.svg",
  17159. extra: 1112 / 1061,
  17160. bottom: 0.002
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Micro",
  17167. height: math.unit(3, "inches")
  17168. },
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(5 + 2 / 12, "feet"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(20, "feet")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(6 + 1 / 12, "feet"),
  17185. weight: math.unit(275, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/hunter-misha-raven/front.svg"
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Mortal",
  17195. height: math.unit(6 + 1 / 12, "feet")
  17196. },
  17197. {
  17198. name: "Divine",
  17199. height: math.unit(1.12134e34, "parsecs"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(6 + 3 / 12, "feet"),
  17209. weight: math.unit(220, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/max-calore/front.svg",
  17213. extra: 1700 / 1648,
  17214. bottom: 0.01
  17215. }
  17216. },
  17217. back: {
  17218. height: math.unit(6 + 3 / 12, "feet"),
  17219. weight: math.unit(220, "lb"),
  17220. name: "Back",
  17221. image: {
  17222. source: "./media/characters/max-calore/back.svg",
  17223. extra: 1700 / 1648,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(6 + 3 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17238. {
  17239. side: {
  17240. height: math.unit(2 + 8 / 12, "feet"),
  17241. weight: math.unit(99, "lb"),
  17242. name: "Side",
  17243. image: {
  17244. source: "./media/characters/aspen/side.svg",
  17245. extra: 152 / 138,
  17246. bottom: 0.032
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(2 + 8 / 12, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17260. {
  17261. side: {
  17262. height: math.unit(3 + 2 / 12, "feet"),
  17263. weight: math.unit(224, "lb"),
  17264. name: "Side",
  17265. image: {
  17266. source: "./media/characters/sheila-feral-wolf/side.svg",
  17267. extra: 179 / 166,
  17268. bottom: 0.03
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(3 + 2 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17282. {
  17283. side: {
  17284. height: math.unit(1 + 9 / 12, "feet"),
  17285. weight: math.unit(38, "lb"),
  17286. name: "Side",
  17287. image: {
  17288. source: "./media/characters/michelle/side.svg",
  17289. extra: 147 / 136.7,
  17290. bottom: 0.03
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(1 + 9 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(1.54, "feet"),
  17307. weight: math.unit(50, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/nino/front.svg"
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(1.54, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(1.49, "feet"),
  17327. weight: math.unit(45, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/viola/front.svg"
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(1.49, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17344. {
  17345. front: {
  17346. height: math.unit(6 + 5 / 12, "feet"),
  17347. weight: math.unit(580, "lb"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/atlas/front.svg",
  17351. extra: 298.5 / 290,
  17352. bottom: 0.015
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(6 + 5 / 12, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17366. {
  17367. side: {
  17368. height: math.unit(1 + 10 / 12, "feet"),
  17369. weight: math.unit(25, "lb"),
  17370. name: "Side",
  17371. image: {
  17372. source: "./media/characters/davy/side.svg",
  17373. extra: 200 / 170,
  17374. bottom: 0.01
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(1 + 10 / 12, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17388. {
  17389. side: {
  17390. height: math.unit(4 + 8 / 12, "feet"),
  17391. weight: math.unit(166, "lb"),
  17392. name: "Side",
  17393. image: {
  17394. source: "./media/characters/fiona/side.svg",
  17395. extra: 232 / 220,
  17396. bottom: 0.03
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(4 + 8 / 12, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17410. {
  17411. front: {
  17412. height: math.unit(3, "feet"),
  17413. weight: math.unit(100, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/lyla/front.svg",
  17417. bottom: 0.1
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(3, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17431. {
  17432. side: {
  17433. height: math.unit(1.8, "feet"),
  17434. weight: math.unit(44, "lb"),
  17435. name: "Side",
  17436. image: {
  17437. source: "./media/characters/perseus/side.svg",
  17438. bottom: 0.21
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(1.8, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17452. {
  17453. side: {
  17454. height: math.unit(4 + 2 / 12, "feet"),
  17455. weight: math.unit(20, "lb"),
  17456. name: "Side",
  17457. image: {
  17458. source: "./media/characters/remus/side.svg"
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(4 + 2 / 12, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(4 + 11 / 12, "feet"),
  17475. weight: math.unit(114, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/raf/front.svg",
  17479. extra: 1504/1339,
  17480. bottom: 26/1530
  17481. }
  17482. },
  17483. side: {
  17484. height: math.unit(4 + 11 / 12, "feet"),
  17485. weight: math.unit(114, "lb"),
  17486. name: "Side",
  17487. image: {
  17488. source: "./media/characters/raf/side.svg",
  17489. extra: 1466/1316,
  17490. bottom: 29/1495
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Micro",
  17497. height: math.unit(2, "inches")
  17498. },
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(4 + 11 / 12, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Macro",
  17506. height: math.unit(70, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(1.5, "meters"),
  17515. weight: math.unit(68, "kg"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/liam-einarr/front.svg",
  17519. extra: 2822 / 2666
  17520. }
  17521. },
  17522. back: {
  17523. height: math.unit(1.5, "meters"),
  17524. weight: math.unit(68, "kg"),
  17525. name: "Back",
  17526. image: {
  17527. source: "./media/characters/liam-einarr/back.svg",
  17528. extra: 2822 / 2666,
  17529. bottom: 0.015
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(1.5, "meters"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Macro",
  17541. height: math.unit(150, "meters")
  17542. },
  17543. {
  17544. name: "Megamacro",
  17545. height: math.unit(35, "km")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6, "feet"),
  17554. weight: math.unit(75, "kg"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/linda/front.svg",
  17558. extra: 930 / 874,
  17559. bottom: 0.004
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(6, "feet"),
  17567. default: true
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17573. {
  17574. front: {
  17575. height: math.unit(6 + 8 / 12, "feet"),
  17576. weight: math.unit(220, "lb"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/caylex/front.svg",
  17580. extra: 821 / 772,
  17581. bottom: 0.07
  17582. }
  17583. },
  17584. back: {
  17585. height: math.unit(6 + 8 / 12, "feet"),
  17586. weight: math.unit(220, "lb"),
  17587. name: "Back",
  17588. image: {
  17589. source: "./media/characters/caylex/back.svg",
  17590. extra: 821 / 772,
  17591. bottom: 0.022
  17592. }
  17593. },
  17594. hand: {
  17595. height: math.unit(1.25, "feet"),
  17596. name: "Hand",
  17597. image: {
  17598. source: "./media/characters/caylex/hand.svg"
  17599. }
  17600. },
  17601. foot: {
  17602. height: math.unit(1.6, "feet"),
  17603. name: "Foot",
  17604. image: {
  17605. source: "./media/characters/caylex/foot.svg"
  17606. }
  17607. },
  17608. armored: {
  17609. height: math.unit(6 + 8 / 12, "feet"),
  17610. weight: math.unit(250, "lb"),
  17611. name: "Armored",
  17612. image: {
  17613. source: "./media/characters/caylex/armored.svg",
  17614. extra: 1420 / 1310,
  17615. bottom: 0.045
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(6 + 8 / 12, "feet"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Normal+",
  17627. height: math.unit(12, "feet")
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(7 + 6 / 12, "feet"),
  17636. weight: math.unit(288, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/alana/front.svg",
  17640. extra: 679 / 653,
  17641. bottom: 22.5 / 701
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(7 + 6 / 12, "feet")
  17649. },
  17650. {
  17651. name: "Large",
  17652. height: math.unit(50, "feet")
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(100, "feet"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Macro+",
  17661. height: math.unit(200, "feet")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(6 + 1 / 12, "feet"),
  17670. weight: math.unit(210, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/hasani/front.svg",
  17674. extra: 244 / 232,
  17675. bottom: 0.01
  17676. }
  17677. },
  17678. back: {
  17679. height: math.unit(6 + 1 / 12, "feet"),
  17680. weight: math.unit(210, "lb"),
  17681. name: "Back",
  17682. image: {
  17683. source: "./media/characters/hasani/back.svg",
  17684. extra: 244 / 232,
  17685. bottom: 0.01
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(6 + 1 / 12, "feet")
  17693. },
  17694. {
  17695. name: "Macro",
  17696. height: math.unit(175, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(1.82, "meters"),
  17706. weight: math.unit(140, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/nita/front.svg",
  17710. extra: 2473 / 2363,
  17711. bottom: 0.01
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(1.82, "m")
  17719. },
  17720. {
  17721. name: "Macro",
  17722. height: math.unit(300, "m")
  17723. },
  17724. {
  17725. name: "Mistake Canon",
  17726. height: math.unit(0.5, "miles"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Big Mistake",
  17731. height: math.unit(13, "miles")
  17732. },
  17733. {
  17734. name: "Playing God",
  17735. height: math.unit(2450, "miles")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(4, "feet"),
  17744. weight: math.unit(120, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/shiriko/front.svg",
  17748. extra: 970/934,
  17749. bottom: 5/975
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(4, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6, "feet"),
  17766. name: "front",
  17767. image: {
  17768. source: "./media/characters/deja/front.svg",
  17769. extra: 926 / 840,
  17770. bottom: 0.07
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Planck Length",
  17777. height: math.unit(1.6e-35, "meters")
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(30.48, "meters"),
  17782. default: true
  17783. },
  17784. {
  17785. name: "Universal",
  17786. height: math.unit(8.8e26, "meters")
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17792. {
  17793. side: {
  17794. height: math.unit(8, "feet"),
  17795. weight: math.unit(6300, "lb"),
  17796. name: "Side",
  17797. image: {
  17798. source: "./media/characters/anima/side.svg",
  17799. bottom: 0.035
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Normal",
  17806. height: math.unit(8, "feet"),
  17807. default: true
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(8, "feet"),
  17816. weight: math.unit(350, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/bianca/front.svg",
  17820. extra: 234 / 225,
  17821. bottom: 0.03
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(8, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(6, "feet"),
  17838. weight: math.unit(150, "lb"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/adinia/front.svg",
  17842. extra: 1845 / 1672,
  17843. bottom: 0.02
  17844. }
  17845. },
  17846. back: {
  17847. height: math.unit(6, "feet"),
  17848. weight: math.unit(150, "lb"),
  17849. name: "Back",
  17850. image: {
  17851. source: "./media/characters/adinia/back.svg",
  17852. extra: 1845 / 1672,
  17853. bottom: 0.002
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(11 + 5 / 12, "feet"),
  17861. default: true
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(3, "meters"),
  17870. weight: math.unit(200, "kg"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/lykasa/front.svg",
  17874. extra: 1076 / 976,
  17875. bottom: 0.06
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(3, "meters")
  17883. },
  17884. {
  17885. name: "Kaiju",
  17886. height: math.unit(120, "meters"),
  17887. default: true
  17888. },
  17889. {
  17890. name: "Mega Kaiju",
  17891. height: math.unit(240, "km")
  17892. },
  17893. {
  17894. name: "Giga Kaiju",
  17895. height: math.unit(400, "megameters")
  17896. },
  17897. {
  17898. name: "Tera Kaiju",
  17899. height: math.unit(800, "gigameters")
  17900. },
  17901. {
  17902. name: "Kaiju Dragon Goddess",
  17903. height: math.unit(26, "zettaparsecs")
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17909. {
  17910. side: {
  17911. height: math.unit(283 / 124 * 6, "feet"),
  17912. weight: math.unit(35000, "lb"),
  17913. name: "Side",
  17914. image: {
  17915. source: "./media/characters/malfaren/side.svg",
  17916. extra: 1310/529,
  17917. bottom: 24/1334
  17918. }
  17919. },
  17920. front: {
  17921. height: math.unit(22.36, "feet"),
  17922. weight: math.unit(35000, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/malfaren/front.svg",
  17926. extra: 1237/1115,
  17927. bottom: 32/1269
  17928. }
  17929. },
  17930. maw: {
  17931. height: math.unit(6.9, "feet"),
  17932. name: "Maw",
  17933. image: {
  17934. source: "./media/characters/malfaren/maw.svg"
  17935. }
  17936. },
  17937. dick: {
  17938. height: math.unit(6.19, "feet"),
  17939. name: "Dick",
  17940. image: {
  17941. source: "./media/characters/malfaren/dick.svg"
  17942. }
  17943. },
  17944. eye: {
  17945. height: math.unit(0.69, "feet"),
  17946. name: "Eye",
  17947. image: {
  17948. source: "./media/characters/malfaren/eye.svg"
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Big",
  17955. height: math.unit(283 / 162 * 6, "feet"),
  17956. },
  17957. {
  17958. name: "Bigger",
  17959. height: math.unit(283 / 124 * 6, "feet")
  17960. },
  17961. {
  17962. name: "Massive",
  17963. height: math.unit(283 / 92 * 6, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "👀💦",
  17968. height: math.unit(283 / 73 * 6, "feet"),
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(1.7, "m"),
  17977. weight: math.unit(70, "kg"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/kernel/front.svg",
  17981. extra: 222 / 210,
  17982. bottom: 0.007
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Nano",
  17989. height: math.unit(17, "micrometers")
  17990. },
  17991. {
  17992. name: "Micro",
  17993. height: math.unit(1.7, "mm")
  17994. },
  17995. {
  17996. name: "Small",
  17997. height: math.unit(1.7, "cm")
  17998. },
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(1.7, "m"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(1.75, "meters"),
  18011. weight: math.unit(65, "kg"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/jayne-folest/front.svg",
  18015. extra: 2115 / 2007,
  18016. bottom: 0.02
  18017. }
  18018. },
  18019. back: {
  18020. height: math.unit(1.75, "meters"),
  18021. weight: math.unit(65, "kg"),
  18022. name: "Back",
  18023. image: {
  18024. source: "./media/characters/jayne-folest/back.svg",
  18025. extra: 2115 / 2007,
  18026. bottom: 0.005
  18027. }
  18028. },
  18029. frontClothed: {
  18030. height: math.unit(1.75, "meters"),
  18031. weight: math.unit(65, "kg"),
  18032. name: "Front (Clothed)",
  18033. image: {
  18034. source: "./media/characters/jayne-folest/front-clothed.svg",
  18035. extra: 2115 / 2007,
  18036. bottom: 0.035
  18037. }
  18038. },
  18039. hand: {
  18040. height: math.unit(1 / 1.260, "feet"),
  18041. name: "Hand",
  18042. image: {
  18043. source: "./media/characters/jayne-folest/hand.svg"
  18044. }
  18045. },
  18046. foot: {
  18047. height: math.unit(1 / 0.918, "feet"),
  18048. name: "Foot",
  18049. image: {
  18050. source: "./media/characters/jayne-folest/foot.svg"
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Micro",
  18057. height: math.unit(4, "cm")
  18058. },
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(1.75, "meters")
  18062. },
  18063. {
  18064. name: "Macro",
  18065. height: math.unit(47.5, "meters"),
  18066. default: true
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(180, "cm"),
  18075. weight: math.unit(70, "kg"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/algier/front.svg",
  18079. extra: 596 / 572,
  18080. bottom: 0.04
  18081. }
  18082. },
  18083. back: {
  18084. height: math.unit(180, "cm"),
  18085. weight: math.unit(70, "kg"),
  18086. name: "Back",
  18087. image: {
  18088. source: "./media/characters/algier/back.svg",
  18089. extra: 596 / 572,
  18090. bottom: 0.025
  18091. }
  18092. },
  18093. frontdressed: {
  18094. height: math.unit(180, "cm"),
  18095. weight: math.unit(150, "kg"),
  18096. name: "Front-dressed",
  18097. image: {
  18098. source: "./media/characters/algier/front-dressed.svg",
  18099. extra: 596 / 572,
  18100. bottom: 0.038
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Micro",
  18107. height: math.unit(5, "cm")
  18108. },
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(180, "cm"),
  18112. default: true
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(64, "m")
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18122. {
  18123. upright: {
  18124. height: math.unit(7, "feet"),
  18125. weight: math.unit(300, "lb"),
  18126. name: "Upright",
  18127. image: {
  18128. source: "./media/characters/pretzel/upright.svg",
  18129. extra: 534 / 522,
  18130. bottom: 0.065
  18131. }
  18132. },
  18133. sprawling: {
  18134. height: math.unit(3.75, "feet"),
  18135. weight: math.unit(300, "lb"),
  18136. name: "Sprawling",
  18137. image: {
  18138. source: "./media/characters/pretzel/sprawling.svg",
  18139. extra: 314 / 281,
  18140. bottom: 0.1
  18141. }
  18142. },
  18143. tongue: {
  18144. height: math.unit(2, "feet"),
  18145. name: "Tongue",
  18146. image: {
  18147. source: "./media/characters/pretzel/tongue.svg"
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(7, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Oversized",
  18159. height: math.unit(15, "feet")
  18160. },
  18161. {
  18162. name: "Huge",
  18163. height: math.unit(30, "feet")
  18164. },
  18165. {
  18166. name: "Macro",
  18167. height: math.unit(250, "feet")
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18173. {
  18174. sideFront: {
  18175. height: math.unit(5 + 2 / 12, "feet"),
  18176. weight: math.unit(120, "lb"),
  18177. name: "Front Side",
  18178. image: {
  18179. source: "./media/characters/roxi/side-front.svg",
  18180. extra: 2924 / 2717,
  18181. bottom: 0.08
  18182. }
  18183. },
  18184. sideBack: {
  18185. height: math.unit(5 + 2 / 12, "feet"),
  18186. weight: math.unit(120, "lb"),
  18187. name: "Back Side",
  18188. image: {
  18189. source: "./media/characters/roxi/side-back.svg",
  18190. extra: 2904 / 2693,
  18191. bottom: 0.06
  18192. }
  18193. },
  18194. front: {
  18195. height: math.unit(5 + 2 / 12, "feet"),
  18196. weight: math.unit(120, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/roxi/front.svg",
  18200. extra: 2028 / 1907,
  18201. bottom: 0.01
  18202. }
  18203. },
  18204. frontAlt: {
  18205. height: math.unit(5 + 2 / 12, "feet"),
  18206. weight: math.unit(120, "lb"),
  18207. name: "Front (Alt)",
  18208. image: {
  18209. source: "./media/characters/roxi/front-alt.svg",
  18210. extra: 1828 / 1798,
  18211. bottom: 0.01
  18212. }
  18213. },
  18214. sitting: {
  18215. height: math.unit(2.8, "feet"),
  18216. weight: math.unit(120, "lb"),
  18217. name: "Sitting",
  18218. image: {
  18219. source: "./media/characters/roxi/sitting.svg",
  18220. extra: 2660 / 2462,
  18221. bottom: 0.1
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(5 + 2 / 12, "feet"),
  18229. default: true
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18235. {
  18236. side: {
  18237. height: math.unit(55, "feet"),
  18238. weight: math.unit(153, "tons"),
  18239. name: "Side",
  18240. image: {
  18241. source: "./media/characters/shadow/side.svg",
  18242. extra: 701 / 628,
  18243. bottom: 0.02
  18244. }
  18245. },
  18246. flying: {
  18247. height: math.unit(145, "feet"),
  18248. weight: math.unit(153, "tons"),
  18249. name: "Flying",
  18250. image: {
  18251. source: "./media/characters/shadow/flying.svg"
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(55, "feet"),
  18259. default: true
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(6, "feet"),
  18268. weight: math.unit(200, "lb"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/marcie/front.svg",
  18272. extra: 960 / 876,
  18273. bottom: 58 / 1017.87
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Macro",
  18280. height: math.unit(1, "mile"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18287. {
  18288. front: {
  18289. height: math.unit(7, "feet"),
  18290. weight: math.unit(200, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/kachina/front.svg",
  18294. extra: 1290.68 / 1119,
  18295. bottom: 36.5 / 1327.18
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(7, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18309. {
  18310. looking: {
  18311. height: math.unit(2, "meters"),
  18312. weight: math.unit(300, "kg"),
  18313. name: "Looking",
  18314. image: {
  18315. source: "./media/characters/kash/looking.svg",
  18316. extra: 474 / 344,
  18317. bottom: 0.03
  18318. }
  18319. },
  18320. side: {
  18321. height: math.unit(2, "meters"),
  18322. weight: math.unit(300, "kg"),
  18323. name: "Side",
  18324. image: {
  18325. source: "./media/characters/kash/side.svg",
  18326. extra: 302 / 251,
  18327. bottom: 0.03
  18328. }
  18329. },
  18330. front: {
  18331. height: math.unit(2, "meters"),
  18332. weight: math.unit(300, "kg"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/kash/front.svg",
  18336. extra: 495 / 360,
  18337. bottom: 0.015
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(2, "meters"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Big",
  18349. height: math.unit(3, "meters")
  18350. },
  18351. {
  18352. name: "Large",
  18353. height: math.unit(5, "meters")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18359. {
  18360. feeding: {
  18361. height: math.unit(6.7, "feet"),
  18362. weight: math.unit(350, "lb"),
  18363. name: "Feeding",
  18364. image: {
  18365. source: "./media/characters/lalim/feeding.svg",
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(6.7, "feet"),
  18373. default: true
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(9.5, "feet"),
  18382. weight: math.unit(600, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/de'vout/front.svg",
  18386. extra: 1443 / 1328,
  18387. bottom: 0.025
  18388. }
  18389. },
  18390. back: {
  18391. height: math.unit(9.5, "feet"),
  18392. weight: math.unit(600, "lb"),
  18393. name: "Back",
  18394. image: {
  18395. source: "./media/characters/de'vout/back.svg",
  18396. extra: 1443 / 1328
  18397. }
  18398. },
  18399. frontDressed: {
  18400. height: math.unit(9.5, "feet"),
  18401. weight: math.unit(600, "lb"),
  18402. name: "Front (Dressed",
  18403. image: {
  18404. source: "./media/characters/de'vout/front-dressed.svg",
  18405. extra: 1443 / 1328,
  18406. bottom: 0.025
  18407. }
  18408. },
  18409. backDressed: {
  18410. height: math.unit(9.5, "feet"),
  18411. weight: math.unit(600, "lb"),
  18412. name: "Back (Dressed",
  18413. image: {
  18414. source: "./media/characters/de'vout/back-dressed.svg",
  18415. extra: 1443 / 1328
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(9.5, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(8, "feet"),
  18432. weight: math.unit(225, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/talana/front.svg",
  18436. extra: 1410 / 1300,
  18437. bottom: 0.015
  18438. }
  18439. },
  18440. frontDressed: {
  18441. height: math.unit(8, "feet"),
  18442. weight: math.unit(225, "lb"),
  18443. name: "Front (Dressed",
  18444. image: {
  18445. source: "./media/characters/talana/front-dressed.svg",
  18446. extra: 1410 / 1300,
  18447. bottom: 0.015
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(8, "feet"),
  18455. default: true
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18461. {
  18462. side: {
  18463. height: math.unit(7.2, "feet"),
  18464. weight: math.unit(150, "lb"),
  18465. name: "Side",
  18466. image: {
  18467. source: "./media/characters/xeauvok/side.svg",
  18468. extra: 1975 / 1523,
  18469. bottom: 0.07
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(7.2, "feet"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18483. {
  18484. side: {
  18485. height: math.unit(10, "feet"),
  18486. weight: math.unit(900, "kg"),
  18487. name: "Side",
  18488. image: {
  18489. source: "./media/characters/zara/side.svg",
  18490. extra: 504 / 498
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(10, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18504. {
  18505. side: {
  18506. height: math.unit(6, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/richard-dragon/side.svg",
  18511. extra: 845 / 340,
  18512. bottom: 0.017
  18513. }
  18514. },
  18515. maw: {
  18516. height: math.unit(2.97, "feet"),
  18517. name: "Maw",
  18518. image: {
  18519. source: "./media/characters/richard-dragon/maw.svg"
  18520. }
  18521. },
  18522. },
  18523. [
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(4, "feet"),
  18531. weight: math.unit(100, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/richard-smeargle/front.svg",
  18535. extra: 2952 / 2820,
  18536. bottom: 0.028
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(4, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Dynamax",
  18548. height: math.unit(20, "meters")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(6, "feet"),
  18557. weight: math.unit(110, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/klay/front.svg",
  18561. extra: 962 / 883,
  18562. bottom: 0.04
  18563. }
  18564. },
  18565. back: {
  18566. height: math.unit(6, "feet"),
  18567. weight: math.unit(110, "lb"),
  18568. name: "Back",
  18569. image: {
  18570. source: "./media/characters/klay/back.svg",
  18571. extra: 962 / 883
  18572. }
  18573. },
  18574. beans: {
  18575. height: math.unit(1.15, "feet"),
  18576. name: "Beans",
  18577. image: {
  18578. source: "./media/characters/klay/beans.svg"
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Micro",
  18585. height: math.unit(6, "inches")
  18586. },
  18587. {
  18588. name: "Mini",
  18589. height: math.unit(3, "feet")
  18590. },
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(6, "feet"),
  18594. default: true
  18595. },
  18596. {
  18597. name: "Big",
  18598. height: math.unit(25, "feet")
  18599. },
  18600. {
  18601. name: "Macro",
  18602. height: math.unit(100, "feet")
  18603. },
  18604. {
  18605. name: "Megamacro",
  18606. height: math.unit(400, "feet")
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(6, "feet"),
  18615. weight: math.unit(160, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/marcus/front.svg",
  18619. extra: 734 / 676,
  18620. bottom: 0.03
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Little",
  18627. height: math.unit(6, "feet")
  18628. },
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(110, "feet"),
  18632. default: true
  18633. },
  18634. {
  18635. name: "Macro",
  18636. height: math.unit(250, "feet")
  18637. },
  18638. {
  18639. name: "Megamacro",
  18640. height: math.unit(1000, "feet")
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(7, "feet"),
  18649. weight: math.unit(275, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/claude-delroute/front.svg",
  18653. extra: 902/827,
  18654. bottom: 26/928
  18655. }
  18656. },
  18657. side: {
  18658. height: math.unit(7, "feet"),
  18659. weight: math.unit(275, "lb"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/claude-delroute/side.svg",
  18663. extra: 908/853,
  18664. bottom: 16/924
  18665. }
  18666. },
  18667. back: {
  18668. height: math.unit(7, "feet"),
  18669. weight: math.unit(275, "lb"),
  18670. name: "Back",
  18671. image: {
  18672. source: "./media/characters/claude-delroute/back.svg",
  18673. extra: 911/829,
  18674. bottom: 18/929
  18675. }
  18676. },
  18677. maw: {
  18678. height: math.unit(0.6407, "meters"),
  18679. name: "Maw",
  18680. image: {
  18681. source: "./media/characters/claude-delroute/maw.svg"
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(7, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Lorge",
  18693. height: math.unit(20, "feet")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(8 + 4 / 12, "feet"),
  18702. weight: math.unit(600, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/dragonien/front.svg",
  18706. extra: 100 / 94,
  18707. bottom: 3.3 / 103.3445
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(8 + 4 / 12, "feet"),
  18712. weight: math.unit(600, "lb"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/dragonien/back.svg",
  18716. extra: 776 / 746,
  18717. bottom: 6.4 / 782.0616
  18718. }
  18719. },
  18720. foot: {
  18721. height: math.unit(1.54, "feet"),
  18722. name: "Foot",
  18723. image: {
  18724. source: "./media/characters/dragonien/foot.svg",
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(8 + 4 / 12, "feet"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(200, "feet")
  18737. },
  18738. {
  18739. name: "Megamacro",
  18740. height: math.unit(1, "mile")
  18741. },
  18742. {
  18743. name: "Gigamacro",
  18744. height: math.unit(1000, "miles")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(5 + 2 / 12, "feet"),
  18753. weight: math.unit(110, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/desta/front.svg",
  18757. extra: 767 / 726,
  18758. bottom: 11.7 / 779
  18759. }
  18760. },
  18761. back: {
  18762. height: math.unit(5 + 2 / 12, "feet"),
  18763. weight: math.unit(110, "lb"),
  18764. name: "Back",
  18765. image: {
  18766. source: "./media/characters/desta/back.svg",
  18767. extra: 777 / 728,
  18768. bottom: 6 / 784
  18769. }
  18770. },
  18771. frontAlt: {
  18772. height: math.unit(5 + 2 / 12, "feet"),
  18773. weight: math.unit(110, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/desta/front-alt.svg",
  18777. extra: 1482 / 1417
  18778. }
  18779. },
  18780. side: {
  18781. height: math.unit(5 + 2 / 12, "feet"),
  18782. weight: math.unit(110, "lb"),
  18783. name: "Side",
  18784. image: {
  18785. source: "./media/characters/desta/side.svg",
  18786. extra: 2579 / 2491,
  18787. bottom: 0.053
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(6, "inches")
  18795. },
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(5 + 2 / 12, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(62, "feet")
  18804. },
  18805. {
  18806. name: "Megamacro",
  18807. height: math.unit(1800, "feet")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(10, "feet"),
  18816. weight: math.unit(700, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/storm-alystar/front.svg",
  18820. extra: 2112 / 1898,
  18821. bottom: 0.034
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Micro",
  18828. height: math.unit(3.5, "inches")
  18829. },
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(10, "feet"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(400, "feet")
  18838. },
  18839. {
  18840. name: "Deific",
  18841. height: math.unit(60, "miles")
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(2.35, "meters"),
  18850. weight: math.unit(119, "kg"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/ilia/front.svg",
  18854. extra: 1285 / 1255,
  18855. bottom: 0.06
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(2.35, "meters")
  18863. },
  18864. {
  18865. name: "Macro",
  18866. height: math.unit(140, "meters"),
  18867. default: true
  18868. },
  18869. {
  18870. name: "Megamacro",
  18871. height: math.unit(100, "miles")
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6 + 5 / 12, "feet"),
  18880. weight: math.unit(190, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/kingdead/front.svg",
  18884. extra: 1228 / 1177
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Micro",
  18891. height: math.unit(7, "inches")
  18892. },
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(6 + 5 / 12, "feet")
  18896. },
  18897. {
  18898. name: "Macro",
  18899. height: math.unit(150, "feet"),
  18900. default: true
  18901. },
  18902. {
  18903. name: "Megamacro",
  18904. height: math.unit(200, "miles")
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(8, "feet"),
  18913. weight: math.unit(600, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/kyrehx/front.svg",
  18917. extra: 1195 / 1095,
  18918. bottom: 0.034
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Micro",
  18925. height: math.unit(2, "inches")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(8, "feet"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(255, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18943. weight: math.unit(184, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/xang/front.svg",
  18947. extra: 845 / 755
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18955. default: true
  18956. },
  18957. {
  18958. name: "Macro",
  18959. height: math.unit(0.935 * 146, "feet")
  18960. },
  18961. {
  18962. name: "Megamacro",
  18963. height: math.unit(0.935 * 3, "miles")
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18969. {
  18970. frontDressed: {
  18971. height: math.unit(5 + 7 / 12, "feet"),
  18972. weight: math.unit(140, "lb"),
  18973. name: "Front (Dressed)",
  18974. image: {
  18975. source: "./media/characters/doc-weardno/front-dressed.svg",
  18976. extra: 263 / 234
  18977. }
  18978. },
  18979. backDressed: {
  18980. height: math.unit(5 + 7 / 12, "feet"),
  18981. weight: math.unit(140, "lb"),
  18982. name: "Back (Dressed)",
  18983. image: {
  18984. source: "./media/characters/doc-weardno/back-dressed.svg",
  18985. extra: 266 / 238
  18986. }
  18987. },
  18988. front: {
  18989. height: math.unit(5 + 7 / 12, "feet"),
  18990. weight: math.unit(140, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/doc-weardno/front.svg",
  18994. extra: 254 / 233
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Micro",
  19001. height: math.unit(3, "inches")
  19002. },
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(25, "feet")
  19011. },
  19012. {
  19013. name: "Megamacro",
  19014. height: math.unit(2, "miles")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(6 + 2 / 12, "feet"),
  19023. weight: math.unit(153, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/seth-whilst/front.svg",
  19027. bottom: 0.07
  19028. }
  19029. },
  19030. },
  19031. [
  19032. {
  19033. name: "Micro",
  19034. height: math.unit(5, "inches")
  19035. },
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(6 + 2 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(3, "inches"),
  19048. weight: math.unit(8, "grams"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/pocket-jabari/front.svg",
  19052. extra: 1024 / 974,
  19053. bottom: 0.039
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Minimicro",
  19060. height: math.unit(8, "mm")
  19061. },
  19062. {
  19063. name: "Micro",
  19064. height: math.unit(3, "inches"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(3, "feet")
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(15, "feet"),
  19078. weight: math.unit(3280, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/sapphy/front.svg",
  19082. extra: 671 / 577,
  19083. bottom: 0.085
  19084. }
  19085. },
  19086. back: {
  19087. height: math.unit(15, "feet"),
  19088. weight: math.unit(3280, "lb"),
  19089. name: "Back",
  19090. image: {
  19091. source: "./media/characters/sapphy/back.svg",
  19092. extra: 631 / 607,
  19093. bottom: 0.045
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(15, "feet")
  19101. },
  19102. {
  19103. name: "Casual Macro",
  19104. height: math.unit(120, "feet")
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(2150, "feet"),
  19109. default: true
  19110. },
  19111. {
  19112. name: "Megamacro",
  19113. height: math.unit(8, "miles")
  19114. },
  19115. {
  19116. name: "Galaxy Mom",
  19117. height: math.unit(6, "megalightyears")
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19123. {
  19124. front: {
  19125. height: math.unit(6, "feet"),
  19126. weight: math.unit(170, "lb"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/kiro/front.svg",
  19130. extra: 1064 / 1012,
  19131. bottom: 0.052
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Micro",
  19138. height: math.unit(6, "inches")
  19139. },
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(6, "feet"),
  19143. default: true
  19144. },
  19145. {
  19146. name: "Macro",
  19147. height: math.unit(72, "feet")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(5 + 9 / 12, "feet"),
  19156. weight: math.unit(175, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/irishfox/front.svg",
  19160. extra: 1912 / 1680,
  19161. bottom: 0.02
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Nano",
  19168. height: math.unit(1, "mm")
  19169. },
  19170. {
  19171. name: "Micro",
  19172. height: math.unit(2, "inches")
  19173. },
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(5 + 9 / 12, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Macro",
  19181. height: math.unit(45, "feet")
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(6 + 1 / 12, "feet"),
  19190. weight: math.unit(75, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/aronai-sieyes/front.svg",
  19194. extra: 1532/1450,
  19195. bottom: 42/1574
  19196. }
  19197. },
  19198. side: {
  19199. height: math.unit(6 + 1 / 12, "feet"),
  19200. weight: math.unit(75, "lb"),
  19201. name: "Side",
  19202. image: {
  19203. source: "./media/characters/aronai-sieyes/side.svg",
  19204. extra: 1422/1365,
  19205. bottom: 148/1570
  19206. }
  19207. },
  19208. back: {
  19209. height: math.unit(6 + 1 / 12, "feet"),
  19210. weight: math.unit(75, "lb"),
  19211. name: "Back",
  19212. image: {
  19213. source: "./media/characters/aronai-sieyes/back.svg",
  19214. extra: 1526/1464,
  19215. bottom: 51/1577
  19216. }
  19217. },
  19218. dressed: {
  19219. height: math.unit(6 + 1 / 12, "feet"),
  19220. weight: math.unit(75, "lb"),
  19221. name: "Dressed",
  19222. image: {
  19223. source: "./media/characters/aronai-sieyes/dressed.svg",
  19224. extra: 1559/1483,
  19225. bottom: 39/1598
  19226. }
  19227. },
  19228. slit: {
  19229. height: math.unit(1.3, "feet"),
  19230. name: "Slit",
  19231. image: {
  19232. source: "./media/characters/aronai-sieyes/slit.svg"
  19233. }
  19234. },
  19235. slitSpread: {
  19236. height: math.unit(0.9, "feet"),
  19237. name: "Slit (Spread)",
  19238. image: {
  19239. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19240. }
  19241. },
  19242. rump: {
  19243. height: math.unit(1.3, "feet"),
  19244. name: "Rump",
  19245. image: {
  19246. source: "./media/characters/aronai-sieyes/rump.svg"
  19247. }
  19248. },
  19249. maw: {
  19250. height: math.unit(1.25, "feet"),
  19251. name: "Maw",
  19252. image: {
  19253. source: "./media/characters/aronai-sieyes/maw.svg"
  19254. }
  19255. },
  19256. feral: {
  19257. height: math.unit(18, "feet"),
  19258. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19259. name: "Feral",
  19260. image: {
  19261. source: "./media/characters/aronai-sieyes/feral.svg",
  19262. extra: 1530 / 1240,
  19263. bottom: 0.035
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(2, "inches")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(6 + 1 / 12, "feet"),
  19275. default: true
  19276. }
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(12, "feet"),
  19284. weight: math.unit(410, "kg"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/xuna/front.svg",
  19288. extra: 2184 / 1980
  19289. }
  19290. },
  19291. side: {
  19292. height: math.unit(12, "feet"),
  19293. weight: math.unit(410, "kg"),
  19294. name: "Side",
  19295. image: {
  19296. source: "./media/characters/xuna/side.svg",
  19297. extra: 2184 / 1980
  19298. }
  19299. },
  19300. back: {
  19301. height: math.unit(12, "feet"),
  19302. weight: math.unit(410, "kg"),
  19303. name: "Back",
  19304. image: {
  19305. source: "./media/characters/xuna/back.svg",
  19306. extra: 2184 / 1980
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Nano glow",
  19313. height: math.unit(10, "nm")
  19314. },
  19315. {
  19316. name: "Micro floof",
  19317. height: math.unit(0.3, "m")
  19318. },
  19319. {
  19320. name: "Huggable softy boi",
  19321. height: math.unit(3.6576, "m"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Admirable floof",
  19326. height: math.unit(80, "meters")
  19327. },
  19328. {
  19329. name: "Gentle macro",
  19330. height: math.unit(300, "meters")
  19331. },
  19332. {
  19333. name: "Very careful floof",
  19334. height: math.unit(3200, "meters")
  19335. },
  19336. {
  19337. name: "The mega floof",
  19338. height: math.unit(36000, "meters")
  19339. },
  19340. {
  19341. name: "Giga-fur-Wicker",
  19342. height: math.unit(4800000, "meters")
  19343. },
  19344. {
  19345. name: "Licky world",
  19346. height: math.unit(20000000, "meters")
  19347. },
  19348. {
  19349. name: "Floofy cyan sun",
  19350. height: math.unit(1500000000, "meters")
  19351. },
  19352. {
  19353. name: "Milky Wicker",
  19354. height: math.unit(1000000000000000000000, "meters")
  19355. },
  19356. {
  19357. name: "The observing Wicker",
  19358. height: math.unit(999999999999999999999999999, "meters")
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(5 + 9 / 12, "feet"),
  19367. weight: math.unit(150, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/arokha-sieyes/front.svg",
  19371. extra: 1425 / 1284,
  19372. bottom: 0.05
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(5 + 9 / 12, "feet")
  19380. },
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(30, "meters"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(6, "feet"),
  19393. weight: math.unit(180, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/arokh-sieyes/front.svg",
  19397. extra: 1830 / 1769,
  19398. bottom: 0.01
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6, "feet")
  19406. },
  19407. {
  19408. name: "Macro",
  19409. height: math.unit(30, "meters"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19416. {
  19417. side: {
  19418. height: math.unit(13 + 1 / 12, "feet"),
  19419. weight: math.unit(8.5, "tonnes"),
  19420. name: "Side",
  19421. image: {
  19422. source: "./media/characters/goldeneye/side.svg",
  19423. extra: 1182 / 778,
  19424. bottom: 0.067
  19425. }
  19426. },
  19427. paw: {
  19428. height: math.unit(3.4, "feet"),
  19429. name: "Paw",
  19430. image: {
  19431. source: "./media/characters/goldeneye/paw.svg"
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(13 + 1 / 12, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19445. {
  19446. front: {
  19447. height: math.unit(6 + 1 / 12, "feet"),
  19448. weight: math.unit(210, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/leonardo-lycheborne/front.svg",
  19452. extra: 776/723,
  19453. bottom: 34/810
  19454. }
  19455. },
  19456. side: {
  19457. height: math.unit(6 + 1 / 12, "feet"),
  19458. weight: math.unit(210, "lb"),
  19459. name: "Side",
  19460. image: {
  19461. source: "./media/characters/leonardo-lycheborne/side.svg",
  19462. extra: 780/728,
  19463. bottom: 12/792
  19464. }
  19465. },
  19466. back: {
  19467. height: math.unit(6 + 1 / 12, "feet"),
  19468. weight: math.unit(210, "lb"),
  19469. name: "Back",
  19470. image: {
  19471. source: "./media/characters/leonardo-lycheborne/back.svg",
  19472. extra: 775/721,
  19473. bottom: 17/792
  19474. }
  19475. },
  19476. hand: {
  19477. height: math.unit(1.08, "feet"),
  19478. name: "Hand",
  19479. image: {
  19480. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19481. }
  19482. },
  19483. foot: {
  19484. height: math.unit(1.32, "feet"),
  19485. name: "Foot",
  19486. image: {
  19487. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19488. }
  19489. },
  19490. maw: {
  19491. height: math.unit(1, "feet"),
  19492. name: "Maw",
  19493. image: {
  19494. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19495. }
  19496. },
  19497. were: {
  19498. height: math.unit(20, "feet"),
  19499. weight: math.unit(7800, "lb"),
  19500. name: "Were",
  19501. image: {
  19502. source: "./media/characters/leonardo-lycheborne/were.svg",
  19503. extra: 1224/1165,
  19504. bottom: 72/1296
  19505. }
  19506. },
  19507. feral: {
  19508. height: math.unit(7.5, "feet"),
  19509. weight: math.unit(600, "lb"),
  19510. name: "Feral",
  19511. image: {
  19512. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19513. extra: 797/702,
  19514. bottom: 139/936
  19515. }
  19516. },
  19517. taur: {
  19518. height: math.unit(11, "feet"),
  19519. weight: math.unit(3300, "lb"),
  19520. name: "Taur",
  19521. image: {
  19522. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19523. extra: 1271/1197,
  19524. bottom: 47/1318
  19525. }
  19526. },
  19527. barghest: {
  19528. height: math.unit(11, "feet"),
  19529. weight: math.unit(1300, "lb"),
  19530. name: "Barghest",
  19531. image: {
  19532. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19533. extra: 1291/1204,
  19534. bottom: 37/1328
  19535. }
  19536. },
  19537. dick: {
  19538. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19539. name: "Dick",
  19540. image: {
  19541. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19542. }
  19543. },
  19544. dickWere: {
  19545. height: math.unit((20) / 3.8, "feet"),
  19546. name: "Dick (Were)",
  19547. image: {
  19548. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(6 + 1 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(10, "feet"),
  19565. weight: math.unit(350, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/jet/front.svg",
  19569. extra: 2050 / 1980,
  19570. bottom: 0.013
  19571. }
  19572. },
  19573. back: {
  19574. height: math.unit(10, "feet"),
  19575. weight: math.unit(350, "lb"),
  19576. name: "Back",
  19577. image: {
  19578. source: "./media/characters/jet/back.svg",
  19579. extra: 2050 / 1980,
  19580. bottom: 0.013
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Micro",
  19587. height: math.unit(6, "inches")
  19588. },
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(10, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(100, "feet")
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19602. {
  19603. front: {
  19604. height: math.unit(15, "feet"),
  19605. weight: math.unit(2800, "lb"),
  19606. name: "Front",
  19607. image: {
  19608. source: "./media/characters/tanarath/front.svg",
  19609. extra: 2392 / 2220,
  19610. bottom: 0.03
  19611. }
  19612. },
  19613. back: {
  19614. height: math.unit(15, "feet"),
  19615. weight: math.unit(2800, "lb"),
  19616. name: "Back",
  19617. image: {
  19618. source: "./media/characters/tanarath/back.svg",
  19619. extra: 2392 / 2220,
  19620. bottom: 0.03
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(15, "feet"),
  19628. default: true
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(7 + 1 / 12, "feet"),
  19637. weight: math.unit(175, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/patty-cattybatty/front.svg",
  19641. extra: 908 / 874,
  19642. bottom: 0.025
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Micro",
  19649. height: math.unit(1, "inch")
  19650. },
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(7 + 1 / 12, "feet")
  19654. },
  19655. {
  19656. name: "Mini Macro",
  19657. height: math.unit(155, "feet")
  19658. },
  19659. {
  19660. name: "Macro",
  19661. height: math.unit(1077, "feet")
  19662. },
  19663. {
  19664. name: "Mega Macro",
  19665. height: math.unit(47650, "feet"),
  19666. default: true
  19667. },
  19668. {
  19669. name: "Giga Macro",
  19670. height: math.unit(440, "miles")
  19671. },
  19672. {
  19673. name: "Tera Macro",
  19674. height: math.unit(8700, "miles")
  19675. },
  19676. {
  19677. name: "Planetary Macro",
  19678. height: math.unit(32700, "miles")
  19679. },
  19680. {
  19681. name: "Solar Macro",
  19682. height: math.unit(550000, "miles")
  19683. },
  19684. {
  19685. name: "Celestial Macro",
  19686. height: math.unit(2.5, "AU")
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19692. {
  19693. front: {
  19694. height: math.unit(4 + 5 / 12, "feet"),
  19695. weight: math.unit(90, "lb"),
  19696. name: "Front",
  19697. image: {
  19698. source: "./media/characters/cappu/front.svg",
  19699. extra: 1247 / 1152,
  19700. bottom: 0.012
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(4 + 5 / 12, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19714. {
  19715. frontDressed: {
  19716. height: math.unit(70, "cm"),
  19717. weight: math.unit(6, "kg"),
  19718. name: "Front (Dressed)",
  19719. image: {
  19720. source: "./media/characters/sebi/front-dressed.svg",
  19721. extra: 713.5 / 686.5,
  19722. bottom: 0.003
  19723. }
  19724. },
  19725. front: {
  19726. height: math.unit(70, "cm"),
  19727. weight: math.unit(5, "kg"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/sebi/front.svg",
  19731. extra: 713.5 / 686.5,
  19732. bottom: 0.003
  19733. }
  19734. }
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(70, "cm"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Macro",
  19744. height: math.unit(8, "meters")
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(6, "feet"),
  19753. weight: math.unit(150, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/typhek/front.svg",
  19757. extra: 1948 / 1929,
  19758. bottom: 0.025
  19759. }
  19760. },
  19761. side: {
  19762. height: math.unit(6, "feet"),
  19763. weight: math.unit(150, "lb"),
  19764. name: "Side",
  19765. image: {
  19766. source: "./media/characters/typhek/side.svg",
  19767. extra: 2034 / 2010,
  19768. bottom: 0.003
  19769. }
  19770. },
  19771. back: {
  19772. height: math.unit(6, "feet"),
  19773. weight: math.unit(150, "lb"),
  19774. name: "Back",
  19775. image: {
  19776. source: "./media/characters/typhek/back.svg",
  19777. extra: 2005 / 1978,
  19778. bottom: 0.004
  19779. }
  19780. },
  19781. palm: {
  19782. height: math.unit(1.2, "feet"),
  19783. name: "Palm",
  19784. image: {
  19785. source: "./media/characters/typhek/palm.svg"
  19786. }
  19787. },
  19788. fist: {
  19789. height: math.unit(1.1, "feet"),
  19790. name: "Fist",
  19791. image: {
  19792. source: "./media/characters/typhek/fist.svg"
  19793. }
  19794. },
  19795. foot: {
  19796. height: math.unit(1.57, "feet"),
  19797. name: "Foot",
  19798. image: {
  19799. source: "./media/characters/typhek/foot.svg"
  19800. }
  19801. },
  19802. sole: {
  19803. height: math.unit(2.05, "feet"),
  19804. name: "Sole",
  19805. image: {
  19806. source: "./media/characters/typhek/sole.svg"
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(40, "stories"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Megamacro",
  19818. height: math.unit(1, "mile")
  19819. },
  19820. {
  19821. name: "Gigamacro",
  19822. height: math.unit(4000, "solarradii")
  19823. },
  19824. {
  19825. name: "Universal",
  19826. height: math.unit(1.1, "universes")
  19827. }
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19832. {
  19833. side: {
  19834. height: math.unit(5 + 7 / 12, "feet"),
  19835. weight: math.unit(150, "lb"),
  19836. name: "Side",
  19837. image: {
  19838. source: "./media/characters/kassy/side.svg",
  19839. extra: 1280 / 1225,
  19840. bottom: 0.002
  19841. }
  19842. },
  19843. front: {
  19844. height: math.unit(5 + 7 / 12, "feet"),
  19845. weight: math.unit(150, "lb"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/kassy/front.svg",
  19849. extra: 1280 / 1225,
  19850. bottom: 0.025
  19851. }
  19852. },
  19853. back: {
  19854. height: math.unit(5 + 7 / 12, "feet"),
  19855. weight: math.unit(150, "lb"),
  19856. name: "Back",
  19857. image: {
  19858. source: "./media/characters/kassy/back.svg",
  19859. extra: 1280 / 1225,
  19860. bottom: 0.002
  19861. }
  19862. },
  19863. foot: {
  19864. height: math.unit(1.266, "feet"),
  19865. name: "Foot",
  19866. image: {
  19867. source: "./media/characters/kassy/foot.svg"
  19868. }
  19869. },
  19870. },
  19871. [
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(5 + 7 / 12, "feet")
  19875. },
  19876. {
  19877. name: "Macro",
  19878. height: math.unit(137, "feet"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Megamacro",
  19883. height: math.unit(1, "mile")
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19889. {
  19890. front: {
  19891. height: math.unit(6 + 1 / 12, "feet"),
  19892. weight: math.unit(200, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/neil/front.svg",
  19896. extra: 1326 / 1250,
  19897. bottom: 0.023
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(6 + 1 / 12, "feet"),
  19905. default: true
  19906. },
  19907. {
  19908. name: "Macro",
  19909. height: math.unit(200, "feet")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(5 + 9 / 12, "feet"),
  19918. weight: math.unit(190, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/atticus/front.svg",
  19922. extra: 2934 / 2785,
  19923. bottom: 0.025
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(5 + 9 / 12, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Macro",
  19935. height: math.unit(180, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19941. {
  19942. side: {
  19943. height: math.unit(9, "feet"),
  19944. weight: math.unit(650, "lb"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/milo/side.svg",
  19948. extra: 2644 / 2310,
  19949. bottom: 0.032
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(9, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(300, "feet")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19967. {
  19968. side: {
  19969. height: math.unit(8, "meters"),
  19970. weight: math.unit(90000, "kg"),
  19971. name: "Side",
  19972. image: {
  19973. source: "./media/characters/ijzer/side.svg",
  19974. extra: 2756 / 1600,
  19975. bottom: 0.01
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Small",
  19982. height: math.unit(3, "meters")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(8, "meters"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Normal+",
  19991. height: math.unit(10, "meters")
  19992. },
  19993. {
  19994. name: "Bigger",
  19995. height: math.unit(24, "meters")
  19996. },
  19997. {
  19998. name: "Huge",
  19999. height: math.unit(80, "meters")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(6 + 2 / 12, "feet"),
  20008. weight: math.unit(153, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/luca-cervicum/front.svg",
  20012. extra: 370 / 327,
  20013. bottom: 0.015
  20014. }
  20015. },
  20016. back: {
  20017. height: math.unit(6 + 2 / 12, "feet"),
  20018. weight: math.unit(153, "lb"),
  20019. name: "Back",
  20020. image: {
  20021. source: "./media/characters/luca-cervicum/back.svg",
  20022. extra: 367 / 333,
  20023. bottom: 0.005
  20024. }
  20025. },
  20026. frontGear: {
  20027. height: math.unit(6 + 2 / 12, "feet"),
  20028. weight: math.unit(173, "lb"),
  20029. name: "Front (Gear)",
  20030. image: {
  20031. source: "./media/characters/luca-cervicum/front-gear.svg",
  20032. extra: 377 / 333,
  20033. bottom: 0.006
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(6 + 2 / 12, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(6 + 1 / 12, "feet"),
  20050. weight: math.unit(304, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/oliver/front.svg",
  20054. extra: 157 / 143,
  20055. bottom: 0.08
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(6 + 1 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(5 + 7 / 12, "feet"),
  20072. weight: math.unit(140, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/shane/front.svg",
  20076. extra: 304 / 289,
  20077. bottom: 0.005
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 7 / 12, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(5 + 9 / 12, "feet"),
  20094. weight: math.unit(178, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/shin/front.svg",
  20098. extra: 159 / 151,
  20099. bottom: 0.015
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(5 + 9 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(5 + 10 / 12, "feet"),
  20116. weight: math.unit(168, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/xerxes/front.svg",
  20120. extra: 282 / 260,
  20121. bottom: 0.045
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(5 + 10 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6 + 7 / 12, "feet"),
  20138. weight: math.unit(208, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/chaska/front.svg",
  20142. extra: 332 / 319,
  20143. bottom: 0.015
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(6 + 7 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(5 + 8 / 12, "feet"),
  20160. weight: math.unit(208, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/enuk/front.svg",
  20164. extra: 437 / 406,
  20165. bottom: 0.02
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 8 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(5 + 10 / 12, "feet"),
  20182. weight: math.unit(252, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/bruun/front.svg",
  20186. extra: 197 / 187,
  20187. bottom: 0.012
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Normal",
  20194. height: math.unit(5 + 10 / 12, "feet"),
  20195. default: true
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20201. {
  20202. front: {
  20203. height: math.unit(6 + 10 / 12, "feet"),
  20204. weight: math.unit(255, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/alexeev/front.svg",
  20208. extra: 213 / 200,
  20209. bottom: 0.05
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(6 + 10 / 12, "feet"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20223. {
  20224. front: {
  20225. height: math.unit(2 + 8 / 12, "feet"),
  20226. weight: math.unit(22, "lb"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/evelyn/front.svg",
  20230. extra: 208 / 180
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(2 + 8 / 12, "feet"),
  20238. default: true
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(5 + 9 / 12, "feet"),
  20247. weight: math.unit(139, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/inca/front.svg",
  20251. extra: 294 / 291,
  20252. bottom: 0.03
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(5 + 9 / 12, "feet"),
  20260. default: true
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20266. {
  20267. front: {
  20268. height: math.unit(6 + 3 / 12, "feet"),
  20269. weight: math.unit(185, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/mera/front.svg",
  20273. extra: 291 / 277,
  20274. bottom: 0.03
  20275. }
  20276. },
  20277. },
  20278. [
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(6 + 3 / 12, "feet"),
  20282. default: true
  20283. },
  20284. ]
  20285. ))
  20286. characterMakers.push(() => makeCharacter(
  20287. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20288. {
  20289. front: {
  20290. height: math.unit(6 + 7 / 12, "feet"),
  20291. weight: math.unit(160, "lb"),
  20292. name: "Front",
  20293. image: {
  20294. source: "./media/characters/ceres/front.svg",
  20295. extra: 1023 / 950,
  20296. bottom: 0.027
  20297. }
  20298. },
  20299. back: {
  20300. height: math.unit(6 + 7 / 12, "feet"),
  20301. weight: math.unit(160, "lb"),
  20302. name: "Back",
  20303. image: {
  20304. source: "./media/characters/ceres/back.svg",
  20305. extra: 1023 / 950
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(6 + 7 / 12, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20319. {
  20320. front: {
  20321. height: math.unit(5 + 10 / 12, "feet"),
  20322. weight: math.unit(150, "lb"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/kris/front.svg",
  20326. extra: 885 / 803,
  20327. bottom: 0.03
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(5 + 10 / 12, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(7, "feet"),
  20344. weight: math.unit(120, "kg"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/taluthus/front.svg",
  20348. extra: 903 / 833,
  20349. bottom: 0.015
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(7, "feet"),
  20357. default: true
  20358. },
  20359. {
  20360. name: "Macro",
  20361. height: math.unit(300, "feet")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20367. {
  20368. front: {
  20369. height: math.unit(5 + 9 / 12, "feet"),
  20370. weight: math.unit(145, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/dawn/front.svg",
  20374. extra: 2094 / 2016,
  20375. bottom: 0.025
  20376. }
  20377. },
  20378. back: {
  20379. height: math.unit(5 + 9 / 12, "feet"),
  20380. weight: math.unit(160, "lb"),
  20381. name: "Back",
  20382. image: {
  20383. source: "./media/characters/dawn/back.svg",
  20384. extra: 2112 / 2080,
  20385. bottom: 0.005
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(6 + 7 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20399. {
  20400. anthro: {
  20401. height: math.unit(8 + 3 / 12, "feet"),
  20402. weight: math.unit(450, "lb"),
  20403. name: "Anthro",
  20404. image: {
  20405. source: "./media/characters/arador/anthro.svg",
  20406. extra: 1835 / 1718,
  20407. bottom: 0.025
  20408. }
  20409. },
  20410. feral: {
  20411. height: math.unit(4, "feet"),
  20412. weight: math.unit(200, "lb"),
  20413. name: "Feral",
  20414. image: {
  20415. source: "./media/characters/arador/feral.svg",
  20416. extra: 1683 / 1514,
  20417. bottom: 0.07
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(8 + 3 / 12, "feet")
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(82.5, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(5 + 10 / 12, "feet"),
  20438. weight: math.unit(125, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/dharsi/front.svg",
  20442. extra: 716 / 630,
  20443. bottom: 0.035
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Nano",
  20450. height: math.unit(100, "nm")
  20451. },
  20452. {
  20453. name: "Micro",
  20454. height: math.unit(2, "inches")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(5 + 10 / 12, "feet"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(1000, "feet")
  20464. },
  20465. {
  20466. name: "Megamacro",
  20467. height: math.unit(10, "miles")
  20468. },
  20469. {
  20470. name: "Gigamacro",
  20471. height: math.unit(3000, "miles")
  20472. },
  20473. {
  20474. name: "Teramacro",
  20475. height: math.unit(500000, "miles")
  20476. },
  20477. {
  20478. name: "Teramacro+",
  20479. height: math.unit(30, "galaxies")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(6, "feet"),
  20488. weight: math.unit(150, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/deathy/front.svg",
  20492. extra: 1552 / 1463,
  20493. bottom: 0.025
  20494. }
  20495. },
  20496. side: {
  20497. height: math.unit(6, "feet"),
  20498. weight: math.unit(150, "lb"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/deathy/side.svg",
  20502. extra: 1604 / 1455,
  20503. bottom: 0.025
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(6, "feet"),
  20508. weight: math.unit(150, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/deathy/back.svg",
  20512. extra: 1580 / 1463,
  20513. bottom: 0.005
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Micro",
  20520. height: math.unit(5, "millimeters")
  20521. },
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(6 + 5 / 12, "feet"),
  20525. default: true
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20531. {
  20532. front: {
  20533. height: math.unit(16, "feet"),
  20534. weight: math.unit(4000, "lb"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/juniper/front.svg",
  20538. bottom: 0.04
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(16, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(6, "feet"),
  20555. weight: math.unit(150, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/hipster/front.svg",
  20559. extra: 1312 / 1209,
  20560. bottom: 0.025
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(6, "feet"),
  20565. weight: math.unit(150, "lb"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/hipster/back.svg",
  20569. extra: 1281 / 1196,
  20570. bottom: 0.01
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(1, "mm")
  20578. },
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(4, "inches"),
  20582. default: true
  20583. },
  20584. {
  20585. name: "Macro",
  20586. height: math.unit(500, "feet")
  20587. },
  20588. {
  20589. name: "Megamacro",
  20590. height: math.unit(1000, "miles")
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20596. {
  20597. front: {
  20598. height: math.unit(6, "feet"),
  20599. weight: math.unit(150, "lb"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/tendirmuldr/front.svg",
  20603. extra: 1878 / 1772,
  20604. bottom: 0.015
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Megamacro",
  20611. height: math.unit(1500, "miles"),
  20612. default: true
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20618. {
  20619. front: {
  20620. height: math.unit(14, "feet"),
  20621. weight: math.unit(12000, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/mort/front.svg",
  20625. extra: 365 / 318,
  20626. bottom: 0.01
  20627. }
  20628. },
  20629. side: {
  20630. height: math.unit(14, "feet"),
  20631. weight: math.unit(12000, "lb"),
  20632. name: "Side",
  20633. image: {
  20634. source: "./media/characters/mort/side.svg",
  20635. extra: 365 / 318,
  20636. bottom: 0.052
  20637. },
  20638. default: true
  20639. },
  20640. back: {
  20641. height: math.unit(14, "feet"),
  20642. weight: math.unit(12000, "lb"),
  20643. name: "Back",
  20644. image: {
  20645. source: "./media/characters/mort/back.svg",
  20646. extra: 371 / 332,
  20647. bottom: 0.18
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(14, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20661. {
  20662. front: {
  20663. height: math.unit(8, "feet"),
  20664. weight: math.unit(1, "ton"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/lycoa/front.svg",
  20668. extra: 1875 / 1789,
  20669. bottom: 0.022
  20670. }
  20671. },
  20672. back: {
  20673. height: math.unit(8, "feet"),
  20674. weight: math.unit(1, "ton"),
  20675. name: "Back",
  20676. image: {
  20677. source: "./media/characters/lycoa/back.svg",
  20678. extra: 1835 / 1781,
  20679. bottom: 0.03
  20680. }
  20681. },
  20682. head: {
  20683. height: math.unit(2.1, "feet"),
  20684. name: "Head",
  20685. image: {
  20686. source: "./media/characters/lycoa/head.svg"
  20687. }
  20688. },
  20689. tailmaw: {
  20690. height: math.unit(1.9, "feet"),
  20691. name: "Tailmaw",
  20692. image: {
  20693. source: "./media/characters/lycoa/tailmaw.svg"
  20694. }
  20695. },
  20696. tentacles: {
  20697. height: math.unit(2.1, "feet"),
  20698. name: "Tentacles",
  20699. image: {
  20700. source: "./media/characters/lycoa/tentacles.svg"
  20701. }
  20702. },
  20703. dick: {
  20704. height: math.unit(1.73, "feet"),
  20705. name: "Dick",
  20706. image: {
  20707. source: "./media/characters/lycoa/dick.svg"
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(8, "feet"),
  20715. default: true
  20716. },
  20717. {
  20718. name: "Macro",
  20719. height: math.unit(30, "feet")
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20725. {
  20726. front: {
  20727. height: math.unit(4 + 2 / 12, "feet"),
  20728. weight: math.unit(70, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/naldara/front.svg",
  20732. extra: 841 / 720,
  20733. bottom: 0.04
  20734. }
  20735. },
  20736. naga: {
  20737. height: math.unit(23, "feet"),
  20738. weight: math.unit(15000, "kg"),
  20739. name: "Naga",
  20740. image: {
  20741. source: "./media/characters/naldara/naga.svg",
  20742. extra: 3290 / 2959,
  20743. bottom: 124 / 3432
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(4 + 2 / 12, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(13 + 7 / 12, "feet"),
  20760. weight: math.unit(1500, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/briar/front.svg",
  20764. extra: 626 / 596,
  20765. bottom: 0.08
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(13 + 7 / 12, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20779. {
  20780. side: {
  20781. height: math.unit(10, "feet"),
  20782. weight: math.unit(500, "lb"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/vanguard/side.svg",
  20786. extra: 502 / 425,
  20787. bottom: 0.087
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(10, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(7.5, "feet"),
  20804. weight: math.unit(2, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/artemis/front.svg",
  20808. extra: 1192 / 1075,
  20809. bottom: 0.07
  20810. }
  20811. },
  20812. frontNsfw: {
  20813. height: math.unit(7.5, "feet"),
  20814. weight: math.unit(2, "lb"),
  20815. name: "Front (NSFW)",
  20816. image: {
  20817. source: "./media/characters/artemis/front-nsfw.svg",
  20818. extra: 1192 / 1075,
  20819. bottom: 0.07
  20820. }
  20821. },
  20822. frontNsfwer: {
  20823. height: math.unit(7.5, "feet"),
  20824. weight: math.unit(2, "lb"),
  20825. name: "Front (NSFW-er)",
  20826. image: {
  20827. source: "./media/characters/artemis/front-nsfwer.svg",
  20828. extra: 1192 / 1075,
  20829. bottom: 0.07
  20830. }
  20831. },
  20832. side: {
  20833. height: math.unit(7.5, "feet"),
  20834. weight: math.unit(2, "lb"),
  20835. name: "Side",
  20836. image: {
  20837. source: "./media/characters/artemis/side.svg",
  20838. extra: 1192 / 1075,
  20839. bottom: 0.07
  20840. }
  20841. },
  20842. sideNsfw: {
  20843. height: math.unit(7.5, "feet"),
  20844. weight: math.unit(2, "lb"),
  20845. name: "Side (NSFW)",
  20846. image: {
  20847. source: "./media/characters/artemis/side-nsfw.svg",
  20848. extra: 1192 / 1075,
  20849. bottom: 0.07
  20850. }
  20851. },
  20852. sideNsfwer: {
  20853. height: math.unit(7.5, "feet"),
  20854. weight: math.unit(2, "lb"),
  20855. name: "Side (NSFW-er)",
  20856. image: {
  20857. source: "./media/characters/artemis/side-nsfwer.svg",
  20858. extra: 1192 / 1075,
  20859. bottom: 0.07
  20860. }
  20861. },
  20862. maw: {
  20863. height: math.unit(1.1, "feet"),
  20864. name: "Maw",
  20865. image: {
  20866. source: "./media/characters/artemis/maw.svg"
  20867. }
  20868. },
  20869. stomach: {
  20870. height: math.unit(0.95, "feet"),
  20871. name: "Stomach",
  20872. image: {
  20873. source: "./media/characters/artemis/stomach.svg"
  20874. }
  20875. },
  20876. dickCanine: {
  20877. height: math.unit(1, "feet"),
  20878. name: "Dick (Canine)",
  20879. image: {
  20880. source: "./media/characters/artemis/dick-canine.svg"
  20881. }
  20882. },
  20883. dickEquine: {
  20884. height: math.unit(0.85, "feet"),
  20885. name: "Dick (Equine)",
  20886. image: {
  20887. source: "./media/characters/artemis/dick-equine.svg"
  20888. }
  20889. },
  20890. dickExotic: {
  20891. height: math.unit(0.85, "feet"),
  20892. name: "Dick (Exotic)",
  20893. image: {
  20894. source: "./media/characters/artemis/dick-exotic.svg"
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(7.5, "feet"),
  20902. default: true
  20903. },
  20904. {
  20905. name: "Enlarged",
  20906. height: math.unit(12, "feet")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(5 + 3 / 12, "feet"),
  20915. weight: math.unit(160, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/kira/front.svg",
  20919. extra: 906 / 786,
  20920. bottom: 0.01
  20921. }
  20922. },
  20923. back: {
  20924. height: math.unit(5 + 3 / 12, "feet"),
  20925. weight: math.unit(160, "lb"),
  20926. name: "Back",
  20927. image: {
  20928. source: "./media/characters/kira/back.svg",
  20929. extra: 882 / 757,
  20930. bottom: 0.005
  20931. }
  20932. },
  20933. frontDressed: {
  20934. height: math.unit(5 + 3 / 12, "feet"),
  20935. weight: math.unit(160, "lb"),
  20936. name: "Front (Dressed)",
  20937. image: {
  20938. source: "./media/characters/kira/front-dressed.svg",
  20939. extra: 906 / 786,
  20940. bottom: 0.01
  20941. }
  20942. },
  20943. beans: {
  20944. height: math.unit(0.92, "feet"),
  20945. name: "Beans",
  20946. image: {
  20947. source: "./media/characters/kira/beans.svg"
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(5 + 3 / 12, "feet"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20961. {
  20962. front: {
  20963. height: math.unit(5 + 4 / 12, "feet"),
  20964. weight: math.unit(145, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/scramble/front.svg",
  20968. extra: 763 / 727,
  20969. bottom: 0.05
  20970. }
  20971. },
  20972. back: {
  20973. height: math.unit(5 + 4 / 12, "feet"),
  20974. weight: math.unit(145, "lb"),
  20975. name: "Back",
  20976. image: {
  20977. source: "./media/characters/scramble/back.svg",
  20978. extra: 826 / 737,
  20979. bottom: 0.002
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(5 + 4 / 12, "feet"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20993. {
  20994. side: {
  20995. height: math.unit(6 + 2 / 12, "feet"),
  20996. weight: math.unit(190, "lb"),
  20997. name: "Side",
  20998. image: {
  20999. source: "./media/characters/biscuit/side.svg",
  21000. extra: 858 / 791,
  21001. bottom: 0.044
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(6 + 2 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 2 / 12, "feet"),
  21018. weight: math.unit(120, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/poffin/front.svg",
  21022. extra: 786 / 680,
  21023. bottom: 0.005
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(5 + 2 / 12, "feet"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(6 + 3 / 12, "feet"),
  21040. weight: math.unit(519, "lb"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/dhari/front.svg",
  21044. extra: 1048 / 946,
  21045. bottom: 0.015
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(6 + 3 / 12, "feet"),
  21050. weight: math.unit(519, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/dhari/back.svg",
  21054. extra: 1048 / 931,
  21055. bottom: 0.005
  21056. }
  21057. },
  21058. frontDressed: {
  21059. height: math.unit(6 + 3 / 12, "feet"),
  21060. weight: math.unit(519, "lb"),
  21061. name: "Front (Dressed)",
  21062. image: {
  21063. source: "./media/characters/dhari/front-dressed.svg",
  21064. extra: 1713 / 1546,
  21065. bottom: 0.02
  21066. }
  21067. },
  21068. backDressed: {
  21069. height: math.unit(6 + 3 / 12, "feet"),
  21070. weight: math.unit(519, "lb"),
  21071. name: "Back (Dressed)",
  21072. image: {
  21073. source: "./media/characters/dhari/back-dressed.svg",
  21074. extra: 1699 / 1537,
  21075. bottom: 0.01
  21076. }
  21077. },
  21078. maw: {
  21079. height: math.unit(0.95, "feet"),
  21080. name: "Maw",
  21081. image: {
  21082. source: "./media/characters/dhari/maw.svg"
  21083. }
  21084. },
  21085. wereFront: {
  21086. height: math.unit(12 + 8 / 12, "feet"),
  21087. weight: math.unit(4000, "lb"),
  21088. name: "Front (Were)",
  21089. image: {
  21090. source: "./media/characters/dhari/were-front.svg",
  21091. extra: 1065 / 969,
  21092. bottom: 0.015
  21093. }
  21094. },
  21095. wereBack: {
  21096. height: math.unit(12 + 8 / 12, "feet"),
  21097. weight: math.unit(4000, "lb"),
  21098. name: "Back (Were)",
  21099. image: {
  21100. source: "./media/characters/dhari/were-back.svg",
  21101. extra: 1065 / 969,
  21102. bottom: 0.012
  21103. }
  21104. },
  21105. wereMaw: {
  21106. height: math.unit(0.625, "meters"),
  21107. name: "Maw (Were)",
  21108. image: {
  21109. source: "./media/characters/dhari/were-maw.svg"
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(6 + 3 / 12, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21123. {
  21124. anthro: {
  21125. height: math.unit(5 + 7 / 12, "feet"),
  21126. weight: math.unit(175, "lb"),
  21127. name: "Anthro",
  21128. image: {
  21129. source: "./media/characters/rena-dyne/anthro.svg",
  21130. extra: 1849 / 1785,
  21131. bottom: 0.005
  21132. }
  21133. },
  21134. taur: {
  21135. height: math.unit(15 + 6 / 12, "feet"),
  21136. weight: math.unit(8000, "lb"),
  21137. name: "Taur",
  21138. image: {
  21139. source: "./media/characters/rena-dyne/taur.svg",
  21140. extra: 2315 / 2234,
  21141. bottom: 0.033
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(5 + 7 / 12, "feet"),
  21149. default: true
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(8, "feet"),
  21158. weight: math.unit(600, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/weremeep/front.svg",
  21162. extra: 967 / 862,
  21163. bottom: 0.01
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(8, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Lorg",
  21175. height: math.unit(12, "feet")
  21176. },
  21177. {
  21178. name: "Oh Lawd She Comin'",
  21179. height: math.unit(20, "feet")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21185. {
  21186. front: {
  21187. height: math.unit(4, "feet"),
  21188. weight: math.unit(90, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/reza/front.svg",
  21192. extra: 1183 / 1111,
  21193. bottom: 0.017
  21194. }
  21195. },
  21196. back: {
  21197. height: math.unit(4, "feet"),
  21198. weight: math.unit(90, "lb"),
  21199. name: "Back",
  21200. image: {
  21201. source: "./media/characters/reza/back.svg",
  21202. extra: 1183 / 1111,
  21203. bottom: 0.01
  21204. }
  21205. },
  21206. drake: {
  21207. height: math.unit(30, "feet"),
  21208. weight: math.unit(246960, "lb"),
  21209. name: "Drake",
  21210. image: {
  21211. source: "./media/characters/reza/drake.svg",
  21212. extra: 2350 / 2024,
  21213. bottom: 60.7 / 2403
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(4, "feet"),
  21221. default: true
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21227. {
  21228. side: {
  21229. height: math.unit(15, "feet"),
  21230. weight: math.unit(14, "tons"),
  21231. name: "Side",
  21232. image: {
  21233. source: "./media/characters/athea/side.svg",
  21234. extra: 960 / 540,
  21235. bottom: 0.003
  21236. }
  21237. },
  21238. sitting: {
  21239. height: math.unit(6 * 2.85, "feet"),
  21240. weight: math.unit(14, "tons"),
  21241. name: "Sitting",
  21242. image: {
  21243. source: "./media/characters/athea/sitting.svg",
  21244. extra: 621 / 581,
  21245. bottom: 0.075
  21246. }
  21247. },
  21248. maw: {
  21249. height: math.unit(7.59498031496063, "feet"),
  21250. name: "Maw",
  21251. image: {
  21252. source: "./media/characters/athea/maw.svg"
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Lap Cat",
  21259. height: math.unit(2.5, "feet")
  21260. },
  21261. {
  21262. name: "Minimacro",
  21263. height: math.unit(15, "feet"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Macro",
  21268. height: math.unit(120, "feet")
  21269. },
  21270. {
  21271. name: "Macro+",
  21272. height: math.unit(640, "feet")
  21273. },
  21274. {
  21275. name: "Colossus",
  21276. height: math.unit(2.2, "miles")
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21282. {
  21283. front: {
  21284. height: math.unit(8 + 8 / 12, "feet"),
  21285. weight: math.unit(130, "kg"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/seroko/front.svg",
  21289. extra: 1385 / 1280,
  21290. bottom: 0.025
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(8 + 8 / 12, "feet"),
  21295. weight: math.unit(130, "kg"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/seroko/back.svg",
  21299. extra: 1369 / 1238,
  21300. bottom: 0.018
  21301. }
  21302. },
  21303. frontDressed: {
  21304. height: math.unit(8 + 8 / 12, "feet"),
  21305. weight: math.unit(130, "kg"),
  21306. name: "Front (Dressed)",
  21307. image: {
  21308. source: "./media/characters/seroko/front-dressed.svg",
  21309. extra: 1366 / 1275,
  21310. bottom: 0.03
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(8 + 8 / 12, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(5.5, "feet"),
  21327. weight: math.unit(160, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/quatzi/front.svg",
  21331. extra: 2346 / 2242,
  21332. bottom: 0.015
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(5.5, "feet"),
  21340. default: true
  21341. },
  21342. {
  21343. name: "Big",
  21344. height: math.unit(7.7, "feet")
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(5 + 11 / 12, "feet"),
  21353. weight: math.unit(180, "lb"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/sen/front.svg",
  21357. extra: 1321 / 1254,
  21358. bottom: 0.015
  21359. }
  21360. },
  21361. side: {
  21362. height: math.unit(5 + 11 / 12, "feet"),
  21363. weight: math.unit(180, "lb"),
  21364. name: "Side",
  21365. image: {
  21366. source: "./media/characters/sen/side.svg",
  21367. extra: 1321 / 1254,
  21368. bottom: 0.007
  21369. }
  21370. },
  21371. back: {
  21372. height: math.unit(5 + 11 / 12, "feet"),
  21373. weight: math.unit(180, "lb"),
  21374. name: "Back",
  21375. image: {
  21376. source: "./media/characters/sen/back.svg",
  21377. extra: 1321 / 1254
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(5 + 11 / 12, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(166.6, "cm"),
  21394. weight: math.unit(66.6, "kg"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/fruity/front.svg",
  21398. extra: 1510 / 1386,
  21399. bottom: 0.04
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(166.6, "cm"),
  21404. weight: math.unit(66.6, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/fruity/back.svg",
  21408. extra: 1563 / 1435,
  21409. bottom: 0.005
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(166.6, "cm"),
  21417. default: true
  21418. },
  21419. {
  21420. name: "Demonic",
  21421. height: math.unit(166.6, "feet")
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21427. {
  21428. side: {
  21429. height: math.unit(10, "feet"),
  21430. weight: math.unit(500, "lb"),
  21431. name: "Side",
  21432. image: {
  21433. source: "./media/characters/zost/side.svg",
  21434. extra: 966 / 880,
  21435. bottom: 0.075
  21436. }
  21437. },
  21438. mawFront: {
  21439. height: math.unit(1.08, "meters"),
  21440. name: "Maw (Front)",
  21441. image: {
  21442. source: "./media/characters/zost/maw-front.svg"
  21443. }
  21444. },
  21445. mawSide: {
  21446. height: math.unit(2.66, "feet"),
  21447. name: "Maw (Side)",
  21448. image: {
  21449. source: "./media/characters/zost/maw-side.svg"
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(10, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(5 + 4 / 12, "feet"),
  21466. weight: math.unit(120, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/luci/front.svg",
  21470. extra: 1985 / 1884,
  21471. bottom: 0.04
  21472. }
  21473. },
  21474. back: {
  21475. height: math.unit(5 + 4 / 12, "feet"),
  21476. weight: math.unit(120, "lb"),
  21477. name: "Back",
  21478. image: {
  21479. source: "./media/characters/luci/back.svg",
  21480. extra: 1892 / 1791,
  21481. bottom: 0.002
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(5 + 4 / 12, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21495. {
  21496. front: {
  21497. height: math.unit(1500, "feet"),
  21498. weight: math.unit(3.8e6, "tons"),
  21499. name: "Front",
  21500. image: {
  21501. source: "./media/characters/2th/front.svg",
  21502. extra: 3489 / 3350,
  21503. bottom: 0.1
  21504. }
  21505. },
  21506. foot: {
  21507. height: math.unit(461, "feet"),
  21508. name: "Foot",
  21509. image: {
  21510. source: "./media/characters/2th/foot.svg"
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "\"Micro\"",
  21517. height: math.unit(15 + 7 / 12, "feet")
  21518. },
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(1500, "feet"),
  21522. default: true
  21523. },
  21524. {
  21525. name: "Macro",
  21526. height: math.unit(5000, "feet")
  21527. },
  21528. {
  21529. name: "Megamacro",
  21530. height: math.unit(15, "miles")
  21531. },
  21532. {
  21533. name: "Gigamacro",
  21534. height: math.unit(4000, "miles")
  21535. },
  21536. {
  21537. name: "Galactic",
  21538. height: math.unit(50, "AU")
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(5 + 6 / 12, "feet"),
  21547. weight: math.unit(220, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/amethyst/front.svg",
  21551. extra: 2078 / 2040,
  21552. bottom: 0.045
  21553. }
  21554. },
  21555. back: {
  21556. height: math.unit(5 + 6 / 12, "feet"),
  21557. weight: math.unit(220, "lb"),
  21558. name: "Back",
  21559. image: {
  21560. source: "./media/characters/amethyst/back.svg",
  21561. extra: 2021 / 1989,
  21562. bottom: 0.02
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 6 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(4 + 11 / 12, "feet"),
  21579. weight: math.unit(120, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/yumi-akiyama/front.svg",
  21583. extra: 1327 / 1235,
  21584. bottom: 0.02
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(4 + 11 / 12, "feet"),
  21589. weight: math.unit(120, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/yumi-akiyama/back.svg",
  21593. extra: 1287 / 1245,
  21594. bottom: 0.002
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Galactic",
  21601. height: math.unit(50, "galaxies"),
  21602. default: true
  21603. },
  21604. {
  21605. name: "Universal",
  21606. height: math.unit(100, "universes")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(8, "feet"),
  21615. weight: math.unit(500, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/rifter-yrmori/front.svg",
  21619. extra: 1180 / 1125,
  21620. bottom: 0.02
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(8, "feet"),
  21625. weight: math.unit(500, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/rifter-yrmori/back.svg",
  21629. extra: 1190 / 1145,
  21630. bottom: 0.001
  21631. }
  21632. },
  21633. wings: {
  21634. height: math.unit(7.75, "feet"),
  21635. weight: math.unit(500, "lb"),
  21636. name: "Wings",
  21637. image: {
  21638. source: "./media/characters/rifter-yrmori/wings.svg",
  21639. extra: 1357 / 1285
  21640. }
  21641. },
  21642. maw: {
  21643. height: math.unit(0.8, "feet"),
  21644. name: "Maw",
  21645. image: {
  21646. source: "./media/characters/rifter-yrmori/maw.svg"
  21647. }
  21648. },
  21649. mawfront: {
  21650. height: math.unit(1.45, "feet"),
  21651. name: "Maw (Front)",
  21652. image: {
  21653. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(8, "feet"),
  21661. default: true
  21662. },
  21663. {
  21664. name: "Macro",
  21665. height: math.unit(42, "meters")
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21671. {
  21672. were: {
  21673. height: math.unit(25 + 6 / 12, "feet"),
  21674. weight: math.unit(10000, "lb"),
  21675. name: "Were",
  21676. image: {
  21677. source: "./media/characters/tahajin/were.svg",
  21678. extra: 801 / 770,
  21679. bottom: 0.042
  21680. }
  21681. },
  21682. aquatic: {
  21683. height: math.unit(6 + 4 / 12, "feet"),
  21684. weight: math.unit(160, "lb"),
  21685. name: "Aquatic",
  21686. image: {
  21687. source: "./media/characters/tahajin/aquatic.svg",
  21688. extra: 572 / 542,
  21689. bottom: 0.04
  21690. }
  21691. },
  21692. chow: {
  21693. height: math.unit(8 + 11 / 12, "feet"),
  21694. weight: math.unit(450, "lb"),
  21695. name: "Chow",
  21696. image: {
  21697. source: "./media/characters/tahajin/chow.svg",
  21698. extra: 660 / 640,
  21699. bottom: 0.015
  21700. }
  21701. },
  21702. demiNaga: {
  21703. height: math.unit(6 + 8 / 12, "feet"),
  21704. weight: math.unit(300, "lb"),
  21705. name: "Demi Naga",
  21706. image: {
  21707. source: "./media/characters/tahajin/demi-naga.svg",
  21708. extra: 643 / 615,
  21709. bottom: 0.1
  21710. }
  21711. },
  21712. data: {
  21713. height: math.unit(5, "inches"),
  21714. weight: math.unit(0.1, "lb"),
  21715. name: "Data",
  21716. image: {
  21717. source: "./media/characters/tahajin/data.svg"
  21718. }
  21719. },
  21720. fluu: {
  21721. height: math.unit(5 + 7 / 12, "feet"),
  21722. weight: math.unit(140, "lb"),
  21723. name: "Fluu",
  21724. image: {
  21725. source: "./media/characters/tahajin/fluu.svg",
  21726. extra: 628 / 592,
  21727. bottom: 0.02
  21728. }
  21729. },
  21730. starWarrior: {
  21731. height: math.unit(4 + 5 / 12, "feet"),
  21732. weight: math.unit(50, "lb"),
  21733. name: "Star Warrior",
  21734. image: {
  21735. source: "./media/characters/tahajin/star-warrior.svg"
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(25 + 6 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(8, "feet"),
  21752. weight: math.unit(350, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/gabira/front.svg",
  21756. extra: 608 / 580,
  21757. bottom: 0.03
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(8, "feet"),
  21762. weight: math.unit(350, "lb"),
  21763. name: "Back",
  21764. image: {
  21765. source: "./media/characters/gabira/back.svg",
  21766. extra: 608 / 580,
  21767. bottom: 0.03
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(5 + 3 / 12, "feet"),
  21784. weight: math.unit(137, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/sasha-katraine/front.svg",
  21788. bottom: 0.045
  21789. }
  21790. },
  21791. },
  21792. [
  21793. {
  21794. name: "Micro",
  21795. height: math.unit(5, "inches")
  21796. },
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(5 + 3 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21806. {
  21807. side: {
  21808. height: math.unit(4, "inches"),
  21809. weight: math.unit(200, "grams"),
  21810. name: "Side",
  21811. image: {
  21812. source: "./media/characters/der/side.svg",
  21813. extra: 719 / 400,
  21814. bottom: 30.6 / 749.9187
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Micro",
  21821. height: math.unit(4, "inches"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21828. {
  21829. side: {
  21830. height: math.unit(30, "meters"),
  21831. weight: math.unit(700, "tonnes"),
  21832. name: "Side",
  21833. image: {
  21834. source: "./media/characters/fixerdragon/side.svg",
  21835. extra: (1293.0514 - 116.03) / 1106.86,
  21836. bottom: 116.03 / 1293.0514
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Planck",
  21843. height: math.unit(1.6e-35, "meters")
  21844. },
  21845. {
  21846. name: "Micro",
  21847. height: math.unit(0.4, "meters")
  21848. },
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(30, "meters"),
  21852. default: true
  21853. },
  21854. {
  21855. name: "Megamacro",
  21856. height: math.unit(1.2, "megameters")
  21857. },
  21858. {
  21859. name: "Teramacro",
  21860. height: math.unit(130, "terameters")
  21861. },
  21862. {
  21863. name: "Yottamacro",
  21864. height: math.unit(6200, "yottameters")
  21865. },
  21866. ]
  21867. ));
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(8, "feet"),
  21873. weight: math.unit(250, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/kite/front.svg",
  21877. extra: 2796 / 2659,
  21878. bottom: 0.002
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(8, "feet"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Macro",
  21890. height: math.unit(360, "feet")
  21891. },
  21892. {
  21893. name: "Megamacro",
  21894. height: math.unit(1500, "feet")
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(5 + 11/12, "feet"),
  21903. weight: math.unit(170, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/poojawa-vynar/front.svg",
  21907. extra: 1735/1585,
  21908. bottom: 96/1831
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(5 + 11/12, "feet"),
  21913. weight: math.unit(170, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/poojawa-vynar/back.svg",
  21917. extra: 1749/1607,
  21918. bottom: 28/1777
  21919. }
  21920. },
  21921. male: {
  21922. height: math.unit(5 + 11/12, "feet"),
  21923. weight: math.unit(170, "lb"),
  21924. name: "Male",
  21925. image: {
  21926. source: "./media/characters/poojawa-vynar/male.svg",
  21927. extra: 1855/1713,
  21928. bottom: 63/1918
  21929. }
  21930. },
  21931. taur: {
  21932. height: math.unit(5 + 11/12, "feet"),
  21933. weight: math.unit(170, "lb"),
  21934. name: "Taur",
  21935. image: {
  21936. source: "./media/characters/poojawa-vynar/taur.svg",
  21937. extra: 1151/1059,
  21938. bottom: 356/1507
  21939. }
  21940. },
  21941. frontDressed: {
  21942. height: math.unit(5 + 11/12, "feet"),
  21943. weight: math.unit(170, "lb"),
  21944. name: "Front (Dressed)",
  21945. image: {
  21946. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21947. extra: 1735/1585,
  21948. bottom: 96/1831
  21949. }
  21950. },
  21951. backDressed: {
  21952. height: math.unit(5 + 11/12, "feet"),
  21953. weight: math.unit(170, "lb"),
  21954. name: "Back (Dressed)",
  21955. image: {
  21956. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21957. extra: 1749/1607,
  21958. bottom: 28/1777
  21959. }
  21960. },
  21961. maleDressed: {
  21962. height: math.unit(5 + 11/12, "feet"),
  21963. weight: math.unit(170, "lb"),
  21964. name: "Male (Dressed)",
  21965. image: {
  21966. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21967. extra: 1855/1713,
  21968. bottom: 63/1918
  21969. }
  21970. },
  21971. taurDressed: {
  21972. height: math.unit(5 + 11/12, "feet"),
  21973. weight: math.unit(170, "lb"),
  21974. name: "Taur (Dressed)",
  21975. image: {
  21976. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21977. extra: 1151/1059,
  21978. bottom: 356/1507
  21979. }
  21980. },
  21981. maw: {
  21982. height: math.unit(1.46, "feet"),
  21983. name: "Maw",
  21984. image: {
  21985. source: "./media/characters/poojawa-vynar/maw.svg"
  21986. }
  21987. },
  21988. head: {
  21989. height: math.unit(2.34, "feet"),
  21990. name: "Head",
  21991. image: {
  21992. source: "./media/characters/poojawa-vynar/head.svg"
  21993. }
  21994. },
  21995. paw: {
  21996. height: math.unit(1.61, "feet"),
  21997. name: "Paw",
  21998. image: {
  21999. source: "./media/characters/poojawa-vynar/paw.svg"
  22000. }
  22001. },
  22002. pawToering: {
  22003. height: math.unit(1.72, "feet"),
  22004. name: "Paw (Toering)",
  22005. image: {
  22006. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22007. }
  22008. },
  22009. toering: {
  22010. height: math.unit(2.9, "inches"),
  22011. name: "Toering",
  22012. image: {
  22013. source: "./media/characters/poojawa-vynar/toering.svg"
  22014. }
  22015. },
  22016. shaft: {
  22017. height: math.unit(0.625, "feet"),
  22018. name: "Shaft",
  22019. image: {
  22020. source: "./media/characters/poojawa-vynar/shaft.svg"
  22021. }
  22022. },
  22023. spade: {
  22024. height: math.unit(0.42, "feet"),
  22025. name: "Spade",
  22026. image: {
  22027. source: "./media/characters/poojawa-vynar/spade.svg"
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Shortstack",
  22034. height: math.unit(4, "feet")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(5 + 11 / 12, "feet"),
  22039. default: true
  22040. },
  22041. {
  22042. name: "Tauric",
  22043. height: math.unit(4, "meters")
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(293, "meters"),
  22052. weight: math.unit(70400, "tons"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/violette/front.svg",
  22056. extra: 1227 / 1180,
  22057. bottom: 0.005
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(293, "meters"),
  22062. weight: math.unit(70400, "tons"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/violette/back.svg",
  22066. extra: 1227 / 1180,
  22067. bottom: 0.005
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Macro",
  22074. height: math.unit(293, "meters"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(1050, "feet"),
  22084. weight: math.unit(200000, "tons"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/alessandra/front.svg",
  22088. extra: 960 / 912,
  22089. bottom: 0.06
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Macro",
  22096. height: math.unit(1050, "feet")
  22097. },
  22098. {
  22099. name: "Macro+",
  22100. height: math.unit(900, "meters"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(5, "feet"),
  22110. weight: math.unit(187, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/person/front.svg",
  22114. extra: 3087 / 2945,
  22115. bottom: 91 / 3181
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Micro",
  22122. height: math.unit(3, "inches")
  22123. },
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(5, "feet"),
  22127. default: true
  22128. },
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(90, "feet")
  22132. },
  22133. {
  22134. name: "Max Size",
  22135. height: math.unit(280, "feet")
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(4.5, "meters"),
  22144. weight: math.unit(3200, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/ty/front.svg",
  22148. extra: 1038 / 960,
  22149. bottom: 31.156 / 1068
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(4.5, "meters"),
  22154. weight: math.unit(3200, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/ty/back.svg",
  22158. extra: 1044 / 966,
  22159. bottom: 7.48 / 1049
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(4.5, "meters"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(5 + 4 / 12, "feet"),
  22176. weight: math.unit(115, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/rocky/front.svg",
  22180. extra: 1012 / 975,
  22181. bottom: 54 / 1066
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(5 + 4 / 12, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22195. {
  22196. upright: {
  22197. height: math.unit(6, "meters"),
  22198. weight: math.unit(4000, "kg"),
  22199. name: "Upright",
  22200. image: {
  22201. source: "./media/characters/ruin/upright.svg",
  22202. extra: 668 / 661,
  22203. bottom: 42 / 799.8396
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(6, "meters"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(5, "feet"),
  22220. weight: math.unit(106, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/robin/front.svg",
  22224. extra: 862 / 799,
  22225. bottom: 42.4 / 914.8856
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22239. {
  22240. side: {
  22241. height: math.unit(3, "feet"),
  22242. weight: math.unit(225, "lb"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/saian/side.svg",
  22246. extra: 566 / 356,
  22247. bottom: 79.7 / 643
  22248. }
  22249. },
  22250. maw: {
  22251. height: math.unit(2.85, "feet"),
  22252. name: "Maw",
  22253. image: {
  22254. source: "./media/characters/saian/maw.svg"
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(3, "feet"),
  22262. default: true
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22268. {
  22269. side: {
  22270. height: math.unit(8, "feet"),
  22271. weight: math.unit(300, "lb"),
  22272. name: "Side",
  22273. image: {
  22274. source: "./media/characters/equus-silvermane/side.svg",
  22275. extra: 2176 / 2050,
  22276. bottom: 65.7 / 2245
  22277. }
  22278. },
  22279. front: {
  22280. height: math.unit(8, "feet"),
  22281. weight: math.unit(300, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/equus-silvermane/front.svg",
  22285. extra: 4633 / 4400,
  22286. bottom: 71.3 / 4706.915
  22287. }
  22288. },
  22289. sideStepping: {
  22290. height: math.unit(8, "feet"),
  22291. weight: math.unit(300, "lb"),
  22292. name: "Side (Stepping)",
  22293. image: {
  22294. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22295. extra: 1968 / 1860,
  22296. bottom: 16.4 / 1989
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(8, "feet")
  22304. },
  22305. {
  22306. name: "Minimacro",
  22307. height: math.unit(75, "feet"),
  22308. default: true
  22309. },
  22310. {
  22311. name: "Macro",
  22312. height: math.unit(150, "feet")
  22313. },
  22314. {
  22315. name: "Macro+",
  22316. height: math.unit(1000, "feet")
  22317. },
  22318. {
  22319. name: "Megamacro",
  22320. height: math.unit(1, "mile")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22326. {
  22327. side: {
  22328. height: math.unit(20, "feet"),
  22329. weight: math.unit(30000, "kg"),
  22330. name: "Side",
  22331. image: {
  22332. source: "./media/characters/windar/side.svg",
  22333. extra: 1491 / 1248,
  22334. bottom: 82.56 / 1568
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(20, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22348. {
  22349. side: {
  22350. height: math.unit(15.66, "feet"),
  22351. weight: math.unit(150, "lb"),
  22352. name: "Side",
  22353. image: {
  22354. source: "./media/characters/melody/side.svg",
  22355. extra: 1097 / 944,
  22356. bottom: 11.8 / 1109
  22357. }
  22358. },
  22359. sideOutfit: {
  22360. height: math.unit(15.66, "feet"),
  22361. weight: math.unit(150, "lb"),
  22362. name: "Side (Outfit)",
  22363. image: {
  22364. source: "./media/characters/melody/side-outfit.svg",
  22365. extra: 1097 / 944,
  22366. bottom: 11.8 / 1109
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(15.66, "feet"),
  22374. default: true
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(8, "feet"),
  22383. weight: math.unit(325, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/windera/front.svg",
  22387. extra: 3180 / 2845,
  22388. bottom: 178 / 3365
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(8, "feet"),
  22396. default: true
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22402. {
  22403. front: {
  22404. height: math.unit(28.75, "feet"),
  22405. weight: math.unit(2000, "kg"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/sonear/front.svg",
  22409. extra: 1041.1 / 964.9,
  22410. bottom: 53.7 / 1096.6
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Normal",
  22417. height: math.unit(28.75, "feet"),
  22418. default: true
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22424. {
  22425. side: {
  22426. height: math.unit(25.5, "feet"),
  22427. weight: math.unit(23000, "kg"),
  22428. name: "Side",
  22429. image: {
  22430. source: "./media/characters/kanara/side.svg"
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(25.5, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22444. {
  22445. side: {
  22446. height: math.unit(10, "feet"),
  22447. weight: math.unit(1000, "kg"),
  22448. name: "Side",
  22449. image: {
  22450. source: "./media/characters/ereus/side.svg",
  22451. extra: 1157 / 959,
  22452. bottom: 153 / 1312.5
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(10, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22466. {
  22467. side: {
  22468. height: math.unit(4.5, "feet"),
  22469. weight: math.unit(500, "lb"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/e-ter/side.svg",
  22473. extra: 1550 / 1248,
  22474. bottom: 146 / 1694
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(4.5, "feet"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22488. {
  22489. side: {
  22490. height: math.unit(9.7, "feet"),
  22491. weight: math.unit(4000, "kg"),
  22492. name: "Side",
  22493. image: {
  22494. source: "./media/characters/yamie/side.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(9.7, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(50, "feet"),
  22511. weight: math.unit(50000, "kg"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/anders/front.svg",
  22515. extra: 570 / 539,
  22516. bottom: 14.7 / 586.7
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Large",
  22523. height: math.unit(50, "feet")
  22524. },
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(2000, "feet"),
  22528. default: true
  22529. },
  22530. {
  22531. name: "Megamacro",
  22532. height: math.unit(12, "miles")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(7 + 2 / 12, "feet"),
  22541. weight: math.unit(300, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/reban/front.svg",
  22545. extra: 1287/1212,
  22546. bottom: 148/1435
  22547. }
  22548. },
  22549. head: {
  22550. height: math.unit(1.95, "feet"),
  22551. name: "Head",
  22552. image: {
  22553. source: "./media/characters/reban/head.svg"
  22554. }
  22555. },
  22556. maw: {
  22557. height: math.unit(0.95, "feet"),
  22558. name: "Maw",
  22559. image: {
  22560. source: "./media/characters/reban/maw.svg"
  22561. }
  22562. },
  22563. foot: {
  22564. height: math.unit(1.65, "feet"),
  22565. name: "Foot",
  22566. image: {
  22567. source: "./media/characters/reban/foot.svg"
  22568. }
  22569. },
  22570. dick: {
  22571. height: math.unit(7 / 5, "feet"),
  22572. name: "Dick",
  22573. image: {
  22574. source: "./media/characters/reban/dick.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Natural Height",
  22581. height: math.unit(7 + 2 / 12, "feet")
  22582. },
  22583. {
  22584. name: "Macro",
  22585. height: math.unit(500, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Canon Height",
  22590. height: math.unit(50, "AU")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(6, "feet"),
  22599. weight: math.unit(150, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/terrance-keayes/front.svg",
  22603. extra: 1.005,
  22604. bottom: 151 / 1615
  22605. }
  22606. },
  22607. side: {
  22608. height: math.unit(6, "feet"),
  22609. weight: math.unit(150, "lb"),
  22610. name: "Side",
  22611. image: {
  22612. source: "./media/characters/terrance-keayes/side.svg",
  22613. extra: 1.005,
  22614. bottom: 129.4 / 1544
  22615. }
  22616. },
  22617. back: {
  22618. height: math.unit(6, "feet"),
  22619. weight: math.unit(150, "lb"),
  22620. name: "Back",
  22621. image: {
  22622. source: "./media/characters/terrance-keayes/back.svg",
  22623. extra: 1.005,
  22624. bottom: 58.4 / 1557.3
  22625. }
  22626. },
  22627. dick: {
  22628. height: math.unit(6 * 0.208, "feet"),
  22629. name: "Dick",
  22630. image: {
  22631. source: "./media/characters/terrance-keayes/dick.svg"
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Canon Height",
  22638. height: math.unit(35, "miles"),
  22639. default: true
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(6, "feet"),
  22648. weight: math.unit(150, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/ofelia/front.svg",
  22652. extra: 1130/1117,
  22653. bottom: 91/1221
  22654. }
  22655. },
  22656. back: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(150, "lb"),
  22659. name: "Back",
  22660. image: {
  22661. source: "./media/characters/ofelia/back.svg",
  22662. extra: 1172/1159,
  22663. bottom: 28/1200
  22664. }
  22665. },
  22666. maw: {
  22667. height: math.unit(1, "feet"),
  22668. name: "Maw",
  22669. image: {
  22670. source: "./media/characters/ofelia/maw.svg"
  22671. }
  22672. },
  22673. foot: {
  22674. height: math.unit(1.949, "feet"),
  22675. name: "Foot",
  22676. image: {
  22677. source: "./media/characters/ofelia/foot.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Canon Height",
  22684. height: math.unit(2000, "miles"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(6, "feet"),
  22694. weight: math.unit(150, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/samuel/front.svg",
  22698. extra: 265 / 258,
  22699. bottom: 2 / 266.1566
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(100, "feet"),
  22707. default: true
  22708. },
  22709. {
  22710. name: "Full Size",
  22711. height: math.unit(1000, "miles")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(6, "feet"),
  22720. weight: math.unit(300, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/beishir-kiel/front.svg",
  22724. extra: 569 / 547,
  22725. bottom: 41.9 / 609
  22726. }
  22727. },
  22728. maw: {
  22729. height: math.unit(6 * 0.202, "feet"),
  22730. name: "Maw",
  22731. image: {
  22732. source: "./media/characters/beishir-kiel/maw.svg"
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(300, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(5 + 7/12, "feet"),
  22749. weight: math.unit(120, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/logan-grey/front.svg",
  22753. extra: 1836/1738,
  22754. bottom: 108/1944
  22755. }
  22756. },
  22757. back: {
  22758. height: math.unit(5 + 7/12, "feet"),
  22759. weight: math.unit(120, "lb"),
  22760. name: "Back",
  22761. image: {
  22762. source: "./media/characters/logan-grey/back.svg",
  22763. extra: 1880/1794,
  22764. bottom: 24/1904
  22765. }
  22766. },
  22767. frontSfw: {
  22768. height: math.unit(5 + 7/12, "feet"),
  22769. weight: math.unit(120, "lb"),
  22770. name: "Front (SFW)",
  22771. image: {
  22772. source: "./media/characters/logan-grey/front-sfw.svg",
  22773. extra: 1836/1738,
  22774. bottom: 108/1944
  22775. }
  22776. },
  22777. backSfw: {
  22778. height: math.unit(5 + 7/12, "feet"),
  22779. weight: math.unit(120, "lb"),
  22780. name: "Back (SFW)",
  22781. image: {
  22782. source: "./media/characters/logan-grey/back-sfw.svg",
  22783. extra: 1880/1794,
  22784. bottom: 24/1904
  22785. }
  22786. },
  22787. hands: {
  22788. height: math.unit(0.84, "feet"),
  22789. name: "Hands",
  22790. image: {
  22791. source: "./media/characters/logan-grey/hands.svg"
  22792. }
  22793. },
  22794. paws: {
  22795. height: math.unit(0.72, "feet"),
  22796. name: "Paws",
  22797. image: {
  22798. source: "./media/characters/logan-grey/paws.svg"
  22799. }
  22800. },
  22801. cock: {
  22802. height: math.unit(1.45, "feet"),
  22803. name: "Cock",
  22804. image: {
  22805. source: "./media/characters/logan-grey/cock.svg"
  22806. }
  22807. },
  22808. cockAlt: {
  22809. height: math.unit(1.437, "feet"),
  22810. name: "Cock (alt)",
  22811. image: {
  22812. source: "./media/characters/logan-grey/cock-alt.svg"
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(5 + 8 / 12, "feet")
  22820. },
  22821. {
  22822. name: "The 500 Foot Femboy",
  22823. height: math.unit(500, "feet"),
  22824. default: true
  22825. },
  22826. {
  22827. name: "Megmacro",
  22828. height: math.unit(20, "miles")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(8 + 2 / 12, "feet"),
  22837. weight: math.unit(275, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/draganta/front.svg",
  22841. extra: 1177 / 1135,
  22842. bottom: 33.46 / 1212.1
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(8 + 6 / 12, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Macro",
  22854. height: math.unit(150, "feet")
  22855. },
  22856. {
  22857. name: "Megamacro",
  22858. height: math.unit(1000, "miles")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(1.72, "m"),
  22867. weight: math.unit(80, "lb"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/voski/front.svg",
  22871. extra: 2076.22 / 2022.4,
  22872. bottom: 102.7 / 2177.3866
  22873. }
  22874. },
  22875. frontNsfw: {
  22876. height: math.unit(1.72, "m"),
  22877. weight: math.unit(80, "lb"),
  22878. name: "Front (NSFW)",
  22879. image: {
  22880. source: "./media/characters/voski/front-nsfw.svg",
  22881. extra: 2076.22 / 2022.4,
  22882. bottom: 102.7 / 2177.3866
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(1.72, "m"),
  22887. weight: math.unit(80, "lb"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/voski/back.svg",
  22891. extra: 2104 / 2051,
  22892. bottom: 10.45 / 2113.63
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(1.72, "m")
  22900. },
  22901. {
  22902. name: "Macro",
  22903. height: math.unit(55, "m"),
  22904. default: true
  22905. },
  22906. {
  22907. name: "Macro+",
  22908. height: math.unit(300, "m")
  22909. },
  22910. {
  22911. name: "Macro++",
  22912. height: math.unit(700, "m")
  22913. },
  22914. {
  22915. name: "Macro+++",
  22916. height: math.unit(4500, "m")
  22917. },
  22918. {
  22919. name: "Macro++++",
  22920. height: math.unit(45, "km")
  22921. },
  22922. {
  22923. name: "Macro+++++",
  22924. height: math.unit(1220, "km")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(2.3, "m"),
  22933. weight: math.unit(304, "kg"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/icowom-lee/front.svg",
  22937. extra: 985 / 955,
  22938. bottom: 25.4 / 1012
  22939. }
  22940. },
  22941. fronttentacles: {
  22942. height: math.unit(2.3, "m"),
  22943. weight: math.unit(304, "kg"),
  22944. name: "Front-tentacles",
  22945. image: {
  22946. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22947. extra: 985 / 955,
  22948. bottom: 25.4 / 1012
  22949. }
  22950. },
  22951. back: {
  22952. height: math.unit(2.3, "m"),
  22953. weight: math.unit(304, "kg"),
  22954. name: "Back",
  22955. image: {
  22956. source: "./media/characters/icowom-lee/back.svg",
  22957. extra: 975 / 954,
  22958. bottom: 9.5 / 985
  22959. }
  22960. },
  22961. backtentacles: {
  22962. height: math.unit(2.3, "m"),
  22963. weight: math.unit(304, "kg"),
  22964. name: "Back-tentacles",
  22965. image: {
  22966. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22967. extra: 975 / 954,
  22968. bottom: 9.5 / 985
  22969. }
  22970. },
  22971. frontDressed: {
  22972. height: math.unit(2.3, "m"),
  22973. weight: math.unit(304, "kg"),
  22974. name: "Front (Dressed)",
  22975. image: {
  22976. source: "./media/characters/icowom-lee/front-dressed.svg",
  22977. extra: 3076 / 2933,
  22978. bottom: 51.4 / 3125.1889
  22979. }
  22980. },
  22981. rump: {
  22982. height: math.unit(0.776, "meters"),
  22983. name: "Rump",
  22984. image: {
  22985. source: "./media/characters/icowom-lee/rump.svg"
  22986. }
  22987. },
  22988. genitals: {
  22989. height: math.unit(0.78, "meters"),
  22990. name: "Genitals",
  22991. image: {
  22992. source: "./media/characters/icowom-lee/genitals.svg"
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(2.3, "meters"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Macro",
  23004. height: math.unit(94, "meters"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(22, "meters"),
  23014. weight: math.unit(21000, "kg"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/shock-diamond/front.svg",
  23018. extra: 2204 / 2053,
  23019. bottom: 65 / 2239.47
  23020. }
  23021. },
  23022. frontNude: {
  23023. height: math.unit(22, "meters"),
  23024. weight: math.unit(21000, "kg"),
  23025. name: "Front (Nude)",
  23026. image: {
  23027. source: "./media/characters/shock-diamond/front-nude.svg",
  23028. extra: 2514 / 2285,
  23029. bottom: 13 / 2527.56
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(3, "meters")
  23037. },
  23038. {
  23039. name: "Macro",
  23040. height: math.unit(22, "meters"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23047. {
  23048. front: {
  23049. height: math.unit(5 + 4 / 12, "feet"),
  23050. weight: math.unit(120, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/rory/front.svg",
  23054. extra: 1318/1241,
  23055. bottom: 42/1360
  23056. }
  23057. },
  23058. back: {
  23059. height: math.unit(5 + 4 / 12, "feet"),
  23060. weight: math.unit(120, "lb"),
  23061. name: "Back",
  23062. image: {
  23063. source: "./media/characters/rory/back.svg",
  23064. extra: 1318/1241,
  23065. bottom: 42/1360
  23066. }
  23067. },
  23068. butt: {
  23069. height: math.unit(1.74, "feet"),
  23070. name: "Butt",
  23071. image: {
  23072. source: "./media/characters/rory/butt.svg"
  23073. }
  23074. },
  23075. dick: {
  23076. height: math.unit(1.02, "feet"),
  23077. name: "Dick",
  23078. image: {
  23079. source: "./media/characters/rory/dick.svg"
  23080. }
  23081. },
  23082. paws: {
  23083. height: math.unit(1, "feet"),
  23084. name: "Paws",
  23085. image: {
  23086. source: "./media/characters/rory/paws.svg"
  23087. }
  23088. },
  23089. frontAlt: {
  23090. height: math.unit(5 + 4 / 12, "feet"),
  23091. weight: math.unit(120, "lb"),
  23092. name: "Front (Alt)",
  23093. image: {
  23094. source: "./media/characters/rory/front-alt.svg",
  23095. extra: 589 / 556,
  23096. bottom: 45.7 / 635.76
  23097. }
  23098. },
  23099. frontAltNude: {
  23100. height: math.unit(5 + 4 / 12, "feet"),
  23101. weight: math.unit(120, "lb"),
  23102. name: "Front (Alt, Nude)",
  23103. image: {
  23104. source: "./media/characters/rory/front-alt-nude.svg",
  23105. extra: 589 / 556,
  23106. bottom: 45.7 / 635.76
  23107. }
  23108. },
  23109. side: {
  23110. height: math.unit(5 + 4 / 12, "feet"),
  23111. weight: math.unit(120, "lb"),
  23112. name: "Side",
  23113. image: {
  23114. source: "./media/characters/rory/side.svg",
  23115. extra: 597 / 564,
  23116. bottom: 55 / 653
  23117. }
  23118. },
  23119. backAlt: {
  23120. height: math.unit(5 + 4 / 12, "feet"),
  23121. weight: math.unit(120, "lb"),
  23122. name: "Back (Alt)",
  23123. image: {
  23124. source: "./media/characters/rory/back-alt.svg",
  23125. extra: 620 / 585,
  23126. bottom: 8.86 / 630.43
  23127. }
  23128. },
  23129. dickAlt: {
  23130. height: math.unit(0.86, "feet"),
  23131. name: "Dick (Alt)",
  23132. image: {
  23133. source: "./media/characters/rory/dick-alt.svg"
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Normal",
  23140. height: math.unit(5 + 4 / 12, "feet"),
  23141. default: true
  23142. },
  23143. {
  23144. name: "Macro",
  23145. height: math.unit(100, "feet")
  23146. },
  23147. {
  23148. name: "Macro+",
  23149. height: math.unit(140, "feet")
  23150. },
  23151. {
  23152. name: "Macro++",
  23153. height: math.unit(300, "feet")
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(5 + 9 / 12, "feet"),
  23162. weight: math.unit(190, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/sprisk/front.svg",
  23166. extra: 1225 / 1180,
  23167. bottom: 42.7 / 1266.4
  23168. }
  23169. },
  23170. frontNsfw: {
  23171. height: math.unit(5 + 9 / 12, "feet"),
  23172. weight: math.unit(190, "lb"),
  23173. name: "Front (NSFW)",
  23174. image: {
  23175. source: "./media/characters/sprisk/front-nsfw.svg",
  23176. extra: 1225 / 1180,
  23177. bottom: 42.7 / 1266.4
  23178. }
  23179. },
  23180. back: {
  23181. height: math.unit(5 + 9 / 12, "feet"),
  23182. weight: math.unit(190, "lb"),
  23183. name: "Back",
  23184. image: {
  23185. source: "./media/characters/sprisk/back.svg",
  23186. extra: 1247 / 1200,
  23187. bottom: 5.6 / 1253.04
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Tiny",
  23194. height: math.unit(2, "inches")
  23195. },
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(5 + 9 / 12, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Mini Macro",
  23203. height: math.unit(18, "feet")
  23204. },
  23205. {
  23206. name: "Macro",
  23207. height: math.unit(100, "feet")
  23208. },
  23209. {
  23210. name: "MACRO",
  23211. height: math.unit(50, "miles")
  23212. },
  23213. {
  23214. name: "M A C R O",
  23215. height: math.unit(300, "miles")
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23221. {
  23222. side: {
  23223. height: math.unit(15.6, "meters"),
  23224. weight: math.unit(700000, "kg"),
  23225. name: "Side",
  23226. image: {
  23227. source: "./media/characters/bunsen/side.svg",
  23228. extra: 1644 / 358
  23229. }
  23230. },
  23231. foot: {
  23232. height: math.unit(1.611 * 1644 / 358, "meter"),
  23233. name: "Foot",
  23234. image: {
  23235. source: "./media/characters/bunsen/foot.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Small",
  23242. height: math.unit(10, "feet")
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(15.6, "meters"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(4 + 11 / 12, "feet"),
  23256. weight: math.unit(140, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/sesh/front.svg",
  23260. extra: 3420 / 3231,
  23261. bottom: 72 / 3949.5
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(4 + 11 / 12, "feet")
  23269. },
  23270. {
  23271. name: "Grown",
  23272. height: math.unit(15, "feet"),
  23273. default: true
  23274. },
  23275. {
  23276. name: "Macro",
  23277. height: math.unit(1500, "feet")
  23278. },
  23279. {
  23280. name: "Megamacro",
  23281. height: math.unit(30, "miles")
  23282. },
  23283. {
  23284. name: "Continental",
  23285. height: math.unit(3000, "miles")
  23286. },
  23287. {
  23288. name: "Gravity Mass",
  23289. height: math.unit(300000, "miles")
  23290. },
  23291. {
  23292. name: "Planet Buster",
  23293. height: math.unit(30000000, "miles")
  23294. },
  23295. {
  23296. name: "Big",
  23297. height: math.unit(3000000000, "miles")
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(9, "feet"),
  23306. weight: math.unit(350, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/pepper/front.svg",
  23310. extra: 1448 / 1312,
  23311. bottom: 9.4 / 1457.88
  23312. }
  23313. },
  23314. back: {
  23315. height: math.unit(9, "feet"),
  23316. weight: math.unit(350, "lb"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/pepper/back.svg",
  23320. extra: 1423 / 1300,
  23321. bottom: 4.6 / 1429
  23322. }
  23323. },
  23324. maw: {
  23325. height: math.unit(0.932, "feet"),
  23326. name: "Maw",
  23327. image: {
  23328. source: "./media/characters/pepper/maw.svg"
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Normal",
  23335. height: math.unit(9, "feet"),
  23336. default: true
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(6, "feet"),
  23345. weight: math.unit(150, "lb"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/maelstrom/front.svg",
  23349. extra: 2100 / 1883,
  23350. bottom: 94 / 2196.7
  23351. }
  23352. },
  23353. },
  23354. [
  23355. {
  23356. name: "Less Kaiju",
  23357. height: math.unit(200, "feet")
  23358. },
  23359. {
  23360. name: "Kaiju",
  23361. height: math.unit(400, "feet"),
  23362. default: true
  23363. },
  23364. {
  23365. name: "Kaiju-er",
  23366. height: math.unit(600, "feet")
  23367. },
  23368. ]
  23369. ))
  23370. characterMakers.push(() => makeCharacter(
  23371. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23372. {
  23373. front: {
  23374. height: math.unit(6 + 5 / 12, "feet"),
  23375. weight: math.unit(180, "lb"),
  23376. name: "Front",
  23377. image: {
  23378. source: "./media/characters/lexir/front.svg",
  23379. extra: 180 / 172,
  23380. bottom: 12 / 192
  23381. }
  23382. },
  23383. back: {
  23384. height: math.unit(6 + 5 / 12, "feet"),
  23385. weight: math.unit(180, "lb"),
  23386. name: "Back",
  23387. image: {
  23388. source: "./media/characters/lexir/back.svg",
  23389. extra: 183.84 / 175.5,
  23390. bottom: 3.1 / 187
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Very Smal",
  23397. height: math.unit(1, "nm")
  23398. },
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(6 + 5 / 12, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(1, "mile")
  23407. },
  23408. {
  23409. name: "Megamacro",
  23410. height: math.unit(50, "miles")
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(1.5, "meters"),
  23419. weight: math.unit(100, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/maksio/front.svg",
  23423. extra: 1549 / 1531,
  23424. bottom: 123.7 / 1674.5429
  23425. }
  23426. },
  23427. back: {
  23428. height: math.unit(1.5, "meters"),
  23429. weight: math.unit(100, "lb"),
  23430. name: "Back",
  23431. image: {
  23432. source: "./media/characters/maksio/back.svg",
  23433. extra: 1541 / 1509,
  23434. bottom: 97 / 1639
  23435. }
  23436. },
  23437. hand: {
  23438. height: math.unit(0.621, "feet"),
  23439. name: "Hand",
  23440. image: {
  23441. source: "./media/characters/maksio/hand.svg"
  23442. }
  23443. },
  23444. foot: {
  23445. height: math.unit(1.611, "feet"),
  23446. name: "Foot",
  23447. image: {
  23448. source: "./media/characters/maksio/foot.svg"
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Shrunken",
  23455. height: math.unit(10, "cm")
  23456. },
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(150, "cm"),
  23460. default: true
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23466. {
  23467. front: {
  23468. height: math.unit(100, "feet"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/erza-bear/front.svg",
  23472. extra: 2449 / 2390,
  23473. bottom: 46 / 2494
  23474. }
  23475. },
  23476. back: {
  23477. height: math.unit(100, "feet"),
  23478. name: "Back",
  23479. image: {
  23480. source: "./media/characters/erza-bear/back.svg",
  23481. extra: 2489 / 2430,
  23482. bottom: 85.4 / 2480
  23483. }
  23484. },
  23485. tail: {
  23486. height: math.unit(42, "feet"),
  23487. name: "Tail",
  23488. image: {
  23489. source: "./media/characters/erza-bear/tail.svg"
  23490. }
  23491. },
  23492. tongue: {
  23493. height: math.unit(8, "feet"),
  23494. name: "Tongue",
  23495. image: {
  23496. source: "./media/characters/erza-bear/tongue.svg"
  23497. }
  23498. },
  23499. dick: {
  23500. height: math.unit(10.5, "feet"),
  23501. name: "Dick",
  23502. image: {
  23503. source: "./media/characters/erza-bear/dick.svg"
  23504. }
  23505. },
  23506. dickVertical: {
  23507. height: math.unit(16.9, "feet"),
  23508. name: "Dick (Vertical)",
  23509. image: {
  23510. source: "./media/characters/erza-bear/dick-vertical.svg"
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(100, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(172, "cm"),
  23527. weight: math.unit(73, "kg"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/violet-flor/front.svg",
  23531. extra: 1530 / 1442,
  23532. bottom: 61.9 / 1588.8
  23533. }
  23534. },
  23535. back: {
  23536. height: math.unit(180, "cm"),
  23537. weight: math.unit(73, "kg"),
  23538. name: "Back",
  23539. image: {
  23540. source: "./media/characters/violet-flor/back.svg",
  23541. extra: 1692 / 1630,
  23542. bottom: 20 / 1712
  23543. }
  23544. },
  23545. },
  23546. [
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(172, "cm"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(6, "feet"),
  23559. weight: math.unit(220, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/lynn-rhea/front.svg",
  23563. extra: 310 / 273
  23564. }
  23565. },
  23566. back: {
  23567. height: math.unit(6, "feet"),
  23568. weight: math.unit(220, "lb"),
  23569. name: "Back",
  23570. image: {
  23571. source: "./media/characters/lynn-rhea/back.svg",
  23572. extra: 310 / 273
  23573. }
  23574. },
  23575. dicks: {
  23576. height: math.unit(0.9, "feet"),
  23577. name: "Dicks",
  23578. image: {
  23579. source: "./media/characters/lynn-rhea/dicks.svg"
  23580. }
  23581. },
  23582. slit: {
  23583. height: math.unit(0.4, "feet"),
  23584. name: "Slit",
  23585. image: {
  23586. source: "./media/characters/lynn-rhea/slit.svg"
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Micro",
  23593. height: math.unit(1, "inch")
  23594. },
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(60, "feet"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Megamacro",
  23602. height: math.unit(2, "miles")
  23603. },
  23604. {
  23605. name: "Gigamacro",
  23606. height: math.unit(3, "earths")
  23607. },
  23608. {
  23609. name: "Galactic",
  23610. height: math.unit(0.8, "galaxies")
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23616. {
  23617. front: {
  23618. height: math.unit(1600, "feet"),
  23619. weight: math.unit(85758785169, "kg"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/valathos/front.svg",
  23623. extra: 1451 / 1339
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Macro",
  23630. height: math.unit(1600, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(7 + 5 / 12, "feet"),
  23640. weight: math.unit(300, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/azula/front.svg",
  23644. extra: 3208 / 2880,
  23645. bottom: 80.2 / 3277
  23646. }
  23647. },
  23648. back: {
  23649. height: math.unit(7 + 5 / 12, "feet"),
  23650. weight: math.unit(300, "lb"),
  23651. name: "Back",
  23652. image: {
  23653. source: "./media/characters/azula/back.svg",
  23654. extra: 3169 / 2822,
  23655. bottom: 150.6 / 3321
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(7 + 5 / 12, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Big",
  23667. height: math.unit(20, "feet")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(5 + 1 / 12, "feet"),
  23676. weight: math.unit(110, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/rupert/front.svg",
  23680. extra: 1549 / 1495,
  23681. bottom: 54.2 / 1604.4
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(5 + 1 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23695. {
  23696. front: {
  23697. height: math.unit(8 + 4 / 12, "feet"),
  23698. weight: math.unit(350, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/sheera-castellar/front.svg",
  23702. extra: 1957 / 1894,
  23703. bottom: 26.97 / 1975.017
  23704. }
  23705. },
  23706. side: {
  23707. height: math.unit(8 + 4 / 12, "feet"),
  23708. weight: math.unit(350, "lb"),
  23709. name: "Side",
  23710. image: {
  23711. source: "./media/characters/sheera-castellar/side.svg",
  23712. extra: 1957 / 1894
  23713. }
  23714. },
  23715. back: {
  23716. height: math.unit(8 + 4 / 12, "feet"),
  23717. weight: math.unit(350, "lb"),
  23718. name: "Back",
  23719. image: {
  23720. source: "./media/characters/sheera-castellar/back.svg",
  23721. extra: 1957 / 1894
  23722. }
  23723. },
  23724. angled: {
  23725. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23726. weight: math.unit(350, "lb"),
  23727. name: "Angled",
  23728. image: {
  23729. source: "./media/characters/sheera-castellar/angled.svg",
  23730. extra: 1807 / 1707,
  23731. bottom: 68 / 1875
  23732. }
  23733. },
  23734. genitals: {
  23735. height: math.unit(2.2, "feet"),
  23736. name: "Genitals",
  23737. image: {
  23738. source: "./media/characters/sheera-castellar/genitals.svg"
  23739. }
  23740. },
  23741. taur: {
  23742. height: math.unit(10 + 6/12, "feet"),
  23743. name: "Taur",
  23744. image: {
  23745. source: "./media/characters/sheera-castellar/taur.svg",
  23746. extra: 2017/1909,
  23747. bottom: 185/2202
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(8 + 4 / 12, "feet")
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(150, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro+",
  23763. height: math.unit(800, "feet")
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23769. {
  23770. front: {
  23771. height: math.unit(6, "feet"),
  23772. weight: math.unit(150, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/jaipur/front.svg",
  23776. extra: 3860 / 3731,
  23777. bottom: 287 / 4140
  23778. }
  23779. },
  23780. back: {
  23781. height: math.unit(6, "feet"),
  23782. weight: math.unit(150, "lb"),
  23783. name: "Back",
  23784. image: {
  23785. source: "./media/characters/jaipur/back.svg",
  23786. extra: 4060 / 3930,
  23787. bottom: 151 / 4200
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(1.85, "meters"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(150, "meters")
  23800. },
  23801. {
  23802. name: "Macro+",
  23803. height: math.unit(0.5, "miles")
  23804. },
  23805. {
  23806. name: "Macro++",
  23807. height: math.unit(2.5, "miles")
  23808. },
  23809. {
  23810. name: "Macro+++",
  23811. height: math.unit(12, "miles")
  23812. },
  23813. {
  23814. name: "Macro++++",
  23815. height: math.unit(120, "miles")
  23816. },
  23817. {
  23818. name: "Macro+++++",
  23819. height: math.unit(1200, "miles")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(6, "feet"),
  23828. weight: math.unit(150, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/sheila-wolf/front.svg",
  23832. extra: 1931 / 1808,
  23833. bottom: 29.5 / 1960
  23834. }
  23835. },
  23836. dick: {
  23837. height: math.unit(1.464, "feet"),
  23838. name: "Dick",
  23839. image: {
  23840. source: "./media/characters/sheila-wolf/dick.svg"
  23841. }
  23842. },
  23843. muzzle: {
  23844. height: math.unit(0.513, "feet"),
  23845. name: "Muzzle",
  23846. image: {
  23847. source: "./media/characters/sheila-wolf/muzzle.svg"
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Macro",
  23854. height: math.unit(70, "feet"),
  23855. default: true
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(32, "meters"),
  23864. weight: math.unit(300000, "kg"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/almor/front.svg",
  23868. extra: 1408 / 1322,
  23869. bottom: 94.6 / 1506.5
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Macro",
  23876. height: math.unit(32, "meters"),
  23877. default: true
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23883. {
  23884. front: {
  23885. height: math.unit(7, "feet"),
  23886. weight: math.unit(200, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/silver/front.svg",
  23890. extra: 472.1 / 450.5,
  23891. bottom: 26.5 / 499.424
  23892. }
  23893. },
  23894. },
  23895. [
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(7, "feet"),
  23899. default: true
  23900. },
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(800, "feet")
  23904. },
  23905. {
  23906. name: "Megamacro",
  23907. height: math.unit(250, "miles")
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(6, "feet"),
  23916. weight: math.unit(150, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/pliskin/front.svg",
  23920. extra: 1469 / 1359,
  23921. bottom: 70 / 1540
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Micro",
  23928. height: math.unit(3, "inches")
  23929. },
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(5 + 11 / 12, "feet"),
  23933. default: true
  23934. },
  23935. {
  23936. name: "Macro",
  23937. height: math.unit(120, "feet")
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23943. {
  23944. front: {
  23945. height: math.unit(6, "feet"),
  23946. weight: math.unit(150, "lb"),
  23947. name: "Front",
  23948. image: {
  23949. source: "./media/characters/sammy/front.svg",
  23950. extra: 1193 / 1089,
  23951. bottom: 30.5 / 1226
  23952. }
  23953. },
  23954. },
  23955. [
  23956. {
  23957. name: "Macro",
  23958. height: math.unit(1700, "feet"),
  23959. default: true
  23960. },
  23961. {
  23962. name: "Examacro",
  23963. height: math.unit(2.5e9, "lightyears")
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23969. {
  23970. front: {
  23971. height: math.unit(21, "meters"),
  23972. weight: math.unit(12, "tonnes"),
  23973. name: "Front",
  23974. image: {
  23975. source: "./media/characters/kuru/front.svg",
  23976. extra: 4301 / 3785,
  23977. bottom: 371.3 / 4691
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(21, "meters"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(23, "meters"),
  23994. weight: math.unit(12.2, "tonnes"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/rakka/front.svg",
  23998. extra: 4670 / 4169,
  23999. bottom: 301 / 4968.7
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Macro",
  24006. height: math.unit(23, "meters"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(6, "feet"),
  24016. weight: math.unit(150, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/rhys-feline/front.svg",
  24020. extra: 2488 / 2308,
  24021. bottom: 35.67 / 2519.19
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Really Small",
  24028. height: math.unit(1, "nm")
  24029. },
  24030. {
  24031. name: "Micro",
  24032. height: math.unit(4, "inches")
  24033. },
  24034. {
  24035. name: "Normal",
  24036. height: math.unit(4 + 10 / 12, "feet"),
  24037. default: true
  24038. },
  24039. {
  24040. name: "Macro",
  24041. height: math.unit(100, "feet")
  24042. },
  24043. {
  24044. name: "Megamacto",
  24045. height: math.unit(50, "miles")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24051. {
  24052. side: {
  24053. height: math.unit(30, "feet"),
  24054. weight: math.unit(35000, "kg"),
  24055. name: "Side",
  24056. image: {
  24057. source: "./media/characters/alydar/side.svg",
  24058. extra: 234 / 222,
  24059. bottom: 6.5 / 241
  24060. }
  24061. },
  24062. front: {
  24063. height: math.unit(30, "feet"),
  24064. weight: math.unit(35000, "kg"),
  24065. name: "Front",
  24066. image: {
  24067. source: "./media/characters/alydar/front.svg",
  24068. extra: 223.37 / 210.2,
  24069. bottom: 22.3 / 246.76
  24070. }
  24071. },
  24072. top: {
  24073. height: math.unit(64.54, "feet"),
  24074. weight: math.unit(35000, "kg"),
  24075. name: "Top",
  24076. image: {
  24077. source: "./media/characters/alydar/top.svg"
  24078. }
  24079. },
  24080. anthro: {
  24081. height: math.unit(30, "feet"),
  24082. weight: math.unit(9000, "kg"),
  24083. name: "Anthro",
  24084. image: {
  24085. source: "./media/characters/alydar/anthro.svg",
  24086. extra: 432 / 421,
  24087. bottom: 7.18 / 440
  24088. }
  24089. },
  24090. maw: {
  24091. height: math.unit(11.693, "feet"),
  24092. name: "Maw",
  24093. image: {
  24094. source: "./media/characters/alydar/maw.svg"
  24095. }
  24096. },
  24097. head: {
  24098. height: math.unit(11.693, "feet"),
  24099. name: "Head",
  24100. image: {
  24101. source: "./media/characters/alydar/head.svg"
  24102. }
  24103. },
  24104. headAlt: {
  24105. height: math.unit(12.861, "feet"),
  24106. name: "Head (Alt)",
  24107. image: {
  24108. source: "./media/characters/alydar/head-alt.svg"
  24109. }
  24110. },
  24111. wing: {
  24112. height: math.unit(20.712, "feet"),
  24113. name: "Wing",
  24114. image: {
  24115. source: "./media/characters/alydar/wing.svg"
  24116. }
  24117. },
  24118. wingFeather: {
  24119. height: math.unit(9.662, "feet"),
  24120. name: "Wing Feather",
  24121. image: {
  24122. source: "./media/characters/alydar/wing-feather.svg"
  24123. }
  24124. },
  24125. countourFeather: {
  24126. height: math.unit(4.154, "feet"),
  24127. name: "Contour Feather",
  24128. image: {
  24129. source: "./media/characters/alydar/contour-feather.svg"
  24130. }
  24131. },
  24132. },
  24133. [
  24134. {
  24135. name: "Diplomatic",
  24136. height: math.unit(13, "feet"),
  24137. default: true
  24138. },
  24139. {
  24140. name: "Small",
  24141. height: math.unit(30, "feet")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(95, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Large",
  24150. height: math.unit(285, "feet")
  24151. },
  24152. {
  24153. name: "Incomprehensible",
  24154. height: math.unit(450, "megameters")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24160. {
  24161. side: {
  24162. height: math.unit(11, "feet"),
  24163. weight: math.unit(1750, "kg"),
  24164. name: "Side",
  24165. image: {
  24166. source: "./media/characters/selicia/side.svg",
  24167. extra: 440 / 396,
  24168. bottom: 24.8 / 465.979
  24169. }
  24170. },
  24171. maw: {
  24172. height: math.unit(4.665, "feet"),
  24173. name: "Maw",
  24174. image: {
  24175. source: "./media/characters/selicia/maw.svg"
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Normal",
  24182. height: math.unit(11, "feet"),
  24183. default: true
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24189. {
  24190. side: {
  24191. height: math.unit(2 + 6 / 12, "feet"),
  24192. weight: math.unit(30, "lb"),
  24193. name: "Side",
  24194. image: {
  24195. source: "./media/characters/layla/side.svg",
  24196. extra: 244 / 188,
  24197. bottom: 18.2 / 262.1
  24198. }
  24199. },
  24200. back: {
  24201. height: math.unit(2 + 6 / 12, "feet"),
  24202. weight: math.unit(30, "lb"),
  24203. name: "Back",
  24204. image: {
  24205. source: "./media/characters/layla/back.svg",
  24206. extra: 308 / 241.5,
  24207. bottom: 8.9 / 316.8
  24208. }
  24209. },
  24210. cumming: {
  24211. height: math.unit(2 + 6 / 12, "feet"),
  24212. weight: math.unit(30, "lb"),
  24213. name: "Cumming",
  24214. image: {
  24215. source: "./media/characters/layla/cumming.svg",
  24216. extra: 342 / 279,
  24217. bottom: 595 / 938
  24218. }
  24219. },
  24220. dickFlaccid: {
  24221. height: math.unit(2.595, "feet"),
  24222. name: "Flaccid Genitals",
  24223. image: {
  24224. source: "./media/characters/layla/dick-flaccid.svg"
  24225. }
  24226. },
  24227. dickErect: {
  24228. height: math.unit(2.359, "feet"),
  24229. name: "Erect Genitals",
  24230. image: {
  24231. source: "./media/characters/layla/dick-erect.svg"
  24232. }
  24233. },
  24234. dragon: {
  24235. height: math.unit(40, "feet"),
  24236. name: "Dragon",
  24237. image: {
  24238. source: "./media/characters/layla/dragon.svg",
  24239. extra: 610/535,
  24240. bottom: 367/977
  24241. }
  24242. },
  24243. taur: {
  24244. height: math.unit(30, "feet"),
  24245. name: "Taur",
  24246. image: {
  24247. source: "./media/characters/layla/taur.svg",
  24248. extra: 1268/1199,
  24249. bottom: 112/1380
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Micro",
  24256. height: math.unit(1, "inch")
  24257. },
  24258. {
  24259. name: "Small",
  24260. height: math.unit(1, "foot")
  24261. },
  24262. {
  24263. name: "Normal",
  24264. height: math.unit(2 + 6 / 12, "feet"),
  24265. default: true
  24266. },
  24267. {
  24268. name: "Macro",
  24269. height: math.unit(200, "feet")
  24270. },
  24271. {
  24272. name: "Megamacro",
  24273. height: math.unit(1000, "miles")
  24274. },
  24275. {
  24276. name: "Planetary",
  24277. height: math.unit(8000, "miles")
  24278. },
  24279. {
  24280. name: "True Layla",
  24281. height: math.unit(200000 * 7, "multiverses")
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24287. {
  24288. back: {
  24289. height: math.unit(10.5, "feet"),
  24290. weight: math.unit(800, "lb"),
  24291. name: "Back",
  24292. image: {
  24293. source: "./media/characters/knox/back.svg",
  24294. extra: 1486 / 1089,
  24295. bottom: 107 / 1601.4
  24296. }
  24297. },
  24298. side: {
  24299. height: math.unit(10.5, "feet"),
  24300. weight: math.unit(800, "lb"),
  24301. name: "Side",
  24302. image: {
  24303. source: "./media/characters/knox/side.svg",
  24304. extra: 244 / 218,
  24305. bottom: 14 / 260
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Compact",
  24312. height: math.unit(10.5, "feet"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Dynamax",
  24317. height: math.unit(210, "feet")
  24318. },
  24319. {
  24320. name: "Full Macro",
  24321. height: math.unit(850, "feet")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(28, "feet"),
  24330. weight: math.unit(10500, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/kayda/front.svg",
  24334. extra: 1536 / 1428,
  24335. bottom: 68.7 / 1603
  24336. }
  24337. },
  24338. back: {
  24339. height: math.unit(28, "feet"),
  24340. weight: math.unit(10500, "lb"),
  24341. name: "Back",
  24342. image: {
  24343. source: "./media/characters/kayda/back.svg",
  24344. extra: 1557 / 1464,
  24345. bottom: 39.5 / 1597.49
  24346. }
  24347. },
  24348. dick: {
  24349. height: math.unit(3.858, "feet"),
  24350. name: "Dick",
  24351. image: {
  24352. source: "./media/characters/kayda/dick.svg"
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Macro",
  24359. height: math.unit(28, "feet"),
  24360. default: true
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24366. {
  24367. front: {
  24368. height: math.unit(10 + 11 / 12, "feet"),
  24369. weight: math.unit(1400, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/brian/front.svg",
  24373. extra: 737 / 692,
  24374. bottom: 55.4 / 785
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Normal",
  24381. height: math.unit(10 + 11 / 12, "feet"),
  24382. default: true
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24388. {
  24389. front: {
  24390. height: math.unit(5 + 8 / 12, "feet"),
  24391. weight: math.unit(140, "lb"),
  24392. name: "Front",
  24393. image: {
  24394. source: "./media/characters/khemri/front.svg",
  24395. extra: 4780 / 4059,
  24396. bottom: 80.1 / 4859.25
  24397. }
  24398. },
  24399. },
  24400. [
  24401. {
  24402. name: "Micro",
  24403. height: math.unit(6, "inches")
  24404. },
  24405. {
  24406. name: "Normal",
  24407. height: math.unit(5 + 8 / 12, "feet"),
  24408. default: true
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24414. {
  24415. front: {
  24416. height: math.unit(13, "feet"),
  24417. weight: math.unit(1700, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/felix-braveheart/front.svg",
  24421. extra: 1222 / 1157,
  24422. bottom: 53.2 / 1280
  24423. }
  24424. },
  24425. back: {
  24426. height: math.unit(13, "feet"),
  24427. weight: math.unit(1700, "lb"),
  24428. name: "Back",
  24429. image: {
  24430. source: "./media/characters/felix-braveheart/back.svg",
  24431. extra: 1277 / 1203,
  24432. bottom: 50.2 / 1327
  24433. }
  24434. },
  24435. feral: {
  24436. height: math.unit(6, "feet"),
  24437. weight: math.unit(400, "lb"),
  24438. name: "Feral",
  24439. image: {
  24440. source: "./media/characters/felix-braveheart/feral.svg",
  24441. extra: 682 / 625,
  24442. bottom: 6.9 / 688
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(13, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24456. {
  24457. side: {
  24458. height: math.unit(5 + 11 / 12, "feet"),
  24459. weight: math.unit(1400, "lb"),
  24460. name: "Side",
  24461. image: {
  24462. source: "./media/characters/shadow-blade/side.svg",
  24463. extra: 1726 / 1267,
  24464. bottom: 58.4 / 1785
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(5 + 11 / 12, "feet"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(1 + 6 / 12, "feet"),
  24481. weight: math.unit(25, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/karla-halldor/front.svg",
  24485. extra: 1459 / 1383,
  24486. bottom: 12 / 1472
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(1 + 6 / 12, "feet"),
  24494. default: true
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(6 + 2 / 12, "feet"),
  24503. weight: math.unit(160, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/ariam/front.svg",
  24507. extra: 1073/976,
  24508. bottom: 52/1125
  24509. }
  24510. },
  24511. back: {
  24512. height: math.unit(6 + 2/12, "feet"),
  24513. weight: math.unit(160, "lb"),
  24514. name: "Back",
  24515. image: {
  24516. source: "./media/characters/ariam/back.svg",
  24517. extra: 1103/1023,
  24518. bottom: 9/1112
  24519. }
  24520. },
  24521. dressed: {
  24522. height: math.unit(6 + 2/12, "feet"),
  24523. weight: math.unit(160, "lb"),
  24524. name: "Dressed",
  24525. image: {
  24526. source: "./media/characters/ariam/dressed.svg",
  24527. extra: 1099/1009,
  24528. bottom: 25/1124
  24529. }
  24530. },
  24531. squatting: {
  24532. height: math.unit(4.1, "feet"),
  24533. weight: math.unit(160, "lb"),
  24534. name: "Squatting",
  24535. image: {
  24536. source: "./media/characters/ariam/squatting.svg",
  24537. extra: 2617 / 2112,
  24538. bottom: 61.2 / 2681,
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(6 + 2 / 12, "feet"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Normal+",
  24550. height: math.unit(4, "meters")
  24551. },
  24552. {
  24553. name: "Macro",
  24554. height: math.unit(50, "meters")
  24555. },
  24556. {
  24557. name: "Macro+",
  24558. height: math.unit(100, "meters")
  24559. },
  24560. {
  24561. name: "Megamacro",
  24562. height: math.unit(20, "km")
  24563. },
  24564. {
  24565. name: "Caretaker",
  24566. height: math.unit(444, "megameters")
  24567. },
  24568. ]
  24569. ))
  24570. characterMakers.push(() => makeCharacter(
  24571. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24572. {
  24573. front: {
  24574. height: math.unit(1.67, "meters"),
  24575. weight: math.unit(140, "lb"),
  24576. name: "Front",
  24577. image: {
  24578. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24579. extra: 438 / 410,
  24580. bottom: 0.75 / 439
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Shrunken",
  24587. height: math.unit(7.6, "cm")
  24588. },
  24589. {
  24590. name: "Human Scale",
  24591. height: math.unit(1.67, "meters")
  24592. },
  24593. {
  24594. name: "Wolxi Scale",
  24595. height: math.unit(36.7, "meters"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(1.73, "meters"),
  24605. weight: math.unit(240, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/izue-two-mothers/front.svg",
  24609. extra: 469 / 437,
  24610. bottom: 1.24 / 470.6
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Shrunken",
  24617. height: math.unit(7.86, "cm")
  24618. },
  24619. {
  24620. name: "Human Scale",
  24621. height: math.unit(1.73, "meters")
  24622. },
  24623. {
  24624. name: "Wolxi Scale",
  24625. height: math.unit(38, "meters"),
  24626. default: true
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24632. {
  24633. front: {
  24634. height: math.unit(1.55, "meters"),
  24635. weight: math.unit(120, "lb"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/teeku-love-shack/front.svg",
  24639. extra: 387 / 362,
  24640. bottom: 1.51 / 388
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Shrunken",
  24647. height: math.unit(7, "cm")
  24648. },
  24649. {
  24650. name: "Human Scale",
  24651. height: math.unit(1.55, "meters")
  24652. },
  24653. {
  24654. name: "Wolxi Scale",
  24655. height: math.unit(34.1, "meters"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(1.83, "meters"),
  24665. weight: math.unit(135, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/dejma-the-red/front.svg",
  24669. extra: 480 / 458,
  24670. bottom: 1.8 / 482
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Shrunken",
  24677. height: math.unit(8.3, "cm")
  24678. },
  24679. {
  24680. name: "Human Scale",
  24681. height: math.unit(1.83, "meters")
  24682. },
  24683. {
  24684. name: "Wolxi Scale",
  24685. height: math.unit(40, "meters"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(1.78, "meters"),
  24695. weight: math.unit(65, "kg"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/aki/front.svg",
  24699. extra: 452 / 415
  24700. }
  24701. },
  24702. frontNsfw: {
  24703. height: math.unit(1.78, "meters"),
  24704. weight: math.unit(65, "kg"),
  24705. name: "Front (NSFW)",
  24706. image: {
  24707. source: "./media/characters/aki/front-nsfw.svg",
  24708. extra: 452 / 415
  24709. }
  24710. },
  24711. back: {
  24712. height: math.unit(1.78, "meters"),
  24713. weight: math.unit(65, "kg"),
  24714. name: "Back",
  24715. image: {
  24716. source: "./media/characters/aki/back.svg",
  24717. extra: 452 / 415
  24718. }
  24719. },
  24720. rump: {
  24721. height: math.unit(2.05, "feet"),
  24722. name: "Rump",
  24723. image: {
  24724. source: "./media/characters/aki/rump.svg"
  24725. }
  24726. },
  24727. dick: {
  24728. height: math.unit(0.95, "feet"),
  24729. name: "Dick",
  24730. image: {
  24731. source: "./media/characters/aki/dick.svg"
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Micro",
  24738. height: math.unit(15, "cm")
  24739. },
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(178, "cm"),
  24743. default: true
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(214, "m")
  24748. },
  24749. {
  24750. name: "Macro+",
  24751. height: math.unit(534, "m")
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(5 + 5 / 12, "feet"),
  24760. weight: math.unit(120, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/ari/front.svg",
  24764. extra: 714.5 / 682,
  24765. bottom: 8 / 722.5
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(5 + 5 / 12, "feet")
  24773. },
  24774. {
  24775. name: "Macro",
  24776. height: math.unit(100, "feet"),
  24777. default: true
  24778. },
  24779. {
  24780. name: "Megamacro",
  24781. height: math.unit(100, "miles")
  24782. },
  24783. {
  24784. name: "Gigamacro",
  24785. height: math.unit(80000, "miles")
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24791. {
  24792. side: {
  24793. height: math.unit(9, "feet"),
  24794. weight: math.unit(400, "kg"),
  24795. name: "Side",
  24796. image: {
  24797. source: "./media/characters/bolt/side.svg",
  24798. extra: 1126 / 896,
  24799. bottom: 60 / 1187.3,
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Micro",
  24806. height: math.unit(5, "inches")
  24807. },
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(9, "feet"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(700, "feet")
  24816. },
  24817. {
  24818. name: "Max Size",
  24819. height: math.unit(1.52e22, "yottameters")
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(4.53, "meters"),
  24828. weight: math.unit(3, "tons"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/draekon-sylviar/front.svg",
  24832. extra: 1228 / 1068,
  24833. bottom: 41 / 1270
  24834. }
  24835. },
  24836. tail: {
  24837. height: math.unit(1.772, "meter"),
  24838. name: "Tail",
  24839. image: {
  24840. source: "./media/characters/draekon-sylviar/tail.svg"
  24841. }
  24842. },
  24843. head: {
  24844. height: math.unit(1.331, "meter"),
  24845. name: "Head",
  24846. image: {
  24847. source: "./media/characters/draekon-sylviar/head.svg"
  24848. }
  24849. },
  24850. hand: {
  24851. height: math.unit(0.564, "meter"),
  24852. name: "Hand",
  24853. image: {
  24854. source: "./media/characters/draekon-sylviar/hand.svg"
  24855. }
  24856. },
  24857. foot: {
  24858. height: math.unit(0.621, "meter"),
  24859. name: "Foot",
  24860. image: {
  24861. source: "./media/characters/draekon-sylviar/foot.svg",
  24862. bottom: 32 / 324
  24863. }
  24864. },
  24865. dick: {
  24866. height: math.unit(61, "cm"),
  24867. name: "Dick",
  24868. image: {
  24869. source: "./media/characters/draekon-sylviar/dick.svg"
  24870. }
  24871. },
  24872. dickseparated: {
  24873. height: math.unit(61, "cm"),
  24874. name: "Dick-separated",
  24875. image: {
  24876. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Small",
  24883. height: math.unit(4.53 / 2, "meters"),
  24884. default: true
  24885. },
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(4.53, "meters"),
  24889. default: true
  24890. },
  24891. {
  24892. name: "Large",
  24893. height: math.unit(4.53 * 2, "meters"),
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24899. {
  24900. front: {
  24901. height: math.unit(6 + 2 / 12, "feet"),
  24902. weight: math.unit(180, "lb"),
  24903. name: "Front",
  24904. image: {
  24905. source: "./media/characters/brawler/front.svg",
  24906. extra: 3301 / 3027,
  24907. bottom: 138 / 3439
  24908. }
  24909. },
  24910. },
  24911. [
  24912. {
  24913. name: "Normal",
  24914. height: math.unit(6 + 2 / 12, "feet"),
  24915. default: true
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(11, "feet"),
  24924. weight: math.unit(1000, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/alex/front.svg",
  24928. bottom: 44.5 / 620
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Micro",
  24935. height: math.unit(5, "inches")
  24936. },
  24937. {
  24938. name: "Normal",
  24939. height: math.unit(11, "feet"),
  24940. default: true
  24941. },
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(9.5e9, "feet")
  24945. },
  24946. {
  24947. name: "Max Size",
  24948. height: math.unit(1.4e283, "yottameters")
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24954. {
  24955. female: {
  24956. height: math.unit(29.9, "m"),
  24957. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24958. name: "Female",
  24959. image: {
  24960. source: "./media/characters/zenari/female.svg",
  24961. extra: 3281.6 / 3217,
  24962. bottom: 72.2 / 3353
  24963. }
  24964. },
  24965. male: {
  24966. height: math.unit(27.7, "m"),
  24967. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24968. name: "Male",
  24969. image: {
  24970. source: "./media/characters/zenari/male.svg",
  24971. extra: 3008 / 2991,
  24972. bottom: 54.6 / 3069
  24973. }
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Macro",
  24979. height: math.unit(29.7, "meters"),
  24980. default: true
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24986. {
  24987. female: {
  24988. height: math.unit(23.8, "m"),
  24989. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24990. name: "Female",
  24991. image: {
  24992. source: "./media/characters/mactarian/female.svg",
  24993. extra: 2662 / 2569,
  24994. bottom: 73 / 2736
  24995. }
  24996. },
  24997. male: {
  24998. height: math.unit(23.8, "m"),
  24999. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25000. name: "Male",
  25001. image: {
  25002. source: "./media/characters/mactarian/male.svg",
  25003. extra: 2673 / 2600,
  25004. bottom: 76 / 2750
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Macro",
  25011. height: math.unit(23.8, "meters"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25018. {
  25019. female: {
  25020. height: math.unit(19.3, "m"),
  25021. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25022. name: "Female",
  25023. image: {
  25024. source: "./media/characters/umok/female.svg",
  25025. extra: 2186 / 2078,
  25026. bottom: 87 / 2277
  25027. }
  25028. },
  25029. male: {
  25030. height: math.unit(19.5, "m"),
  25031. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25032. name: "Male",
  25033. image: {
  25034. source: "./media/characters/umok/male.svg",
  25035. extra: 2233 / 2140,
  25036. bottom: 24.4 / 2258
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Macro",
  25043. height: math.unit(19.3, "meters"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25050. {
  25051. female: {
  25052. height: math.unit(26.15, "m"),
  25053. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25054. name: "Female",
  25055. image: {
  25056. source: "./media/characters/joraxian/female.svg",
  25057. extra: 2912 / 2824,
  25058. bottom: 36 / 2956
  25059. }
  25060. },
  25061. male: {
  25062. height: math.unit(25.4, "m"),
  25063. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25064. name: "Male",
  25065. image: {
  25066. source: "./media/characters/joraxian/male.svg",
  25067. extra: 2877 / 2721,
  25068. bottom: 82 / 2967
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Macro",
  25075. height: math.unit(26.15, "meters"),
  25076. default: true
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25082. {
  25083. female: {
  25084. height: math.unit(21.6, "m"),
  25085. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25086. name: "Female",
  25087. image: {
  25088. source: "./media/characters/sthara/female.svg",
  25089. extra: 2516 / 2347,
  25090. bottom: 21.5 / 2537
  25091. }
  25092. },
  25093. male: {
  25094. height: math.unit(24, "m"),
  25095. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25096. name: "Male",
  25097. image: {
  25098. source: "./media/characters/sthara/male.svg",
  25099. extra: 2732 / 2607,
  25100. bottom: 23 / 2732
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(21.6, "meters"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(6 + 4 / 12, "feet"),
  25117. weight: math.unit(175, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/luka-bryzant/front.svg",
  25121. extra: 311 / 289,
  25122. bottom: 4 / 315
  25123. }
  25124. },
  25125. back: {
  25126. height: math.unit(6 + 4 / 12, "feet"),
  25127. weight: math.unit(175, "lb"),
  25128. name: "Back",
  25129. image: {
  25130. source: "./media/characters/luka-bryzant/back.svg",
  25131. extra: 311 / 289,
  25132. bottom: 3.8 / 313.7
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Micro",
  25139. height: math.unit(10, "inches")
  25140. },
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(6 + 4 / 12, "feet"),
  25144. default: true
  25145. },
  25146. {
  25147. name: "Large",
  25148. height: math.unit(12, "feet")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(5 + 7 / 12, "feet"),
  25157. weight: math.unit(185, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/aman-aquila/front.svg",
  25161. extra: 1013 / 976,
  25162. bottom: 45.6 / 1057
  25163. }
  25164. },
  25165. side: {
  25166. height: math.unit(5 + 7 / 12, "feet"),
  25167. weight: math.unit(185, "lb"),
  25168. name: "Side",
  25169. image: {
  25170. source: "./media/characters/aman-aquila/side.svg",
  25171. extra: 1054 / 1011,
  25172. bottom: 15 / 1070
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(5 + 7 / 12, "feet"),
  25177. weight: math.unit(185, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/aman-aquila/back.svg",
  25181. extra: 1026 / 970,
  25182. bottom: 12 / 1039
  25183. }
  25184. },
  25185. head: {
  25186. height: math.unit(1.211, "feet"),
  25187. name: "Head",
  25188. image: {
  25189. source: "./media/characters/aman-aquila/head.svg",
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Minimicro",
  25196. height: math.unit(0.057, "inches")
  25197. },
  25198. {
  25199. name: "Micro",
  25200. height: math.unit(7, "inches")
  25201. },
  25202. {
  25203. name: "Mini",
  25204. height: math.unit(3 + 7 / 12, "feet")
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(5 + 7 / 12, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(157 + 7 / 12, "feet")
  25214. },
  25215. {
  25216. name: "Megamacro",
  25217. height: math.unit(1557 + 7 / 12, "feet")
  25218. },
  25219. {
  25220. name: "Gigamacro",
  25221. height: math.unit(15557 + 7 / 12, "feet")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(3 + 2 / 12, "inches"),
  25230. weight: math.unit(0.3, "ounces"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/hiphae/front.svg",
  25234. extra: 1931 / 1683,
  25235. bottom: 24 / 1955
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(3 + 1 / 2, "inches"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(5 + 10 / 12, "feet"),
  25252. weight: math.unit(165, "lb"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/nicky/front.svg",
  25256. extra: 3144 / 2886,
  25257. bottom: 45.6 / 3192
  25258. }
  25259. },
  25260. back: {
  25261. height: math.unit(5 + 10 / 12, "feet"),
  25262. weight: math.unit(165, "lb"),
  25263. name: "Back",
  25264. image: {
  25265. source: "./media/characters/nicky/back.svg",
  25266. extra: 3055 / 2804,
  25267. bottom: 28.4 / 3087
  25268. }
  25269. },
  25270. frontclothed: {
  25271. height: math.unit(5 + 10 / 12, "feet"),
  25272. weight: math.unit(165, "lb"),
  25273. name: "Front-clothed",
  25274. image: {
  25275. source: "./media/characters/nicky/front-clothed.svg",
  25276. extra: 3184.9 / 2926.9,
  25277. bottom: 86.5 / 3239.9
  25278. }
  25279. },
  25280. foot: {
  25281. height: math.unit(1.16, "feet"),
  25282. name: "Foot",
  25283. image: {
  25284. source: "./media/characters/nicky/foot.svg"
  25285. }
  25286. },
  25287. feet: {
  25288. height: math.unit(1.34, "feet"),
  25289. name: "Feet",
  25290. image: {
  25291. source: "./media/characters/nicky/feet.svg"
  25292. }
  25293. },
  25294. maw: {
  25295. height: math.unit(0.9, "feet"),
  25296. name: "Maw",
  25297. image: {
  25298. source: "./media/characters/nicky/maw.svg"
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(5 + 10 / 12, "feet"),
  25306. default: true
  25307. },
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(60, "feet")
  25311. },
  25312. {
  25313. name: "Megamacro",
  25314. height: math.unit(1, "mile")
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25320. {
  25321. side: {
  25322. height: math.unit(10, "feet"),
  25323. weight: math.unit(600, "lb"),
  25324. name: "Side",
  25325. image: {
  25326. source: "./media/characters/blair/side.svg",
  25327. bottom: 16.6 / 475,
  25328. extra: 458 / 431
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Micro",
  25335. height: math.unit(8, "inches")
  25336. },
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(10, "feet"),
  25340. default: true
  25341. },
  25342. {
  25343. name: "Macro",
  25344. height: math.unit(180, "feet")
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(5 + 4 / 12, "feet"),
  25353. weight: math.unit(125, "lb"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/fisher/front.svg",
  25357. extra: 444 / 390,
  25358. bottom: 2 / 444.8
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Micro",
  25365. height: math.unit(4, "inches")
  25366. },
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(5 + 4 / 12, "feet"),
  25370. default: true
  25371. },
  25372. {
  25373. name: "Macro",
  25374. height: math.unit(100, "feet")
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25380. {
  25381. front: {
  25382. height: math.unit(6.71, "feet"),
  25383. weight: math.unit(200, "lb"),
  25384. capacity: math.unit(1000000, "people"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/gliss/front.svg",
  25388. extra: 2347 / 2231,
  25389. bottom: 113 / 2462
  25390. }
  25391. },
  25392. hammerspaceSize: {
  25393. height: math.unit(6.71 * 717, "feet"),
  25394. weight: math.unit(200, "lb"),
  25395. capacity: math.unit(1000000, "people"),
  25396. name: "Hammerspace Size",
  25397. image: {
  25398. source: "./media/characters/gliss/front.svg",
  25399. extra: 2347 / 2231,
  25400. bottom: 113 / 2462
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(6.71, "feet"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25414. {
  25415. side: {
  25416. height: math.unit(1.44, "m"),
  25417. weight: math.unit(80, "kg"),
  25418. name: "Side",
  25419. image: {
  25420. source: "./media/characters/dune-anderson/side.svg",
  25421. bottom: 49 / 1426
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Wolf-sized",
  25428. height: math.unit(1.44, "meters")
  25429. },
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(5.05, "meters"),
  25433. default: true
  25434. },
  25435. {
  25436. name: "Big",
  25437. height: math.unit(14.4, "meters")
  25438. },
  25439. {
  25440. name: "Huge",
  25441. height: math.unit(144, "meters")
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(7, "feet"),
  25450. weight: math.unit(425, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/hind/front.svg",
  25454. extra: 2091 / 1860,
  25455. bottom: 129 / 2220
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(7, "feet"),
  25460. weight: math.unit(425, "lb"),
  25461. name: "Back",
  25462. image: {
  25463. source: "./media/characters/hind/back.svg",
  25464. extra: 2091 / 1860,
  25465. bottom: 24.6 / 2309
  25466. }
  25467. },
  25468. tail: {
  25469. height: math.unit(2.8, "feet"),
  25470. name: "Tail",
  25471. image: {
  25472. source: "./media/characters/hind/tail.svg"
  25473. }
  25474. },
  25475. head: {
  25476. height: math.unit(2.55, "feet"),
  25477. name: "Head",
  25478. image: {
  25479. source: "./media/characters/hind/head.svg"
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "XS",
  25486. height: math.unit(0.7, "feet")
  25487. },
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(7, "feet"),
  25491. default: true
  25492. },
  25493. {
  25494. name: "XL",
  25495. height: math.unit(70, "feet")
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(2.1, "meters"),
  25504. weight: math.unit(150, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/tharquench-sizestealer/front.svg",
  25508. extra: 1605/1470,
  25509. bottom: 36/1641
  25510. }
  25511. },
  25512. frontAlt: {
  25513. height: math.unit(2.1, "meters"),
  25514. weight: math.unit(150, "lb"),
  25515. name: "Front (Alt)",
  25516. image: {
  25517. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25518. extra: 2318 / 2063,
  25519. bottom: 93.4 / 2410
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Nano",
  25526. height: math.unit(1, "mm")
  25527. },
  25528. {
  25529. name: "Micro",
  25530. height: math.unit(1, "cm")
  25531. },
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(2.1, "meters"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(7 + 5 / 12, "feet"),
  25544. weight: math.unit(357, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/solex-draconov/front.svg",
  25548. extra: 1993 / 1865,
  25549. bottom: 117 / 2111
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Natural Height",
  25556. height: math.unit(7 + 5 / 12, "feet"),
  25557. default: true
  25558. },
  25559. {
  25560. name: "Macro",
  25561. height: math.unit(350, "feet")
  25562. },
  25563. {
  25564. name: "Macro+",
  25565. height: math.unit(1000, "feet")
  25566. },
  25567. {
  25568. name: "Megamacro",
  25569. height: math.unit(20, "km")
  25570. },
  25571. {
  25572. name: "Megamacro+",
  25573. height: math.unit(1000, "km")
  25574. },
  25575. {
  25576. name: "Gigamacro",
  25577. height: math.unit(2.5, "Gm")
  25578. },
  25579. {
  25580. name: "Teramacro",
  25581. height: math.unit(15, "Tm")
  25582. },
  25583. {
  25584. name: "Galactic",
  25585. height: math.unit(30, "Zm")
  25586. },
  25587. {
  25588. name: "Universal",
  25589. height: math.unit(21000, "Ym")
  25590. },
  25591. {
  25592. name: "Omniversal",
  25593. height: math.unit(9.861e50, "Ym")
  25594. },
  25595. {
  25596. name: "Existential",
  25597. height: math.unit(1e300, "meters")
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25603. {
  25604. side: {
  25605. height: math.unit(25, "feet"),
  25606. weight: math.unit(90000, "lb"),
  25607. name: "Side",
  25608. image: {
  25609. source: "./media/characters/mandarax/side.svg",
  25610. extra: 614 / 332,
  25611. bottom: 55 / 630
  25612. }
  25613. },
  25614. head: {
  25615. height: math.unit(11.4, "feet"),
  25616. name: "Head",
  25617. image: {
  25618. source: "./media/characters/mandarax/head.svg"
  25619. }
  25620. },
  25621. belly: {
  25622. height: math.unit(33, "feet"),
  25623. name: "Belly",
  25624. capacity: math.unit(500, "people"),
  25625. image: {
  25626. source: "./media/characters/mandarax/belly.svg"
  25627. }
  25628. },
  25629. dick: {
  25630. height: math.unit(8.46, "feet"),
  25631. name: "Dick",
  25632. image: {
  25633. source: "./media/characters/mandarax/dick.svg"
  25634. }
  25635. },
  25636. top: {
  25637. height: math.unit(28, "meters"),
  25638. name: "Top",
  25639. image: {
  25640. source: "./media/characters/mandarax/top.svg"
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(25, "feet"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(5, "feet"),
  25657. weight: math.unit(90, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/pixil/front.svg",
  25661. extra: 2000 / 1618,
  25662. bottom: 12.3 / 2011
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(5, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Megamacro",
  25674. height: math.unit(10, "miles"),
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(7 + 2 / 12, "feet"),
  25683. weight: math.unit(200, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/angel/front.svg",
  25687. extra: 1830 / 1737,
  25688. bottom: 22.6 / 1854,
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(7 + 2 / 12, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(1000, "feet")
  25701. },
  25702. {
  25703. name: "Megamacro",
  25704. height: math.unit(2, "miles")
  25705. },
  25706. {
  25707. name: "Gigamacro",
  25708. height: math.unit(20, "earths")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(5, "feet"),
  25717. weight: math.unit(180, "lb"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/mekana/front.svg",
  25721. extra: 1671 / 1605,
  25722. bottom: 3.5 / 1691
  25723. }
  25724. },
  25725. side: {
  25726. height: math.unit(5, "feet"),
  25727. weight: math.unit(180, "lb"),
  25728. name: "Side",
  25729. image: {
  25730. source: "./media/characters/mekana/side.svg",
  25731. extra: 1671 / 1605,
  25732. bottom: 3.5 / 1691
  25733. }
  25734. },
  25735. back: {
  25736. height: math.unit(5, "feet"),
  25737. weight: math.unit(180, "lb"),
  25738. name: "Back",
  25739. image: {
  25740. source: "./media/characters/mekana/back.svg",
  25741. extra: 1671 / 1605,
  25742. bottom: 3.5 / 1691
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(5, "feet"),
  25750. default: true
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(4 + 6 / 12, "feet"),
  25759. weight: math.unit(80, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/pixie/front.svg",
  25763. extra: 1924 / 1825,
  25764. bottom: 22.4 / 1946
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(4 + 6 / 12, "feet"),
  25772. default: true
  25773. },
  25774. {
  25775. name: "Macro",
  25776. height: math.unit(40, "feet")
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25782. {
  25783. front: {
  25784. height: math.unit(2.1, "meters"),
  25785. weight: math.unit(200, "lb"),
  25786. name: "Front",
  25787. image: {
  25788. source: "./media/characters/the-lascivious/front.svg",
  25789. extra: 1 / 0.893,
  25790. bottom: 3.5 / 573.7
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Human Scale",
  25797. height: math.unit(2.1, "meters")
  25798. },
  25799. {
  25800. name: "Wolxi Scale",
  25801. height: math.unit(46.2, "m"),
  25802. default: true
  25803. },
  25804. {
  25805. name: "Boinker of Buildings",
  25806. height: math.unit(10, "km")
  25807. },
  25808. {
  25809. name: "Shagger of Skyscrapers",
  25810. height: math.unit(40, "km")
  25811. },
  25812. {
  25813. name: "Banger of Boroughs",
  25814. height: math.unit(4000, "km")
  25815. },
  25816. {
  25817. name: "Screwer of States",
  25818. height: math.unit(100000, "km")
  25819. },
  25820. {
  25821. name: "Pounder of Planets",
  25822. height: math.unit(2000000, "km")
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(6, "feet"),
  25831. weight: math.unit(150, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/aj/front.svg",
  25835. extra: 2039 / 1562,
  25836. bottom: 40 / 2079
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(11 + 6 / 12, "feet"),
  25844. default: true
  25845. },
  25846. {
  25847. name: "Megamacro",
  25848. height: math.unit(60, "megameters")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25854. {
  25855. side: {
  25856. height: math.unit(31 + 8 / 12, "feet"),
  25857. weight: math.unit(75000, "kg"),
  25858. name: "Side",
  25859. image: {
  25860. source: "./media/characters/koros/side.svg",
  25861. extra: 1442 / 1297,
  25862. bottom: 122.7 / 1562
  25863. }
  25864. },
  25865. dicksKingsCrown: {
  25866. height: math.unit(6, "feet"),
  25867. name: "Dicks (King's Crown)",
  25868. image: {
  25869. source: "./media/characters/koros/dicks-kings-crown.svg"
  25870. }
  25871. },
  25872. dicksTailSet: {
  25873. height: math.unit(3, "feet"),
  25874. name: "Dicks (Tail Set)",
  25875. image: {
  25876. source: "./media/characters/koros/dicks-tail-set.svg"
  25877. }
  25878. },
  25879. dickCumming: {
  25880. height: math.unit(7.98, "feet"),
  25881. name: "Dick (Cumming)",
  25882. image: {
  25883. source: "./media/characters/koros/dick-cumming.svg"
  25884. }
  25885. },
  25886. dicksBack: {
  25887. height: math.unit(5.9, "feet"),
  25888. name: "Dicks (Back)",
  25889. image: {
  25890. source: "./media/characters/koros/dicks-back.svg"
  25891. }
  25892. },
  25893. dicksFront: {
  25894. height: math.unit(3.72, "feet"),
  25895. name: "Dicks (Front)",
  25896. image: {
  25897. source: "./media/characters/koros/dicks-front.svg"
  25898. }
  25899. },
  25900. dicksPeeking: {
  25901. height: math.unit(3.0, "feet"),
  25902. name: "Dicks (Peeking)",
  25903. image: {
  25904. source: "./media/characters/koros/dicks-peeking.svg"
  25905. }
  25906. },
  25907. eye: {
  25908. height: math.unit(1.7, "feet"),
  25909. name: "Eye",
  25910. image: {
  25911. source: "./media/characters/koros/eye.svg"
  25912. }
  25913. },
  25914. headFront: {
  25915. height: math.unit(11.69, "feet"),
  25916. name: "Head (Front)",
  25917. image: {
  25918. source: "./media/characters/koros/head-front.svg"
  25919. }
  25920. },
  25921. headSide: {
  25922. height: math.unit(14, "feet"),
  25923. name: "Head (Side)",
  25924. image: {
  25925. source: "./media/characters/koros/head-side.svg"
  25926. }
  25927. },
  25928. leg: {
  25929. height: math.unit(17, "feet"),
  25930. name: "Leg",
  25931. image: {
  25932. source: "./media/characters/koros/leg.svg"
  25933. }
  25934. },
  25935. mawSide: {
  25936. height: math.unit(12.8, "feet"),
  25937. name: "Maw (Side)",
  25938. image: {
  25939. source: "./media/characters/koros/maw-side.svg"
  25940. }
  25941. },
  25942. mawSpitting: {
  25943. height: math.unit(17, "feet"),
  25944. name: "Maw (Spitting)",
  25945. image: {
  25946. source: "./media/characters/koros/maw-spitting.svg"
  25947. }
  25948. },
  25949. slit: {
  25950. height: math.unit(2.8, "feet"),
  25951. name: "Slit",
  25952. image: {
  25953. source: "./media/characters/koros/slit.svg"
  25954. }
  25955. },
  25956. stomach: {
  25957. height: math.unit(6.8, "feet"),
  25958. capacity: math.unit(20, "people"),
  25959. name: "Stomach",
  25960. image: {
  25961. source: "./media/characters/koros/stomach.svg"
  25962. }
  25963. },
  25964. wingspanBottom: {
  25965. height: math.unit(114, "feet"),
  25966. name: "Wingspan (Bottom)",
  25967. image: {
  25968. source: "./media/characters/koros/wingspan-bottom.svg"
  25969. }
  25970. },
  25971. wingspanTop: {
  25972. height: math.unit(104, "feet"),
  25973. name: "Wingspan (Top)",
  25974. image: {
  25975. source: "./media/characters/koros/wingspan-top.svg"
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(31 + 8 / 12, "feet"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(18 + 5 / 12, "feet"),
  25992. weight: math.unit(3750, "kg"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/vexx/front.svg",
  25996. extra: 426 / 396,
  25997. bottom: 31.5 / 458
  25998. }
  25999. },
  26000. maw: {
  26001. height: math.unit(6, "feet"),
  26002. name: "Maw",
  26003. image: {
  26004. source: "./media/characters/vexx/maw.svg"
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(18 + 5 / 12, "feet"),
  26012. default: true
  26013. },
  26014. ]
  26015. ))
  26016. characterMakers.push(() => makeCharacter(
  26017. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26018. {
  26019. front: {
  26020. height: math.unit(17 + 6 / 12, "feet"),
  26021. weight: math.unit(150, "lb"),
  26022. name: "Front",
  26023. image: {
  26024. source: "./media/characters/baadra/front.svg",
  26025. extra: 3137 / 2890,
  26026. bottom: 168.4 / 3305
  26027. }
  26028. },
  26029. back: {
  26030. height: math.unit(17 + 6 / 12, "feet"),
  26031. weight: math.unit(150, "lb"),
  26032. name: "Back",
  26033. image: {
  26034. source: "./media/characters/baadra/back.svg",
  26035. extra: 3142 / 2890,
  26036. bottom: 220 / 3371
  26037. }
  26038. },
  26039. head: {
  26040. height: math.unit(5.45, "feet"),
  26041. name: "Head",
  26042. image: {
  26043. source: "./media/characters/baadra/head.svg"
  26044. }
  26045. },
  26046. headAngry: {
  26047. height: math.unit(4.95, "feet"),
  26048. name: "Head (Angry)",
  26049. image: {
  26050. source: "./media/characters/baadra/head-angry.svg"
  26051. }
  26052. },
  26053. headOpen: {
  26054. height: math.unit(6, "feet"),
  26055. name: "Head (Open)",
  26056. image: {
  26057. source: "./media/characters/baadra/head-open.svg"
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(17 + 6 / 12, "feet"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(7 + 3 / 12, "feet"),
  26074. weight: math.unit(180, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/juri/front.svg",
  26078. extra: 1401 / 1237,
  26079. bottom: 18.5 / 1418
  26080. }
  26081. },
  26082. side: {
  26083. height: math.unit(7 + 3 / 12, "feet"),
  26084. weight: math.unit(180, "lb"),
  26085. name: "Side",
  26086. image: {
  26087. source: "./media/characters/juri/side.svg",
  26088. extra: 1424 / 1242,
  26089. bottom: 18.5 / 1447
  26090. }
  26091. },
  26092. sitting: {
  26093. height: math.unit(6, "feet"),
  26094. weight: math.unit(180, "lb"),
  26095. name: "Sitting",
  26096. image: {
  26097. source: "./media/characters/juri/sitting.svg",
  26098. extra: 1270 / 1143,
  26099. bottom: 100 / 1343
  26100. }
  26101. },
  26102. back: {
  26103. height: math.unit(7 + 3 / 12, "feet"),
  26104. weight: math.unit(180, "lb"),
  26105. name: "Back",
  26106. image: {
  26107. source: "./media/characters/juri/back.svg",
  26108. extra: 1377 / 1240,
  26109. bottom: 23.7 / 1405
  26110. }
  26111. },
  26112. maw: {
  26113. height: math.unit(2.8, "feet"),
  26114. name: "Maw",
  26115. image: {
  26116. source: "./media/characters/juri/maw.svg"
  26117. }
  26118. },
  26119. stomach: {
  26120. height: math.unit(0.89, "feet"),
  26121. capacity: math.unit(4, "liters"),
  26122. name: "Stomach",
  26123. image: {
  26124. source: "./media/characters/juri/stomach.svg"
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(7 + 3 / 12, "feet"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26138. {
  26139. fox: {
  26140. height: math.unit(5 + 6 / 12, "feet"),
  26141. weight: math.unit(140, "lb"),
  26142. name: "Fox",
  26143. image: {
  26144. source: "./media/characters/maxene-sita/fox.svg",
  26145. extra: 146 / 138,
  26146. bottom: 2.1 / 148.19
  26147. }
  26148. },
  26149. foxLaying: {
  26150. height: math.unit(1.70, "feet"),
  26151. weight: math.unit(140, "lb"),
  26152. name: "Fox (Laying)",
  26153. image: {
  26154. source: "./media/characters/maxene-sita/fox-laying.svg",
  26155. extra: 910 / 572,
  26156. bottom: 71 / 981
  26157. }
  26158. },
  26159. kitsune: {
  26160. height: math.unit(10, "feet"),
  26161. weight: math.unit(800, "lb"),
  26162. name: "Kitsune",
  26163. image: {
  26164. source: "./media/characters/maxene-sita/kitsune.svg",
  26165. extra: 185 / 176,
  26166. bottom: 4.7 / 189.9
  26167. }
  26168. },
  26169. hellhound: {
  26170. height: math.unit(10, "feet"),
  26171. weight: math.unit(700, "lb"),
  26172. name: "Hellhound",
  26173. image: {
  26174. source: "./media/characters/maxene-sita/hellhound.svg",
  26175. extra: 1600 / 1545,
  26176. bottom: 81 / 1681
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(5 + 6 / 12, "feet"),
  26184. default: true
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26190. {
  26191. front: {
  26192. height: math.unit(3 + 4 / 12, "feet"),
  26193. weight: math.unit(70, "lb"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/maia/front.svg",
  26197. extra: 227 / 219.5,
  26198. bottom: 40 / 267
  26199. }
  26200. },
  26201. back: {
  26202. height: math.unit(3 + 4 / 12, "feet"),
  26203. weight: math.unit(70, "lb"),
  26204. name: "Back",
  26205. image: {
  26206. source: "./media/characters/maia/back.svg",
  26207. extra: 237 / 225
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(3 + 4 / 12, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 10 / 12, "feet"),
  26224. weight: math.unit(197, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/jabaro/front.svg",
  26228. extra: 225 / 216,
  26229. bottom: 5.06 / 230
  26230. }
  26231. },
  26232. back: {
  26233. height: math.unit(5 + 10 / 12, "feet"),
  26234. weight: math.unit(197, "lb"),
  26235. name: "Back",
  26236. image: {
  26237. source: "./media/characters/jabaro/back.svg",
  26238. extra: 225 / 219,
  26239. bottom: 1.9 / 227
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(5 + 10 / 12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(5 + 8 / 12, "feet"),
  26256. weight: math.unit(139, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/risa/front.svg",
  26260. extra: 270 / 260,
  26261. bottom: 11.2 / 282
  26262. }
  26263. },
  26264. back: {
  26265. height: math.unit(5 + 8 / 12, "feet"),
  26266. weight: math.unit(139, "lb"),
  26267. name: "Back",
  26268. image: {
  26269. source: "./media/characters/risa/back.svg",
  26270. extra: 264 / 255,
  26271. bottom: 4 / 268
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(5 + 8 / 12, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(2 + 11 / 12, "feet"),
  26288. weight: math.unit(30, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/weatley/front.svg",
  26292. bottom: 10.7 / 414,
  26293. extra: 403.5 / 362
  26294. }
  26295. },
  26296. back: {
  26297. height: math.unit(2 + 11 / 12, "feet"),
  26298. weight: math.unit(30, "lb"),
  26299. name: "Back",
  26300. image: {
  26301. source: "./media/characters/weatley/back.svg",
  26302. bottom: 10.7 / 414,
  26303. extra: 403.5 / 362
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(2 + 11 / 12, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(5 + 2 / 12, "feet"),
  26320. weight: math.unit(50, "kg"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/mercury-crescent/front.svg",
  26324. extra: 1088 / 1033,
  26325. bottom: 18.9 / 1109
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(5 + 2 / 12, "feet"),
  26333. default: true
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(2, "feet"),
  26342. weight: math.unit(15, "kg"),
  26343. name: "Front",
  26344. image: {
  26345. source: "./media/characters/diamond-jones/front.svg",
  26346. extra: 727/723,
  26347. bottom: 46/773
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(2, "feet"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(3, "feet"),
  26364. weight: math.unit(30, "kg"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/sweet-bit/front.svg",
  26368. extra: 675 / 567,
  26369. bottom: 27.7 / 703
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(3, "feet"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26383. {
  26384. side: {
  26385. height: math.unit(9.178, "feet"),
  26386. weight: math.unit(500, "lb"),
  26387. name: "Side",
  26388. image: {
  26389. source: "./media/characters/umbrazen/side.svg",
  26390. extra: 1730 / 1473,
  26391. bottom: 34.6 / 1765
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Normal",
  26398. height: math.unit(9.178, "feet"),
  26399. default: true
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(10, "feet"),
  26408. weight: math.unit(750, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/arlist/front.svg",
  26412. extra: 961 / 778,
  26413. bottom: 6.2 / 986
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(10, "feet"),
  26421. default: true
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(5 + 1 / 12, "feet"),
  26430. weight: math.unit(110, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/aradel/front.svg",
  26434. extra: 324 / 303,
  26435. bottom: 3.6 / 329.4
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(5 + 1 / 12, "feet"),
  26443. default: true
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26449. {
  26450. front: {
  26451. height: math.unit(3 + 8 / 12, "feet"),
  26452. weight: math.unit(50, "lb"),
  26453. name: "Front",
  26454. image: {
  26455. source: "./media/characters/serryn/front.svg",
  26456. extra: 1792 / 1656,
  26457. bottom: 43.5 / 1840
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(3 + 8 / 12, "feet"),
  26465. default: true
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(7 + 10 / 12, "feet"),
  26474. weight: math.unit(255, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/xavier-thyme/front.svg",
  26478. extra: 3733 / 3642,
  26479. bottom: 131 / 3869
  26480. }
  26481. },
  26482. frontRaven: {
  26483. height: math.unit(7 + 10 / 12, "feet"),
  26484. weight: math.unit(255, "lb"),
  26485. name: "Front (Raven)",
  26486. image: {
  26487. source: "./media/characters/xavier-thyme/front-raven.svg",
  26488. extra: 4385 / 3642,
  26489. bottom: 131 / 4517
  26490. }
  26491. },
  26492. },
  26493. [
  26494. {
  26495. name: "Normal",
  26496. height: math.unit(7 + 10 / 12, "feet"),
  26497. default: true
  26498. },
  26499. ]
  26500. ))
  26501. characterMakers.push(() => makeCharacter(
  26502. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26503. {
  26504. front: {
  26505. height: math.unit(1.6, "m"),
  26506. weight: math.unit(50, "kg"),
  26507. name: "Front",
  26508. image: {
  26509. source: "./media/characters/kiki/front.svg",
  26510. extra: 4682 / 3610,
  26511. bottom: 115 / 4777
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(1.6, "meters"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(50, "m"),
  26528. weight: math.unit(500, "tonnes"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/ryoko/front.svg",
  26532. extra: 4632 / 3926,
  26533. bottom: 193 / 4823
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(50, "meters"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(30, "m"),
  26550. weight: math.unit(22, "tonnes"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/elio/front.svg",
  26554. extra: 4582 / 3720,
  26555. bottom: 236 / 4828
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(30, "meters"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(6 + 3 / 12, "feet"),
  26572. weight: math.unit(120, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/azura/front.svg",
  26576. extra: 1149 / 1135,
  26577. bottom: 45 / 1194
  26578. }
  26579. },
  26580. frontClothed: {
  26581. height: math.unit(6 + 3 / 12, "feet"),
  26582. weight: math.unit(120, "lb"),
  26583. name: "Front (Clothed)",
  26584. image: {
  26585. source: "./media/characters/azura/front-clothed.svg",
  26586. extra: 1149 / 1135,
  26587. bottom: 45 / 1194
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(6 + 3 / 12, "feet"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(20 + 6 / 12, "feet")
  26600. },
  26601. {
  26602. name: "Megamacro",
  26603. height: math.unit(12, "miles")
  26604. },
  26605. {
  26606. name: "Gigamacro",
  26607. height: math.unit(10000, "miles")
  26608. },
  26609. {
  26610. name: "Teramacro",
  26611. height: math.unit(900000, "miles")
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(12, "feet"),
  26620. weight: math.unit(1, "ton"),
  26621. capacity: math.unit(660000, "gallons"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/zeus/front.svg",
  26625. extra: 5005 / 4717,
  26626. bottom: 363 / 5388
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(12, "feet")
  26634. },
  26635. {
  26636. name: "Preferred Size",
  26637. height: math.unit(0.5, "miles"),
  26638. default: true
  26639. },
  26640. {
  26641. name: "Giga Horse",
  26642. height: math.unit(300, "miles")
  26643. },
  26644. {
  26645. name: "Riding Planets",
  26646. height: math.unit(30, "megameters")
  26647. },
  26648. {
  26649. name: "Cosmic Giant",
  26650. height: math.unit(3, "zettameters")
  26651. },
  26652. {
  26653. name: "Breeding God",
  26654. height: math.unit(9.92e22, "yottameters")
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26660. {
  26661. side: {
  26662. height: math.unit(9, "feet"),
  26663. weight: math.unit(1500, "kg"),
  26664. name: "Side",
  26665. image: {
  26666. source: "./media/characters/fang/side.svg",
  26667. extra: 924 / 866,
  26668. bottom: 47.5 / 972.3
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(9, "feet"),
  26676. default: true
  26677. },
  26678. {
  26679. name: "Macro",
  26680. height: math.unit(75 + 6 / 12, "feet")
  26681. },
  26682. {
  26683. name: "Teramacro",
  26684. height: math.unit(50000, "miles")
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(10, "feet"),
  26693. weight: math.unit(2, "tons"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/rekhit/front.svg",
  26697. extra: 2796 / 2590,
  26698. bottom: 225 / 3022
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Normal",
  26705. height: math.unit(10, "feet"),
  26706. default: true
  26707. },
  26708. {
  26709. name: "Macro",
  26710. height: math.unit(500, "feet")
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(7 + 6.451 / 12, "feet"),
  26719. weight: math.unit(310, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/dahlia-verrick/front.svg",
  26723. extra: 1488 / 1365,
  26724. bottom: 6.2 / 1495
  26725. }
  26726. },
  26727. back: {
  26728. height: math.unit(7 + 6.451 / 12, "feet"),
  26729. weight: math.unit(310, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/dahlia-verrick/back.svg",
  26733. extra: 1472 / 1351,
  26734. bottom: 5.28 / 1477
  26735. }
  26736. },
  26737. frontBusiness: {
  26738. height: math.unit(7 + 6.451 / 12, "feet"),
  26739. weight: math.unit(200, "lb"),
  26740. name: "Front (Business)",
  26741. image: {
  26742. source: "./media/characters/dahlia-verrick/front-business.svg",
  26743. extra: 1478 / 1381,
  26744. bottom: 5.5 / 1484
  26745. }
  26746. },
  26747. frontCasual: {
  26748. height: math.unit(7 + 6.451 / 12, "feet"),
  26749. weight: math.unit(200, "lb"),
  26750. name: "Front (Casual)",
  26751. image: {
  26752. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26753. extra: 1478 / 1381,
  26754. bottom: 5.5 / 1484
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Travel-Sized",
  26761. height: math.unit(7.45, "inches")
  26762. },
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(7 + 6.451 / 12, "feet"),
  26766. default: true
  26767. },
  26768. {
  26769. name: "Hitting the Town",
  26770. height: math.unit(37 + 8 / 12, "feet")
  26771. },
  26772. {
  26773. name: "Stomp in the Suburbs",
  26774. height: math.unit(964 + 9.728 / 12, "feet")
  26775. },
  26776. {
  26777. name: "Sit on the City",
  26778. height: math.unit(61747 + 10.592 / 12, "feet")
  26779. },
  26780. {
  26781. name: "Glomp the Globe",
  26782. height: math.unit(252919327 + 4.832 / 12, "feet")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(6 + 4 / 12, "feet"),
  26791. weight: math.unit(320, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/balina-mahigan/front.svg",
  26795. extra: 447 / 428,
  26796. bottom: 18 / 466
  26797. }
  26798. },
  26799. back: {
  26800. height: math.unit(6 + 4 / 12, "feet"),
  26801. weight: math.unit(320, "lb"),
  26802. name: "Back",
  26803. image: {
  26804. source: "./media/characters/balina-mahigan/back.svg",
  26805. extra: 445 / 428,
  26806. bottom: 4.07 / 448
  26807. }
  26808. },
  26809. arm: {
  26810. height: math.unit(1.88, "feet"),
  26811. name: "Arm",
  26812. image: {
  26813. source: "./media/characters/balina-mahigan/arm.svg"
  26814. }
  26815. },
  26816. backPort: {
  26817. height: math.unit(0.685, "feet"),
  26818. name: "Back Port",
  26819. image: {
  26820. source: "./media/characters/balina-mahigan/back-port.svg"
  26821. }
  26822. },
  26823. hoofpaw: {
  26824. height: math.unit(1.41, "feet"),
  26825. name: "Hoofpaw",
  26826. image: {
  26827. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26828. }
  26829. },
  26830. leftHandBack: {
  26831. height: math.unit(0.938, "feet"),
  26832. name: "Left Hand (Back)",
  26833. image: {
  26834. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26835. }
  26836. },
  26837. leftHandFront: {
  26838. height: math.unit(0.938, "feet"),
  26839. name: "Left Hand (Front)",
  26840. image: {
  26841. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26842. }
  26843. },
  26844. rightHandBack: {
  26845. height: math.unit(0.95, "feet"),
  26846. name: "Right Hand (Back)",
  26847. image: {
  26848. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26849. }
  26850. },
  26851. rightHandFront: {
  26852. height: math.unit(0.95, "feet"),
  26853. name: "Right Hand (Front)",
  26854. image: {
  26855. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26856. }
  26857. },
  26858. },
  26859. [
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(6 + 4 / 12, "feet"),
  26863. default: true
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26869. {
  26870. front: {
  26871. height: math.unit(6, "feet"),
  26872. weight: math.unit(320, "lb"),
  26873. name: "Front",
  26874. image: {
  26875. source: "./media/characters/balina-mejeri/front.svg",
  26876. extra: 517 / 488,
  26877. bottom: 44.2 / 561
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(6 + 4 / 12, "feet")
  26885. },
  26886. {
  26887. name: "Business",
  26888. height: math.unit(155, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26895. {
  26896. kneeling: {
  26897. height: math.unit(6 + 4 / 12, "feet"),
  26898. weight: math.unit(300 * 20, "lb"),
  26899. name: "Kneeling",
  26900. image: {
  26901. source: "./media/characters/balbarian/kneeling.svg",
  26902. extra: 922 / 862,
  26903. bottom: 42.4 / 965
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(6 + 4 / 12, "feet")
  26911. },
  26912. {
  26913. name: "Treasured",
  26914. height: math.unit(18 + 9 / 12, "feet"),
  26915. default: true
  26916. },
  26917. {
  26918. name: "Macro",
  26919. height: math.unit(900, "feet")
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(6 + 4 / 12, "feet"),
  26928. weight: math.unit(325, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/balina-amarini/front.svg",
  26932. extra: 415 / 403,
  26933. bottom: 19 / 433.4
  26934. }
  26935. },
  26936. back: {
  26937. height: math.unit(6 + 4 / 12, "feet"),
  26938. weight: math.unit(325, "lb"),
  26939. name: "Back",
  26940. image: {
  26941. source: "./media/characters/balina-amarini/back.svg",
  26942. extra: 415 / 403,
  26943. bottom: 13.5 / 432
  26944. }
  26945. },
  26946. overdrive: {
  26947. height: math.unit(6 + 4 / 12, "feet"),
  26948. weight: math.unit(400, "lb"),
  26949. name: "Overdrive",
  26950. image: {
  26951. source: "./media/characters/balina-amarini/overdrive.svg",
  26952. extra: 269 / 259,
  26953. bottom: 12 / 282
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Boom",
  26960. height: math.unit(9 + 10 / 12, "feet"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Macro",
  26965. height: math.unit(280, "feet")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26971. {
  26972. goddess: {
  26973. height: math.unit(600, "feet"),
  26974. weight: math.unit(2000000, "tons"),
  26975. name: "Goddess",
  26976. image: {
  26977. source: "./media/characters/lady-kubwa/goddess.svg",
  26978. extra: 1240.5 / 1223,
  26979. bottom: 22 / 1263
  26980. }
  26981. },
  26982. goddesser: {
  26983. height: math.unit(900, "feet"),
  26984. weight: math.unit(20000000, "lb"),
  26985. name: "Goddess-er",
  26986. image: {
  26987. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26988. extra: 899 / 888,
  26989. bottom: 12.6 / 912
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Macro",
  26996. height: math.unit(600, "feet"),
  26997. default: true
  26998. },
  26999. {
  27000. name: "Megamacro",
  27001. height: math.unit(250, "miles")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(7 + 7 / 12, "feet"),
  27010. weight: math.unit(250, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/tala-grovehorn/front.svg",
  27014. extra: 2636 / 2525,
  27015. bottom: 147 / 2781
  27016. }
  27017. },
  27018. back: {
  27019. height: math.unit(7 + 7 / 12, "feet"),
  27020. weight: math.unit(250, "lb"),
  27021. name: "Back",
  27022. image: {
  27023. source: "./media/characters/tala-grovehorn/back.svg",
  27024. extra: 2635 / 2539,
  27025. bottom: 100 / 2732.8
  27026. }
  27027. },
  27028. mouth: {
  27029. height: math.unit(1.15, "feet"),
  27030. name: "Mouth",
  27031. image: {
  27032. source: "./media/characters/tala-grovehorn/mouth.svg"
  27033. }
  27034. },
  27035. dick: {
  27036. height: math.unit(2.36, "feet"),
  27037. name: "Dick",
  27038. image: {
  27039. source: "./media/characters/tala-grovehorn/dick.svg"
  27040. }
  27041. },
  27042. slit: {
  27043. height: math.unit(0.61, "feet"),
  27044. name: "Slit",
  27045. image: {
  27046. source: "./media/characters/tala-grovehorn/slit.svg"
  27047. }
  27048. },
  27049. },
  27050. [
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(7 + 7 / 12, "feet"),
  27058. weight: math.unit(225, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/epona/front.svg",
  27062. extra: 2445 / 2290,
  27063. bottom: 251 / 2696
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(7 + 7 / 12, "feet"),
  27068. weight: math.unit(225, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/epona/back.svg",
  27072. extra: 2546 / 2408,
  27073. bottom: 44 / 2589
  27074. }
  27075. },
  27076. genitals: {
  27077. height: math.unit(1.5, "feet"),
  27078. name: "Genitals",
  27079. image: {
  27080. source: "./media/characters/epona/genitals.svg"
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(7 + 7 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(7, "feet"),
  27097. weight: math.unit(518, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/avia-bloodbourn/front.svg",
  27101. extra: 1466 / 1350,
  27102. bottom: 65 / 1527
  27103. }
  27104. },
  27105. },
  27106. [
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(9.35, "feet"),
  27114. weight: math.unit(600, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/amera/front.svg",
  27118. extra: 891 / 818,
  27119. bottom: 30 / 922.7
  27120. }
  27121. },
  27122. back: {
  27123. height: math.unit(9.35, "feet"),
  27124. weight: math.unit(600, "lb"),
  27125. name: "Back",
  27126. image: {
  27127. source: "./media/characters/amera/back.svg",
  27128. extra: 876 / 824,
  27129. bottom: 6.8 / 884
  27130. }
  27131. },
  27132. dick: {
  27133. height: math.unit(2.14, "feet"),
  27134. name: "Dick",
  27135. image: {
  27136. source: "./media/characters/amera/dick.svg"
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(9.35, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27150. {
  27151. kneeling: {
  27152. height: math.unit(3 + 4 / 12, "feet"),
  27153. weight: math.unit(90, "lb"),
  27154. name: "Kneeling",
  27155. image: {
  27156. source: "./media/characters/rosewen/kneeling.svg",
  27157. extra: 1835 / 1571,
  27158. bottom: 27.7 / 1862
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(3 + 4 / 12, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(5 + 10 / 12, "feet"),
  27175. weight: math.unit(200, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/sabah/front.svg",
  27179. extra: 849 / 763,
  27180. bottom: 33.9 / 881
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5 + 10 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27194. {
  27195. front: {
  27196. height: math.unit(3 + 5 / 12, "feet"),
  27197. weight: math.unit(40, "kg"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/purple-flame/front.svg",
  27201. extra: 1577 / 1412,
  27202. bottom: 97 / 1694
  27203. }
  27204. },
  27205. frontDressed: {
  27206. height: math.unit(3 + 5 / 12, "feet"),
  27207. weight: math.unit(40, "kg"),
  27208. name: "Front (Dressed)",
  27209. image: {
  27210. source: "./media/characters/purple-flame/front-dressed.svg",
  27211. extra: 1577 / 1412,
  27212. bottom: 97 / 1694
  27213. }
  27214. },
  27215. headphones: {
  27216. height: math.unit(0.85, "feet"),
  27217. name: "Headphones",
  27218. image: {
  27219. source: "./media/characters/purple-flame/headphones.svg"
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Really Small",
  27226. height: math.unit(5, "cm")
  27227. },
  27228. {
  27229. name: "Micro",
  27230. height: math.unit(1 + 5 / 12, "feet")
  27231. },
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(3 + 5 / 12, "feet"),
  27235. default: true
  27236. },
  27237. {
  27238. name: "Minimacro",
  27239. height: math.unit(125, "feet")
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(0.5, "miles")
  27244. },
  27245. {
  27246. name: "Megamacro",
  27247. height: math.unit(50, "miles")
  27248. },
  27249. {
  27250. name: "Gigantic",
  27251. height: math.unit(750, "miles")
  27252. },
  27253. {
  27254. name: "Planetary",
  27255. height: math.unit(15000, "miles")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(14, "feet"),
  27264. weight: math.unit(959, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/arsenal/front.svg",
  27268. extra: 2357 / 2157,
  27269. bottom: 93 / 2458
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(14, "feet"),
  27277. default: true
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(6, "feet"),
  27286. weight: math.unit(150, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/adira/front.svg",
  27290. extra: 1078 / 1029,
  27291. bottom: 87 / 1166
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Micro",
  27298. height: math.unit(4, "inches"),
  27299. default: true
  27300. },
  27301. {
  27302. name: "Macro",
  27303. height: math.unit(50, "feet")
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27309. {
  27310. front: {
  27311. height: math.unit(16, "feet"),
  27312. weight: math.unit(1000, "lb"),
  27313. name: "Front",
  27314. image: {
  27315. source: "./media/characters/grim/front.svg",
  27316. extra: 622 / 614,
  27317. bottom: 18.1 / 642
  27318. }
  27319. },
  27320. back: {
  27321. height: math.unit(16, "feet"),
  27322. weight: math.unit(1000, "lb"),
  27323. name: "Back",
  27324. image: {
  27325. source: "./media/characters/grim/back.svg",
  27326. extra: 610.6 / 602,
  27327. bottom: 40.8 / 652
  27328. }
  27329. },
  27330. hunched: {
  27331. height: math.unit(9.75, "feet"),
  27332. weight: math.unit(1000, "lb"),
  27333. name: "Hunched",
  27334. image: {
  27335. source: "./media/characters/grim/hunched.svg",
  27336. extra: 304 / 297,
  27337. bottom: 35.4 / 394
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(16, "feet"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(2.3, "meters"),
  27354. weight: math.unit(300, "lb"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/sinja/front-sfw.svg",
  27358. extra: 1393 / 1294,
  27359. bottom: 70 / 1463
  27360. }
  27361. },
  27362. frontNsfw: {
  27363. height: math.unit(2.3, "meters"),
  27364. weight: math.unit(300, "lb"),
  27365. name: "Front (NSFW)",
  27366. image: {
  27367. source: "./media/characters/sinja/front-nsfw.svg",
  27368. extra: 1393 / 1294,
  27369. bottom: 70 / 1463
  27370. }
  27371. },
  27372. back: {
  27373. height: math.unit(2.3, "meters"),
  27374. weight: math.unit(300, "lb"),
  27375. name: "Back",
  27376. image: {
  27377. source: "./media/characters/sinja/back.svg",
  27378. extra: 1393 / 1294,
  27379. bottom: 70 / 1463
  27380. }
  27381. },
  27382. head: {
  27383. height: math.unit(1.771, "feet"),
  27384. name: "Head",
  27385. image: {
  27386. source: "./media/characters/sinja/head.svg"
  27387. }
  27388. },
  27389. slit: {
  27390. height: math.unit(0.8, "feet"),
  27391. name: "Slit",
  27392. image: {
  27393. source: "./media/characters/sinja/slit.svg"
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Normal",
  27400. height: math.unit(2.3, "meters")
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(91, "meters"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Megamacro",
  27409. height: math.unit(91440, "meters")
  27410. },
  27411. {
  27412. name: "Gigamacro",
  27413. height: math.unit(60960000, "meters")
  27414. },
  27415. {
  27416. name: "Teramacro",
  27417. height: math.unit(9144000000, "meters")
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(1.7, "meters"),
  27426. weight: math.unit(130, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/kyu/front.svg",
  27430. extra: 415 / 395,
  27431. bottom: 5 / 420
  27432. }
  27433. },
  27434. head: {
  27435. height: math.unit(1.75, "feet"),
  27436. name: "Head",
  27437. image: {
  27438. source: "./media/characters/kyu/head.svg"
  27439. }
  27440. },
  27441. foot: {
  27442. height: math.unit(0.81, "feet"),
  27443. name: "Foot",
  27444. image: {
  27445. source: "./media/characters/kyu/foot.svg"
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(1.7, "meters")
  27453. },
  27454. {
  27455. name: "Macro",
  27456. height: math.unit(131, "feet"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit(91440, "meters")
  27462. },
  27463. {
  27464. name: "Gigamacro",
  27465. height: math.unit(60960000, "meters")
  27466. },
  27467. {
  27468. name: "Teramacro",
  27469. height: math.unit(9144000000, "meters")
  27470. },
  27471. ]
  27472. ))
  27473. characterMakers.push(() => makeCharacter(
  27474. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27475. {
  27476. front: {
  27477. height: math.unit(7 + 1 / 12, "feet"),
  27478. weight: math.unit(250, "lb"),
  27479. name: "Front",
  27480. image: {
  27481. source: "./media/characters/joey/front.svg",
  27482. extra: 1791 / 1537,
  27483. bottom: 28 / 1816
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Micro",
  27490. height: math.unit(3, "inches")
  27491. },
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(7 + 1 / 12, "feet"),
  27495. default: true
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27501. {
  27502. front: {
  27503. height: math.unit(165, "cm"),
  27504. weight: math.unit(140, "lb"),
  27505. name: "Front",
  27506. image: {
  27507. source: "./media/characters/sam-evans/front.svg",
  27508. extra: 3417 / 3230,
  27509. bottom: 41.3 / 3417
  27510. }
  27511. },
  27512. frontSixTails: {
  27513. height: math.unit(165, "cm"),
  27514. weight: math.unit(140, "lb"),
  27515. name: "Front-six-tails",
  27516. image: {
  27517. source: "./media/characters/sam-evans/front-six-tails.svg",
  27518. extra: 3417 / 3230,
  27519. bottom: 41.3 / 3417
  27520. }
  27521. },
  27522. back: {
  27523. height: math.unit(165, "cm"),
  27524. weight: math.unit(140, "lb"),
  27525. name: "Back",
  27526. image: {
  27527. source: "./media/characters/sam-evans/back.svg",
  27528. extra: 3227 / 3032,
  27529. bottom: 6.8 / 3234
  27530. }
  27531. },
  27532. face: {
  27533. height: math.unit(0.68, "feet"),
  27534. name: "Face",
  27535. image: {
  27536. source: "./media/characters/sam-evans/face.svg"
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(165, "cm"),
  27544. default: true
  27545. },
  27546. {
  27547. name: "Macro",
  27548. height: math.unit(100, "meters")
  27549. },
  27550. {
  27551. name: "Macro+",
  27552. height: math.unit(800, "meters")
  27553. },
  27554. {
  27555. name: "Macro++",
  27556. height: math.unit(3, "km")
  27557. },
  27558. {
  27559. name: "Macro+++",
  27560. height: math.unit(30, "km")
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(10, "feet"),
  27569. weight: math.unit(750, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/juliet-a/front.svg",
  27573. extra: 1766 / 1720,
  27574. bottom: 43 / 1809
  27575. }
  27576. },
  27577. back: {
  27578. height: math.unit(10, "feet"),
  27579. weight: math.unit(750, "lb"),
  27580. name: "Back",
  27581. image: {
  27582. source: "./media/characters/juliet-a/back.svg",
  27583. extra: 1781 / 1734,
  27584. bottom: 35 / 1810,
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(10, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Dragon Form",
  27596. height: math.unit(250, "feet")
  27597. },
  27598. {
  27599. name: "Macro",
  27600. height: math.unit(1000, "feet")
  27601. },
  27602. {
  27603. name: "Megamacro",
  27604. height: math.unit(10000, "feet")
  27605. }
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27610. {
  27611. regular: {
  27612. height: math.unit(7 + 3 / 12, "feet"),
  27613. weight: math.unit(260, "lb"),
  27614. name: "Regular",
  27615. image: {
  27616. source: "./media/characters/wild/regular.svg",
  27617. extra: 97.45 / 92,
  27618. bottom: 6.8 / 104.3
  27619. }
  27620. },
  27621. biggums: {
  27622. height: math.unit(8 + 6 / 12, "feet"),
  27623. weight: math.unit(425, "lb"),
  27624. name: "Biggums",
  27625. image: {
  27626. source: "./media/characters/wild/biggums.svg",
  27627. extra: 97.45 / 92,
  27628. bottom: 7.5 / 132.34
  27629. }
  27630. },
  27631. mawRegular: {
  27632. height: math.unit(1.24, "feet"),
  27633. name: "Maw (Regular)",
  27634. image: {
  27635. source: "./media/characters/wild/maw.svg"
  27636. }
  27637. },
  27638. mawBiggums: {
  27639. height: math.unit(1.47, "feet"),
  27640. name: "Maw (Biggums)",
  27641. image: {
  27642. source: "./media/characters/wild/maw.svg"
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(7 + 3 / 12, "feet"),
  27650. default: true
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27656. {
  27657. front: {
  27658. height: math.unit(2.5, "meters"),
  27659. weight: math.unit(200, "kg"),
  27660. name: "Front",
  27661. image: {
  27662. source: "./media/characters/vidar/front.svg",
  27663. extra: 2994 / 2795,
  27664. bottom: 56 / 3061
  27665. }
  27666. },
  27667. back: {
  27668. height: math.unit(2.5, "meters"),
  27669. weight: math.unit(200, "kg"),
  27670. name: "Back",
  27671. image: {
  27672. source: "./media/characters/vidar/back.svg",
  27673. extra: 3131 / 2928,
  27674. bottom: 13.5 / 3141.5
  27675. }
  27676. },
  27677. feral: {
  27678. height: math.unit(2.5, "meters"),
  27679. weight: math.unit(2000, "kg"),
  27680. name: "Feral",
  27681. image: {
  27682. source: "./media/characters/vidar/feral.svg",
  27683. extra: 2790 / 1765,
  27684. bottom: 6 / 2796
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(2.5, "meters"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Macro",
  27696. height: math.unit(100, "meters")
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(5 + 9 / 12, "feet"),
  27705. weight: math.unit(120, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/ash/front.svg",
  27709. extra: 2189 / 1961,
  27710. bottom: 5.2 / 2194
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(5 + 9 / 12, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(9, "feet"),
  27727. weight: math.unit(10000, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/gygabite/front.svg",
  27731. bottom: 31.7 / 537.8,
  27732. extra: 505 / 370
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(9, "feet"),
  27740. default: true
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(12, "feet"),
  27749. weight: math.unit(35000, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/p0tat0/front.svg",
  27753. extra: 1065 / 921,
  27754. bottom: 55.7 / 1121.25
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(12, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27768. {
  27769. side: {
  27770. height: math.unit(6.5, "feet"),
  27771. weight: math.unit(800, "lb"),
  27772. name: "Side",
  27773. image: {
  27774. source: "./media/characters/dusk/side.svg",
  27775. extra: 615 / 373,
  27776. bottom: 53 / 664
  27777. }
  27778. },
  27779. sitting: {
  27780. height: math.unit(7, "feet"),
  27781. weight: math.unit(800, "lb"),
  27782. name: "Sitting",
  27783. image: {
  27784. source: "./media/characters/dusk/sitting.svg",
  27785. extra: 753 / 425,
  27786. bottom: 33 / 774
  27787. }
  27788. },
  27789. head: {
  27790. height: math.unit(6.1, "feet"),
  27791. name: "Head",
  27792. image: {
  27793. source: "./media/characters/dusk/head.svg"
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(7, "feet"),
  27801. default: true
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(15, "feet"),
  27810. weight: math.unit(7000, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/jay-direwolf/front.svg",
  27814. extra: 1810 / 1732,
  27815. bottom: 66 / 1892
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(15, "feet"),
  27823. default: true
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(4 + 9 / 12, "feet"),
  27832. weight: math.unit(130, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/anchovie/front.svg",
  27836. extra: 382 / 350,
  27837. bottom: 25 / 409
  27838. }
  27839. },
  27840. back: {
  27841. height: math.unit(4 + 9 / 12, "feet"),
  27842. weight: math.unit(130, "lb"),
  27843. name: "Back",
  27844. image: {
  27845. source: "./media/characters/anchovie/back.svg",
  27846. extra: 385 / 352,
  27847. bottom: 16.6 / 402
  27848. }
  27849. },
  27850. frontDressed: {
  27851. height: math.unit(4 + 9 / 12, "feet"),
  27852. weight: math.unit(130, "lb"),
  27853. name: "Front (Dressed)",
  27854. image: {
  27855. source: "./media/characters/anchovie/front-dressed.svg",
  27856. extra: 382 / 350,
  27857. bottom: 25 / 409
  27858. }
  27859. },
  27860. backDressed: {
  27861. height: math.unit(4 + 9 / 12, "feet"),
  27862. weight: math.unit(130, "lb"),
  27863. name: "Back (Dressed)",
  27864. image: {
  27865. source: "./media/characters/anchovie/back-dressed.svg",
  27866. extra: 385 / 352,
  27867. bottom: 16.6 / 402
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Micro",
  27874. height: math.unit(6.4, "inches")
  27875. },
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(4 + 9 / 12, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(2, "meters"),
  27888. weight: math.unit(180, "lb"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/acidrenamon/front.svg",
  27892. extra: 987 / 890,
  27893. bottom: 22.8 / 1009
  27894. }
  27895. },
  27896. back: {
  27897. height: math.unit(2, "meters"),
  27898. weight: math.unit(180, "lb"),
  27899. name: "Back",
  27900. image: {
  27901. source: "./media/characters/acidrenamon/back.svg",
  27902. extra: 983 / 891,
  27903. bottom: 8.4 / 992
  27904. }
  27905. },
  27906. head: {
  27907. height: math.unit(1.92, "feet"),
  27908. name: "Head",
  27909. image: {
  27910. source: "./media/characters/acidrenamon/head.svg"
  27911. }
  27912. },
  27913. rump: {
  27914. height: math.unit(1.72, "feet"),
  27915. name: "Rump",
  27916. image: {
  27917. source: "./media/characters/acidrenamon/rump.svg"
  27918. }
  27919. },
  27920. tail: {
  27921. height: math.unit(4.2, "feet"),
  27922. name: "Tail",
  27923. image: {
  27924. source: "./media/characters/acidrenamon/tail.svg"
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(2, "meters"),
  27932. default: true
  27933. },
  27934. {
  27935. name: "Minimacro",
  27936. height: math.unit(7, "meters")
  27937. },
  27938. {
  27939. name: "Macro",
  27940. height: math.unit(200, "meters")
  27941. },
  27942. {
  27943. name: "Gigamacro",
  27944. height: math.unit(0.2, "earths")
  27945. },
  27946. ]
  27947. ))
  27948. characterMakers.push(() => makeCharacter(
  27949. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27950. {
  27951. front: {
  27952. height: math.unit(152, "feet"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/kenzie-lee/front.svg",
  27956. extra: 1869/1774,
  27957. bottom: 128/1997
  27958. }
  27959. },
  27960. side: {
  27961. height: math.unit(86, "feet"),
  27962. name: "Side",
  27963. image: {
  27964. source: "./media/characters/kenzie-lee/side.svg",
  27965. extra: 930/815,
  27966. bottom: 177/1107
  27967. }
  27968. },
  27969. paw: {
  27970. height: math.unit(15, "feet"),
  27971. name: "Paw",
  27972. image: {
  27973. source: "./media/characters/kenzie-lee/paw.svg"
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Micro",
  27980. height: math.unit(1.5, "inches")
  27981. },
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(152, "feet"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Megamacro",
  27989. height: math.unit(7, "miles")
  27990. },
  27991. {
  27992. name: "Gigamacro",
  27993. height: math.unit(8000, "miles")
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27999. {
  28000. side: {
  28001. height: math.unit(6, "feet"),
  28002. weight: math.unit(150, "lb"),
  28003. name: "Side",
  28004. image: {
  28005. source: "./media/characters/withers/side.svg",
  28006. extra: 1830 / 1728,
  28007. bottom: 96 / 1927
  28008. }
  28009. },
  28010. front: {
  28011. height: math.unit(6, "feet"),
  28012. weight: math.unit(150, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/withers/front.svg",
  28016. extra: 1514 / 1438,
  28017. bottom: 118 / 1632
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Macro",
  28024. height: math.unit(168, "feet"),
  28025. default: true
  28026. },
  28027. {
  28028. name: "Megamacro",
  28029. height: math.unit(15, "miles")
  28030. }
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(6 + 7 / 12, "feet"),
  28038. weight: math.unit(250, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/nemoskii/front.svg",
  28042. extra: 2270 / 1734,
  28043. bottom: 86 / 2354
  28044. }
  28045. },
  28046. back: {
  28047. height: math.unit(6 + 7 / 12, "feet"),
  28048. weight: math.unit(250, "lb"),
  28049. name: "Back",
  28050. image: {
  28051. source: "./media/characters/nemoskii/back.svg",
  28052. extra: 1845 / 1788,
  28053. bottom: 10.5 / 1852
  28054. }
  28055. },
  28056. head: {
  28057. height: math.unit(1.31, "feet"),
  28058. name: "Head",
  28059. image: {
  28060. source: "./media/characters/nemoskii/head.svg"
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Micro",
  28067. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28068. },
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(6 + 7 / 12, "feet"),
  28072. default: true
  28073. },
  28074. {
  28075. name: "Macro",
  28076. height: math.unit((6 + 7 / 12) * 150, "feet")
  28077. },
  28078. {
  28079. name: "Macro+",
  28080. height: math.unit((6 + 7 / 12) * 500, "feet")
  28081. },
  28082. {
  28083. name: "Megamacro",
  28084. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(1, "mile"),
  28093. weight: math.unit(265261.9, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/shui/front.svg",
  28097. extra: 1633 / 1564,
  28098. bottom: 91.5 / 1726
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Macro",
  28105. height: math.unit(1, "mile"),
  28106. default: true
  28107. },
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(12 + 6 / 12, "feet"),
  28115. weight: math.unit(1342, "lb"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/arokh-takakura/front.svg",
  28119. extra: 1089 / 1043,
  28120. bottom: 77.4 / 1176.7
  28121. }
  28122. },
  28123. back: {
  28124. height: math.unit(12 + 6 / 12, "feet"),
  28125. weight: math.unit(1342, "lb"),
  28126. name: "Back",
  28127. image: {
  28128. source: "./media/characters/arokh-takakura/back.svg",
  28129. extra: 1046 / 1019,
  28130. bottom: 102 / 1150
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Big",
  28137. height: math.unit(12 + 6 / 12, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(5 + 6 / 12, "feet"),
  28147. weight: math.unit(150, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/theo/front.svg",
  28151. extra: 1184 / 1131,
  28152. bottom: 7.4 / 1191
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Micro",
  28159. height: math.unit(5, "inches")
  28160. },
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(5 + 6 / 12, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(5 + 9 / 12, "feet"),
  28173. weight: math.unit(130, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/cecelia-swift/front.svg",
  28177. extra: 502 / 484,
  28178. bottom: 23 / 523
  28179. }
  28180. },
  28181. back: {
  28182. height: math.unit(5 + 9 / 12, "feet"),
  28183. weight: math.unit(130, "lb"),
  28184. name: "Back",
  28185. image: {
  28186. source: "./media/characters/cecelia-swift/back.svg",
  28187. extra: 499 / 485,
  28188. bottom: 12 / 511
  28189. }
  28190. },
  28191. head: {
  28192. height: math.unit(0.90, "feet"),
  28193. name: "Head",
  28194. image: {
  28195. source: "./media/characters/cecelia-swift/head.svg"
  28196. }
  28197. },
  28198. rump: {
  28199. height: math.unit(1.75, "feet"),
  28200. name: "Rump",
  28201. image: {
  28202. source: "./media/characters/cecelia-swift/rump.svg"
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(5 + 9 / 12, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Big",
  28214. height: math.unit(50, "feet")
  28215. },
  28216. {
  28217. name: "Macro",
  28218. height: math.unit(100, "feet")
  28219. },
  28220. {
  28221. name: "Macro+",
  28222. height: math.unit(500, "feet")
  28223. },
  28224. {
  28225. name: "Macro++",
  28226. height: math.unit(1000, "feet")
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28232. {
  28233. front: {
  28234. height: math.unit(6, "feet"),
  28235. weight: math.unit(150, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/kaunan/front.svg",
  28239. extra: 2890 / 2523,
  28240. bottom: 49 / 2939
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Macro",
  28247. height: math.unit(150, "feet"),
  28248. default: true
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28254. {
  28255. front: {
  28256. height: math.unit(175, "cm"),
  28257. weight: math.unit(60, "kg"),
  28258. name: "Front",
  28259. image: {
  28260. source: "./media/characters/fei/front.svg",
  28261. extra: 1873/1723,
  28262. bottom: 53/1926
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Mortal",
  28269. height: math.unit(175, "cm")
  28270. },
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(3500, "m"),
  28274. default: true
  28275. },
  28276. {
  28277. name: "Stroll",
  28278. height: math.unit(17.5, "km")
  28279. },
  28280. {
  28281. name: "Showoff",
  28282. height: math.unit(175, "km")
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(7, "feet"),
  28291. weight: math.unit(1000, "kg"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/edrax/front.svg",
  28295. extra: 2838 / 2550,
  28296. bottom: 130 / 2968
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Small",
  28303. height: math.unit(7, "feet")
  28304. },
  28305. {
  28306. name: "Normal",
  28307. height: math.unit(1500, "meters")
  28308. },
  28309. {
  28310. name: "Mega",
  28311. height: math.unit(12000000, "km"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Megamacro",
  28316. height: math.unit(10600000, "lightyears")
  28317. },
  28318. {
  28319. name: "Hypermacro",
  28320. height: math.unit(256, "yottameters")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(10, "feet"),
  28329. weight: math.unit(750, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/clove/front.svg",
  28333. extra: 1918/1751,
  28334. bottom: 52/1970
  28335. }
  28336. },
  28337. back: {
  28338. height: math.unit(10, "feet"),
  28339. weight: math.unit(750, "lb"),
  28340. name: "Back",
  28341. image: {
  28342. source: "./media/characters/clove/back.svg",
  28343. extra: 1912/1747,
  28344. bottom: 50/1962
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(10, "feet"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(4, "feet"),
  28361. weight: math.unit(50, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/alex-rabbit/front.svg",
  28365. extra: 507 / 458,
  28366. bottom: 18.5 / 527
  28367. }
  28368. },
  28369. back: {
  28370. height: math.unit(4, "feet"),
  28371. weight: math.unit(50, "lb"),
  28372. name: "Back",
  28373. image: {
  28374. source: "./media/characters/alex-rabbit/back.svg",
  28375. extra: 502 / 460,
  28376. bottom: 18.9 / 521
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(4, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(1 + 3 / 12, "feet"),
  28393. weight: math.unit(80, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/zander-rose/front.svg",
  28397. extra: 916 / 797,
  28398. bottom: 17 / 933
  28399. }
  28400. },
  28401. back: {
  28402. height: math.unit(1 + 3 / 12, "feet"),
  28403. weight: math.unit(80, "lb"),
  28404. name: "Back",
  28405. image: {
  28406. source: "./media/characters/zander-rose/back.svg",
  28407. extra: 903 / 779,
  28408. bottom: 31 / 934
  28409. }
  28410. },
  28411. },
  28412. [
  28413. {
  28414. name: "Normal",
  28415. height: math.unit(1 + 3 / 12, "feet"),
  28416. default: true
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28422. {
  28423. anthro: {
  28424. height: math.unit(6, "feet"),
  28425. weight: math.unit(150, "lb"),
  28426. name: "Anthro",
  28427. image: {
  28428. source: "./media/characters/razz/anthro.svg",
  28429. extra: 1437 / 1343,
  28430. bottom: 48 / 1485
  28431. }
  28432. },
  28433. feral: {
  28434. height: math.unit(6, "feet"),
  28435. weight: math.unit(150, "lb"),
  28436. name: "Feral",
  28437. image: {
  28438. source: "./media/characters/razz/feral.svg",
  28439. extra: 2569 / 1385,
  28440. bottom: 95 / 2664
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(6, "feet"),
  28448. default: true
  28449. },
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28454. {
  28455. front: {
  28456. height: math.unit(9 + 4 / 12, "feet"),
  28457. weight: math.unit(500, "lb"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/morrigan/front.svg",
  28461. extra: 2707 / 2579,
  28462. bottom: 156 / 2863
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(9 + 4 / 12, "feet"),
  28470. default: true
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(5, "stories"),
  28479. weight: math.unit(4000, "lb"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/jenene/front.svg",
  28483. extra: 1780 / 1710,
  28484. bottom: 57 / 1837
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(5, "stories"),
  28492. default: true
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28498. {
  28499. taurSfw: {
  28500. height: math.unit(10, "meters"),
  28501. weight: math.unit(17500, "kg"),
  28502. name: "Taur",
  28503. image: {
  28504. source: "./media/characters/faey/taur-sfw.svg",
  28505. extra: 1200 / 968,
  28506. bottom: 41 / 1241
  28507. }
  28508. },
  28509. chestmaw: {
  28510. height: math.unit(2.01, "meters"),
  28511. name: "Chestmaw",
  28512. image: {
  28513. source: "./media/characters/faey/chestmaw.svg"
  28514. }
  28515. },
  28516. foot: {
  28517. height: math.unit(2.43, "meters"),
  28518. name: "Foot",
  28519. image: {
  28520. source: "./media/characters/faey/foot.svg"
  28521. }
  28522. },
  28523. jaws: {
  28524. height: math.unit(1.66, "meters"),
  28525. name: "Jaws",
  28526. image: {
  28527. source: "./media/characters/faey/jaws.svg"
  28528. }
  28529. },
  28530. tongues: {
  28531. height: math.unit(2.01, "meters"),
  28532. name: "Tongues",
  28533. image: {
  28534. source: "./media/characters/faey/tongues.svg"
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Small",
  28541. height: math.unit(10, "meters"),
  28542. default: true
  28543. },
  28544. {
  28545. name: "Big",
  28546. height: math.unit(500000, "km")
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(7, "feet"),
  28555. weight: math.unit(275, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/roku/front.svg",
  28559. extra: 903 / 878,
  28560. bottom: 37 / 940
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(7, "feet"),
  28568. default: true
  28569. },
  28570. {
  28571. name: "Macro",
  28572. height: math.unit(500, "feet")
  28573. },
  28574. {
  28575. name: "Megamacro",
  28576. height: math.unit(200, "miles")
  28577. },
  28578. ]
  28579. ))
  28580. characterMakers.push(() => makeCharacter(
  28581. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28582. {
  28583. front: {
  28584. height: math.unit(6 + 2 / 12, "feet"),
  28585. weight: math.unit(150, "lb"),
  28586. name: "Front",
  28587. image: {
  28588. source: "./media/characters/lira/front.svg",
  28589. extra: 1727 / 1605,
  28590. bottom: 26 / 1753
  28591. }
  28592. },
  28593. back: {
  28594. height: math.unit(6 + 2 / 12, "feet"),
  28595. weight: math.unit(150, "lb"),
  28596. name: "Back",
  28597. image: {
  28598. source: "./media/characters/lira/back.svg",
  28599. extra: 1713/1621,
  28600. bottom: 20/1733
  28601. }
  28602. },
  28603. hand: {
  28604. height: math.unit(0.75, "feet"),
  28605. name: "Hand",
  28606. image: {
  28607. source: "./media/characters/lira/hand.svg"
  28608. }
  28609. },
  28610. maw: {
  28611. height: math.unit(0.65, "feet"),
  28612. name: "Maw",
  28613. image: {
  28614. source: "./media/characters/lira/maw.svg"
  28615. }
  28616. },
  28617. pawDigi: {
  28618. height: math.unit(1.6, "feet"),
  28619. name: "Paw Digi",
  28620. image: {
  28621. source: "./media/characters/lira/paw-digi.svg"
  28622. }
  28623. },
  28624. pawPlanti: {
  28625. height: math.unit(1.4, "feet"),
  28626. name: "Paw Planti",
  28627. image: {
  28628. source: "./media/characters/lira/paw-planti.svg"
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(6 + 2 / 12, "feet"),
  28636. default: true
  28637. },
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(100, "feet")
  28641. },
  28642. {
  28643. name: "Macro²",
  28644. height: math.unit(1600, "feet")
  28645. },
  28646. {
  28647. name: "Planetary",
  28648. height: math.unit(20, "earths")
  28649. },
  28650. ]
  28651. ))
  28652. characterMakers.push(() => makeCharacter(
  28653. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28654. {
  28655. front: {
  28656. height: math.unit(6, "feet"),
  28657. weight: math.unit(150, "lb"),
  28658. name: "Front",
  28659. image: {
  28660. source: "./media/characters/hadjet/front.svg",
  28661. extra: 1480 / 1346,
  28662. bottom: 26 / 1506
  28663. }
  28664. },
  28665. frontNsfw: {
  28666. height: math.unit(6, "feet"),
  28667. weight: math.unit(150, "lb"),
  28668. name: "Front (NSFW)",
  28669. image: {
  28670. source: "./media/characters/hadjet/front-nsfw.svg",
  28671. extra: 1440 / 1358,
  28672. bottom: 52 / 1492
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Macro",
  28679. height: math.unit(10, "stories"),
  28680. default: true
  28681. },
  28682. {
  28683. name: "Megamacro",
  28684. height: math.unit(1.5, "miles")
  28685. },
  28686. {
  28687. name: "Megamacro+",
  28688. height: math.unit(5, "miles")
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28694. {
  28695. side: {
  28696. height: math.unit(106, "feet"),
  28697. weight: math.unit(500, "tonnes"),
  28698. name: "Side",
  28699. image: {
  28700. source: "./media/characters/kodran/side.svg",
  28701. extra: 553 / 480,
  28702. bottom: 33 / 586
  28703. }
  28704. },
  28705. front: {
  28706. height: math.unit(132, "feet"),
  28707. weight: math.unit(500, "tonnes"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/kodran/front.svg",
  28711. extra: 667 / 643,
  28712. bottom: 42 / 709
  28713. }
  28714. },
  28715. flying: {
  28716. height: math.unit(350, "feet"),
  28717. weight: math.unit(500, "tonnes"),
  28718. name: "Flying",
  28719. image: {
  28720. source: "./media/characters/kodran/flying.svg"
  28721. }
  28722. },
  28723. foot: {
  28724. height: math.unit(33, "feet"),
  28725. name: "Foot",
  28726. image: {
  28727. source: "./media/characters/kodran/foot.svg"
  28728. }
  28729. },
  28730. footFront: {
  28731. height: math.unit(19, "feet"),
  28732. name: "Foot (Front)",
  28733. image: {
  28734. source: "./media/characters/kodran/foot-front.svg",
  28735. extra: 261 / 261,
  28736. bottom: 91 / 352
  28737. }
  28738. },
  28739. headFront: {
  28740. height: math.unit(53, "feet"),
  28741. name: "Head (Front)",
  28742. image: {
  28743. source: "./media/characters/kodran/head-front.svg"
  28744. }
  28745. },
  28746. headSide: {
  28747. height: math.unit(65, "feet"),
  28748. name: "Head (Side)",
  28749. image: {
  28750. source: "./media/characters/kodran/head-side.svg"
  28751. }
  28752. },
  28753. throat: {
  28754. height: math.unit(79, "feet"),
  28755. name: "Throat",
  28756. image: {
  28757. source: "./media/characters/kodran/throat.svg"
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Large",
  28764. height: math.unit(106, "feet"),
  28765. default: true
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28771. {
  28772. side: {
  28773. height: math.unit(11, "feet"),
  28774. weight: math.unit(150, "lb"),
  28775. name: "Side",
  28776. image: {
  28777. source: "./media/characters/pyxaron/side.svg",
  28778. extra: 305 / 195,
  28779. bottom: 17 / 322
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(11, "feet"),
  28787. default: true
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(6, "feet"),
  28796. weight: math.unit(150, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/meep/front.svg",
  28800. extra: 88 / 80,
  28801. bottom: 6 / 94
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Fun Sized",
  28808. height: math.unit(2, "inches"),
  28809. default: true
  28810. },
  28811. {
  28812. name: "Friend Sized",
  28813. height: math.unit(8, "inches")
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(15, "feet"),
  28822. weight: math.unit(2500, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/holly-rabbit/front.svg",
  28826. extra: 1433 / 1233,
  28827. bottom: 125 / 1558
  28828. }
  28829. },
  28830. dick: {
  28831. height: math.unit(4.6, "feet"),
  28832. name: "Dick",
  28833. image: {
  28834. source: "./media/characters/holly-rabbit/dick.svg"
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(15, "feet"),
  28842. default: true
  28843. },
  28844. {
  28845. name: "Macro",
  28846. height: math.unit(250, "feet")
  28847. },
  28848. {
  28849. name: "Macro+",
  28850. height: math.unit(2500, "feet")
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(3.02, "meters"),
  28859. weight: math.unit(500, "kg"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/drena/front.svg",
  28863. extra: 282 / 243,
  28864. bottom: 8 / 290
  28865. }
  28866. },
  28867. side: {
  28868. height: math.unit(3.02, "meters"),
  28869. weight: math.unit(500, "kg"),
  28870. name: "Side",
  28871. image: {
  28872. source: "./media/characters/drena/side.svg",
  28873. extra: 280 / 245,
  28874. bottom: 10 / 290
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(3.02, "meters"),
  28879. weight: math.unit(500, "kg"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/drena/back.svg",
  28883. extra: 278 / 243,
  28884. bottom: 2 / 280
  28885. }
  28886. },
  28887. foot: {
  28888. height: math.unit(0.75, "meters"),
  28889. name: "Foot",
  28890. image: {
  28891. source: "./media/characters/drena/foot.svg"
  28892. }
  28893. },
  28894. maw: {
  28895. height: math.unit(0.82, "meters"),
  28896. name: "Maw",
  28897. image: {
  28898. source: "./media/characters/drena/maw.svg"
  28899. }
  28900. },
  28901. rump: {
  28902. height: math.unit(0.93, "meters"),
  28903. name: "Rump",
  28904. image: {
  28905. source: "./media/characters/drena/rump.svg"
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(3.02, "meters"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(6 + 4 / 12, "feet"),
  28922. weight: math.unit(250, "lb"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/remmyzilla/front.svg",
  28926. extra: 4033 / 3588,
  28927. bottom: 123 / 4156
  28928. }
  28929. },
  28930. back: {
  28931. height: math.unit(6 + 4 / 12, "feet"),
  28932. weight: math.unit(250, "lb"),
  28933. name: "Back",
  28934. image: {
  28935. source: "./media/characters/remmyzilla/back.svg",
  28936. extra: 2687 / 2555,
  28937. bottom: 48 / 2735
  28938. }
  28939. },
  28940. paw: {
  28941. height: math.unit(1.73, "feet"),
  28942. name: "Paw",
  28943. image: {
  28944. source: "./media/characters/remmyzilla/paw.svg"
  28945. }
  28946. },
  28947. maw: {
  28948. height: math.unit(1.73, "feet"),
  28949. name: "Maw",
  28950. image: {
  28951. source: "./media/characters/remmyzilla/maw.svg"
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(6 + 4 / 12, "feet")
  28959. },
  28960. {
  28961. name: "Minimacro",
  28962. height: math.unit(12 + 8 / 12, "feet")
  28963. },
  28964. {
  28965. name: "Normal",
  28966. height: math.unit(640, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Megamacro",
  28971. height: math.unit(6400, "feet")
  28972. },
  28973. {
  28974. name: "Gigamacro",
  28975. height: math.unit(64000, "miles")
  28976. },
  28977. ]
  28978. ))
  28979. characterMakers.push(() => makeCharacter(
  28980. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28981. {
  28982. front: {
  28983. height: math.unit(2.5, "meters"),
  28984. weight: math.unit(300, "lb"),
  28985. name: "Front",
  28986. image: {
  28987. source: "./media/characters/lawrence/front.svg",
  28988. extra: 357 / 335,
  28989. bottom: 30 / 387
  28990. }
  28991. },
  28992. back: {
  28993. height: math.unit(2.5, "meters"),
  28994. weight: math.unit(300, "lb"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/lawrence/back.svg",
  28998. extra: 357 / 338,
  28999. bottom: 16 / 373
  29000. }
  29001. },
  29002. head: {
  29003. height: math.unit(0.9, "meter"),
  29004. name: "Head",
  29005. image: {
  29006. source: "./media/characters/lawrence/head.svg"
  29007. }
  29008. },
  29009. maw: {
  29010. height: math.unit(0.7, "meter"),
  29011. name: "Maw",
  29012. image: {
  29013. source: "./media/characters/lawrence/maw.svg"
  29014. }
  29015. },
  29016. footBottom: {
  29017. height: math.unit(0.5, "meter"),
  29018. name: "Foot (Bottom)",
  29019. image: {
  29020. source: "./media/characters/lawrence/foot-bottom.svg"
  29021. }
  29022. },
  29023. footTop: {
  29024. height: math.unit(0.5, "meter"),
  29025. name: "Foot (Top)",
  29026. image: {
  29027. source: "./media/characters/lawrence/foot-top.svg"
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(2.5, "meters"),
  29035. default: true
  29036. },
  29037. {
  29038. name: "Macro",
  29039. height: math.unit(95, "meters")
  29040. },
  29041. {
  29042. name: "Megamacro",
  29043. height: math.unit(150, "km")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29049. {
  29050. front: {
  29051. height: math.unit(4.2, "meters"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/sydney/front.svg",
  29055. extra: 1323 / 1277,
  29056. bottom: 111 / 1434
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(4.2, "meters"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29070. {
  29071. back: {
  29072. height: math.unit(201, "feet"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/jessica/back.svg",
  29076. extra: 273 / 259,
  29077. bottom: 7 / 280
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(201, "feet"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Megamacro",
  29089. height: math.unit(8, "miles")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29095. {
  29096. side: {
  29097. height: math.unit(5.6, "m"),
  29098. weight: math.unit(8000, "kg"),
  29099. name: "Side",
  29100. image: {
  29101. source: "./media/characters/victoria/side.svg",
  29102. extra: 1542/1229,
  29103. bottom: 124/1666
  29104. }
  29105. },
  29106. maw: {
  29107. height: math.unit(7.14, "feet"),
  29108. name: "Maw",
  29109. image: {
  29110. source: "./media/characters/victoria/maw.svg"
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(5.6, "m"),
  29118. default: true
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29124. {
  29125. front: {
  29126. height: math.unit(5 + 6 / 12, "feet"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/cat/front.svg",
  29130. extra: 1449/1295,
  29131. bottom: 34/1483
  29132. },
  29133. form: "cat",
  29134. default: true
  29135. },
  29136. back: {
  29137. height: math.unit(5 + 6 / 12, "feet"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/cat/back.svg",
  29141. extra: 1466/1301,
  29142. bottom: 19/1485
  29143. },
  29144. form: "cat"
  29145. },
  29146. taur: {
  29147. height: math.unit(7, "feet"),
  29148. name: "Taur",
  29149. image: {
  29150. source: "./media/characters/cat/taur.svg",
  29151. extra: 1389/1233,
  29152. bottom: 83/1472
  29153. },
  29154. form: "taur",
  29155. default: true
  29156. },
  29157. lucarioFront: {
  29158. height: math.unit(4, "feet"),
  29159. name: "Lucario (Front)",
  29160. image: {
  29161. source: "./media/characters/cat/lucario-front.svg",
  29162. extra: 1149/1019,
  29163. bottom: 84/1233
  29164. },
  29165. form: "lucario",
  29166. default: true
  29167. },
  29168. lucarioBack: {
  29169. height: math.unit(4, "feet"),
  29170. name: "Lucario (Back)",
  29171. image: {
  29172. source: "./media/characters/cat/lucario-back.svg",
  29173. extra: 1190/1059,
  29174. bottom: 33/1223
  29175. },
  29176. form: "lucario"
  29177. },
  29178. megaLucario: {
  29179. height: math.unit(4, "feet"),
  29180. name: "Mega Lucario",
  29181. image: {
  29182. source: "./media/characters/cat/mega-lucario.svg",
  29183. extra: 1515 / 1319,
  29184. bottom: 63 / 1578
  29185. },
  29186. form: "lucario"
  29187. },
  29188. nickit: {
  29189. height: math.unit(2, "feet"),
  29190. name: "Nickit",
  29191. image: {
  29192. source: "./media/characters/cat/nickit.svg",
  29193. extra: 1980 / 1585,
  29194. bottom: 102 / 2082
  29195. },
  29196. form: "nickit",
  29197. default: true
  29198. },
  29199. lopunnyFront: {
  29200. height: math.unit(5, "feet"),
  29201. name: "Lopunny (Front)",
  29202. image: {
  29203. source: "./media/characters/cat/lopunny-front.svg",
  29204. extra: 1782 / 1469,
  29205. bottom: 38 / 1820
  29206. },
  29207. form: "lopunny",
  29208. default: true
  29209. },
  29210. lopunnyBack: {
  29211. height: math.unit(5, "feet"),
  29212. name: "Lopunny (Back)",
  29213. image: {
  29214. source: "./media/characters/cat/lopunny-back.svg",
  29215. extra: 1660 / 1490,
  29216. bottom: 25 / 1685
  29217. },
  29218. form: "lopunny"
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Really small",
  29224. height: math.unit(1, "nm")
  29225. },
  29226. {
  29227. name: "Micro",
  29228. height: math.unit(5, "inches")
  29229. },
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(5 + 6 / 12, "feet"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(50, "feet")
  29238. },
  29239. {
  29240. name: "Macro+",
  29241. height: math.unit(150, "feet")
  29242. },
  29243. {
  29244. name: "Megamacro",
  29245. height: math.unit(100, "miles")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(63.4, "meters"),
  29254. weight: math.unit(3.28349e+6, "kilograms"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/kirina-violet/front.svg",
  29258. extra: 2812 / 2725,
  29259. bottom: 0 / 2812
  29260. }
  29261. },
  29262. back: {
  29263. height: math.unit(63.4, "meters"),
  29264. weight: math.unit(3.28349e+6, "kilograms"),
  29265. name: "Back",
  29266. image: {
  29267. source: "./media/characters/kirina-violet/back.svg",
  29268. extra: 2812 / 2725,
  29269. bottom: 0 / 2812
  29270. }
  29271. },
  29272. mouth: {
  29273. height: math.unit(4.35, "meters"),
  29274. name: "Mouth",
  29275. image: {
  29276. source: "./media/characters/kirina-violet/mouth.svg"
  29277. }
  29278. },
  29279. paw: {
  29280. height: math.unit(5.6, "meters"),
  29281. name: "Paw",
  29282. image: {
  29283. source: "./media/characters/kirina-violet/paw.svg"
  29284. }
  29285. },
  29286. tail: {
  29287. height: math.unit(18, "meters"),
  29288. name: "Tail",
  29289. image: {
  29290. source: "./media/characters/kirina-violet/tail.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(63.4, "meters"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(75, "feet"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/cat-gigachu/front.svg",
  29310. extra: 1239/1027,
  29311. bottom: 32/1271
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(75, "feet"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/cat-gigachu/back.svg",
  29319. extra: 1229/1030,
  29320. bottom: 9/1238
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Dynamax",
  29327. height: math.unit(75, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(6, "feet"),
  29337. weight: math.unit(150, "lb"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/sfaiyan/front.svg",
  29341. extra: 999 / 978,
  29342. bottom: 5 / 1004
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(1.82, "meters")
  29350. },
  29351. {
  29352. name: "Giant",
  29353. height: math.unit(2.27, "km"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29360. {
  29361. front: {
  29362. height: math.unit(179, "cm"),
  29363. weight: math.unit(100, "kg"),
  29364. name: "Front",
  29365. image: {
  29366. source: "./media/characters/raunehkeli/front.svg",
  29367. extra: 1934 / 1926,
  29368. bottom: 0 / 1934
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(179, "cm")
  29376. },
  29377. {
  29378. name: "Maximum",
  29379. height: math.unit(575, "meters"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(6, "feet"),
  29389. weight: math.unit(150, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29393. extra: 2625 / 2518,
  29394. bottom: 60 / 2685
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(6 + 2 / 12, "feet")
  29402. },
  29403. {
  29404. name: "Macro",
  29405. height: math.unit(1180, "feet"),
  29406. default: true
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(5 + 6 / 12, "feet"),
  29415. weight: math.unit(108, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/lilith-zott/front.svg",
  29419. extra: 2510 / 2238,
  29420. bottom: 100 / 2610
  29421. }
  29422. },
  29423. frontDressed: {
  29424. height: math.unit(5 + 6 / 12, "feet"),
  29425. weight: math.unit(108, "lb"),
  29426. name: "Front (Dressed)",
  29427. image: {
  29428. source: "./media/characters/lilith-zott/front-dressed.svg",
  29429. extra: 2510 / 2238,
  29430. bottom: 100 / 2610
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(5 + 6 / 12, "feet")
  29438. },
  29439. {
  29440. name: "Macro",
  29441. height: math.unit(1030, "feet"),
  29442. default: true
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(6, "feet"),
  29451. weight: math.unit(150, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29455. extra: 2567 / 2435,
  29456. bottom: 39 / 2606
  29457. }
  29458. },
  29459. frontSuper: {
  29460. height: math.unit(6, "feet"),
  29461. name: "Front (Super)",
  29462. image: {
  29463. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29464. extra: 2567 / 2435,
  29465. bottom: 39 / 2606
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(5 + 10 / 12, "feet")
  29473. },
  29474. {
  29475. name: "Macro",
  29476. height: math.unit(1100, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(100, "miles"),
  29486. name: "Front",
  29487. image: {
  29488. source: "./media/characters/sona/front.svg",
  29489. extra: 2433 / 2201,
  29490. bottom: 53 / 2486
  29491. }
  29492. },
  29493. foot: {
  29494. height: math.unit(16.1, "miles"),
  29495. name: "Foot",
  29496. image: {
  29497. source: "./media/characters/sona/foot.svg"
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(100, "miles"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(150, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/bailey/front.svg",
  29518. extra: 1778 / 1724,
  29519. bottom: 30 / 1808
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Micro",
  29526. height: math.unit(4, "inches")
  29527. },
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(5 + 5 / 12, "feet"),
  29531. default: true
  29532. },
  29533. {
  29534. name: "Macro",
  29535. height: math.unit(250, "feet")
  29536. },
  29537. {
  29538. name: "Megamacro",
  29539. height: math.unit(100, "miles")
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29545. {
  29546. front: {
  29547. height: math.unit(5 + 2 / 12, "feet"),
  29548. weight: math.unit(120, "lb"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/snaps/front.svg",
  29552. extra: 2370 / 2177,
  29553. bottom: 48 / 2418
  29554. }
  29555. },
  29556. back: {
  29557. height: math.unit(5 + 2 / 12, "feet"),
  29558. weight: math.unit(120, "lb"),
  29559. name: "Back",
  29560. image: {
  29561. source: "./media/characters/snaps/back.svg",
  29562. extra: 2408 / 2258,
  29563. bottom: 15 / 2423
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Micro",
  29570. height: math.unit(9, "inches")
  29571. },
  29572. {
  29573. name: "Normal",
  29574. height: math.unit(5 + 2 / 12, "feet"),
  29575. default: true
  29576. },
  29577. {
  29578. name: "Mini Macro",
  29579. height: math.unit(10, "feet")
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(1.8, "meters"),
  29588. weight: math.unit(85, "kg"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/azteck/front.svg",
  29592. extra: 2815 / 2625,
  29593. bottom: 89 / 2904
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(1.8, "meters"),
  29598. weight: math.unit(85, "kg"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/azteck/back.svg",
  29602. extra: 2856 / 2648,
  29603. bottom: 85 / 2941
  29604. }
  29605. },
  29606. frontDressed: {
  29607. height: math.unit(1.8, "meters"),
  29608. weight: math.unit(85, "kg"),
  29609. name: "Front (Dressed)",
  29610. image: {
  29611. source: "./media/characters/azteck/front-dressed.svg",
  29612. extra: 2147 / 2003,
  29613. bottom: 68 / 2215
  29614. }
  29615. },
  29616. head: {
  29617. height: math.unit(0.47, "meters"),
  29618. weight: math.unit(85, "kg"),
  29619. name: "Head",
  29620. image: {
  29621. source: "./media/characters/azteck/head.svg"
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Bite sized",
  29628. height: math.unit(16, "cm")
  29629. },
  29630. {
  29631. name: "Normal",
  29632. height: math.unit(1.8, "meters"),
  29633. default: true
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(6, "feet"),
  29642. weight: math.unit(150, "lb"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/pidge/front.svg",
  29646. extra: 620 / 588,
  29647. bottom: 9 / 629
  29648. }
  29649. },
  29650. back: {
  29651. height: math.unit(6, "feet"),
  29652. weight: math.unit(150, "lb"),
  29653. name: "Back",
  29654. image: {
  29655. source: "./media/characters/pidge/back.svg",
  29656. extra: 620 / 588,
  29657. bottom: 9 / 629
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Macro",
  29664. height: math.unit(1, "mile"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(6, "feet"),
  29674. weight: math.unit(150, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/en/front.svg",
  29678. extra: 1697 / 1563,
  29679. bottom: 103 / 1800
  29680. }
  29681. },
  29682. back: {
  29683. height: math.unit(6, "feet"),
  29684. weight: math.unit(150, "lb"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/en/back.svg",
  29688. extra: 1700 / 1570,
  29689. bottom: 51 / 1751
  29690. }
  29691. },
  29692. frontDressed: {
  29693. height: math.unit(6, "feet"),
  29694. weight: math.unit(150, "lb"),
  29695. name: "Front (Dressed)",
  29696. image: {
  29697. source: "./media/characters/en/front-dressed.svg",
  29698. extra: 1697 / 1563,
  29699. bottom: 103 / 1800
  29700. }
  29701. },
  29702. backDressed: {
  29703. height: math.unit(6, "feet"),
  29704. weight: math.unit(150, "lb"),
  29705. name: "Back (Dressed)",
  29706. image: {
  29707. source: "./media/characters/en/back-dressed.svg",
  29708. extra: 1700 / 1570,
  29709. bottom: 51 / 1751
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Macro",
  29716. height: math.unit(210, "feet"),
  29717. default: true
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29723. {
  29724. front: {
  29725. height: math.unit(6, "feet"),
  29726. weight: math.unit(150, "lb"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/haze-orris/front.svg",
  29730. extra: 3975 / 3525,
  29731. bottom: 137 / 4112
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Micro",
  29738. height: math.unit(150, "mm"),
  29739. default: true
  29740. },
  29741. ]
  29742. ))
  29743. characterMakers.push(() => makeCharacter(
  29744. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29745. {
  29746. front: {
  29747. height: math.unit(6, "feet"),
  29748. weight: math.unit(150, "lb"),
  29749. name: "Front",
  29750. image: {
  29751. source: "./media/characters/casselene-yaro/front.svg",
  29752. extra: 4721 / 4541,
  29753. bottom: 82 / 4803
  29754. }
  29755. },
  29756. back: {
  29757. height: math.unit(6, "feet"),
  29758. weight: math.unit(150, "lb"),
  29759. name: "Back",
  29760. image: {
  29761. source: "./media/characters/casselene-yaro/back.svg",
  29762. extra: 4569 / 4377,
  29763. bottom: 69 / 4638
  29764. }
  29765. },
  29766. frontDressed: {
  29767. height: math.unit(6, "feet"),
  29768. weight: math.unit(150, "lb"),
  29769. name: "Front-dressed",
  29770. image: {
  29771. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29772. extra: 4721 / 4541,
  29773. bottom: 82 / 4803
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Macro",
  29780. height: math.unit(190, "feet"),
  29781. default: true
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(6, "feet"),
  29790. weight: math.unit(150, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/myra-rue-delore/front.svg",
  29794. extra: 1340 / 1308,
  29795. bottom: 67 / 1407
  29796. }
  29797. },
  29798. back: {
  29799. height: math.unit(6, "feet"),
  29800. weight: math.unit(150, "lb"),
  29801. name: "Back",
  29802. image: {
  29803. source: "./media/characters/myra-rue-delore/back.svg",
  29804. extra: 1341 / 1310,
  29805. bottom: 40 / 1381
  29806. }
  29807. },
  29808. frontDressed: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(150, "lb"),
  29811. name: "Front (Dressed)",
  29812. image: {
  29813. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29814. extra: 1340 / 1308,
  29815. bottom: 67 / 1407
  29816. }
  29817. },
  29818. },
  29819. [
  29820. {
  29821. name: "Macro",
  29822. height: math.unit(150, "feet"),
  29823. default: true
  29824. },
  29825. ]
  29826. ))
  29827. characterMakers.push(() => makeCharacter(
  29828. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29829. {
  29830. front: {
  29831. height: math.unit(10, "feet"),
  29832. weight: math.unit(15015, "lb"),
  29833. name: "Front",
  29834. image: {
  29835. source: "./media/characters/fem!plat/front.svg",
  29836. extra: 2799 / 2604,
  29837. bottom: 149 / 2948
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Normal",
  29844. height: math.unit(10, "feet"),
  29845. default: true
  29846. },
  29847. {
  29848. name: "Macro",
  29849. height: math.unit(100, "feet")
  29850. },
  29851. {
  29852. name: "Megamacro",
  29853. height: math.unit(1000, "feet")
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(15 + 5 / 12, "feet"),
  29862. weight: math.unit(4600, "lb"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/neapolitan-ananassa/front.svg",
  29866. extra: 2903 / 2736,
  29867. bottom: 0 / 2903
  29868. }
  29869. },
  29870. side: {
  29871. height: math.unit(15 + 5 / 12, "feet"),
  29872. weight: math.unit(4600, "lb"),
  29873. name: "Side",
  29874. image: {
  29875. source: "./media/characters/neapolitan-ananassa/side.svg",
  29876. extra: 2925 / 2719,
  29877. bottom: 0 / 2925
  29878. }
  29879. },
  29880. back: {
  29881. height: math.unit(15 + 5 / 12, "feet"),
  29882. weight: math.unit(4600, "lb"),
  29883. name: "Back",
  29884. image: {
  29885. source: "./media/characters/neapolitan-ananassa/back.svg",
  29886. extra: 2903 / 2736,
  29887. bottom: 0 / 2903
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(15 + 5 / 12, "feet"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "Post-Millenium",
  29899. height: math.unit(35 + 5 / 12, "feet")
  29900. },
  29901. {
  29902. name: "Post-Era",
  29903. height: math.unit(450 + 5 / 12, "feet")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(300, "meters"),
  29912. weight: math.unit(125000, "tonnes"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/pazuzu/front.svg",
  29916. extra: 877 / 794,
  29917. bottom: 47 / 924
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(300, "meters"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29931. {
  29932. side: {
  29933. height: math.unit(10 + 7 / 12, "feet"),
  29934. weight: math.unit(2.5, "tons"),
  29935. name: "Side",
  29936. image: {
  29937. source: "./media/characters/aasha/side.svg",
  29938. extra: 1345 / 1245,
  29939. bottom: 111 / 1456
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(10 + 7 / 12, "feet"),
  29944. weight: math.unit(2.5, "tons"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/aasha/back.svg",
  29948. extra: 1133 / 1057,
  29949. bottom: 257 / 1390
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(10 + 7 / 12, "feet"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29963. {
  29964. front: {
  29965. height: math.unit(6 + 3 / 12, "feet"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/nevan/front.svg",
  29969. extra: 704 / 704,
  29970. bottom: 28 / 732
  29971. }
  29972. },
  29973. back: {
  29974. height: math.unit(6 + 3 / 12, "feet"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/nevan/back.svg",
  29978. extra: 714 / 714,
  29979. bottom: 21 / 735
  29980. }
  29981. },
  29982. frontFlaccid: {
  29983. height: math.unit(6 + 3 / 12, "feet"),
  29984. name: "Front (Flaccid)",
  29985. image: {
  29986. source: "./media/characters/nevan/front-flaccid.svg",
  29987. extra: 704 / 704,
  29988. bottom: 28 / 732
  29989. }
  29990. },
  29991. frontErect: {
  29992. height: math.unit(6 + 3 / 12, "feet"),
  29993. name: "Front (Erect)",
  29994. image: {
  29995. source: "./media/characters/nevan/front-erect.svg",
  29996. extra: 704 / 704,
  29997. bottom: 28 / 732
  29998. }
  29999. },
  30000. backFlaccid: {
  30001. height: math.unit(6 + 3 / 12, "feet"),
  30002. name: "Back (Flaccid)",
  30003. image: {
  30004. source: "./media/characters/nevan/back-flaccid.svg",
  30005. extra: 714 / 714,
  30006. bottom: 21 / 735
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6 + 3 / 12, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(4, "feet"),
  30023. name: "Front",
  30024. image: {
  30025. source: "./media/characters/arhan/front.svg",
  30026. extra: 3368 / 3133,
  30027. bottom: 0 / 3368
  30028. }
  30029. },
  30030. side: {
  30031. height: math.unit(4, "feet"),
  30032. name: "Side",
  30033. image: {
  30034. source: "./media/characters/arhan/side.svg",
  30035. extra: 3347 / 3105,
  30036. bottom: 0 / 3347
  30037. }
  30038. },
  30039. tongue: {
  30040. height: math.unit(1.42, "feet"),
  30041. name: "Tongue",
  30042. image: {
  30043. source: "./media/characters/arhan/tongue.svg"
  30044. }
  30045. },
  30046. head: {
  30047. height: math.unit(0.85, "feet"),
  30048. name: "Head",
  30049. image: {
  30050. source: "./media/characters/arhan/head.svg"
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(4, "feet"),
  30058. default: true
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30064. {
  30065. front: {
  30066. height: math.unit(5 + 7.5 / 12, "feet"),
  30067. weight: math.unit(120, "lb"),
  30068. name: "Front",
  30069. image: {
  30070. source: "./media/characters/digi-duncan/front.svg",
  30071. extra: 330 / 326,
  30072. bottom: 16 / 346
  30073. }
  30074. },
  30075. side: {
  30076. height: math.unit(5 + 7.5 / 12, "feet"),
  30077. weight: math.unit(120, "lb"),
  30078. name: "Side",
  30079. image: {
  30080. source: "./media/characters/digi-duncan/side.svg",
  30081. extra: 341 / 337,
  30082. bottom: 1 / 342
  30083. }
  30084. },
  30085. back: {
  30086. height: math.unit(5 + 7.5 / 12, "feet"),
  30087. weight: math.unit(120, "lb"),
  30088. name: "Back",
  30089. image: {
  30090. source: "./media/characters/digi-duncan/back.svg",
  30091. extra: 330 / 326,
  30092. bottom: 12 / 342
  30093. }
  30094. },
  30095. },
  30096. [
  30097. {
  30098. name: "Speck",
  30099. height: math.unit(0.25, "mm")
  30100. },
  30101. {
  30102. name: "Micro",
  30103. height: math.unit(5, "mm")
  30104. },
  30105. {
  30106. name: "Tiny",
  30107. height: math.unit(0.5, "inches"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Human",
  30112. height: math.unit(5 + 7.5 / 12, "feet")
  30113. },
  30114. {
  30115. name: "Minigiant",
  30116. height: math.unit(8 + 5.25, "feet")
  30117. },
  30118. {
  30119. name: "Giant",
  30120. height: math.unit(2000, "feet")
  30121. },
  30122. {
  30123. name: "Mega",
  30124. height: math.unit(371.1, "miles")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(2, "meters"),
  30133. weight: math.unit(350, "kg"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30137. extra: 898 / 838,
  30138. bottom: 9 / 907
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Micro",
  30145. height: math.unit(8, "meters")
  30146. },
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(50, "meters"),
  30150. default: true
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit(500, "meters")
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6 + 6 / 12, "feet"),
  30163. name: "Front",
  30164. image: {
  30165. source: "./media/characters/khardesh/front.svg",
  30166. extra: 1788/1596,
  30167. bottom: 66/1854
  30168. }
  30169. },
  30170. back: {
  30171. height: math.unit(6 + 6 / 12, "feet"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/khardesh/back.svg",
  30175. extra: 1781/1584,
  30176. bottom: 68/1849
  30177. }
  30178. },
  30179. },
  30180. [
  30181. {
  30182. name: "Normal",
  30183. height: math.unit(6 + 6 / 12, "feet"),
  30184. default: true
  30185. },
  30186. {
  30187. name: "Normal+",
  30188. height: math.unit(4, "meters")
  30189. },
  30190. {
  30191. name: "Macro",
  30192. height: math.unit(50, "meters")
  30193. },
  30194. {
  30195. name: "Macro+",
  30196. height: math.unit(100, "meters")
  30197. },
  30198. {
  30199. name: "Megamacro",
  30200. height: math.unit(20, "km")
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(6, "feet"),
  30209. weight: math.unit(150, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/kosho/front.svg",
  30213. extra: 1847 / 1847,
  30214. bottom: 86 / 1933
  30215. }
  30216. },
  30217. },
  30218. [
  30219. {
  30220. name: "Second-stage micro",
  30221. height: math.unit(0.5, "inches")
  30222. },
  30223. {
  30224. name: "First-stage micro",
  30225. height: math.unit(6, "inches")
  30226. },
  30227. {
  30228. name: "Normal",
  30229. height: math.unit(6, "feet"),
  30230. default: true
  30231. },
  30232. {
  30233. name: "First-stage macro",
  30234. height: math.unit(72, "feet")
  30235. },
  30236. {
  30237. name: "Second-stage macro",
  30238. height: math.unit(864, "feet")
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30244. {
  30245. normal: {
  30246. height: math.unit(4 + 6 / 12, "feet"),
  30247. name: "Normal",
  30248. image: {
  30249. source: "./media/characters/hydra/normal.svg",
  30250. extra: 2833 / 2634,
  30251. bottom: 68 / 2901
  30252. }
  30253. },
  30254. smol: {
  30255. height: math.unit(0.705, "inches"),
  30256. name: "Smol",
  30257. image: {
  30258. source: "./media/characters/hydra/smol.svg",
  30259. extra: 2715 / 2540,
  30260. bottom: 0 / 2715
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(4 + 6 / 12, "feet"),
  30268. default: true
  30269. }
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(0.6, "cm"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/daz/front.svg",
  30280. extra: 1682 / 1164,
  30281. bottom: 42 / 1724
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(0.6, "cm"),
  30289. default: true
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(6, "feet"),
  30298. weight: math.unit(235, "lb"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/theo-pangolin/front.svg",
  30302. extra: 1996 / 1969,
  30303. bottom: 115 / 2111
  30304. }
  30305. },
  30306. back: {
  30307. height: math.unit(6, "feet"),
  30308. weight: math.unit(235, "lb"),
  30309. name: "Back",
  30310. image: {
  30311. source: "./media/characters/theo-pangolin/back.svg",
  30312. extra: 1979 / 1979,
  30313. bottom: 40 / 2019
  30314. }
  30315. },
  30316. feral: {
  30317. height: math.unit(2, "feet"),
  30318. weight: math.unit(30, "lb"),
  30319. name: "Feral",
  30320. image: {
  30321. source: "./media/characters/theo-pangolin/feral.svg",
  30322. extra: 803 / 791,
  30323. bottom: 181 / 984
  30324. }
  30325. },
  30326. footFive: {
  30327. height: math.unit(1.43, "feet"),
  30328. name: "Foot (Five Toes)",
  30329. image: {
  30330. source: "./media/characters/theo-pangolin/foot-five.svg"
  30331. }
  30332. },
  30333. footFour: {
  30334. height: math.unit(1.43, "feet"),
  30335. name: "Foot (Four Toes)",
  30336. image: {
  30337. source: "./media/characters/theo-pangolin/foot-four.svg"
  30338. }
  30339. },
  30340. handFour: {
  30341. height: math.unit(0.81, "feet"),
  30342. name: "Hand (Four Fingers)",
  30343. image: {
  30344. source: "./media/characters/theo-pangolin/hand-four.svg"
  30345. }
  30346. },
  30347. handThree: {
  30348. height: math.unit(0.81, "feet"),
  30349. name: "Hand (Three Fingers)",
  30350. image: {
  30351. source: "./media/characters/theo-pangolin/hand-three.svg"
  30352. }
  30353. },
  30354. headFront: {
  30355. height: math.unit(1.37, "feet"),
  30356. name: "Head (Front)",
  30357. image: {
  30358. source: "./media/characters/theo-pangolin/head-front.svg"
  30359. }
  30360. },
  30361. headSide: {
  30362. height: math.unit(1.43, "feet"),
  30363. name: "Head (Side)",
  30364. image: {
  30365. source: "./media/characters/theo-pangolin/head-side.svg"
  30366. }
  30367. },
  30368. tongue: {
  30369. height: math.unit(2.29, "feet"),
  30370. name: "Tongue",
  30371. image: {
  30372. source: "./media/characters/theo-pangolin/tongue.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(6, "feet")
  30380. },
  30381. {
  30382. name: "Macro",
  30383. height: math.unit(400, "feet"),
  30384. default: true
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(6, "inches"),
  30393. weight: math.unit(0.036, "kg"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/renée/front.svg",
  30397. extra: 900 / 886,
  30398. bottom: 8 / 908
  30399. }
  30400. },
  30401. },
  30402. [
  30403. {
  30404. name: "Nano",
  30405. height: math.unit(1, "nm")
  30406. },
  30407. {
  30408. name: "Micro",
  30409. height: math.unit(1, "mm")
  30410. },
  30411. {
  30412. name: "Normal",
  30413. height: math.unit(6, "inches")
  30414. },
  30415. {
  30416. name: "Macro",
  30417. height: math.unit(2000, "feet"),
  30418. default: true
  30419. },
  30420. {
  30421. name: "Megamacro",
  30422. height: math.unit(2, "km")
  30423. },
  30424. {
  30425. name: "Gigamacro",
  30426. height: math.unit(2000, "km")
  30427. },
  30428. {
  30429. name: "Teramacro",
  30430. height: math.unit(250000, "km")
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(4, "meters"),
  30439. weight: math.unit(150, "kg"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/caledvwlch/front.svg",
  30443. extra: 1760 / 1551,
  30444. bottom: 28 / 1788
  30445. }
  30446. },
  30447. side: {
  30448. height: math.unit(4, "meters"),
  30449. weight: math.unit(150, "kg"),
  30450. name: "Side",
  30451. image: {
  30452. source: "./media/characters/caledvwlch/side.svg",
  30453. extra: 1605 / 1536,
  30454. bottom: 31 / 1636
  30455. }
  30456. },
  30457. back: {
  30458. height: math.unit(4, "meters"),
  30459. weight: math.unit(150, "kg"),
  30460. name: "Back",
  30461. image: {
  30462. source: "./media/characters/caledvwlch/back.svg",
  30463. extra: 1635 / 1565,
  30464. bottom: 27 / 1662
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "\"Incognito\"",
  30471. height: math.unit(4, "meters")
  30472. },
  30473. {
  30474. name: "Small rampage",
  30475. height: math.unit(600, "meters")
  30476. },
  30477. {
  30478. name: "Mega",
  30479. height: math.unit(30, "km")
  30480. },
  30481. {
  30482. name: "Home-size",
  30483. height: math.unit(50, "km"),
  30484. default: true
  30485. },
  30486. {
  30487. name: "Giga",
  30488. height: math.unit(300, "km")
  30489. },
  30490. {
  30491. name: "Lounging",
  30492. height: math.unit(11000, "km")
  30493. },
  30494. {
  30495. name: "Planet snacking",
  30496. height: math.unit(2000000, "km")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(6, "feet"),
  30505. weight: math.unit(215, "lb"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/sapphire-svell/front.svg",
  30509. extra: 495 / 455,
  30510. bottom: 20 / 515
  30511. }
  30512. },
  30513. back: {
  30514. height: math.unit(6, "feet"),
  30515. weight: math.unit(216, "lb"),
  30516. name: "Back",
  30517. image: {
  30518. source: "./media/characters/sapphire-svell/back.svg",
  30519. extra: 497 / 477,
  30520. bottom: 7 / 504
  30521. }
  30522. },
  30523. maw: {
  30524. height: math.unit(1.57, "feet"),
  30525. name: "Maw",
  30526. image: {
  30527. source: "./media/characters/sapphire-svell/maw.svg"
  30528. }
  30529. },
  30530. foot: {
  30531. height: math.unit(1.07, "feet"),
  30532. name: "Foot",
  30533. image: {
  30534. source: "./media/characters/sapphire-svell/foot.svg"
  30535. }
  30536. },
  30537. toering: {
  30538. height: math.unit(1.7, "inch"),
  30539. name: "Toering",
  30540. image: {
  30541. source: "./media/characters/sapphire-svell/toering.svg"
  30542. }
  30543. },
  30544. },
  30545. [
  30546. {
  30547. name: "Normal",
  30548. height: math.unit(300, "feet"),
  30549. default: true
  30550. },
  30551. {
  30552. name: "Augmented",
  30553. height: math.unit(1250, "feet")
  30554. },
  30555. {
  30556. name: "Unleashed",
  30557. height: math.unit(3000, "feet")
  30558. },
  30559. ]
  30560. ))
  30561. characterMakers.push(() => makeCharacter(
  30562. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30563. {
  30564. side: {
  30565. height: math.unit(2 + 3 / 12, "feet"),
  30566. weight: math.unit(110, "lb"),
  30567. name: "Side",
  30568. image: {
  30569. source: "./media/characters/glitch-flux/side.svg",
  30570. extra: 997 / 805,
  30571. bottom: 20 / 1017
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Normal",
  30578. height: math.unit(2 + 3 / 12, "feet"),
  30579. default: true
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30585. {
  30586. front: {
  30587. height: math.unit(4, "meters"),
  30588. name: "Front",
  30589. image: {
  30590. source: "./media/characters/mid/front.svg",
  30591. extra: 507 / 476,
  30592. bottom: 17 / 524
  30593. }
  30594. },
  30595. back: {
  30596. height: math.unit(4, "meters"),
  30597. name: "Back",
  30598. image: {
  30599. source: "./media/characters/mid/back.svg",
  30600. extra: 519 / 487,
  30601. bottom: 7 / 526
  30602. }
  30603. },
  30604. stuck: {
  30605. height: math.unit(2.2, "meters"),
  30606. name: "Stuck",
  30607. image: {
  30608. source: "./media/characters/mid/stuck.svg",
  30609. extra: 1951 / 1869,
  30610. bottom: 88 / 2039
  30611. }
  30612. }
  30613. },
  30614. [
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(4, "meters"),
  30618. default: true
  30619. },
  30620. {
  30621. name: "Big",
  30622. height: math.unit(10, "meters")
  30623. },
  30624. {
  30625. name: "Macro",
  30626. height: math.unit(800, "meters")
  30627. },
  30628. {
  30629. name: "Megamacro",
  30630. height: math.unit(100, "km")
  30631. },
  30632. {
  30633. name: "Overgrown",
  30634. height: math.unit(1, "parsec")
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(2.5, "meters"),
  30643. weight: math.unit(225, "kg"),
  30644. name: "Front",
  30645. image: {
  30646. source: "./media/characters/iris/front.svg",
  30647. extra: 3348 / 3251,
  30648. bottom: 205 / 3553
  30649. }
  30650. },
  30651. maw: {
  30652. height: math.unit(0.56, "meter"),
  30653. name: "Maw",
  30654. image: {
  30655. source: "./media/characters/iris/maw.svg"
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Mewter cat",
  30662. height: math.unit(1.2, "meters")
  30663. },
  30664. {
  30665. name: "Minimacro",
  30666. height: math.unit(2.5, "meters"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(180, "meters")
  30672. },
  30673. {
  30674. name: "Megamacro",
  30675. height: math.unit(2746, "meters")
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30681. {
  30682. front: {
  30683. height: math.unit(6, "feet"),
  30684. weight: math.unit(135, "lb"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/axel/front.svg",
  30688. extra: 908 / 908,
  30689. bottom: 58 / 966
  30690. }
  30691. },
  30692. side: {
  30693. height: math.unit(6, "feet"),
  30694. weight: math.unit(135, "lb"),
  30695. name: "Side",
  30696. image: {
  30697. source: "./media/characters/axel/side.svg",
  30698. extra: 958 / 958,
  30699. bottom: 11 / 969
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(6, "feet"),
  30704. weight: math.unit(135, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/axel/back.svg",
  30708. extra: 887 / 887,
  30709. bottom: 34 / 921
  30710. }
  30711. },
  30712. head: {
  30713. height: math.unit(1.07, "feet"),
  30714. name: "Head",
  30715. image: {
  30716. source: "./media/characters/axel/head.svg"
  30717. }
  30718. },
  30719. beak: {
  30720. height: math.unit(1.4, "feet"),
  30721. name: "Beak",
  30722. image: {
  30723. source: "./media/characters/axel/beak.svg"
  30724. }
  30725. },
  30726. beakSide: {
  30727. height: math.unit(1.4, "feet"),
  30728. name: "Beak Side",
  30729. image: {
  30730. source: "./media/characters/axel/beak-side.svg"
  30731. }
  30732. },
  30733. sheath: {
  30734. height: math.unit(0.5, "feet"),
  30735. name: "Sheath",
  30736. image: {
  30737. source: "./media/characters/axel/sheath.svg"
  30738. }
  30739. },
  30740. dick: {
  30741. height: math.unit(0.98, "feet"),
  30742. name: "Dick",
  30743. image: {
  30744. source: "./media/characters/axel/dick.svg"
  30745. }
  30746. },
  30747. },
  30748. [
  30749. {
  30750. name: "Macro",
  30751. height: math.unit(68, "meters"),
  30752. default: true
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30758. {
  30759. front: {
  30760. height: math.unit(3.5, "meters"),
  30761. weight: math.unit(1200, "kg"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/joanna/front.svg",
  30765. extra: 1596 / 1488,
  30766. bottom: 29 / 1625
  30767. }
  30768. },
  30769. back: {
  30770. height: math.unit(3.5, "meters"),
  30771. weight: math.unit(1200, "kg"),
  30772. name: "Back",
  30773. image: {
  30774. source: "./media/characters/joanna/back.svg",
  30775. extra: 1594 / 1495,
  30776. bottom: 26 / 1620
  30777. }
  30778. },
  30779. frontShorts: {
  30780. height: math.unit(3.5, "meters"),
  30781. weight: math.unit(1200, "kg"),
  30782. name: "Front (Shorts)",
  30783. image: {
  30784. source: "./media/characters/joanna/front-shorts.svg",
  30785. extra: 1596 / 1488,
  30786. bottom: 29 / 1625
  30787. }
  30788. },
  30789. frontBiker: {
  30790. height: math.unit(3.5, "meters"),
  30791. weight: math.unit(1200, "kg"),
  30792. name: "Front (Biker)",
  30793. image: {
  30794. source: "./media/characters/joanna/front-biker.svg",
  30795. extra: 1596 / 1488,
  30796. bottom: 29 / 1625
  30797. }
  30798. },
  30799. backBiker: {
  30800. height: math.unit(3.5, "meters"),
  30801. weight: math.unit(1200, "kg"),
  30802. name: "Back (Biker)",
  30803. image: {
  30804. source: "./media/characters/joanna/back-biker.svg",
  30805. extra: 1594 / 1495,
  30806. bottom: 88 / 1682
  30807. }
  30808. },
  30809. bikeLeft: {
  30810. height: math.unit(2.4, "meters"),
  30811. weight: math.unit(1600, "kg"),
  30812. name: "Bike (Left)",
  30813. image: {
  30814. source: "./media/characters/joanna/bike-left.svg",
  30815. extra: 720 / 720,
  30816. bottom: 8 / 728
  30817. }
  30818. },
  30819. bikeRight: {
  30820. height: math.unit(2.4, "meters"),
  30821. weight: math.unit(1600, "kg"),
  30822. name: "Bike (Right)",
  30823. image: {
  30824. source: "./media/characters/joanna/bike-right.svg",
  30825. extra: 720 / 720,
  30826. bottom: 8 / 728
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Incognito",
  30833. height: math.unit(3.5, "meters")
  30834. },
  30835. {
  30836. name: "Casual Big",
  30837. height: math.unit(200, "meters")
  30838. },
  30839. {
  30840. name: "Macro",
  30841. height: math.unit(600, "meters")
  30842. },
  30843. {
  30844. name: "Original",
  30845. height: math.unit(20, "km"),
  30846. default: true
  30847. },
  30848. {
  30849. name: "Giga",
  30850. height: math.unit(400, "km")
  30851. },
  30852. {
  30853. name: "Lounging",
  30854. height: math.unit(1500, "km")
  30855. },
  30856. {
  30857. name: "Planetary",
  30858. height: math.unit(200000, "km")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30864. {
  30865. front: {
  30866. height: math.unit(6, "feet"),
  30867. weight: math.unit(150, "lb"),
  30868. name: "Front",
  30869. image: {
  30870. source: "./media/characters/hugo-sigil/front.svg",
  30871. extra: 522 / 500,
  30872. bottom: 2 / 524
  30873. }
  30874. },
  30875. back: {
  30876. height: math.unit(6, "feet"),
  30877. weight: math.unit(150, "lb"),
  30878. name: "Back",
  30879. image: {
  30880. source: "./media/characters/hugo-sigil/back.svg",
  30881. extra: 519 / 495,
  30882. bottom: 5 / 524
  30883. }
  30884. },
  30885. maw: {
  30886. height: math.unit(1.4, "feet"),
  30887. weight: math.unit(150, "lb"),
  30888. name: "Maw",
  30889. image: {
  30890. source: "./media/characters/hugo-sigil/maw.svg"
  30891. }
  30892. },
  30893. feet: {
  30894. height: math.unit(1.56, "feet"),
  30895. weight: math.unit(150, "lb"),
  30896. name: "Feet",
  30897. image: {
  30898. source: "./media/characters/hugo-sigil/feet.svg",
  30899. extra: 177 / 177,
  30900. bottom: 12 / 189
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(6, "feet")
  30908. },
  30909. {
  30910. name: "Macro",
  30911. height: math.unit(200, "feet"),
  30912. default: true
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(6, "feet"),
  30921. weight: math.unit(150, "lb"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/peri/front.svg",
  30925. extra: 2354 / 2233,
  30926. bottom: 49 / 2403
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Really Small",
  30933. height: math.unit(1, "nm")
  30934. },
  30935. {
  30936. name: "Micro",
  30937. height: math.unit(4, "inches")
  30938. },
  30939. {
  30940. name: "Normal",
  30941. height: math.unit(7, "inches"),
  30942. default: true
  30943. },
  30944. {
  30945. name: "Macro",
  30946. height: math.unit(400, "feet")
  30947. },
  30948. {
  30949. name: "Megamacro",
  30950. height: math.unit(100, "miles")
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30956. {
  30957. frontSlim: {
  30958. height: math.unit(7, "feet"),
  30959. name: "Front (Slim)",
  30960. image: {
  30961. source: "./media/characters/issilora/front-slim.svg",
  30962. extra: 529 / 449,
  30963. bottom: 53 / 582
  30964. }
  30965. },
  30966. sideSlim: {
  30967. height: math.unit(7, "feet"),
  30968. name: "Side (Slim)",
  30969. image: {
  30970. source: "./media/characters/issilora/side-slim.svg",
  30971. extra: 570 / 480,
  30972. bottom: 30 / 600
  30973. }
  30974. },
  30975. backSlim: {
  30976. height: math.unit(7, "feet"),
  30977. name: "Back (Slim)",
  30978. image: {
  30979. source: "./media/characters/issilora/back-slim.svg",
  30980. extra: 537 / 455,
  30981. bottom: 46 / 583
  30982. }
  30983. },
  30984. frontBuff: {
  30985. height: math.unit(7, "feet"),
  30986. name: "Front (Buff)",
  30987. image: {
  30988. source: "./media/characters/issilora/front-buff.svg",
  30989. extra: 2310 / 2035,
  30990. bottom: 335 / 2645
  30991. }
  30992. },
  30993. head: {
  30994. height: math.unit(1.94, "feet"),
  30995. name: "Head",
  30996. image: {
  30997. source: "./media/characters/issilora/head.svg"
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Minimum",
  31004. height: math.unit(7, "feet")
  31005. },
  31006. {
  31007. name: "Comfortable",
  31008. height: math.unit(17, "feet")
  31009. },
  31010. {
  31011. name: "Fun Size",
  31012. height: math.unit(47, "feet")
  31013. },
  31014. {
  31015. name: "Natural Macro",
  31016. height: math.unit(137, "feet"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Maximum Kaiju",
  31021. height: math.unit(397, "feet")
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31027. {
  31028. front: {
  31029. height: math.unit(50 + 9/12, "feet"),
  31030. weight: math.unit(32.8, "tons"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/irb'iiritaahn/front.svg",
  31034. extra: 1878/1826,
  31035. bottom: 326/2204
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(50 + 9/12, "feet"),
  31040. weight: math.unit(32.8, "tons"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/irb'iiritaahn/back.svg",
  31044. extra: 2052/2018,
  31045. bottom: 152/2204
  31046. }
  31047. },
  31048. head: {
  31049. height: math.unit(12.86, "feet"),
  31050. name: "Head",
  31051. image: {
  31052. source: "./media/characters/irb'iiritaahn/head.svg"
  31053. }
  31054. },
  31055. maw: {
  31056. height: math.unit(9.66, "feet"),
  31057. name: "Maw",
  31058. image: {
  31059. source: "./media/characters/irb'iiritaahn/maw.svg"
  31060. }
  31061. },
  31062. frontDick: {
  31063. height: math.unit(8.78461, "feet"),
  31064. name: "Front Dick",
  31065. image: {
  31066. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31067. }
  31068. },
  31069. rearDick: {
  31070. height: math.unit(8.78461, "feet"),
  31071. name: "Rear Dick",
  31072. image: {
  31073. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31074. }
  31075. },
  31076. rearDickUnfolded: {
  31077. height: math.unit(8.78, "feet"),
  31078. name: "Rear Dick (Unfolded)",
  31079. image: {
  31080. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31081. }
  31082. },
  31083. wings: {
  31084. height: math.unit(43, "feet"),
  31085. name: "Wings",
  31086. image: {
  31087. source: "./media/characters/irb'iiritaahn/wings.svg"
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Macro",
  31094. height: math.unit(50 + 9/12, "feet"),
  31095. default: true
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(205, "cm"),
  31104. weight: math.unit(102, "kg"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/irbisgreif/front.svg",
  31108. extra: 785/706,
  31109. bottom: 13/798
  31110. }
  31111. },
  31112. back: {
  31113. height: math.unit(205, "cm"),
  31114. weight: math.unit(102, "kg"),
  31115. name: "Back",
  31116. image: {
  31117. source: "./media/characters/irbisgreif/back.svg",
  31118. extra: 713/701,
  31119. bottom: 26/739
  31120. }
  31121. },
  31122. frontDressed: {
  31123. height: math.unit(216, "cm"),
  31124. weight: math.unit(102, "kg"),
  31125. name: "Front-dressed",
  31126. image: {
  31127. source: "./media/characters/irbisgreif/front-dressed.svg",
  31128. extra: 902/776,
  31129. bottom: 14/916
  31130. }
  31131. },
  31132. sideDressed: {
  31133. height: math.unit(195, "cm"),
  31134. weight: math.unit(102, "kg"),
  31135. name: "Side-dressed",
  31136. image: {
  31137. source: "./media/characters/irbisgreif/side-dressed.svg",
  31138. extra: 788/688,
  31139. bottom: 21/809
  31140. }
  31141. },
  31142. backDressed: {
  31143. height: math.unit(216, "cm"),
  31144. weight: math.unit(102, "kg"),
  31145. name: "Back-dressed",
  31146. image: {
  31147. source: "./media/characters/irbisgreif/back-dressed.svg",
  31148. extra: 901/783,
  31149. bottom: 10/911
  31150. }
  31151. },
  31152. dick: {
  31153. height: math.unit(0.49, "feet"),
  31154. name: "Dick",
  31155. image: {
  31156. source: "./media/characters/irbisgreif/dick.svg"
  31157. }
  31158. },
  31159. wingTop: {
  31160. height: math.unit(1.93 , "feet"),
  31161. name: "Wing-top",
  31162. image: {
  31163. source: "./media/characters/irbisgreif/wing-top.svg"
  31164. }
  31165. },
  31166. wingBottom: {
  31167. height: math.unit(1.93 , "feet"),
  31168. name: "Wing-bottom",
  31169. image: {
  31170. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Normal",
  31177. height: math.unit(216, "cm"),
  31178. default: true
  31179. },
  31180. ]
  31181. ))
  31182. characterMakers.push(() => makeCharacter(
  31183. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31184. {
  31185. front: {
  31186. height: math.unit(6, "feet"),
  31187. weight: math.unit(150, "lb"),
  31188. name: "Front",
  31189. image: {
  31190. source: "./media/characters/pride/front.svg",
  31191. extra: 1299/1230,
  31192. bottom: 18/1317
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(7, "feet")
  31200. },
  31201. {
  31202. name: "Mini-macro",
  31203. height: math.unit(11, "feet")
  31204. },
  31205. {
  31206. name: "Macro",
  31207. height: math.unit(15, "meters"),
  31208. default: true
  31209. },
  31210. {
  31211. name: "Macro+",
  31212. height: math.unit(40, "meters")
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31218. {
  31219. front: {
  31220. height: math.unit(4 + 2 / 12, "feet"),
  31221. weight: math.unit(95, "lb"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/vaelophis-nyx/front.svg",
  31225. extra: 2532/2330,
  31226. bottom: 0/2532
  31227. }
  31228. },
  31229. back: {
  31230. height: math.unit(4 + 2 / 12, "feet"),
  31231. weight: math.unit(95, "lb"),
  31232. name: "Back",
  31233. image: {
  31234. source: "./media/characters/vaelophis-nyx/back.svg",
  31235. extra: 2484/2361,
  31236. bottom: 0/2484
  31237. }
  31238. },
  31239. feralSide: {
  31240. height: math.unit(2 + 1/12, "feet"),
  31241. weight: math.unit(20, "lb"),
  31242. name: "Feral (Side)",
  31243. image: {
  31244. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31245. extra: 1721/1581,
  31246. bottom: 70/1791
  31247. }
  31248. },
  31249. feralLazing: {
  31250. height: math.unit(1.08, "feet"),
  31251. weight: math.unit(20, "lb"),
  31252. name: "Feral (Lazing)",
  31253. image: {
  31254. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31255. extra: 822/822,
  31256. bottom: 248/1070
  31257. }
  31258. },
  31259. ear: {
  31260. height: math.unit(0.416, "feet"),
  31261. name: "Ear",
  31262. image: {
  31263. source: "./media/characters/vaelophis-nyx/ear.svg"
  31264. }
  31265. },
  31266. eye: {
  31267. height: math.unit(0.0748, "feet"),
  31268. name: "Eye",
  31269. image: {
  31270. source: "./media/characters/vaelophis-nyx/eye.svg"
  31271. }
  31272. },
  31273. mouth: {
  31274. height: math.unit(0.378, "feet"),
  31275. name: "Mouth",
  31276. image: {
  31277. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31278. }
  31279. },
  31280. spade: {
  31281. height: math.unit(0.55, "feet"),
  31282. name: "Spade",
  31283. image: {
  31284. source: "./media/characters/vaelophis-nyx/spade.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(4 + 2/12, "feet"),
  31292. default: true
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31298. {
  31299. front: {
  31300. height: math.unit(7, "feet"),
  31301. weight: math.unit(231, "lb"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/flux/front.svg",
  31305. extra: 919/871,
  31306. bottom: 0/919
  31307. }
  31308. },
  31309. back: {
  31310. height: math.unit(7, "feet"),
  31311. weight: math.unit(231, "lb"),
  31312. name: "Back",
  31313. image: {
  31314. source: "./media/characters/flux/back.svg",
  31315. extra: 1040/992,
  31316. bottom: 0/1040
  31317. }
  31318. },
  31319. frontDressed: {
  31320. height: math.unit(7, "feet"),
  31321. weight: math.unit(231, "lb"),
  31322. name: "Front (Dressed)",
  31323. image: {
  31324. source: "./media/characters/flux/front-dressed.svg",
  31325. extra: 919/871,
  31326. bottom: 0/919
  31327. }
  31328. },
  31329. feralSide: {
  31330. height: math.unit(5, "feet"),
  31331. weight: math.unit(150, "lb"),
  31332. name: "Feral (Side)",
  31333. image: {
  31334. source: "./media/characters/flux/feral-side.svg",
  31335. extra: 598/528,
  31336. bottom: 28/626
  31337. }
  31338. },
  31339. head: {
  31340. height: math.unit(1.585, "feet"),
  31341. name: "Head",
  31342. image: {
  31343. source: "./media/characters/flux/head.svg"
  31344. }
  31345. },
  31346. headSide: {
  31347. height: math.unit(1.74, "feet"),
  31348. name: "Head (Side)",
  31349. image: {
  31350. source: "./media/characters/flux/head-side.svg"
  31351. }
  31352. },
  31353. headSideFire: {
  31354. height: math.unit(1.76, "feet"),
  31355. name: "Head (Side, Fire)",
  31356. image: {
  31357. source: "./media/characters/flux/head-side-fire.svg"
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(7, "feet"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(9, "feet"),
  31374. weight: math.unit(1012, "lb"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/ulfra-lupae/front.svg",
  31378. extra: 1083/1011,
  31379. bottom: 67/1150
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Micro",
  31386. height: math.unit(6, "inches")
  31387. },
  31388. {
  31389. name: "Socializing",
  31390. height: math.unit(6 + 5/12, "feet")
  31391. },
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(9, "feet"),
  31395. default: true
  31396. },
  31397. {
  31398. name: "Macro",
  31399. height: math.unit(150, "feet")
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(5 + 2/12, "feet"),
  31408. weight: math.unit(120, "lb"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/timber/front.svg",
  31412. extra: 2814/2705,
  31413. bottom: 181/2995
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(5 + 2/12, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(5 + 7/12, "feet"),
  31430. weight: math.unit(220, "lb"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/nicki/front.svg",
  31434. extra: 453/419,
  31435. bottom: 7/460
  31436. }
  31437. },
  31438. frontAlt: {
  31439. height: math.unit(5 + 7/12, "feet"),
  31440. weight: math.unit(220, "lb"),
  31441. name: "Front-alt",
  31442. image: {
  31443. source: "./media/characters/nicki/front-alt.svg",
  31444. extra: 435/411,
  31445. bottom: 12/447
  31446. }
  31447. },
  31448. back: {
  31449. height: math.unit(5 + 7/12, "feet"),
  31450. weight: math.unit(220, "lb"),
  31451. name: "Back",
  31452. image: {
  31453. source: "./media/characters/nicki/back.svg",
  31454. extra: 440/413,
  31455. bottom: 19/459
  31456. }
  31457. },
  31458. taur: {
  31459. height: math.unit(7 + 6/12, "feet"),
  31460. weight: math.unit(700, "lb"),
  31461. name: "Taur",
  31462. image: {
  31463. source: "./media/characters/nicki/taur.svg",
  31464. extra: 975/773,
  31465. bottom: 0/975
  31466. }
  31467. },
  31468. frontNsfw: {
  31469. height: math.unit(5 + 7/12, "feet"),
  31470. weight: math.unit(220, "lb"),
  31471. name: "Front (NSFW)",
  31472. image: {
  31473. source: "./media/characters/nicki/front-nsfw.svg",
  31474. extra: 453/419,
  31475. bottom: 7/460
  31476. }
  31477. },
  31478. frontNsfwAlt: {
  31479. height: math.unit(5 + 7/12, "feet"),
  31480. weight: math.unit(220, "lb"),
  31481. name: "Front (Alt, NSFW)",
  31482. image: {
  31483. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31484. extra: 435/411,
  31485. bottom: 12/447
  31486. }
  31487. },
  31488. backNsfw: {
  31489. height: math.unit(5 + 7/12, "feet"),
  31490. weight: math.unit(220, "lb"),
  31491. name: "Back (NSFW)",
  31492. image: {
  31493. source: "./media/characters/nicki/back-nsfw.svg",
  31494. extra: 440/413,
  31495. bottom: 19/459
  31496. }
  31497. },
  31498. head: {
  31499. height: math.unit(2.1, "feet"),
  31500. name: "Head",
  31501. image: {
  31502. source: "./media/characters/nicki/head.svg"
  31503. }
  31504. },
  31505. paw: {
  31506. height: math.unit(1.88, "feet"),
  31507. name: "Paw",
  31508. image: {
  31509. source: "./media/characters/nicki/paw.svg"
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(5 + 7/12, "feet"),
  31517. default: true
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(7 + 10/12, "feet"),
  31526. weight: math.unit(3.5, "tons"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/lee/front.svg",
  31530. extra: 1773/1615,
  31531. bottom: 86/1859
  31532. }
  31533. },
  31534. hand: {
  31535. height: math.unit(1.78, "feet"),
  31536. name: "Hand",
  31537. image: {
  31538. source: "./media/characters/lee/hand.svg"
  31539. }
  31540. },
  31541. maw: {
  31542. height: math.unit(1.18, "feet"),
  31543. name: "Maw",
  31544. image: {
  31545. source: "./media/characters/lee/maw.svg"
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(7 + 10/12, "feet"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31559. {
  31560. front: {
  31561. height: math.unit(9, "feet"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/guti/front.svg",
  31565. extra: 4551/4355,
  31566. bottom: 123/4674
  31567. }
  31568. },
  31569. tongue: {
  31570. height: math.unit(1, "feet"),
  31571. name: "Tongue",
  31572. image: {
  31573. source: "./media/characters/guti/tongue.svg"
  31574. }
  31575. },
  31576. paw: {
  31577. height: math.unit(1.18, "feet"),
  31578. name: "Paw",
  31579. image: {
  31580. source: "./media/characters/guti/paw.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(9, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31594. {
  31595. side: {
  31596. height: math.unit(5, "meters"),
  31597. name: "Side",
  31598. image: {
  31599. source: "./media/characters/vesper/side.svg",
  31600. extra: 1605/1518,
  31601. bottom: 0/1605
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Small",
  31608. height: math.unit(5, "meters")
  31609. },
  31610. {
  31611. name: "Sage",
  31612. height: math.unit(100, "meters"),
  31613. default: true
  31614. },
  31615. {
  31616. name: "Fun Size",
  31617. height: math.unit(600, "meters")
  31618. },
  31619. {
  31620. name: "Goddess",
  31621. height: math.unit(20000, "km")
  31622. },
  31623. {
  31624. name: "Maximum",
  31625. height: math.unit(5, "galaxies")
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31631. {
  31632. front: {
  31633. height: math.unit(6 + 3/12, "feet"),
  31634. weight: math.unit(190, "lb"),
  31635. name: "Front",
  31636. image: {
  31637. source: "./media/characters/gawain/front.svg",
  31638. extra: 2222/2139,
  31639. bottom: 90/2312
  31640. }
  31641. },
  31642. back: {
  31643. height: math.unit(6 + 3/12, "feet"),
  31644. weight: math.unit(190, "lb"),
  31645. name: "Back",
  31646. image: {
  31647. source: "./media/characters/gawain/back.svg",
  31648. extra: 2199/2111,
  31649. bottom: 73/2272
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(6 + 3/12, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31663. {
  31664. side: {
  31665. height: math.unit(3.5, "meters"),
  31666. weight: math.unit(16000, "lb"),
  31667. name: "Side",
  31668. image: {
  31669. source: "./media/characters/dascalti/side.svg",
  31670. extra: 392/273,
  31671. bottom: 47/439
  31672. }
  31673. },
  31674. breath: {
  31675. height: math.unit(7.4, "feet"),
  31676. name: "Breath",
  31677. image: {
  31678. source: "./media/characters/dascalti/breath.svg"
  31679. }
  31680. },
  31681. fed: {
  31682. height: math.unit(3.6, "meters"),
  31683. weight: math.unit(16000, "lb"),
  31684. name: "Fed",
  31685. image: {
  31686. source: "./media/characters/dascalti/fed.svg",
  31687. extra: 1419/820,
  31688. bottom: 95/1514
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(3.5, "meters"),
  31696. default: true
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31702. {
  31703. front: {
  31704. height: math.unit(3 + 5/12, "feet"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/mauve/front.svg",
  31708. extra: 1126/1033,
  31709. bottom: 65/1191
  31710. }
  31711. },
  31712. side: {
  31713. height: math.unit(3 + 5/12, "feet"),
  31714. name: "Side",
  31715. image: {
  31716. source: "./media/characters/mauve/side.svg",
  31717. extra: 1089/1001,
  31718. bottom: 29/1118
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(3 + 5/12, "feet"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/mauve/back.svg",
  31726. extra: 1173/1053,
  31727. bottom: 109/1282
  31728. }
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Normal",
  31734. height: math.unit(3 + 5/12, "feet"),
  31735. default: true
  31736. },
  31737. ]
  31738. ))
  31739. characterMakers.push(() => makeCharacter(
  31740. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31741. {
  31742. front: {
  31743. height: math.unit(6 + 3/12, "feet"),
  31744. weight: math.unit(430, "lb"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/carlos/front.svg",
  31748. extra: 1964/1913,
  31749. bottom: 70/2034
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(6 + 3/12, "feet"),
  31757. default: true
  31758. },
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31763. {
  31764. back: {
  31765. height: math.unit(5 + 10/12, "feet"),
  31766. weight: math.unit(200, "lb"),
  31767. name: "Back",
  31768. image: {
  31769. source: "./media/characters/jax/back.svg",
  31770. extra: 764/739,
  31771. bottom: 25/789
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(5 + 10/12, "feet"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(8, "feet"),
  31788. weight: math.unit(250, "lb"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/eikthynir/front.svg",
  31792. extra: 1332/1166,
  31793. bottom: 82/1414
  31794. }
  31795. },
  31796. back: {
  31797. height: math.unit(8, "feet"),
  31798. weight: math.unit(250, "lb"),
  31799. name: "Back",
  31800. image: {
  31801. source: "./media/characters/eikthynir/back.svg",
  31802. extra: 1342/1190,
  31803. bottom: 19/1361
  31804. }
  31805. },
  31806. dick: {
  31807. height: math.unit(2.35, "feet"),
  31808. name: "Dick",
  31809. image: {
  31810. source: "./media/characters/eikthynir/dick.svg"
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Normal",
  31817. height: math.unit(8, "feet"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(99, "meters"),
  31827. weight: math.unit(13000, "tons"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/zlmos/front.svg",
  31831. extra: 2202/1992,
  31832. bottom: 315/2517
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Macro",
  31839. height: math.unit(99, "meters"),
  31840. default: true
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31846. {
  31847. front: {
  31848. height: math.unit(6 + 5/12, "feet"),
  31849. name: "Front",
  31850. image: {
  31851. source: "./media/characters/purri/front.svg",
  31852. extra: 1698/1610,
  31853. bottom: 32/1730
  31854. }
  31855. },
  31856. frontAlt: {
  31857. height: math.unit(6 + 5/12, "feet"),
  31858. name: "Front (Alt)",
  31859. image: {
  31860. source: "./media/characters/purri/front-alt.svg",
  31861. extra: 450/420,
  31862. bottom: 26/476
  31863. }
  31864. },
  31865. boots: {
  31866. height: math.unit(5.5, "feet"),
  31867. name: "Boots",
  31868. image: {
  31869. source: "./media/characters/purri/boots.svg",
  31870. extra: 905/853,
  31871. bottom: 18/923
  31872. }
  31873. },
  31874. lying: {
  31875. height: math.unit(2, "feet"),
  31876. name: "Lying",
  31877. image: {
  31878. source: "./media/characters/purri/lying.svg",
  31879. extra: 940/843,
  31880. bottom: 146/1086
  31881. }
  31882. },
  31883. devious: {
  31884. height: math.unit(1.77, "feet"),
  31885. name: "Devious",
  31886. image: {
  31887. source: "./media/characters/purri/devious.svg",
  31888. extra: 1440/1155,
  31889. bottom: 147/1587
  31890. }
  31891. },
  31892. bean: {
  31893. height: math.unit(1.94, "feet"),
  31894. name: "Bean",
  31895. image: {
  31896. source: "./media/characters/purri/bean.svg"
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Micro",
  31903. height: math.unit(1, "mm")
  31904. },
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(6 + 5/12, "feet"),
  31908. default: true
  31909. },
  31910. {
  31911. name: "Macro :3c",
  31912. height: math.unit(2, "miles")
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(6 + 2/12, "feet"),
  31921. weight: math.unit(250, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/moonlight/front.svg",
  31925. extra: 1044/908,
  31926. bottom: 56/1100
  31927. }
  31928. },
  31929. feral: {
  31930. height: math.unit(3 + 1/12, "feet"),
  31931. weight: math.unit(50, "kg"),
  31932. name: "Feral",
  31933. image: {
  31934. source: "./media/characters/moonlight/feral.svg",
  31935. extra: 3705/2791,
  31936. bottom: 145/3850
  31937. }
  31938. },
  31939. paw: {
  31940. height: math.unit(1, "feet"),
  31941. name: "Paw",
  31942. image: {
  31943. source: "./media/characters/moonlight/paw.svg"
  31944. }
  31945. },
  31946. paws: {
  31947. height: math.unit(0.98, "feet"),
  31948. name: "Paws",
  31949. image: {
  31950. source: "./media/characters/moonlight/paws.svg",
  31951. extra: 939/939,
  31952. bottom: 50/989
  31953. }
  31954. },
  31955. mouth: {
  31956. height: math.unit(0.48, "feet"),
  31957. name: "Mouth",
  31958. image: {
  31959. source: "./media/characters/moonlight/mouth.svg"
  31960. }
  31961. },
  31962. dick: {
  31963. height: math.unit(1.46, "feet"),
  31964. name: "Dick",
  31965. image: {
  31966. source: "./media/characters/moonlight/dick.svg"
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(6 + 2/12, "feet"),
  31974. default: true
  31975. },
  31976. {
  31977. name: "Macro",
  31978. height: math.unit(300, "feet")
  31979. },
  31980. {
  31981. name: "Macro+",
  31982. height: math.unit(1, "mile")
  31983. },
  31984. {
  31985. name: "Mt. Moon",
  31986. height: math.unit(5, "miles")
  31987. },
  31988. {
  31989. name: "Megamacro",
  31990. height: math.unit(15, "miles")
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31996. {
  31997. back: {
  31998. height: math.unit(6, "feet"),
  31999. weight: math.unit(150, "lb"),
  32000. name: "Back",
  32001. image: {
  32002. source: "./media/characters/sylen/back.svg",
  32003. extra: 1335/1273,
  32004. bottom: 107/1442
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(5 + 5/12, "feet")
  32012. },
  32013. {
  32014. name: "Megamacro",
  32015. height: math.unit(3, "miles"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(6, "feet"),
  32025. weight: math.unit(190, "lb"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/huttser/front.svg",
  32029. extra: 1152/1058,
  32030. bottom: 23/1175
  32031. }
  32032. },
  32033. side: {
  32034. height: math.unit(6, "feet"),
  32035. weight: math.unit(190, "lb"),
  32036. name: "Side",
  32037. image: {
  32038. source: "./media/characters/huttser/side.svg",
  32039. extra: 1174/1065,
  32040. bottom: 18/1192
  32041. }
  32042. },
  32043. back: {
  32044. height: math.unit(6, "feet"),
  32045. weight: math.unit(190, "lb"),
  32046. name: "Back",
  32047. image: {
  32048. source: "./media/characters/huttser/back.svg",
  32049. extra: 1158/1056,
  32050. bottom: 12/1170
  32051. }
  32052. },
  32053. },
  32054. [
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32059. {
  32060. side: {
  32061. height: math.unit(12 + 9/12, "feet"),
  32062. weight: math.unit(15000, "lb"),
  32063. name: "Side",
  32064. image: {
  32065. source: "./media/characters/faan/side.svg",
  32066. extra: 2747/2697,
  32067. bottom: 0/2747
  32068. }
  32069. },
  32070. front: {
  32071. height: math.unit(12 + 9/12, "feet"),
  32072. weight: math.unit(15000, "lb"),
  32073. name: "Front",
  32074. image: {
  32075. source: "./media/characters/faan/front.svg",
  32076. extra: 607/571,
  32077. bottom: 24/631
  32078. }
  32079. },
  32080. head: {
  32081. height: math.unit(2.85, "feet"),
  32082. name: "Head",
  32083. image: {
  32084. source: "./media/characters/faan/head.svg"
  32085. }
  32086. },
  32087. headAlt: {
  32088. height: math.unit(3.13, "feet"),
  32089. name: "Head-alt",
  32090. image: {
  32091. source: "./media/characters/faan/head-alt.svg"
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(12 + 9/12, "feet"),
  32099. default: true
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32105. {
  32106. front: {
  32107. height: math.unit(6, "feet"),
  32108. weight: math.unit(300, "lb"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/tanio/front.svg",
  32112. extra: 711/673,
  32113. bottom: 25/736
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(6, "feet"),
  32121. default: true
  32122. },
  32123. ]
  32124. ))
  32125. characterMakers.push(() => makeCharacter(
  32126. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32127. {
  32128. front: {
  32129. height: math.unit(3, "inches"),
  32130. name: "Front",
  32131. image: {
  32132. source: "./media/characters/noboru/front.svg",
  32133. extra: 1039/932,
  32134. bottom: 18/1057
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Micro",
  32141. height: math.unit(3, "inches"),
  32142. default: true
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(1.85, "meters"),
  32151. weight: math.unit(80, "kg"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/daniel-barrett/front.svg",
  32155. extra: 355/337,
  32156. bottom: 9/364
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Pico",
  32163. height: math.unit(0.0433, "mm")
  32164. },
  32165. {
  32166. name: "Nano",
  32167. height: math.unit(1.5, "mm")
  32168. },
  32169. {
  32170. name: "Micro",
  32171. height: math.unit(5.3, "cm"),
  32172. default: true
  32173. },
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(1.85, "meters")
  32177. },
  32178. {
  32179. name: "Macro",
  32180. height: math.unit(64.7, "meters")
  32181. },
  32182. {
  32183. name: "Megamacro",
  32184. height: math.unit(2.26, "km")
  32185. },
  32186. {
  32187. name: "Gigamacro",
  32188. height: math.unit(79, "km")
  32189. },
  32190. {
  32191. name: "Teramacro",
  32192. height: math.unit(2765, "km")
  32193. },
  32194. {
  32195. name: "Petamacro",
  32196. height: math.unit(96678, "km")
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32202. {
  32203. front: {
  32204. height: math.unit(30, "meters"),
  32205. weight: math.unit(400, "tons"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/zeel/front.svg",
  32209. extra: 2599/2599,
  32210. bottom: 226/2825
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Macro",
  32217. height: math.unit(30, "meters"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(6 + 7/12, "feet"),
  32227. weight: math.unit(210, "lb"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/tarn/front.svg",
  32231. extra: 3517/3220,
  32232. bottom: 91/3608
  32233. }
  32234. },
  32235. back: {
  32236. height: math.unit(6 + 7/12, "feet"),
  32237. weight: math.unit(210, "lb"),
  32238. name: "Back",
  32239. image: {
  32240. source: "./media/characters/tarn/back.svg",
  32241. extra: 3566/3241,
  32242. bottom: 34/3600
  32243. }
  32244. },
  32245. dick: {
  32246. height: math.unit(1.65, "feet"),
  32247. name: "Dick",
  32248. image: {
  32249. source: "./media/characters/tarn/dick.svg"
  32250. }
  32251. },
  32252. paw: {
  32253. height: math.unit(1.80, "feet"),
  32254. name: "Paw",
  32255. image: {
  32256. source: "./media/characters/tarn/paw.svg"
  32257. }
  32258. },
  32259. tongue: {
  32260. height: math.unit(0.97, "feet"),
  32261. name: "Tongue",
  32262. image: {
  32263. source: "./media/characters/tarn/tongue.svg"
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Micro",
  32270. height: math.unit(4, "inches")
  32271. },
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(6 + 7/12, "feet"),
  32275. default: true
  32276. },
  32277. {
  32278. name: "Macro",
  32279. height: math.unit(300, "feet")
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32285. {
  32286. front: {
  32287. height: math.unit(5 + 7/12, "feet"),
  32288. weight: math.unit(80, "kg"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32292. extra: 3023/2865,
  32293. bottom: 33/3056
  32294. }
  32295. },
  32296. back: {
  32297. height: math.unit(5 + 7/12, "feet"),
  32298. weight: math.unit(80, "kg"),
  32299. name: "Back",
  32300. image: {
  32301. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32302. extra: 3020/2886,
  32303. bottom: 30/3050
  32304. }
  32305. },
  32306. dick: {
  32307. height: math.unit(0.98, "feet"),
  32308. name: "Dick",
  32309. image: {
  32310. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32311. }
  32312. },
  32313. anatomy: {
  32314. height: math.unit(2.86, "feet"),
  32315. name: "Anatomy",
  32316. image: {
  32317. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32318. }
  32319. },
  32320. },
  32321. [
  32322. {
  32323. name: "Really Small",
  32324. height: math.unit(2, "inches")
  32325. },
  32326. {
  32327. name: "Micro",
  32328. height: math.unit(5.583, "inches")
  32329. },
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(5 + 7/12, "feet"),
  32333. default: true
  32334. },
  32335. {
  32336. name: "Macro",
  32337. height: math.unit(67, "feet")
  32338. },
  32339. {
  32340. name: "Megamacro",
  32341. height: math.unit(134, "feet")
  32342. },
  32343. ]
  32344. ))
  32345. characterMakers.push(() => makeCharacter(
  32346. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32347. {
  32348. front: {
  32349. height: math.unit(9, "feet"),
  32350. weight: math.unit(120, "lb"),
  32351. name: "Front",
  32352. image: {
  32353. source: "./media/characters/sally/front.svg",
  32354. extra: 1506/1349,
  32355. bottom: 66/1572
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(9, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32369. {
  32370. front: {
  32371. height: math.unit(8, "feet"),
  32372. weight: math.unit(900, "lb"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/owen/front.svg",
  32376. extra: 1761/1657,
  32377. bottom: 74/1835
  32378. }
  32379. },
  32380. side: {
  32381. height: math.unit(8, "feet"),
  32382. weight: math.unit(900, "lb"),
  32383. name: "Side",
  32384. image: {
  32385. source: "./media/characters/owen/side.svg",
  32386. extra: 1797/1734,
  32387. bottom: 30/1827
  32388. }
  32389. },
  32390. back: {
  32391. height: math.unit(8, "feet"),
  32392. weight: math.unit(900, "lb"),
  32393. name: "Back",
  32394. image: {
  32395. source: "./media/characters/owen/back.svg",
  32396. extra: 1796/1706,
  32397. bottom: 59/1855
  32398. }
  32399. },
  32400. maw: {
  32401. height: math.unit(1.76, "feet"),
  32402. name: "Maw",
  32403. image: {
  32404. source: "./media/characters/owen/maw.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Normal",
  32411. height: math.unit(8, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32418. {
  32419. front: {
  32420. height: math.unit(4, "feet"),
  32421. weight: math.unit(400, "lb"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/ryth/front.svg",
  32425. extra: 1920/1748,
  32426. bottom: 42/1962
  32427. }
  32428. },
  32429. back: {
  32430. height: math.unit(4, "feet"),
  32431. weight: math.unit(400, "lb"),
  32432. name: "Back",
  32433. image: {
  32434. source: "./media/characters/ryth/back.svg",
  32435. extra: 1897/1690,
  32436. bottom: 89/1986
  32437. }
  32438. },
  32439. mouth: {
  32440. height: math.unit(1.39, "feet"),
  32441. name: "Mouth",
  32442. image: {
  32443. source: "./media/characters/ryth/mouth.svg"
  32444. }
  32445. },
  32446. tailmaw: {
  32447. height: math.unit(1.23, "feet"),
  32448. name: "Tailmaw",
  32449. image: {
  32450. source: "./media/characters/ryth/tailmaw.svg"
  32451. }
  32452. },
  32453. goia: {
  32454. height: math.unit(4, "meters"),
  32455. weight: math.unit(10800, "lb"),
  32456. name: "Goia",
  32457. image: {
  32458. source: "./media/characters/ryth/goia.svg",
  32459. extra: 745/640,
  32460. bottom: 107/852
  32461. }
  32462. },
  32463. goiaFront: {
  32464. height: math.unit(4, "meters"),
  32465. weight: math.unit(10800, "lb"),
  32466. name: "Goia (Front)",
  32467. image: {
  32468. source: "./media/characters/ryth/goia-front.svg",
  32469. extra: 750/586,
  32470. bottom: 114/864
  32471. }
  32472. },
  32473. goiaMaw: {
  32474. height: math.unit(5.55, "feet"),
  32475. name: "Goia Maw",
  32476. image: {
  32477. source: "./media/characters/ryth/goia-maw.svg"
  32478. }
  32479. },
  32480. goiaForepaw: {
  32481. height: math.unit(3.5, "feet"),
  32482. name: "Goia Forepaw",
  32483. image: {
  32484. source: "./media/characters/ryth/goia-forepaw.svg"
  32485. }
  32486. },
  32487. goiaHindpaw: {
  32488. height: math.unit(5.55, "feet"),
  32489. name: "Goia Hindpaw",
  32490. image: {
  32491. source: "./media/characters/ryth/goia-hindpaw.svg"
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(4, "feet"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(7, "feet"),
  32508. weight: math.unit(180, "lb"),
  32509. name: "Front",
  32510. image: {
  32511. source: "./media/characters/necrolance/front.svg",
  32512. extra: 1062/947,
  32513. bottom: 41/1103
  32514. }
  32515. },
  32516. back: {
  32517. height: math.unit(7, "feet"),
  32518. weight: math.unit(180, "lb"),
  32519. name: "Back",
  32520. image: {
  32521. source: "./media/characters/necrolance/back.svg",
  32522. extra: 1045/984,
  32523. bottom: 14/1059
  32524. }
  32525. },
  32526. wing: {
  32527. height: math.unit(2.67, "feet"),
  32528. name: "Wing",
  32529. image: {
  32530. source: "./media/characters/necrolance/wing.svg"
  32531. }
  32532. },
  32533. },
  32534. [
  32535. {
  32536. name: "Normal",
  32537. height: math.unit(7, "feet"),
  32538. default: true
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32544. {
  32545. front: {
  32546. height: math.unit(76, "meters"),
  32547. weight: math.unit(30000, "tons"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/tyler/front.svg",
  32551. extra: 1640/1640,
  32552. bottom: 114/1754
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Macro",
  32559. height: math.unit(76, "meters"),
  32560. default: true
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32566. {
  32567. front: {
  32568. height: math.unit(4 + 11/12, "feet"),
  32569. weight: math.unit(132, "lb"),
  32570. name: "Front",
  32571. image: {
  32572. source: "./media/characters/icey/front.svg",
  32573. extra: 2750/2550,
  32574. bottom: 33/2783
  32575. }
  32576. },
  32577. back: {
  32578. height: math.unit(4 + 11/12, "feet"),
  32579. weight: math.unit(132, "lb"),
  32580. name: "Back",
  32581. image: {
  32582. source: "./media/characters/icey/back.svg",
  32583. extra: 2624/2481,
  32584. bottom: 35/2659
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(4 + 11/12, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32598. {
  32599. front: {
  32600. height: math.unit(100, "feet"),
  32601. weight: math.unit(0, "lb"),
  32602. name: "Front",
  32603. image: {
  32604. source: "./media/characters/smile/front.svg",
  32605. extra: 2983/2912,
  32606. bottom: 162/3145
  32607. }
  32608. },
  32609. back: {
  32610. height: math.unit(100, "feet"),
  32611. weight: math.unit(0, "lb"),
  32612. name: "Back",
  32613. image: {
  32614. source: "./media/characters/smile/back.svg",
  32615. extra: 3143/3031,
  32616. bottom: 91/3234
  32617. }
  32618. },
  32619. head: {
  32620. height: math.unit(26.3, "feet"),
  32621. weight: math.unit(0, "lb"),
  32622. name: "Head",
  32623. image: {
  32624. source: "./media/characters/smile/head.svg"
  32625. }
  32626. },
  32627. collar: {
  32628. height: math.unit(5.3, "feet"),
  32629. weight: math.unit(0, "lb"),
  32630. name: "Collar",
  32631. image: {
  32632. source: "./media/characters/smile/collar.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Macro",
  32639. height: math.unit(100, "feet"),
  32640. default: true
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32646. {
  32647. dragon: {
  32648. height: math.unit(26, "feet"),
  32649. weight: math.unit(36, "tons"),
  32650. name: "Dragon",
  32651. image: {
  32652. source: "./media/characters/arimphae/dragon.svg",
  32653. extra: 1574/983,
  32654. bottom: 357/1931
  32655. }
  32656. },
  32657. drake: {
  32658. height: math.unit(9, "feet"),
  32659. weight: math.unit(1.5, "tons"),
  32660. name: "Drake",
  32661. image: {
  32662. source: "./media/characters/arimphae/drake.svg",
  32663. extra: 1120/925,
  32664. bottom: 435/1555
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Small",
  32671. height: math.unit(26*5/9, "feet")
  32672. },
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(26, "feet"),
  32676. default: true
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(8 + 9/12, "feet"),
  32685. name: "Front",
  32686. image: {
  32687. source: "./media/characters/xander/front.svg",
  32688. extra: 1237/974,
  32689. bottom: 94/1331
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(8 + 9/12, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Gaze Grabber",
  32701. height: math.unit(13 + 8/12, "feet")
  32702. },
  32703. {
  32704. name: "Jaw Dropper",
  32705. height: math.unit(27, "feet")
  32706. },
  32707. {
  32708. name: "Show Stopper",
  32709. height: math.unit(136, "feet")
  32710. },
  32711. {
  32712. name: "Superstar",
  32713. height: math.unit(1.9e6, "miles")
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32719. {
  32720. side: {
  32721. height: math.unit(2100, "feet"),
  32722. name: "Side",
  32723. image: {
  32724. source: "./media/characters/osiris/side.svg",
  32725. extra: 1105/939,
  32726. bottom: 167/1272
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(2100, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(6 + 8/12, "feet"),
  32743. weight: math.unit(225, "lb"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/rhys-londe/front.svg",
  32747. extra: 2258/2141,
  32748. bottom: 188/2446
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(6 + 8/12, "feet"),
  32753. weight: math.unit(225, "lb"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/rhys-londe/back.svg",
  32757. extra: 2237/2137,
  32758. bottom: 63/2300
  32759. }
  32760. },
  32761. frontNsfw: {
  32762. height: math.unit(6 + 8/12, "feet"),
  32763. weight: math.unit(225, "lb"),
  32764. name: "Front (NSFW)",
  32765. image: {
  32766. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32767. extra: 2258/2141,
  32768. bottom: 188/2446
  32769. }
  32770. },
  32771. backNsfw: {
  32772. height: math.unit(6 + 8/12, "feet"),
  32773. weight: math.unit(225, "lb"),
  32774. name: "Back (NSFW)",
  32775. image: {
  32776. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32777. extra: 2237/2137,
  32778. bottom: 63/2300
  32779. }
  32780. },
  32781. dick: {
  32782. height: math.unit(30, "inches"),
  32783. name: "Dick",
  32784. image: {
  32785. source: "./media/characters/rhys-londe/dick.svg"
  32786. }
  32787. },
  32788. maw: {
  32789. height: math.unit(1.6, "feet"),
  32790. name: "Maw",
  32791. image: {
  32792. source: "./media/characters/rhys-londe/maw.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(6 + 8/12, "feet"),
  32800. default: true
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32806. {
  32807. front: {
  32808. height: math.unit(3 + 10/12, "feet"),
  32809. weight: math.unit(90, "lb"),
  32810. name: "Front",
  32811. image: {
  32812. source: "./media/characters/taivas-ensim/front.svg",
  32813. extra: 1327/1216,
  32814. bottom: 96/1423
  32815. }
  32816. },
  32817. back: {
  32818. height: math.unit(3 + 10/12, "feet"),
  32819. weight: math.unit(90, "lb"),
  32820. name: "Back",
  32821. image: {
  32822. source: "./media/characters/taivas-ensim/back.svg",
  32823. extra: 1355/1247,
  32824. bottom: 11/1366
  32825. }
  32826. },
  32827. frontNsfw: {
  32828. height: math.unit(3 + 10/12, "feet"),
  32829. weight: math.unit(90, "lb"),
  32830. name: "Front (NSFW)",
  32831. image: {
  32832. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32833. extra: 1327/1216,
  32834. bottom: 96/1423
  32835. }
  32836. },
  32837. backNsfw: {
  32838. height: math.unit(3 + 10/12, "feet"),
  32839. weight: math.unit(90, "lb"),
  32840. name: "Back (NSFW)",
  32841. image: {
  32842. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32843. extra: 1355/1247,
  32844. bottom: 11/1366
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(3 + 10/12, "feet"),
  32852. default: true
  32853. },
  32854. ]
  32855. ))
  32856. characterMakers.push(() => makeCharacter(
  32857. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32858. {
  32859. front: {
  32860. height: math.unit(9 + 6/12, "feet"),
  32861. weight: math.unit(940, "lb"),
  32862. name: "Front",
  32863. image: {
  32864. source: "./media/characters/byliss/front.svg",
  32865. extra: 1327/1290,
  32866. bottom: 82/1409
  32867. }
  32868. },
  32869. back: {
  32870. height: math.unit(9 + 6/12, "feet"),
  32871. weight: math.unit(940, "lb"),
  32872. name: "Back",
  32873. image: {
  32874. source: "./media/characters/byliss/back.svg",
  32875. extra: 1376/1349,
  32876. bottom: 9/1385
  32877. }
  32878. },
  32879. frontNsfw: {
  32880. height: math.unit(9 + 6/12, "feet"),
  32881. weight: math.unit(940, "lb"),
  32882. name: "Front (NSFW)",
  32883. image: {
  32884. source: "./media/characters/byliss/front-nsfw.svg",
  32885. extra: 1327/1290,
  32886. bottom: 82/1409
  32887. }
  32888. },
  32889. backNsfw: {
  32890. height: math.unit(9 + 6/12, "feet"),
  32891. weight: math.unit(940, "lb"),
  32892. name: "Back (NSFW)",
  32893. image: {
  32894. source: "./media/characters/byliss/back-nsfw.svg",
  32895. extra: 1376/1349,
  32896. bottom: 9/1385
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(9 + 6/12, "feet"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(5 + 2/12, "feet"),
  32913. weight: math.unit(200, "lb"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/noraly/front.svg",
  32917. extra: 4985/4773,
  32918. bottom: 150/5135
  32919. }
  32920. },
  32921. full: {
  32922. height: math.unit(5 + 2/12, "feet"),
  32923. weight: math.unit(164, "lb"),
  32924. name: "Full",
  32925. image: {
  32926. source: "./media/characters/noraly/full.svg",
  32927. extra: 1114/1059,
  32928. bottom: 35/1149
  32929. }
  32930. },
  32931. fuller: {
  32932. height: math.unit(5 + 2/12, "feet"),
  32933. weight: math.unit(230, "lb"),
  32934. name: "Fuller",
  32935. image: {
  32936. source: "./media/characters/noraly/fuller.svg",
  32937. extra: 1114/1059,
  32938. bottom: 35/1149
  32939. }
  32940. },
  32941. fullest: {
  32942. height: math.unit(5 + 2/12, "feet"),
  32943. weight: math.unit(300, "lb"),
  32944. name: "Fullest",
  32945. image: {
  32946. source: "./media/characters/noraly/fullest.svg",
  32947. extra: 1114/1059,
  32948. bottom: 35/1149
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(5 + 2/12, "feet"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32962. {
  32963. front: {
  32964. height: math.unit(5 + 2/12, "feet"),
  32965. weight: math.unit(210, "lb"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/pera/front.svg",
  32969. extra: 1560/1531,
  32970. bottom: 165/1725
  32971. }
  32972. },
  32973. back: {
  32974. height: math.unit(5 + 2/12, "feet"),
  32975. weight: math.unit(210, "lb"),
  32976. name: "Back",
  32977. image: {
  32978. source: "./media/characters/pera/back.svg",
  32979. extra: 1523/1493,
  32980. bottom: 152/1675
  32981. }
  32982. },
  32983. dick: {
  32984. height: math.unit(2.4, "feet"),
  32985. name: "Dick",
  32986. image: {
  32987. source: "./media/characters/pera/dick.svg"
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Normal",
  32994. height: math.unit(5 + 2/12, "feet"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33001. {
  33002. front: {
  33003. height: math.unit(12, "feet"),
  33004. weight: math.unit(3200, "lb"),
  33005. name: "Front",
  33006. image: {
  33007. source: "./media/characters/julian/front.svg",
  33008. extra: 2962/2701,
  33009. bottom: 184/3146
  33010. }
  33011. },
  33012. maw: {
  33013. height: math.unit(5.35, "feet"),
  33014. name: "Maw",
  33015. image: {
  33016. source: "./media/characters/julian/maw.svg"
  33017. }
  33018. },
  33019. paw: {
  33020. height: math.unit(3.07, "feet"),
  33021. name: "Paw",
  33022. image: {
  33023. source: "./media/characters/julian/paw.svg"
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Default",
  33030. height: math.unit(12, "feet"),
  33031. default: true
  33032. },
  33033. {
  33034. name: "Big",
  33035. height: math.unit(50, "feet")
  33036. },
  33037. {
  33038. name: "Really Big",
  33039. height: math.unit(1, "mile")
  33040. },
  33041. {
  33042. name: "Extremely Big",
  33043. height: math.unit(100, "miles")
  33044. },
  33045. {
  33046. name: "Planet Hugger",
  33047. height: math.unit(200, "megameters")
  33048. },
  33049. {
  33050. name: "Unreasonably Big",
  33051. height: math.unit(1e300, "meters")
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33057. {
  33058. solgooleo: {
  33059. height: math.unit(4, "meters"),
  33060. weight: math.unit(6000*1.5, "kg"),
  33061. volume: math.unit(6000, "liters"),
  33062. name: "Solgooleo",
  33063. image: {
  33064. source: "./media/characters/pi/solgooleo.svg",
  33065. extra: 388/331,
  33066. bottom: 29/417
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Normal",
  33073. height: math.unit(4, "meters"),
  33074. default: true
  33075. },
  33076. ]
  33077. ))
  33078. characterMakers.push(() => makeCharacter(
  33079. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33080. {
  33081. front: {
  33082. height: math.unit(8, "feet"),
  33083. weight: math.unit(4, "tons"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/shaun/front.svg",
  33087. extra: 503/495,
  33088. bottom: 20/523
  33089. }
  33090. },
  33091. back: {
  33092. height: math.unit(8, "feet"),
  33093. weight: math.unit(4, "tons"),
  33094. name: "Back",
  33095. image: {
  33096. source: "./media/characters/shaun/back.svg",
  33097. extra: 487/480,
  33098. bottom: 20/507
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Lorg",
  33105. height: math.unit(8, "feet"),
  33106. default: true
  33107. },
  33108. ]
  33109. ))
  33110. characterMakers.push(() => makeCharacter(
  33111. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33112. {
  33113. frontAnthro: {
  33114. height: math.unit(7, "feet"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/sini/front-anthro.svg",
  33118. extra: 726/678,
  33119. bottom: 35/761
  33120. },
  33121. form: "anthro",
  33122. default: true
  33123. },
  33124. backAnthro: {
  33125. height: math.unit(7, "feet"),
  33126. name: "Back",
  33127. image: {
  33128. source: "./media/characters/sini/back-anthro.svg",
  33129. extra: 743/701,
  33130. bottom: 12/755
  33131. },
  33132. form: "anthro",
  33133. },
  33134. frontAnthroNsfw: {
  33135. height: math.unit(7, "feet"),
  33136. name: "Front (NSFW)",
  33137. image: {
  33138. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33139. extra: 726/678,
  33140. bottom: 35/761
  33141. },
  33142. form: "anthro"
  33143. },
  33144. backAnthroNsfw: {
  33145. height: math.unit(7, "feet"),
  33146. name: "Back (NSFW)",
  33147. image: {
  33148. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33149. extra: 743/701,
  33150. bottom: 12/755
  33151. },
  33152. form: "anthro",
  33153. },
  33154. mawAnthro: {
  33155. height: math.unit(2.14, "feet"),
  33156. name: "Maw",
  33157. image: {
  33158. source: "./media/characters/sini/maw-anthro.svg"
  33159. },
  33160. form: "anthro"
  33161. },
  33162. dick: {
  33163. height: math.unit(1.45, "feet"),
  33164. name: "Dick",
  33165. image: {
  33166. source: "./media/characters/sini/dick-anthro.svg"
  33167. },
  33168. form: "anthro"
  33169. },
  33170. feral: {
  33171. height: math.unit(16, "feet"),
  33172. name: "Feral",
  33173. image: {
  33174. source: "./media/characters/sini/feral.svg",
  33175. extra: 814/605,
  33176. bottom: 11/825
  33177. },
  33178. form: "feral",
  33179. default: true
  33180. },
  33181. feralNsfw: {
  33182. height: math.unit(16, "feet"),
  33183. name: "Feral (NSFW)",
  33184. image: {
  33185. source: "./media/characters/sini/feral-nsfw.svg",
  33186. extra: 814/605,
  33187. bottom: 11/825
  33188. },
  33189. form: "feral"
  33190. },
  33191. mawFeral: {
  33192. height: math.unit(5.66, "feet"),
  33193. name: "Maw",
  33194. image: {
  33195. source: "./media/characters/sini/maw-feral.svg"
  33196. },
  33197. form: "feral",
  33198. },
  33199. pawFeral: {
  33200. height: math.unit(5.17, "feet"),
  33201. name: "Paw",
  33202. image: {
  33203. source: "./media/characters/sini/paw-feral.svg"
  33204. },
  33205. form: "feral",
  33206. },
  33207. rumpFeral: {
  33208. height: math.unit(13.11, "feet"),
  33209. name: "Rump",
  33210. image: {
  33211. source: "./media/characters/sini/rump-feral.svg"
  33212. },
  33213. form: "feral",
  33214. },
  33215. dickFeral: {
  33216. height: math.unit(1, "feet"),
  33217. name: "Dick",
  33218. image: {
  33219. source: "./media/characters/sini/dick-feral.svg"
  33220. },
  33221. form: "feral",
  33222. },
  33223. eyeFeral: {
  33224. height: math.unit(1.23, "feet"),
  33225. name: "Eye",
  33226. image: {
  33227. source: "./media/characters/sini/eye-feral.svg"
  33228. },
  33229. form: "feral",
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(7, "feet"),
  33236. default: true,
  33237. form: "anthro"
  33238. },
  33239. {
  33240. name: "Normal",
  33241. height: math.unit(16, "feet"),
  33242. default: true,
  33243. form: "feral"
  33244. },
  33245. ],
  33246. {
  33247. "anthro": {
  33248. name: "Anthro",
  33249. default: true
  33250. },
  33251. "feral": {
  33252. name: "Feral",
  33253. }
  33254. }
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33258. {
  33259. side: {
  33260. height: math.unit(13, "meters"),
  33261. weight: math.unit(9072, "kg"),
  33262. name: "Side",
  33263. image: {
  33264. source: "./media/characters/raylldo/side.svg",
  33265. extra: 403/344,
  33266. bottom: 42/445
  33267. }
  33268. },
  33269. leaping: {
  33270. height: math.unit(12.3, "meters"),
  33271. weight: math.unit(9072, "kg"),
  33272. name: "Leaping",
  33273. image: {
  33274. source: "./media/characters/raylldo/leaping.svg",
  33275. extra: 470/249,
  33276. bottom: 13/483
  33277. }
  33278. },
  33279. flying: {
  33280. height: math.unit(18, "meters"),
  33281. weight: math.unit(9072, "kg"),
  33282. name: "Flying",
  33283. image: {
  33284. source: "./media/characters/raylldo/flying.svg"
  33285. }
  33286. },
  33287. head: {
  33288. height: math.unit(5.85, "meters"),
  33289. name: "Head",
  33290. image: {
  33291. source: "./media/characters/raylldo/head.svg"
  33292. }
  33293. },
  33294. maw: {
  33295. height: math.unit(5.32, "meters"),
  33296. name: "Maw",
  33297. image: {
  33298. source: "./media/characters/raylldo/maw.svg"
  33299. }
  33300. },
  33301. eye: {
  33302. height: math.unit(0.54, "meters"),
  33303. name: "Eye",
  33304. image: {
  33305. source: "./media/characters/raylldo/eye.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(13, "meters"),
  33313. default: true
  33314. },
  33315. ]
  33316. ))
  33317. characterMakers.push(() => makeCharacter(
  33318. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33319. {
  33320. anthroFront: {
  33321. height: math.unit(9, "feet"),
  33322. weight: math.unit(600, "lb"),
  33323. name: "Anthro (Front)",
  33324. image: {
  33325. source: "./media/characters/glint/anthro-front.svg",
  33326. extra: 1097/1018,
  33327. bottom: 28/1125
  33328. }
  33329. },
  33330. anthroBack: {
  33331. height: math.unit(9, "feet"),
  33332. weight: math.unit(600, "lb"),
  33333. name: "Anthro (Back)",
  33334. image: {
  33335. source: "./media/characters/glint/anthro-back.svg",
  33336. extra: 1154/997,
  33337. bottom: 36/1190
  33338. }
  33339. },
  33340. feral: {
  33341. height: math.unit(11, "feet"),
  33342. weight: math.unit(50000, "lb"),
  33343. name: "Feral",
  33344. image: {
  33345. source: "./media/characters/glint/feral.svg",
  33346. extra: 3035/1585,
  33347. bottom: 1169/4204
  33348. }
  33349. },
  33350. dickAnthro: {
  33351. height: math.unit(0.7, "meters"),
  33352. name: "Dick (Anthro)",
  33353. image: {
  33354. source: "./media/characters/glint/dick-anthro.svg"
  33355. }
  33356. },
  33357. dickFeral: {
  33358. height: math.unit(2.65, "meters"),
  33359. name: "Dick (Feral)",
  33360. image: {
  33361. source: "./media/characters/glint/dick-feral.svg"
  33362. }
  33363. },
  33364. slitHidden: {
  33365. height: math.unit(5.85, "meters"),
  33366. name: "Slit (Hidden)",
  33367. image: {
  33368. source: "./media/characters/glint/slit-hidden.svg"
  33369. }
  33370. },
  33371. slitErect: {
  33372. height: math.unit(5.85, "meters"),
  33373. name: "Slit (Erect)",
  33374. image: {
  33375. source: "./media/characters/glint/slit-erect.svg"
  33376. }
  33377. },
  33378. mawAnthro: {
  33379. height: math.unit(0.63, "meters"),
  33380. name: "Maw (Anthro)",
  33381. image: {
  33382. source: "./media/characters/glint/maw.svg"
  33383. }
  33384. },
  33385. mawFeral: {
  33386. height: math.unit(2.89, "meters"),
  33387. name: "Maw (Feral)",
  33388. image: {
  33389. source: "./media/characters/glint/maw.svg"
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(9, "feet"),
  33397. default: true
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33403. {
  33404. side: {
  33405. height: math.unit(15, "feet"),
  33406. weight: math.unit(5000, "kg"),
  33407. name: "Side",
  33408. image: {
  33409. source: "./media/characters/kairne/side.svg",
  33410. extra: 979/811,
  33411. bottom: 13/992
  33412. }
  33413. },
  33414. front: {
  33415. height: math.unit(15, "feet"),
  33416. weight: math.unit(5000, "kg"),
  33417. name: "Front",
  33418. image: {
  33419. source: "./media/characters/kairne/front.svg",
  33420. extra: 908/814,
  33421. bottom: 26/934
  33422. }
  33423. },
  33424. sideNsfw: {
  33425. height: math.unit(15, "feet"),
  33426. weight: math.unit(5000, "kg"),
  33427. name: "Side (NSFW)",
  33428. image: {
  33429. source: "./media/characters/kairne/side-nsfw.svg",
  33430. extra: 979/811,
  33431. bottom: 13/992
  33432. }
  33433. },
  33434. frontNsfw: {
  33435. height: math.unit(15, "feet"),
  33436. weight: math.unit(5000, "kg"),
  33437. name: "Front (NSFW)",
  33438. image: {
  33439. source: "./media/characters/kairne/front-nsfw.svg",
  33440. extra: 908/814,
  33441. bottom: 26/934
  33442. }
  33443. },
  33444. dickCaged: {
  33445. height: math.unit(0.65, "meters"),
  33446. name: "Dick-caged",
  33447. image: {
  33448. source: "./media/characters/kairne/dick-caged.svg"
  33449. }
  33450. },
  33451. dick: {
  33452. height: math.unit(0.79, "meters"),
  33453. name: "Dick",
  33454. image: {
  33455. source: "./media/characters/kairne/dick.svg"
  33456. }
  33457. },
  33458. genitals: {
  33459. height: math.unit(1.29, "meters"),
  33460. name: "Genitals",
  33461. image: {
  33462. source: "./media/characters/kairne/genitals.svg"
  33463. }
  33464. },
  33465. maw: {
  33466. height: math.unit(1.73, "meters"),
  33467. name: "Maw",
  33468. image: {
  33469. source: "./media/characters/kairne/maw.svg"
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(15, "feet"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(5 + 8/12, "feet"),
  33486. weight: math.unit(139, "lb"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/biscuit-jackal/front.svg",
  33490. extra: 2106/1961,
  33491. bottom: 58/2164
  33492. }
  33493. },
  33494. back: {
  33495. height: math.unit(5 + 8/12, "feet"),
  33496. weight: math.unit(139, "lb"),
  33497. name: "Back",
  33498. image: {
  33499. source: "./media/characters/biscuit-jackal/back.svg",
  33500. extra: 2132/1976,
  33501. bottom: 57/2189
  33502. }
  33503. },
  33504. werejackal: {
  33505. height: math.unit(6 + 3/12, "feet"),
  33506. weight: math.unit(188, "lb"),
  33507. name: "Werejackal",
  33508. image: {
  33509. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33510. extra: 2373/2178,
  33511. bottom: 53/2426
  33512. }
  33513. },
  33514. },
  33515. [
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(5 + 8/12, "feet"),
  33519. default: true
  33520. },
  33521. ]
  33522. ))
  33523. characterMakers.push(() => makeCharacter(
  33524. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33525. {
  33526. front: {
  33527. height: math.unit(140, "cm"),
  33528. weight: math.unit(45, "kg"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/tayra-white/front.svg",
  33532. extra: 2229/2192,
  33533. bottom: 75/2304
  33534. }
  33535. },
  33536. },
  33537. [
  33538. {
  33539. name: "Normal",
  33540. height: math.unit(140, "cm"),
  33541. default: true
  33542. },
  33543. ]
  33544. ))
  33545. characterMakers.push(() => makeCharacter(
  33546. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33547. {
  33548. front: {
  33549. height: math.unit(4 + 5/12, "feet"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/scoop/front.svg",
  33553. extra: 1257/1136,
  33554. bottom: 69/1326
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(4 + 5/12, "feet"),
  33559. name: "Back",
  33560. image: {
  33561. source: "./media/characters/scoop/back.svg",
  33562. extra: 1321/1152,
  33563. bottom: 32/1353
  33564. }
  33565. },
  33566. maw: {
  33567. height: math.unit(0.68, "feet"),
  33568. name: "Maw",
  33569. image: {
  33570. source: "./media/characters/scoop/maw.svg"
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Really Small",
  33577. height: math.unit(1, "mm")
  33578. },
  33579. {
  33580. name: "Micro",
  33581. height: math.unit(1, "inch")
  33582. },
  33583. {
  33584. name: "Normal",
  33585. height: math.unit(4 + 5/12, "feet"),
  33586. default: true
  33587. },
  33588. {
  33589. name: "Macro",
  33590. height: math.unit(200, "feet")
  33591. },
  33592. {
  33593. name: "Megamacro",
  33594. height: math.unit(3240, "feet")
  33595. },
  33596. {
  33597. name: "Teramacro",
  33598. height: math.unit(2500, "miles")
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33604. {
  33605. front: {
  33606. height: math.unit(15 + 7/12, "feet"),
  33607. name: "Front",
  33608. image: {
  33609. source: "./media/characters/saphinara/front.svg",
  33610. extra: 604/546,
  33611. bottom: 19/623
  33612. }
  33613. },
  33614. side: {
  33615. height: math.unit(15 + 7/12, "feet"),
  33616. name: "Side",
  33617. image: {
  33618. source: "./media/characters/saphinara/side.svg",
  33619. extra: 605/547,
  33620. bottom: 6/611
  33621. }
  33622. },
  33623. back: {
  33624. height: math.unit(15 + 7/12, "feet"),
  33625. name: "Back",
  33626. image: {
  33627. source: "./media/characters/saphinara/back.svg",
  33628. extra: 591/531,
  33629. bottom: 13/604
  33630. }
  33631. },
  33632. frontTail: {
  33633. height: math.unit(15 + 7/12, "feet"),
  33634. name: "Front (Full Tail)",
  33635. image: {
  33636. source: "./media/characters/saphinara/front-tail.svg",
  33637. extra: 748/547,
  33638. bottom: 66/814
  33639. }
  33640. },
  33641. },
  33642. [
  33643. {
  33644. name: "Normal",
  33645. height: math.unit(15 + 7/12, "feet"),
  33646. default: true
  33647. },
  33648. {
  33649. name: "Angry",
  33650. height: math.unit(30 + 6/12, "feet")
  33651. },
  33652. {
  33653. name: "Enraged",
  33654. height: math.unit(102 + 1/12, "feet")
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33660. {
  33661. front: {
  33662. height: math.unit(6 + 8/12, "feet"),
  33663. weight: math.unit(300, "lb"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/jrain/front.svg",
  33667. extra: 3039/2865,
  33668. bottom: 399/3438
  33669. }
  33670. },
  33671. back: {
  33672. height: math.unit(6 + 8/12, "feet"),
  33673. weight: math.unit(300, "lb"),
  33674. name: "Back",
  33675. image: {
  33676. source: "./media/characters/jrain/back.svg",
  33677. extra: 3089/2938,
  33678. bottom: 172/3261
  33679. }
  33680. },
  33681. head: {
  33682. height: math.unit(2.14, "feet"),
  33683. name: "Head",
  33684. image: {
  33685. source: "./media/characters/jrain/head.svg"
  33686. }
  33687. },
  33688. maw: {
  33689. height: math.unit(1.77, "feet"),
  33690. name: "Maw",
  33691. image: {
  33692. source: "./media/characters/jrain/maw.svg"
  33693. }
  33694. },
  33695. leftHand: {
  33696. height: math.unit(1.1, "feet"),
  33697. name: "Left Hand",
  33698. image: {
  33699. source: "./media/characters/jrain/left-hand.svg"
  33700. }
  33701. },
  33702. rightHand: {
  33703. height: math.unit(1.1, "feet"),
  33704. name: "Right Hand",
  33705. image: {
  33706. source: "./media/characters/jrain/right-hand.svg"
  33707. }
  33708. },
  33709. eye: {
  33710. height: math.unit(0.35, "feet"),
  33711. name: "Eye",
  33712. image: {
  33713. source: "./media/characters/jrain/eye.svg"
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(6 + 8/12, "feet"),
  33721. default: true
  33722. },
  33723. {
  33724. name: "Casually Large",
  33725. height: math.unit(25, "feet")
  33726. },
  33727. {
  33728. name: "Giant",
  33729. height: math.unit(100, "feet")
  33730. },
  33731. {
  33732. name: "Kaiju",
  33733. height: math.unit(300, "feet")
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33739. {
  33740. dragon: {
  33741. height: math.unit(5, "meters"),
  33742. name: "Dragon",
  33743. image: {
  33744. source: "./media/characters/sabrina/dragon.svg",
  33745. extra: 3670 / 2365,
  33746. bottom: 333 / 4003
  33747. }
  33748. },
  33749. gryphon: {
  33750. height: math.unit(3, "meters"),
  33751. name: "Gryphon",
  33752. image: {
  33753. source: "./media/characters/sabrina/gryphon.svg",
  33754. extra: 1576 / 945,
  33755. bottom: 71 / 1647
  33756. }
  33757. },
  33758. snake: {
  33759. height: math.unit(12, "meters"),
  33760. name: "Snake",
  33761. image: {
  33762. source: "./media/characters/sabrina/snake.svg",
  33763. extra: 1758 / 1320,
  33764. bottom: 186 / 1944
  33765. }
  33766. },
  33767. collar: {
  33768. height: math.unit(1.86, "meters"),
  33769. name: "Collar",
  33770. image: {
  33771. source: "./media/characters/sabrina/collar.svg"
  33772. }
  33773. },
  33774. eye: {
  33775. height: math.unit(0.53, "meters"),
  33776. name: "Eye",
  33777. image: {
  33778. source: "./media/characters/sabrina/eye.svg"
  33779. }
  33780. },
  33781. foot: {
  33782. height: math.unit(1.86, "meters"),
  33783. name: "Foot",
  33784. image: {
  33785. source: "./media/characters/sabrina/foot.svg"
  33786. }
  33787. },
  33788. hand: {
  33789. height: math.unit(1.32, "meters"),
  33790. name: "Hand",
  33791. image: {
  33792. source: "./media/characters/sabrina/hand.svg"
  33793. }
  33794. },
  33795. head: {
  33796. height: math.unit(2.44, "meters"),
  33797. name: "Head",
  33798. image: {
  33799. source: "./media/characters/sabrina/head.svg"
  33800. }
  33801. },
  33802. headAngry: {
  33803. height: math.unit(2.44, "meters"),
  33804. name: "Head (Angry))",
  33805. image: {
  33806. source: "./media/characters/sabrina/head-angry.svg"
  33807. }
  33808. },
  33809. maw: {
  33810. height: math.unit(1.65, "meters"),
  33811. name: "Maw",
  33812. image: {
  33813. source: "./media/characters/sabrina/maw.svg"
  33814. }
  33815. },
  33816. spikes: {
  33817. height: math.unit(1.69, "meters"),
  33818. name: "Spikes",
  33819. image: {
  33820. source: "./media/characters/sabrina/spikes.svg"
  33821. }
  33822. },
  33823. stomach: {
  33824. height: math.unit(1.15, "meters"),
  33825. name: "Stomach",
  33826. image: {
  33827. source: "./media/characters/sabrina/stomach.svg"
  33828. }
  33829. },
  33830. tongue: {
  33831. height: math.unit(1.27, "meters"),
  33832. name: "Tongue",
  33833. image: {
  33834. source: "./media/characters/sabrina/tongue.svg"
  33835. }
  33836. },
  33837. wingDorsal: {
  33838. height: math.unit(4.85, "meters"),
  33839. name: "Wing (Dorsal)",
  33840. image: {
  33841. source: "./media/characters/sabrina/wing-dorsal.svg"
  33842. }
  33843. },
  33844. wingVentral: {
  33845. height: math.unit(4.85, "meters"),
  33846. name: "Wing (Ventral)",
  33847. image: {
  33848. source: "./media/characters/sabrina/wing-ventral.svg"
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(5, "meters"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33862. {
  33863. frontMaid: {
  33864. height: math.unit(5 + 5/12, "feet"),
  33865. weight: math.unit(130, "lb"),
  33866. name: "Front (Maid)",
  33867. image: {
  33868. source: "./media/characters/midnight-tales/front-maid.svg",
  33869. extra: 489/454,
  33870. bottom: 61/550
  33871. }
  33872. },
  33873. frontFormal: {
  33874. height: math.unit(5 + 5/12, "feet"),
  33875. weight: math.unit(130, "lb"),
  33876. name: "Front (Formal)",
  33877. image: {
  33878. source: "./media/characters/midnight-tales/front-formal.svg",
  33879. extra: 489/454,
  33880. bottom: 61/550
  33881. }
  33882. },
  33883. back: {
  33884. height: math.unit(5 + 5/12, "feet"),
  33885. weight: math.unit(130, "lb"),
  33886. name: "Back",
  33887. image: {
  33888. source: "./media/characters/midnight-tales/back.svg",
  33889. extra: 498/456,
  33890. bottom: 33/531
  33891. }
  33892. },
  33893. frontBeast: {
  33894. height: math.unit(40, "feet"),
  33895. weight: math.unit(64000, "lb"),
  33896. name: "Front (Beast)",
  33897. image: {
  33898. source: "./media/characters/midnight-tales/front-beast.svg",
  33899. extra: 927/860,
  33900. bottom: 53/980
  33901. }
  33902. },
  33903. backBeast: {
  33904. height: math.unit(40, "feet"),
  33905. weight: math.unit(64000, "lb"),
  33906. name: "Back (Beast)",
  33907. image: {
  33908. source: "./media/characters/midnight-tales/back-beast.svg",
  33909. extra: 929/855,
  33910. bottom: 16/945
  33911. }
  33912. },
  33913. footBeast: {
  33914. height: math.unit(6.7, "feet"),
  33915. name: "Foot (Beast)",
  33916. image: {
  33917. source: "./media/characters/midnight-tales/foot-beast.svg"
  33918. }
  33919. },
  33920. headBeast: {
  33921. height: math.unit(8, "feet"),
  33922. name: "Head (Beast)",
  33923. image: {
  33924. source: "./media/characters/midnight-tales/head-beast.svg"
  33925. }
  33926. },
  33927. },
  33928. [
  33929. {
  33930. name: "Normal",
  33931. height: math.unit(5 + 5 / 12, "feet"),
  33932. default: true
  33933. },
  33934. {
  33935. name: "Macro",
  33936. height: math.unit(25, "feet")
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(5 + 10/12, "feet"),
  33945. name: "Front",
  33946. image: {
  33947. source: "./media/characters/argon/front.svg",
  33948. extra: 2009/1935,
  33949. bottom: 118/2127
  33950. }
  33951. },
  33952. back: {
  33953. height: math.unit(5 + 10/12, "feet"),
  33954. name: "Back",
  33955. image: {
  33956. source: "./media/characters/argon/back.svg",
  33957. extra: 2047/1992,
  33958. bottom: 20/2067
  33959. }
  33960. },
  33961. frontDressed: {
  33962. height: math.unit(5 + 10/12, "feet"),
  33963. name: "Front (Dressed)",
  33964. image: {
  33965. source: "./media/characters/argon/front-dressed.svg",
  33966. extra: 2009/1935,
  33967. bottom: 118/2127
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Normal",
  33974. height: math.unit(5 + 10/12, "feet"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33981. {
  33982. front: {
  33983. height: math.unit(8 + 6/12, "feet"),
  33984. weight: math.unit(1150, "lb"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/kichi/front.svg",
  33988. extra: 1267/1164,
  33989. bottom: 61/1328
  33990. }
  33991. },
  33992. back: {
  33993. height: math.unit(8 + 6/12, "feet"),
  33994. weight: math.unit(1150, "lb"),
  33995. name: "Back",
  33996. image: {
  33997. source: "./media/characters/kichi/back.svg",
  33998. extra: 1273/1166,
  33999. bottom: 33/1306
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(8 + 6/12, "feet"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(6, "feet"),
  34016. weight: math.unit(210, "lb"),
  34017. name: "Front",
  34018. image: {
  34019. source: "./media/characters/manetel-greyscale/front.svg",
  34020. extra: 350/312,
  34021. bottom: 8/358
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Micro",
  34028. height: math.unit(2, "inches")
  34029. },
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(6, "feet"),
  34033. default: true
  34034. },
  34035. {
  34036. name: "Minimacro",
  34037. height: math.unit(17, "feet")
  34038. },
  34039. {
  34040. name: "Macro",
  34041. height: math.unit(117, "feet")
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34047. {
  34048. side: {
  34049. height: math.unit(5 + 1/12, "feet"),
  34050. weight: math.unit(418, "lb"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/softpurr/side.svg",
  34054. extra: 1993/1945,
  34055. bottom: 134/2127
  34056. }
  34057. },
  34058. front: {
  34059. height: math.unit(5 + 1/12, "feet"),
  34060. weight: math.unit(418, "lb"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/softpurr/front.svg",
  34064. extra: 1950/1856,
  34065. bottom: 174/2124
  34066. }
  34067. },
  34068. paw: {
  34069. height: math.unit(1, "feet"),
  34070. name: "Paw",
  34071. image: {
  34072. source: "./media/characters/softpurr/paw.svg"
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(5 + 1/12, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(260, "meters"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/anahita/front.svg",
  34092. extra: 665/635,
  34093. bottom: 89/754
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Macro",
  34100. height: math.unit(260, "meters"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(4 + 10/12, "feet"),
  34110. weight: math.unit(160, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/chip-mouse/front.svg",
  34114. extra: 3528/3408,
  34115. bottom: 0/3528
  34116. }
  34117. },
  34118. frontNsfw: {
  34119. height: math.unit(4 + 10/12, "feet"),
  34120. weight: math.unit(160, "lb"),
  34121. name: "Front (NSFW)",
  34122. image: {
  34123. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34124. extra: 3528/3408,
  34125. bottom: 0/3528
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(4 + 10/12, "feet"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34139. {
  34140. side: {
  34141. height: math.unit(10, "feet"),
  34142. weight: math.unit(14000, "lb"),
  34143. name: "Side",
  34144. image: {
  34145. source: "./media/characters/kremm/side.svg",
  34146. extra: 1390/1053,
  34147. bottom: 90/1480
  34148. }
  34149. },
  34150. gut: {
  34151. height: math.unit(5.8, "feet"),
  34152. name: "Gut",
  34153. image: {
  34154. source: "./media/characters/kremm/gut.svg"
  34155. }
  34156. },
  34157. ass: {
  34158. height: math.unit(6.1, "feet"),
  34159. name: "Ass",
  34160. image: {
  34161. source: "./media/characters/kremm/ass.svg"
  34162. }
  34163. },
  34164. jaws: {
  34165. height: math.unit(2.2, "feet"),
  34166. name: "Jaws",
  34167. image: {
  34168. source: "./media/characters/kremm/jaws.svg"
  34169. }
  34170. },
  34171. dick: {
  34172. height: math.unit(4.26, "feet"),
  34173. name: "Dick",
  34174. image: {
  34175. source: "./media/characters/kremm/dick.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(10, "feet"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(30, "stories"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/kai/front.svg",
  34195. extra: 1892/1718,
  34196. bottom: 162/2054
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Macro",
  34203. height: math.unit(30, "stories"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(6 + 4/12, "feet"),
  34213. weight: math.unit(145, "lb"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/sykes/front.svg",
  34217. extra: 1321 / 1187,
  34218. bottom: 66 / 1387
  34219. }
  34220. },
  34221. back: {
  34222. height: math.unit(6 + 4/12, "feet"),
  34223. weight: math.unit(145, "lb"),
  34224. name: "Back",
  34225. image: {
  34226. source: "./media/characters/sykes/back.svg",
  34227. extra: 1326/1181,
  34228. bottom: 31/1357
  34229. }
  34230. },
  34231. handBack: {
  34232. height: math.unit(0.9, "feet"),
  34233. name: "Hand (Back)",
  34234. image: {
  34235. source: "./media/characters/sykes/hand-back.svg"
  34236. }
  34237. },
  34238. handFront: {
  34239. height: math.unit(0.839, "feet"),
  34240. name: "Hand (Front)",
  34241. image: {
  34242. source: "./media/characters/sykes/hand-front.svg"
  34243. }
  34244. },
  34245. leftFoot: {
  34246. height: math.unit(1.2, "feet"),
  34247. name: "Foot (Left)",
  34248. image: {
  34249. source: "./media/characters/sykes/foot-left.svg"
  34250. }
  34251. },
  34252. rightFoot: {
  34253. height: math.unit(1.2, "feet"),
  34254. name: "Foot (Right)",
  34255. image: {
  34256. source: "./media/characters/sykes/foot-right.svg"
  34257. }
  34258. },
  34259. maw: {
  34260. height: math.unit(1.93, "feet"),
  34261. name: "Maw",
  34262. image: {
  34263. source: "./media/characters/sykes/maw.svg"
  34264. }
  34265. },
  34266. teeth: {
  34267. height: math.unit(0.51, "feet"),
  34268. name: "Teeth",
  34269. image: {
  34270. source: "./media/characters/sykes/teeth.svg"
  34271. }
  34272. },
  34273. tongue: {
  34274. height: math.unit(2.13, "feet"),
  34275. name: "Tongue",
  34276. image: {
  34277. source: "./media/characters/sykes/tongue.svg"
  34278. }
  34279. },
  34280. uvula: {
  34281. height: math.unit(0.16, "feet"),
  34282. name: "Uvula",
  34283. image: {
  34284. source: "./media/characters/sykes/uvula.svg"
  34285. }
  34286. },
  34287. collar: {
  34288. height: math.unit(0.287, "feet"),
  34289. name: "Collar",
  34290. image: {
  34291. source: "./media/characters/sykes/collar.svg"
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Shrunken",
  34298. height: math.unit(5, "inches")
  34299. },
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(6 + 4 / 12, "feet"),
  34303. default: true
  34304. },
  34305. {
  34306. name: "Big",
  34307. height: math.unit(15, "feet")
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(5 + 8/12, "feet"),
  34316. weight: math.unit(190, "lb"),
  34317. name: "Front",
  34318. image: {
  34319. source: "./media/characters/oven-otter/front.svg",
  34320. extra: 1809/1740,
  34321. bottom: 181/1990
  34322. }
  34323. },
  34324. back: {
  34325. height: math.unit(5 + 8/12, "feet"),
  34326. weight: math.unit(190, "lb"),
  34327. name: "Back",
  34328. image: {
  34329. source: "./media/characters/oven-otter/back.svg",
  34330. extra: 1709/1635,
  34331. bottom: 118/1827
  34332. }
  34333. },
  34334. hand: {
  34335. height: math.unit(1.07, "feet"),
  34336. name: "Hand",
  34337. image: {
  34338. source: "./media/characters/oven-otter/hand.svg"
  34339. }
  34340. },
  34341. beans: {
  34342. height: math.unit(1.74, "feet"),
  34343. name: "Beans",
  34344. image: {
  34345. source: "./media/characters/oven-otter/beans.svg"
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Micro",
  34352. height: math.unit(0.5, "inches")
  34353. },
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(5 + 8/12, "feet"),
  34357. default: true
  34358. },
  34359. {
  34360. name: "Macro",
  34361. height: math.unit(250, "feet")
  34362. },
  34363. {
  34364. name: "Really High",
  34365. height: math.unit(420, "feet")
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(5, "meters"),
  34374. weight: math.unit(292000000000000, "kg"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/devourer/front.svg",
  34378. extra: 1800/1733,
  34379. bottom: 211/2011
  34380. }
  34381. },
  34382. maw: {
  34383. height: math.unit(1.1, "meter"),
  34384. name: "Maw",
  34385. image: {
  34386. source: "./media/characters/devourer/maw.svg"
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Small",
  34393. height: math.unit(3, "meters")
  34394. },
  34395. {
  34396. name: "Large",
  34397. height: math.unit(5, "meters"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34404. {
  34405. front: {
  34406. height: math.unit(6, "feet"),
  34407. weight: math.unit(400, "lb"),
  34408. name: "Front",
  34409. image: {
  34410. source: "./media/characters/ellarby/front.svg",
  34411. extra: 1909/1763,
  34412. bottom: 80/1989
  34413. }
  34414. },
  34415. back: {
  34416. height: math.unit(6, "feet"),
  34417. weight: math.unit(400, "lb"),
  34418. name: "Back",
  34419. image: {
  34420. source: "./media/characters/ellarby/back.svg",
  34421. extra: 1914/1784,
  34422. bottom: 172/2086
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Mischief",
  34429. height: math.unit(18, "inches")
  34430. },
  34431. {
  34432. name: "Trouble",
  34433. height: math.unit(12, "feet")
  34434. },
  34435. {
  34436. name: "Havoc",
  34437. height: math.unit(200, "feet"),
  34438. default: true
  34439. },
  34440. {
  34441. name: "Pandemonium",
  34442. height: math.unit(1, "mile")
  34443. },
  34444. {
  34445. name: "Catastrophe",
  34446. height: math.unit(100, "miles")
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34452. {
  34453. front: {
  34454. height: math.unit(4.7, "meters"),
  34455. weight: math.unit(6500, "kg"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/vex/front.svg",
  34459. extra: 1288/1140,
  34460. bottom: 100/1388
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(4.7, "meters"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34474. {
  34475. normal: {
  34476. height: math.unit(6, "feet"),
  34477. weight: math.unit(350, "lb"),
  34478. name: "Normal",
  34479. image: {
  34480. source: "./media/characters/teshy/normal.svg",
  34481. extra: 1795/1735,
  34482. bottom: 16/1811
  34483. }
  34484. },
  34485. monsterFront: {
  34486. height: math.unit(12, "feet"),
  34487. weight: math.unit(4700, "lb"),
  34488. name: "Monster (Front)",
  34489. image: {
  34490. source: "./media/characters/teshy/monster-front.svg",
  34491. extra: 2042/2034,
  34492. bottom: 128/2170
  34493. }
  34494. },
  34495. monsterSide: {
  34496. height: math.unit(12, "feet"),
  34497. weight: math.unit(4700, "lb"),
  34498. name: "Monster (Side)",
  34499. image: {
  34500. source: "./media/characters/teshy/monster-side.svg",
  34501. extra: 2067/2056,
  34502. bottom: 70/2137
  34503. }
  34504. },
  34505. monsterBack: {
  34506. height: math.unit(12, "feet"),
  34507. weight: math.unit(4700, "lb"),
  34508. name: "Monster (Back)",
  34509. image: {
  34510. source: "./media/characters/teshy/monster-back.svg",
  34511. extra: 1921/1914,
  34512. bottom: 171/2092
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(6, "feet"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(6, "feet"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/ramey/front.svg",
  34532. extra: 790/787,
  34533. bottom: 27/817
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(6, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(5 + 5/12, "feet"),
  34550. weight: math.unit(120, "lb"),
  34551. name: "Front",
  34552. image: {
  34553. source: "./media/characters/phirae/front.svg",
  34554. extra: 2491/2436,
  34555. bottom: 38/2529
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(5 + 5/12, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34569. {
  34570. front: {
  34571. height: math.unit(5 + 3/12, "feet"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/stagglas/front.svg",
  34575. extra: 962/882,
  34576. bottom: 53/1015
  34577. }
  34578. },
  34579. feral: {
  34580. height: math.unit(335, "cm"),
  34581. name: "Feral",
  34582. image: {
  34583. source: "./media/characters/stagglas/feral.svg",
  34584. extra: 1732/1090,
  34585. bottom: 48/1780
  34586. }
  34587. },
  34588. },
  34589. [
  34590. {
  34591. name: "Normal",
  34592. height: math.unit(5 + 3/12, "feet"),
  34593. default: true
  34594. },
  34595. ]
  34596. ))
  34597. characterMakers.push(() => makeCharacter(
  34598. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34599. {
  34600. front: {
  34601. height: math.unit(5 + 4/12, "feet"),
  34602. weight: math.unit(145, "lb"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/starra/front.svg",
  34606. extra: 1790/1691,
  34607. bottom: 91/1881
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(5 + 4/12, "feet"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34621. {
  34622. front: {
  34623. height: math.unit(2.2, "meters"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34627. extra: 1194/1005,
  34628. bottom: 25/1219
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Normal",
  34635. height: math.unit(2.2, "meters"),
  34636. default: true
  34637. },
  34638. ]
  34639. ))
  34640. characterMakers.push(() => makeCharacter(
  34641. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34642. {
  34643. side: {
  34644. height: math.unit(8 + 2/12, "feet"),
  34645. weight: math.unit(1240, "lb"),
  34646. name: "Side",
  34647. image: {
  34648. source: "./media/characters/mika-valentine/side.svg",
  34649. extra: 2670/2501,
  34650. bottom: 250/2920
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(8 + 2/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(7 + 2/12, "feet"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/xoltol/front.svg",
  34670. extra: 2212/2124,
  34671. bottom: 84/2296
  34672. }
  34673. },
  34674. side: {
  34675. height: math.unit(7 + 2/12, "feet"),
  34676. name: "Side",
  34677. image: {
  34678. source: "./media/characters/xoltol/side.svg",
  34679. extra: 2273/2197,
  34680. bottom: 26/2299
  34681. }
  34682. },
  34683. hand: {
  34684. height: math.unit(2.5, "feet"),
  34685. name: "Hand",
  34686. image: {
  34687. source: "./media/characters/xoltol/hand.svg"
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Small-ish",
  34694. height: math.unit(5 + 11/12, "feet")
  34695. },
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(7 + 2/12, "feet")
  34699. },
  34700. {
  34701. name: "\"Macro\"",
  34702. height: math.unit(14 + 9/12, "feet"),
  34703. default: true
  34704. },
  34705. {
  34706. name: "Alternate Height",
  34707. height: math.unit(20, "feet")
  34708. },
  34709. {
  34710. name: "Actually Macro",
  34711. height: math.unit(100, "feet")
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(5 + 2/12, "feet"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/kotetsu-redwood/front.svg",
  34723. extra: 1053/942,
  34724. bottom: 60/1113
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(5 + 2/12, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(2.4, "meters"),
  34741. weight: math.unit(125, "kg"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/lilith/front.svg",
  34745. extra: 1590/1513,
  34746. bottom: 203/1793
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Humanoid",
  34753. height: math.unit(2.4, "meters")
  34754. },
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(6, "meters"),
  34758. default: true
  34759. },
  34760. {
  34761. name: "Largest",
  34762. height: math.unit(55, "meters")
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(8 + 4/12, "feet"),
  34771. weight: math.unit(535, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/beh'kah-bolger/front.svg",
  34775. extra: 1660/1603,
  34776. bottom: 37/1697
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(8 + 4/12, "feet"),
  34784. default: true
  34785. },
  34786. {
  34787. name: "Kaiju",
  34788. height: math.unit(250, "feet")
  34789. },
  34790. {
  34791. name: "Still Growing",
  34792. height: math.unit(10, "miles")
  34793. },
  34794. {
  34795. name: "Continental",
  34796. height: math.unit(5000, "miles")
  34797. },
  34798. {
  34799. name: "Final Form",
  34800. height: math.unit(2500000, "miles")
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34806. {
  34807. front: {
  34808. height: math.unit(7 + 2/12, "feet"),
  34809. weight: math.unit(230, "kg"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/tatyana-milewska/front.svg",
  34813. extra: 1199/1150,
  34814. bottom: 86/1285
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(7 + 2/12, "feet"),
  34822. default: true
  34823. },
  34824. {
  34825. name: "Big",
  34826. height: math.unit(12, "feet")
  34827. },
  34828. {
  34829. name: "Minimacro",
  34830. height: math.unit(20, "feet")
  34831. },
  34832. {
  34833. name: "Macro",
  34834. height: math.unit(120, "feet")
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(7 + 8/12, "feet"),
  34843. weight: math.unit(152, "kg"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/helen-arri/front.svg",
  34847. extra: 440/423,
  34848. bottom: 14/454
  34849. }
  34850. },
  34851. back: {
  34852. height: math.unit(7 + 8/12, "feet"),
  34853. weight: math.unit(152, "kg"),
  34854. name: "Back",
  34855. image: {
  34856. source: "./media/characters/helen-arri/back.svg",
  34857. extra: 443/426,
  34858. bottom: 8/451
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Normal",
  34865. height: math.unit(7 + 8/12, "feet"),
  34866. default: true
  34867. },
  34868. {
  34869. name: "Big",
  34870. height: math.unit(14, "feet")
  34871. },
  34872. {
  34873. name: "Minimacro",
  34874. height: math.unit(24, "feet")
  34875. },
  34876. {
  34877. name: "Macro",
  34878. height: math.unit(140, "feet")
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(6, "meters"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/ehanu-rehu/front.svg",
  34890. extra: 1800/1800,
  34891. bottom: 59/1859
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(6, "meters"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(7 + 3/12, "feet"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/renholder/front.svg",
  34911. extra: 3096/2960,
  34912. bottom: 250/3346
  34913. }
  34914. },
  34915. },
  34916. [
  34917. {
  34918. name: "Normal Bat",
  34919. height: math.unit(7 + 3/12, "feet"),
  34920. default: true
  34921. },
  34922. {
  34923. name: "Slightly Tall Bat",
  34924. height: math.unit(100, "feet")
  34925. },
  34926. {
  34927. name: "Big Bat",
  34928. height: math.unit(1000, "feet")
  34929. },
  34930. {
  34931. name: "City-Sized Bat",
  34932. height: math.unit(200000, "feet")
  34933. },
  34934. {
  34935. name: "Bigger Bat",
  34936. height: math.unit(10000, "miles")
  34937. },
  34938. {
  34939. name: "Solar Sized Bat",
  34940. height: math.unit(100, "AU")
  34941. },
  34942. {
  34943. name: "Galactic Bat",
  34944. height: math.unit(200000, "lightyears")
  34945. },
  34946. {
  34947. name: "Universally Known Bat",
  34948. height: math.unit(1, "universe")
  34949. },
  34950. ]
  34951. ))
  34952. characterMakers.push(() => makeCharacter(
  34953. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34954. {
  34955. front: {
  34956. height: math.unit(6 + 11/12, "feet"),
  34957. weight: math.unit(250, "lb"),
  34958. name: "Front",
  34959. image: {
  34960. source: "./media/characters/cookiecat/front.svg",
  34961. extra: 893/827,
  34962. bottom: 14/907
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Micro",
  34969. height: math.unit(3, "inches")
  34970. },
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(6 + 11/12, "feet"),
  34974. default: true
  34975. },
  34976. {
  34977. name: "Macro",
  34978. height: math.unit(100, "feet")
  34979. },
  34980. {
  34981. name: "Macro+",
  34982. height: math.unit(404, "feet")
  34983. },
  34984. {
  34985. name: "Megamacro",
  34986. height: math.unit(165, "miles")
  34987. },
  34988. {
  34989. name: "Planetary",
  34990. height: math.unit(4600, "miles")
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(10 + 3/12, "feet"),
  34999. weight: math.unit(1500, "lb"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/tux-kusanagi/front.svg",
  35003. extra: 944/840,
  35004. bottom: 39/983
  35005. }
  35006. },
  35007. back: {
  35008. height: math.unit(10 + 3/12, "feet"),
  35009. weight: math.unit(1500, "lb"),
  35010. name: "Back",
  35011. image: {
  35012. source: "./media/characters/tux-kusanagi/back.svg",
  35013. extra: 941/842,
  35014. bottom: 28/969
  35015. }
  35016. },
  35017. rump: {
  35018. height: math.unit(5.25, "feet"),
  35019. name: "Rump",
  35020. image: {
  35021. source: "./media/characters/tux-kusanagi/rump.svg"
  35022. }
  35023. },
  35024. beak: {
  35025. height: math.unit(1.54, "feet"),
  35026. name: "Beak",
  35027. image: {
  35028. source: "./media/characters/tux-kusanagi/beak.svg"
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Normal",
  35035. height: math.unit(10 + 3/12, "feet"),
  35036. default: true
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(58, "feet"),
  35045. weight: math.unit(200, "tons"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/uzarmazari/front.svg",
  35049. extra: 1575/1455,
  35050. bottom: 152/1727
  35051. }
  35052. },
  35053. back: {
  35054. height: math.unit(58, "feet"),
  35055. weight: math.unit(200, "tons"),
  35056. name: "Back",
  35057. image: {
  35058. source: "./media/characters/uzarmazari/back.svg",
  35059. extra: 1585/1510,
  35060. bottom: 157/1742
  35061. }
  35062. },
  35063. head: {
  35064. height: math.unit(26, "feet"),
  35065. name: "Head",
  35066. image: {
  35067. source: "./media/characters/uzarmazari/head.svg"
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(58, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35081. {
  35082. side: {
  35083. height: math.unit(15, "feet"),
  35084. name: "Side",
  35085. image: {
  35086. source: "./media/characters/akitu/side.svg",
  35087. extra: 1421/1321,
  35088. bottom: 157/1578
  35089. }
  35090. },
  35091. front: {
  35092. height: math.unit(15, "feet"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/akitu/front.svg",
  35096. extra: 1435/1326,
  35097. bottom: 232/1667
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(15, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(10 + 8/12, "feet"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/azalie-croixland/front.svg",
  35117. extra: 1972/1856,
  35118. bottom: 31/2003
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Original Height",
  35125. height: math.unit(5 + 4/12, "feet")
  35126. },
  35127. {
  35128. name: "Normal Height",
  35129. height: math.unit(10 + 8/12, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35136. {
  35137. side: {
  35138. height: math.unit(7 + 1/12, "feet"),
  35139. weight: math.unit(245, "lb"),
  35140. name: "Side",
  35141. image: {
  35142. source: "./media/characters/kavus-kazian/side.svg",
  35143. extra: 349/342,
  35144. bottom: 15/364
  35145. }
  35146. },
  35147. },
  35148. [
  35149. {
  35150. name: "Normal",
  35151. height: math.unit(7 + 1/12, "feet"),
  35152. default: true
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35158. {
  35159. normalFront: {
  35160. height: math.unit(5 + 11/12, "feet"),
  35161. name: "Front",
  35162. image: {
  35163. source: "./media/characters/moonlight-rose/normal-front.svg",
  35164. extra: 1980/1825,
  35165. bottom: 18/1998
  35166. },
  35167. form: "normal",
  35168. default: true
  35169. },
  35170. normalBack: {
  35171. height: math.unit(5 + 11/12, "feet"),
  35172. name: "Back",
  35173. image: {
  35174. source: "./media/characters/moonlight-rose/normal-back.svg",
  35175. extra: 2010/1839,
  35176. bottom: 10/2020
  35177. },
  35178. form: "normal"
  35179. },
  35180. demonFront: {
  35181. height: math.unit(1.5, "earths"),
  35182. name: "Front",
  35183. image: {
  35184. source: "./media/characters/moonlight-rose/demon.svg",
  35185. extra: 1400/1294,
  35186. bottom: 45/1445
  35187. },
  35188. form: "demon",
  35189. default: true
  35190. },
  35191. terraFront: {
  35192. height: math.unit(1.5, "earths"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/moonlight-rose/terra.svg"
  35196. },
  35197. form: "terra",
  35198. default: true
  35199. },
  35200. jupiterFront: {
  35201. height: math.unit(69911*2, "km"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35205. extra: 1367/1286,
  35206. bottom: 55/1422
  35207. },
  35208. form: "jupiter",
  35209. default: true
  35210. },
  35211. neptuneFront: {
  35212. height: math.unit(24622*2, "feet"),
  35213. name: "Front",
  35214. image: {
  35215. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35216. extra: 1851/1712,
  35217. bottom: 0/1851
  35218. },
  35219. form: "neptune",
  35220. default: true
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "\"Natural\" Height",
  35226. height: math.unit(5 + 11/12, "feet"),
  35227. form: "normal"
  35228. },
  35229. {
  35230. name: "Smallest comfortable size",
  35231. height: math.unit(40, "meters"),
  35232. form: "normal"
  35233. },
  35234. {
  35235. name: "Common size",
  35236. height: math.unit(50, "km"),
  35237. form: "normal",
  35238. default: true
  35239. },
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(1.5, "earths"),
  35243. form: "demon",
  35244. default: true
  35245. },
  35246. {
  35247. name: "Universal",
  35248. height: math.unit(15, "universes"),
  35249. form: "demon"
  35250. },
  35251. {
  35252. name: "Earth",
  35253. height: math.unit(1.5, "earths"),
  35254. form: "terra",
  35255. default: true
  35256. },
  35257. {
  35258. name: "Super Earth",
  35259. height: math.unit(67.5, "earths"),
  35260. form: "terra"
  35261. },
  35262. {
  35263. name: "Doesn't fit in a solar system...",
  35264. height: math.unit(1, "galaxy"),
  35265. form: "terra"
  35266. },
  35267. {
  35268. name: "Saturn",
  35269. height: math.unit(58232*2, "km"),
  35270. form: "jupiter"
  35271. },
  35272. {
  35273. name: "Jupiter",
  35274. height: math.unit(69911*2, "km"),
  35275. form: "jupiter",
  35276. default: true
  35277. },
  35278. {
  35279. name: "HD 100546 b",
  35280. height: math.unit(482938, "km"),
  35281. form: "jupiter"
  35282. },
  35283. {
  35284. name: "Enceladus",
  35285. height: math.unit(513*2, "km"),
  35286. form: "neptune"
  35287. },
  35288. {
  35289. name: "Europe",
  35290. height: math.unit(1560*2, "km"),
  35291. form: "neptune"
  35292. },
  35293. {
  35294. name: "Neptune",
  35295. height: math.unit(24622*2, "km"),
  35296. form: "neptune",
  35297. default: true
  35298. },
  35299. {
  35300. name: "CoRoT-9b",
  35301. height: math.unit(75067*2, "km"),
  35302. form: "neptune"
  35303. },
  35304. ],
  35305. {
  35306. "normal": {
  35307. name: "Normal",
  35308. default: true
  35309. },
  35310. "demon": {
  35311. name: "Demon"
  35312. },
  35313. "terra": {
  35314. name: "Terra"
  35315. },
  35316. "jupiter": {
  35317. name: "Jupiter"
  35318. },
  35319. "neptune": {
  35320. name: "Neptune"
  35321. }
  35322. }
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(16, "feet"),
  35329. weight: math.unit(610, "kg"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/huckle/front.svg",
  35333. extra: 1731/1625,
  35334. bottom: 33/1764
  35335. }
  35336. },
  35337. back: {
  35338. height: math.unit(16, "feet"),
  35339. weight: math.unit(610, "kg"),
  35340. name: "Back",
  35341. image: {
  35342. source: "./media/characters/huckle/back.svg",
  35343. extra: 1738/1651,
  35344. bottom: 37/1775
  35345. }
  35346. },
  35347. laughing: {
  35348. height: math.unit(3.75, "feet"),
  35349. name: "Laughing",
  35350. image: {
  35351. source: "./media/characters/huckle/laughing.svg"
  35352. }
  35353. },
  35354. angry: {
  35355. height: math.unit(4.15, "feet"),
  35356. name: "Angry",
  35357. image: {
  35358. source: "./media/characters/huckle/angry.svg"
  35359. }
  35360. },
  35361. },
  35362. [
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(16, "feet"),
  35366. default: true
  35367. },
  35368. {
  35369. name: "Mini Macro",
  35370. height: math.unit(463, "feet")
  35371. },
  35372. {
  35373. name: "Macro",
  35374. height: math.unit(1680, "meters")
  35375. },
  35376. {
  35377. name: "Mega Macro",
  35378. height: math.unit(175, "km")
  35379. },
  35380. {
  35381. name: "Terra Macro",
  35382. height: math.unit(32, "gigameters")
  35383. },
  35384. {
  35385. name: "Multiverse+",
  35386. height: math.unit(2.56e23, "yottameters")
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35392. {
  35393. front: {
  35394. height: math.unit(6 + 9/12, "feet"),
  35395. weight: math.unit(280, "lb"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/candy/front.svg",
  35399. extra: 234/217,
  35400. bottom: 11/245
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Really Small",
  35407. height: math.unit(0.1, "nm")
  35408. },
  35409. {
  35410. name: "Micro",
  35411. height: math.unit(2, "inches")
  35412. },
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6 + 9/12, "feet"),
  35416. default: true
  35417. },
  35418. {
  35419. name: "Small Macro",
  35420. height: math.unit(69, "feet")
  35421. },
  35422. {
  35423. name: "Macro",
  35424. height: math.unit(160, "feet")
  35425. },
  35426. {
  35427. name: "Megamacro",
  35428. height: math.unit(22000, "miles")
  35429. },
  35430. {
  35431. name: "Gigamacro",
  35432. height: math.unit(50000, "miles")
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(4, "feet"),
  35441. weight: math.unit(90, "lb"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/joey-mcdonald/front.svg",
  35445. extra: 1059/852,
  35446. bottom: 33/1092
  35447. }
  35448. },
  35449. back: {
  35450. height: math.unit(4, "feet"),
  35451. weight: math.unit(90, "lb"),
  35452. name: "Back",
  35453. image: {
  35454. source: "./media/characters/joey-mcdonald/back.svg",
  35455. extra: 1077/879,
  35456. bottom: 5/1082
  35457. }
  35458. },
  35459. frontKobold: {
  35460. height: math.unit(4, "feet"),
  35461. weight: math.unit(100, "lb"),
  35462. name: "Front-kobold",
  35463. image: {
  35464. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35465. extra: 1480/1367,
  35466. bottom: 0/1480
  35467. }
  35468. },
  35469. backKobold: {
  35470. height: math.unit(4, "feet"),
  35471. weight: math.unit(100, "lb"),
  35472. name: "Back-kobold",
  35473. image: {
  35474. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35475. extra: 1449/1361,
  35476. bottom: 0/1449
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(4, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(12 + 6/12, "feet"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/kass-lockheed/front.svg",
  35496. extra: 354/343,
  35497. bottom: 9/363
  35498. }
  35499. },
  35500. back: {
  35501. height: math.unit(12 + 6/12, "feet"),
  35502. name: "Back",
  35503. image: {
  35504. source: "./media/characters/kass-lockheed/back.svg",
  35505. extra: 364/352,
  35506. bottom: 3/367
  35507. }
  35508. },
  35509. dick: {
  35510. height: math.unit(3.12, "feet"),
  35511. name: "Dick",
  35512. image: {
  35513. source: "./media/characters/kass-lockheed/dick.svg"
  35514. }
  35515. },
  35516. head: {
  35517. height: math.unit(2.6, "feet"),
  35518. name: "Head",
  35519. image: {
  35520. source: "./media/characters/kass-lockheed/head.svg"
  35521. }
  35522. },
  35523. bleh: {
  35524. height: math.unit(2.85, "feet"),
  35525. name: "Bleh",
  35526. image: {
  35527. source: "./media/characters/kass-lockheed/bleh.svg"
  35528. }
  35529. },
  35530. smug: {
  35531. height: math.unit(2.85, "feet"),
  35532. name: "Smug",
  35533. image: {
  35534. source: "./media/characters/kass-lockheed/smug.svg"
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(12 + 6/12, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(6 + 2/12, "feet"),
  35551. name: "Front",
  35552. image: {
  35553. source: "./media/characters/taylor/front.svg",
  35554. extra: 639/495,
  35555. bottom: 12/651
  35556. }
  35557. },
  35558. },
  35559. [
  35560. {
  35561. name: "Normal",
  35562. height: math.unit(6 + 2/12, "feet"),
  35563. default: true
  35564. },
  35565. {
  35566. name: "Big",
  35567. height: math.unit(15, "feet")
  35568. },
  35569. {
  35570. name: "Lorg",
  35571. height: math.unit(80, "feet")
  35572. },
  35573. {
  35574. name: "Too Lorg",
  35575. height: math.unit(120, "feet")
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(15, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/kaizer/front.svg",
  35587. extra: 1612/1436,
  35588. bottom: 43/1655
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(15, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(2, "feet"),
  35605. weight: math.unit(30, "lb"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/sandy/front.svg",
  35609. extra: 1439/1307,
  35610. bottom: 194/1633
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(2, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35624. {
  35625. front: {
  35626. height: math.unit(3, "feet"),
  35627. name: "Front",
  35628. image: {
  35629. source: "./media/characters/mellvi/front.svg",
  35630. extra: 1831/1630,
  35631. bottom: 58/1889
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(3, "feet"),
  35639. default: true
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(5 + 11/12, "feet"),
  35648. weight: math.unit(200, "lb"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/shirou/front.svg",
  35652. extra: 2491/2383,
  35653. bottom: 189/2680
  35654. }
  35655. },
  35656. back: {
  35657. height: math.unit(5 + 11/12, "feet"),
  35658. weight: math.unit(200, "lb"),
  35659. name: "Back",
  35660. image: {
  35661. source: "./media/characters/shirou/back.svg",
  35662. extra: 2554/2450,
  35663. bottom: 76/2630
  35664. }
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "Normal",
  35670. height: math.unit(5 + 11/12, "feet"),
  35671. default: true
  35672. },
  35673. ]
  35674. ))
  35675. characterMakers.push(() => makeCharacter(
  35676. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35677. {
  35678. front: {
  35679. height: math.unit(6 + 3/12, "feet"),
  35680. weight: math.unit(177, "lb"),
  35681. name: "Front",
  35682. image: {
  35683. source: "./media/characters/noryu/front.svg",
  35684. extra: 973/885,
  35685. bottom: 10/983
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(6 + 3/12, "feet"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35699. {
  35700. front: {
  35701. height: math.unit(5 + 6/12, "feet"),
  35702. weight: math.unit(170, "lb"),
  35703. name: "Front",
  35704. image: {
  35705. source: "./media/characters/mevolas-rubenido/front.svg",
  35706. extra: 2109/1901,
  35707. bottom: 96/2205
  35708. }
  35709. },
  35710. },
  35711. [
  35712. {
  35713. name: "Normal",
  35714. height: math.unit(5 + 6/12, "feet"),
  35715. default: true
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35721. {
  35722. front: {
  35723. height: math.unit(100, "feet"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/dee/front.svg",
  35727. extra: 2153/2036,
  35728. bottom: 59/2212
  35729. }
  35730. },
  35731. back: {
  35732. height: math.unit(100, "feet"),
  35733. name: "Back",
  35734. image: {
  35735. source: "./media/characters/dee/back.svg",
  35736. extra: 2183/2058,
  35737. bottom: 75/2258
  35738. }
  35739. },
  35740. foot: {
  35741. height: math.unit(19.43, "feet"),
  35742. name: "Foot",
  35743. image: {
  35744. source: "./media/characters/dee/foot.svg"
  35745. }
  35746. },
  35747. hoof: {
  35748. height: math.unit(20.6, "feet"),
  35749. name: "Hoof",
  35750. image: {
  35751. source: "./media/characters/dee/hoof.svg"
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Macro",
  35758. height: math.unit(100, "feet"),
  35759. default: true
  35760. },
  35761. ]
  35762. ))
  35763. characterMakers.push(() => makeCharacter(
  35764. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35765. {
  35766. front: {
  35767. height: math.unit(5 + 6/12, "feet"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/teh/front.svg",
  35771. extra: 1002/847,
  35772. bottom: 62/1064
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(5 + 6/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35786. {
  35787. side: {
  35788. height: math.unit(6 + 1/12, "feet"),
  35789. weight: math.unit(204, "lb"),
  35790. name: "Side",
  35791. image: {
  35792. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35793. extra: 974/775,
  35794. bottom: 169/1143
  35795. }
  35796. },
  35797. sitting: {
  35798. height: math.unit(6 + 2/12, "feet"),
  35799. weight: math.unit(204, "lb"),
  35800. name: "Sitting",
  35801. image: {
  35802. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35803. extra: 1175/964,
  35804. bottom: 378/1553
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(6 + 1/12, "feet"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(6, "inches"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/tululi/front.svg",
  35824. extra: 1997/1876,
  35825. bottom: 20/2017
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(6, "inches"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(4 + 1/12, "feet"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/star/front.svg",
  35845. extra: 1493/1189,
  35846. bottom: 48/1541
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(4 + 1/12, "feet"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(6 + 3/12, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/comet/front.svg",
  35866. extra: 1681/1462,
  35867. bottom: 26/1707
  35868. }
  35869. },
  35870. },
  35871. [
  35872. {
  35873. name: "Normal",
  35874. height: math.unit(6 + 3/12, "feet"),
  35875. default: true
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35881. {
  35882. front: {
  35883. height: math.unit(950, "feet"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/vortex/front.svg",
  35887. extra: 1497/1434,
  35888. bottom: 56/1553
  35889. }
  35890. },
  35891. maw: {
  35892. height: math.unit(285, "feet"),
  35893. name: "Maw",
  35894. image: {
  35895. source: "./media/characters/vortex/maw.svg"
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Macro",
  35902. height: math.unit(950, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(600, "feet"),
  35912. weight: math.unit(0.02, "grams"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/doodle/front.svg",
  35916. extra: 1578/1413,
  35917. bottom: 37/1615
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Macro",
  35924. height: math.unit(600, "feet"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(6 + 6/12, "feet"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/jai/front.svg",
  35937. extra: 1645/1534,
  35938. bottom: 115/1760
  35939. }
  35940. },
  35941. },
  35942. [
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(6 + 6/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(6 + 8/12, "feet"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/pixel/front.svg",
  35958. extra: 1900/1735,
  35959. bottom: 63/1963
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(6 + 8/12, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35973. {
  35974. back: {
  35975. height: math.unit(4 + 1/12, "feet"),
  35976. weight: math.unit(75, "lb"),
  35977. name: "Back",
  35978. image: {
  35979. source: "./media/characters/rhett/back.svg",
  35980. extra: 930/878,
  35981. bottom: 25/955
  35982. }
  35983. },
  35984. front: {
  35985. height: math.unit(4 + 1/12, "feet"),
  35986. weight: math.unit(75, "lb"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/rhett/front.svg",
  35990. extra: 1682/1586,
  35991. bottom: 92/1774
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Micro",
  35998. height: math.unit(8, "inches")
  35999. },
  36000. {
  36001. name: "Tiny",
  36002. height: math.unit(2, "feet")
  36003. },
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(4 + 1/12, "feet"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(3 + 3/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/penny/front.svg",
  36019. extra: 1406/1311,
  36020. bottom: 26/1432
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(3 + 3/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36034. {
  36035. front: {
  36036. height: math.unit(4 + 11/12, "feet"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/monty/front.svg",
  36040. extra: 1479/1209,
  36041. bottom: 0/1479
  36042. }
  36043. },
  36044. },
  36045. [
  36046. {
  36047. name: "Normal",
  36048. height: math.unit(4 + 11/12, "feet"),
  36049. default: true
  36050. },
  36051. ]
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36055. {
  36056. front: {
  36057. height: math.unit(8 + 4/12, "feet"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/sterling/front.svg",
  36061. extra: 1420/1236,
  36062. bottom: 27/1447
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(8 + 4/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(15, "feet"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/marble/front.svg",
  36082. extra: 973/937,
  36083. bottom: 32/1005
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(15, "feet"),
  36091. default: true
  36092. },
  36093. ]
  36094. ))
  36095. characterMakers.push(() => makeCharacter(
  36096. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36097. {
  36098. front: {
  36099. height: math.unit(3, "inches"),
  36100. name: "Front",
  36101. image: {
  36102. source: "./media/characters/powder/front.svg",
  36103. extra: 1504/1334,
  36104. bottom: 518/2022
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(3, "inches"),
  36112. default: true
  36113. },
  36114. ]
  36115. ))
  36116. characterMakers.push(() => makeCharacter(
  36117. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36118. {
  36119. front: {
  36120. height: math.unit(4 + 5/12, "feet"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/joey-raccoon/front.svg",
  36124. extra: 1273/1197,
  36125. bottom: 0/1273
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(4 + 5/12, "feet"),
  36133. default: true
  36134. },
  36135. ]
  36136. ))
  36137. characterMakers.push(() => makeCharacter(
  36138. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36139. {
  36140. front: {
  36141. height: math.unit(8 + 4/12, "feet"),
  36142. name: "Front",
  36143. image: {
  36144. source: "./media/characters/vick/front.svg",
  36145. extra: 2187/2118,
  36146. bottom: 47/2234
  36147. }
  36148. },
  36149. },
  36150. [
  36151. {
  36152. name: "Normal",
  36153. height: math.unit(8 + 4/12, "feet"),
  36154. default: true
  36155. },
  36156. ]
  36157. ))
  36158. characterMakers.push(() => makeCharacter(
  36159. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36160. {
  36161. front: {
  36162. height: math.unit(5 + 5/12, "feet"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/mitsy/front.svg",
  36166. extra: 1842/1695,
  36167. bottom: 0/1842
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(5 + 5/12, "feet"),
  36175. default: true
  36176. },
  36177. ]
  36178. ))
  36179. characterMakers.push(() => makeCharacter(
  36180. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36181. {
  36182. front: {
  36183. height: math.unit(6 + 3/12, "feet"),
  36184. name: "Front",
  36185. image: {
  36186. source: "./media/characters/silvy/front.svg",
  36187. extra: 1995/1836,
  36188. bottom: 225/2220
  36189. }
  36190. },
  36191. },
  36192. [
  36193. {
  36194. name: "Normal",
  36195. height: math.unit(6 + 3/12, "feet"),
  36196. default: true
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36202. {
  36203. front: {
  36204. height: math.unit(3 + 8/12, "feet"),
  36205. name: "Front",
  36206. image: {
  36207. source: "./media/characters/rodney/front.svg",
  36208. extra: 1956/1747,
  36209. bottom: 31/1987
  36210. }
  36211. },
  36212. frontDressed: {
  36213. height: math.unit(2.9, "feet"),
  36214. name: "Front (Dressed)",
  36215. image: {
  36216. source: "./media/characters/rodney/front-dressed.svg",
  36217. extra: 1382/1241,
  36218. bottom: 385/1767
  36219. }
  36220. },
  36221. },
  36222. [
  36223. {
  36224. name: "Normal",
  36225. height: math.unit(3 + 8/12, "feet"),
  36226. default: true
  36227. },
  36228. ]
  36229. ))
  36230. characterMakers.push(() => makeCharacter(
  36231. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36232. {
  36233. front: {
  36234. height: math.unit(5 + 9/12, "feet"),
  36235. weight: math.unit(194, "lbs"),
  36236. name: "Front",
  36237. image: {
  36238. source: "./media/characters/zakail-sudekai/front.svg",
  36239. extra: 2696/2533,
  36240. bottom: 248/2944
  36241. }
  36242. },
  36243. maw: {
  36244. height: math.unit(1.35, "feet"),
  36245. name: "Maw",
  36246. image: {
  36247. source: "./media/characters/zakail-sudekai/maw.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(5 + 9/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36261. {
  36262. front: {
  36263. height: math.unit(8 + 4/12, "feet"),
  36264. weight: math.unit(1200, "lb"),
  36265. name: "Front",
  36266. image: {
  36267. source: "./media/characters/eleanor/front.svg",
  36268. extra: 1226/1192,
  36269. bottom: 52/1278
  36270. }
  36271. },
  36272. back: {
  36273. height: math.unit(8 + 4/12, "feet"),
  36274. weight: math.unit(1200, "lb"),
  36275. name: "Back",
  36276. image: {
  36277. source: "./media/characters/eleanor/back.svg",
  36278. extra: 1242/1184,
  36279. bottom: 60/1302
  36280. }
  36281. },
  36282. head: {
  36283. height: math.unit(2.62, "feet"),
  36284. name: "Head",
  36285. image: {
  36286. source: "./media/characters/eleanor/head.svg"
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(8 + 4/12, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36300. {
  36301. front: {
  36302. height: math.unit(8 + 4/12, "feet"),
  36303. weight: math.unit(750, "lb"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/tanya/front.svg",
  36307. extra: 1749/1615,
  36308. bottom: 33/1782
  36309. }
  36310. },
  36311. },
  36312. [
  36313. {
  36314. name: "Normal",
  36315. height: math.unit(8 + 4/12, "feet"),
  36316. default: true
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36322. {
  36323. front: {
  36324. height: math.unit(5, "feet"),
  36325. weight: math.unit(225, "lb"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/cindy/front.svg",
  36329. extra: 1320/1250,
  36330. bottom: 42/1362
  36331. }
  36332. },
  36333. frontDressed: {
  36334. height: math.unit(5, "feet"),
  36335. weight: math.unit(225, "lb"),
  36336. name: "Front (Dressed)",
  36337. image: {
  36338. source: "./media/characters/cindy/front-dressed.svg",
  36339. extra: 1320/1250,
  36340. bottom: 42/1362
  36341. }
  36342. },
  36343. back: {
  36344. height: math.unit(5, "feet"),
  36345. weight: math.unit(225, "lb"),
  36346. name: "Back",
  36347. image: {
  36348. source: "./media/characters/cindy/back.svg",
  36349. extra: 1384/1346,
  36350. bottom: 14/1398
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(5, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36364. {
  36365. front: {
  36366. height: math.unit(6 + 9/12, "feet"),
  36367. weight: math.unit(440, "lb"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/wilbur-owen/front.svg",
  36371. extra: 1575/1448,
  36372. bottom: 72/1647
  36373. }
  36374. },
  36375. back: {
  36376. height: math.unit(6 + 9/12, "feet"),
  36377. weight: math.unit(440, "lb"),
  36378. name: "Back",
  36379. image: {
  36380. source: "./media/characters/wilbur-owen/back.svg",
  36381. extra: 1578/1445,
  36382. bottom: 36/1614
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(6 + 9/12, "feet"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(6 + 5/12, "feet"),
  36399. weight: math.unit(650, "lb"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/keegan/front.svg",
  36403. extra: 2387/2198,
  36404. bottom: 33/2420
  36405. }
  36406. },
  36407. side: {
  36408. height: math.unit(6 + 5/12, "feet"),
  36409. weight: math.unit(650, "lb"),
  36410. name: "Side",
  36411. image: {
  36412. source: "./media/characters/keegan/side.svg",
  36413. extra: 2390/2202,
  36414. bottom: 47/2437
  36415. }
  36416. },
  36417. back: {
  36418. height: math.unit(6 + 5/12, "feet"),
  36419. weight: math.unit(650, "lb"),
  36420. name: "Back",
  36421. image: {
  36422. source: "./media/characters/keegan/back.svg",
  36423. extra: 2418/2268,
  36424. bottom: 15/2433
  36425. }
  36426. },
  36427. frontSfw: {
  36428. height: math.unit(6 + 5/12, "feet"),
  36429. weight: math.unit(650, "lb"),
  36430. name: "Front (SFW)",
  36431. image: {
  36432. source: "./media/characters/keegan/front-sfw.svg",
  36433. extra: 2387/2198,
  36434. bottom: 33/2420
  36435. }
  36436. },
  36437. beans: {
  36438. height: math.unit(1.85, "feet"),
  36439. name: "Beans",
  36440. image: {
  36441. source: "./media/characters/keegan/beans.svg"
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(6 + 5/12, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(9, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/colton/front.svg",
  36461. extra: 1589/1326,
  36462. bottom: 139/1728
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(9, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(2 + 9/12, "feet"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/bora/front.svg",
  36482. extra: 1265/1250,
  36483. bottom: 24/1289
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(2 + 9/12, "feet"),
  36491. default: true
  36492. },
  36493. ]
  36494. ))
  36495. characterMakers.push(() => makeCharacter(
  36496. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36497. {
  36498. front: {
  36499. height: math.unit(8, "feet"),
  36500. name: "Front",
  36501. image: {
  36502. source: "./media/characters/myu-myu/front.svg",
  36503. extra: 1949/1857,
  36504. bottom: 90/2039
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Normal",
  36511. height: math.unit(8, "feet"),
  36512. default: true
  36513. },
  36514. {
  36515. name: "Big",
  36516. height: math.unit(15, "feet")
  36517. },
  36518. {
  36519. name: "BIG",
  36520. height: math.unit(25, "feet")
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36526. {
  36527. side: {
  36528. height: math.unit(7 + 5/12, "feet"),
  36529. weight: math.unit(2800, "lb"),
  36530. name: "Side",
  36531. image: {
  36532. source: "./media/characters/haloren/side.svg",
  36533. extra: 1793/409,
  36534. bottom: 59/1852
  36535. }
  36536. },
  36537. frontPaw: {
  36538. height: math.unit(2.36, "feet"),
  36539. name: "Front paw",
  36540. image: {
  36541. source: "./media/characters/haloren/front-paw.svg"
  36542. }
  36543. },
  36544. hindPaw: {
  36545. height: math.unit(3.18, "feet"),
  36546. name: "Hind paw",
  36547. image: {
  36548. source: "./media/characters/haloren/hind-paw.svg"
  36549. }
  36550. },
  36551. maw: {
  36552. height: math.unit(5.05, "feet"),
  36553. name: "Maw",
  36554. image: {
  36555. source: "./media/characters/haloren/maw.svg"
  36556. }
  36557. },
  36558. dick: {
  36559. height: math.unit(2.90, "feet"),
  36560. name: "Dick",
  36561. image: {
  36562. source: "./media/characters/haloren/dick.svg"
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(7 + 5/12, "feet"),
  36570. default: true
  36571. },
  36572. {
  36573. name: "Enhanced",
  36574. height: math.unit(14 + 3/12, "feet")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(171, "cm"),
  36583. name: "Front",
  36584. image: {
  36585. source: "./media/characters/kimmy/front.svg",
  36586. extra: 1491/1435,
  36587. bottom: 53/1544
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Small",
  36594. height: math.unit(9, "cm")
  36595. },
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(171, "cm"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(8, "feet"),
  36608. weight: math.unit(300, "lb"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/galeboomer/front.svg",
  36612. extra: 4651/4415,
  36613. bottom: 162/4813
  36614. }
  36615. },
  36616. back: {
  36617. height: math.unit(8, "feet"),
  36618. weight: math.unit(300, "lb"),
  36619. name: "Back",
  36620. image: {
  36621. source: "./media/characters/galeboomer/back.svg",
  36622. extra: 4544/4314,
  36623. bottom: 16/4560
  36624. }
  36625. },
  36626. frontAlt: {
  36627. height: math.unit(8, "feet"),
  36628. weight: math.unit(300, "lb"),
  36629. name: "Front (Alt)",
  36630. image: {
  36631. source: "./media/characters/galeboomer/front-alt.svg",
  36632. extra: 4458/4228,
  36633. bottom: 68/4526
  36634. }
  36635. },
  36636. maw: {
  36637. height: math.unit(1.2, "feet"),
  36638. name: "Maw",
  36639. image: {
  36640. source: "./media/characters/galeboomer/maw.svg"
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(8, "feet"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(5 + 9/12, "feet"),
  36657. weight: math.unit(120, "lb"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/chyr/front.svg",
  36661. extra: 1323/1254,
  36662. bottom: 63/1386
  36663. }
  36664. },
  36665. back: {
  36666. height: math.unit(5 + 9/12, "feet"),
  36667. weight: math.unit(120, "lb"),
  36668. name: "Back",
  36669. image: {
  36670. source: "./media/characters/chyr/back.svg",
  36671. extra: 1323/1252,
  36672. bottom: 48/1371
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(5 + 9/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(7, "feet"),
  36689. weight: math.unit(310, "lb"),
  36690. name: "Front",
  36691. image: {
  36692. source: "./media/characters/solarus/front.svg",
  36693. extra: 2415/2021,
  36694. bottom: 103/2518
  36695. }
  36696. },
  36697. back: {
  36698. height: math.unit(7, "feet"),
  36699. weight: math.unit(310, "lb"),
  36700. name: "Back",
  36701. image: {
  36702. source: "./media/characters/solarus/back.svg",
  36703. extra: 2463/2089,
  36704. bottom: 79/2542
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(7, "feet"),
  36712. default: true
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(16, "feet"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36724. extra: 1844/1780,
  36725. bottom: 58/1902
  36726. }
  36727. },
  36728. winterCoat: {
  36729. height: math.unit(16, "feet"),
  36730. name: "Winter Coat",
  36731. image: {
  36732. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36733. extra: 1807/1775,
  36734. bottom: 69/1876
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(16, "feet"),
  36742. default: true
  36743. },
  36744. {
  36745. name: "Chicago Size",
  36746. height: math.unit(560, "feet")
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(11 + 6/12, "feet"),
  36755. weight: math.unit(1366, "lb"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/lexor/front.svg",
  36759. extra: 1560/1481,
  36760. bottom: 211/1771
  36761. }
  36762. },
  36763. back: {
  36764. height: math.unit(11 + 6/12, "feet"),
  36765. weight: math.unit(1366, "lb"),
  36766. name: "Back",
  36767. image: {
  36768. source: "./media/characters/lexor/back.svg",
  36769. extra: 1614/1533,
  36770. bottom: 76/1690
  36771. }
  36772. },
  36773. maw: {
  36774. height: math.unit(3, "feet"),
  36775. name: "Maw",
  36776. image: {
  36777. source: "./media/characters/lexor/maw.svg"
  36778. }
  36779. },
  36780. dick: {
  36781. height: math.unit(2.59, "feet"),
  36782. name: "Dick",
  36783. image: {
  36784. source: "./media/characters/lexor/dick.svg"
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(11 + 6/12, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(5 + 8/12, "feet"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/magnum/front.svg",
  36804. extra: 942/855,
  36805. bottom: 26/968
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(5 + 8/12, "feet"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(18 + 4/12, "feet"),
  36822. weight: math.unit(1500, "kg"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/solas-sharpsman/front.svg",
  36826. extra: 1698/1589,
  36827. bottom: 0/1698
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(18 + 4/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(5 + 5/12, "feet"),
  36844. weight: math.unit(180, "lb"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/october/front.svg",
  36848. extra: 1800/1650,
  36849. bottom: 0/1800
  36850. }
  36851. },
  36852. frontNsfw: {
  36853. height: math.unit(5 + 5/12, "feet"),
  36854. weight: math.unit(180, "lb"),
  36855. name: "Front (NSFW)",
  36856. image: {
  36857. source: "./media/characters/october/front-nsfw.svg",
  36858. extra: 1392/1307,
  36859. bottom: 42/1434
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(5 + 5/12, "feet"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(8 + 6/12, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/essynkardi/front.svg",
  36879. extra: 1914/1846,
  36880. bottom: 22/1936
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(8 + 6/12, "feet"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36894. {
  36895. front: {
  36896. height: math.unit(6 + 6/12, "feet"),
  36897. weight: math.unit(7, "lb"),
  36898. name: "Front",
  36899. image: {
  36900. source: "./media/characters/icky/front.svg",
  36901. extra: 813/782,
  36902. bottom: 66/879
  36903. }
  36904. },
  36905. back: {
  36906. height: math.unit(6 + 6/12, "feet"),
  36907. weight: math.unit(7, "lb"),
  36908. name: "Back",
  36909. image: {
  36910. source: "./media/characters/icky/back.svg",
  36911. extra: 754/735,
  36912. bottom: 56/810
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(6 + 6/12, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(15, "feet"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/rojas/front.svg",
  36932. extra: 1462/1408,
  36933. bottom: 95/1557
  36934. }
  36935. },
  36936. back: {
  36937. height: math.unit(15, "feet"),
  36938. name: "Back",
  36939. image: {
  36940. source: "./media/characters/rojas/back.svg",
  36941. extra: 1023/954,
  36942. bottom: 28/1051
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(15, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36956. {
  36957. frontHuman: {
  36958. height: math.unit(5 + 7/12, "feet"),
  36959. name: "Front (Human)",
  36960. image: {
  36961. source: "./media/characters/alek-dryagan/front-human.svg",
  36962. extra: 1687/1667,
  36963. bottom: 69/1756
  36964. }
  36965. },
  36966. backHuman: {
  36967. height: math.unit(5 + 7/12, "feet"),
  36968. name: "Back (Human)",
  36969. image: {
  36970. source: "./media/characters/alek-dryagan/back-human.svg",
  36971. extra: 1670/1649,
  36972. bottom: 65/1735
  36973. }
  36974. },
  36975. frontDemi: {
  36976. height: math.unit(65, "feet"),
  36977. name: "Front (Demi)",
  36978. image: {
  36979. source: "./media/characters/alek-dryagan/front-demi.svg",
  36980. extra: 1669/1642,
  36981. bottom: 49/1718
  36982. }
  36983. },
  36984. backDemi: {
  36985. height: math.unit(65, "feet"),
  36986. name: "Back (Demi)",
  36987. image: {
  36988. source: "./media/characters/alek-dryagan/back-demi.svg",
  36989. extra: 1658/1637,
  36990. bottom: 40/1698
  36991. }
  36992. },
  36993. mawHuman: {
  36994. height: math.unit(0.3, "feet"),
  36995. name: "Maw (Human)",
  36996. image: {
  36997. source: "./media/characters/alek-dryagan/maw-human.svg"
  36998. }
  36999. },
  37000. mawDemi: {
  37001. height: math.unit(3.8, "feet"),
  37002. name: "Maw (Demi)",
  37003. image: {
  37004. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(5 + 7/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37018. {
  37019. frontHuman: {
  37020. height: math.unit(5 + 2/12, "feet"),
  37021. name: "Front (Human)",
  37022. image: {
  37023. source: "./media/characters/gen/front-human.svg",
  37024. extra: 1627/1538,
  37025. bottom: 71/1698
  37026. }
  37027. },
  37028. backHuman: {
  37029. height: math.unit(5 + 2/12, "feet"),
  37030. name: "Back (Human)",
  37031. image: {
  37032. source: "./media/characters/gen/back-human.svg",
  37033. extra: 1638/1548,
  37034. bottom: 69/1707
  37035. }
  37036. },
  37037. frontDemi: {
  37038. height: math.unit(5 + 2/12, "feet"),
  37039. name: "Front (Demi)",
  37040. image: {
  37041. source: "./media/characters/gen/front-demi.svg",
  37042. extra: 1627/1538,
  37043. bottom: 71/1698
  37044. }
  37045. },
  37046. backDemi: {
  37047. height: math.unit(5 + 2/12, "feet"),
  37048. name: "Back (Demi)",
  37049. image: {
  37050. source: "./media/characters/gen/back-demi.svg",
  37051. extra: 1638/1548,
  37052. bottom: 69/1707
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(5 + 2/12, "feet"),
  37060. default: true
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37066. {
  37067. frontImp: {
  37068. height: math.unit(1 + 11/12, "feet"),
  37069. name: "Front (Imp)",
  37070. image: {
  37071. source: "./media/characters/max-kobold/front-imp.svg",
  37072. extra: 1238/1134,
  37073. bottom: 81/1319
  37074. }
  37075. },
  37076. backImp: {
  37077. height: math.unit(1 + 11/12, "feet"),
  37078. name: "Back (Imp)",
  37079. image: {
  37080. source: "./media/characters/max-kobold/back-imp.svg",
  37081. extra: 1334/1175,
  37082. bottom: 34/1368
  37083. }
  37084. },
  37085. frontDemi: {
  37086. height: math.unit(5 + 9/12, "feet"),
  37087. name: "Front (Demi)",
  37088. image: {
  37089. source: "./media/characters/max-kobold/front-demi.svg",
  37090. extra: 1715/1685,
  37091. bottom: 54/1769
  37092. }
  37093. },
  37094. backDemi: {
  37095. height: math.unit(5 + 9/12, "feet"),
  37096. name: "Back (Demi)",
  37097. image: {
  37098. source: "./media/characters/max-kobold/back-demi.svg",
  37099. extra: 1752/1729,
  37100. bottom: 41/1793
  37101. }
  37102. },
  37103. handImp: {
  37104. height: math.unit(0.45, "feet"),
  37105. name: "Hand (Imp)",
  37106. image: {
  37107. source: "./media/characters/max-kobold/hand.svg"
  37108. }
  37109. },
  37110. pawImp: {
  37111. height: math.unit(0.46, "feet"),
  37112. name: "Paw (Imp)",
  37113. image: {
  37114. source: "./media/characters/max-kobold/paw.svg"
  37115. }
  37116. },
  37117. handDemi: {
  37118. height: math.unit(0.80, "feet"),
  37119. name: "Hand (Demi)",
  37120. image: {
  37121. source: "./media/characters/max-kobold/hand.svg"
  37122. }
  37123. },
  37124. pawDemi: {
  37125. height: math.unit(1.1, "feet"),
  37126. name: "Paw (Demi)",
  37127. image: {
  37128. source: "./media/characters/max-kobold/paw.svg"
  37129. }
  37130. },
  37131. headImp: {
  37132. height: math.unit(1.33, "feet"),
  37133. name: "Head (Imp)",
  37134. image: {
  37135. source: "./media/characters/max-kobold/head-imp.svg"
  37136. }
  37137. },
  37138. mawImp: {
  37139. height: math.unit(0.75, "feet"),
  37140. name: "Maw (Imp)",
  37141. image: {
  37142. source: "./media/characters/max-kobold/maw-imp.svg"
  37143. }
  37144. },
  37145. mawDemi: {
  37146. height: math.unit(0.42, "feet"),
  37147. name: "Maw (Demi)",
  37148. image: {
  37149. source: "./media/characters/max-kobold/maw-demi.svg"
  37150. }
  37151. },
  37152. },
  37153. [
  37154. {
  37155. name: "Normal",
  37156. height: math.unit(1 + 11/12, "feet"),
  37157. default: true
  37158. },
  37159. ]
  37160. ))
  37161. characterMakers.push(() => makeCharacter(
  37162. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37163. {
  37164. front: {
  37165. height: math.unit(7 + 5/12, "feet"),
  37166. name: "Front",
  37167. image: {
  37168. source: "./media/characters/carbon/front.svg",
  37169. extra: 1754/1689,
  37170. bottom: 65/1819
  37171. }
  37172. },
  37173. back: {
  37174. height: math.unit(7 + 5/12, "feet"),
  37175. name: "Back",
  37176. image: {
  37177. source: "./media/characters/carbon/back.svg",
  37178. extra: 1762/1695,
  37179. bottom: 24/1786
  37180. }
  37181. },
  37182. frontGigantamax: {
  37183. height: math.unit(150, "feet"),
  37184. name: "Front (Gigantamax)",
  37185. image: {
  37186. source: "./media/characters/carbon/front-gigantamax.svg",
  37187. extra: 1826/1669,
  37188. bottom: 59/1885
  37189. }
  37190. },
  37191. backGigantamax: {
  37192. height: math.unit(150, "feet"),
  37193. name: "Back (Gigantamax)",
  37194. image: {
  37195. source: "./media/characters/carbon/back-gigantamax.svg",
  37196. extra: 1796/1653,
  37197. bottom: 53/1849
  37198. }
  37199. },
  37200. maw: {
  37201. height: math.unit(0.48, "feet"),
  37202. name: "Maw",
  37203. image: {
  37204. source: "./media/characters/carbon/maw.svg"
  37205. }
  37206. },
  37207. mawGigantamax: {
  37208. height: math.unit(7.5, "feet"),
  37209. name: "Maw (Gigantamax)",
  37210. image: {
  37211. source: "./media/characters/carbon/maw-gigantamax.svg"
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(7 + 5/12, "feet"),
  37219. default: true
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(6, "feet"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/maverick/front.svg",
  37231. extra: 1672/1661,
  37232. bottom: 85/1757
  37233. }
  37234. },
  37235. back: {
  37236. height: math.unit(6, "feet"),
  37237. name: "Back",
  37238. image: {
  37239. source: "./media/characters/maverick/back.svg",
  37240. extra: 1642/1631,
  37241. bottom: 38/1680
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(6, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(15, "feet"),
  37258. weight: math.unit(615, "lb"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/grockle/front.svg",
  37262. extra: 1535/1427,
  37263. bottom: 56/1591
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(15, "feet"),
  37271. default: true
  37272. },
  37273. {
  37274. name: "Large",
  37275. height: math.unit(150, "feet")
  37276. },
  37277. {
  37278. name: "Macro",
  37279. height: math.unit(1876, "feet")
  37280. },
  37281. {
  37282. name: "Mega Macro",
  37283. height: math.unit(121940, "feet")
  37284. },
  37285. {
  37286. name: "Giga Macro",
  37287. height: math.unit(750, "km")
  37288. },
  37289. {
  37290. name: "Tera Macro",
  37291. height: math.unit(750000, "km")
  37292. },
  37293. {
  37294. name: "Galactic",
  37295. height: math.unit(1.4e5, "km")
  37296. },
  37297. {
  37298. name: "Godlike",
  37299. height: math.unit(9.8e280, "galaxies")
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(11, "meters"),
  37308. weight: math.unit(20, "tonnes"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/alistair/front.svg",
  37312. extra: 1265/1009,
  37313. bottom: 93/1358
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(11, "meters"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(5 + 8/12, "feet"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/haruka/front.svg",
  37333. extra: 2012/1952,
  37334. bottom: 0/2012
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(5 + 8/12, "feet"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37348. {
  37349. back: {
  37350. height: math.unit(9, "feet"),
  37351. name: "Back",
  37352. image: {
  37353. source: "./media/characters/vivian-sylveon/back.svg",
  37354. extra: 1853/1714,
  37355. bottom: 0/1853
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(9, "feet"),
  37363. default: true
  37364. },
  37365. {
  37366. name: "Macro",
  37367. height: math.unit(500, "feet")
  37368. },
  37369. {
  37370. name: "Megamacro",
  37371. height: math.unit(600, "miles")
  37372. },
  37373. {
  37374. name: "Gigamacro",
  37375. height: math.unit(30000, "miles")
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37381. {
  37382. anthro: {
  37383. height: math.unit(5 + 10/12, "feet"),
  37384. weight: math.unit(100, "lb"),
  37385. name: "Anthro",
  37386. image: {
  37387. source: "./media/characters/daiki/anthro.svg",
  37388. extra: 1115/1027,
  37389. bottom: 69/1184
  37390. }
  37391. },
  37392. feral: {
  37393. height: math.unit(200, "feet"),
  37394. name: "Feral",
  37395. image: {
  37396. source: "./media/characters/daiki/feral.svg",
  37397. extra: 1256/313,
  37398. bottom: 39/1295
  37399. }
  37400. },
  37401. feralHead: {
  37402. height: math.unit(171, "feet"),
  37403. name: "Feral Head",
  37404. image: {
  37405. source: "./media/characters/daiki/feral-head.svg"
  37406. }
  37407. },
  37408. manaDragon: {
  37409. height: math.unit(170, "meters"),
  37410. name: "Mana-dragon",
  37411. image: {
  37412. source: "./media/characters/daiki/mana-dragon.svg",
  37413. extra: 763/420,
  37414. bottom: 97/860
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(5 + 10/12, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37428. {
  37429. fullyEquippedFront: {
  37430. height: math.unit(3 + 1/12, "feet"),
  37431. weight: math.unit(24, "lb"),
  37432. name: "Fully Equipped (Front)",
  37433. image: {
  37434. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37435. extra: 687/605,
  37436. bottom: 18/705
  37437. }
  37438. },
  37439. fullyEquippedBack: {
  37440. height: math.unit(3 + 1/12, "feet"),
  37441. weight: math.unit(24, "lb"),
  37442. name: "Fully Equipped (Back)",
  37443. image: {
  37444. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37445. extra: 689/590,
  37446. bottom: 18/707
  37447. }
  37448. },
  37449. dailyWear: {
  37450. height: math.unit(3 + 1/12, "feet"),
  37451. weight: math.unit(24, "lb"),
  37452. name: "Daily Wear",
  37453. image: {
  37454. source: "./media/characters/tea-spot/daily-wear.svg",
  37455. extra: 701/620,
  37456. bottom: 21/722
  37457. }
  37458. },
  37459. maidWork: {
  37460. height: math.unit(3 + 1/12, "feet"),
  37461. weight: math.unit(24, "lb"),
  37462. name: "Maid Work",
  37463. image: {
  37464. source: "./media/characters/tea-spot/maid-work.svg",
  37465. extra: 693/609,
  37466. bottom: 15/708
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(3 + 1/12, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(175, "cm"),
  37483. weight: math.unit(75, "kg"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/chee/front.svg",
  37487. extra: 1796/1740,
  37488. bottom: 40/1836
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Micro-Micro",
  37495. height: math.unit(1, "nm")
  37496. },
  37497. {
  37498. name: "Micro-erst",
  37499. height: math.unit(1, "micrometer")
  37500. },
  37501. {
  37502. name: "Micro-er",
  37503. height: math.unit(1, "cm")
  37504. },
  37505. {
  37506. name: "Normal",
  37507. height: math.unit(175, "cm"),
  37508. default: true
  37509. },
  37510. {
  37511. name: "Macro",
  37512. height: math.unit(100, "m")
  37513. },
  37514. {
  37515. name: "Macro-er",
  37516. height: math.unit(1, "km")
  37517. },
  37518. {
  37519. name: "Macro-erst",
  37520. height: math.unit(10, "km")
  37521. },
  37522. {
  37523. name: "Macro-Macro",
  37524. height: math.unit(100, "km")
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(11 + 9/12, "feet"),
  37533. weight: math.unit(935, "lb"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/kingsley/front.svg",
  37537. extra: 1803/1674,
  37538. bottom: 127/1930
  37539. }
  37540. },
  37541. frontNude: {
  37542. height: math.unit(11 + 9/12, "feet"),
  37543. weight: math.unit(935, "lb"),
  37544. name: "Front (Nude)",
  37545. image: {
  37546. source: "./media/characters/kingsley/front-nude.svg",
  37547. extra: 1803/1674,
  37548. bottom: 127/1930
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(11 + 9/12, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37562. {
  37563. side: {
  37564. height: math.unit(9, "feet"),
  37565. name: "Side",
  37566. image: {
  37567. source: "./media/characters/rymel/side.svg",
  37568. extra: 792/469,
  37569. bottom: 121/913
  37570. }
  37571. },
  37572. maw: {
  37573. height: math.unit(2.4, "meters"),
  37574. name: "Maw",
  37575. image: {
  37576. source: "./media/characters/rymel/maw.svg"
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "House Drake",
  37583. height: math.unit(2, "feet")
  37584. },
  37585. {
  37586. name: "Reduced",
  37587. height: math.unit(4.5, "feet")
  37588. },
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(9, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(1.74, "meters"),
  37601. weight: math.unit(55, "kg"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/rubus/front.svg",
  37605. extra: 1894/1742,
  37606. bottom: 44/1938
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(1.74, "meters"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37620. {
  37621. front: {
  37622. height: math.unit(5 + 2/12, "feet"),
  37623. weight: math.unit(112, "lb"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/cassie-kingston/front.svg",
  37627. extra: 1438/1390,
  37628. bottom: 47/1485
  37629. }
  37630. },
  37631. },
  37632. [
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(5 + 2/12, "feet"),
  37636. default: true
  37637. },
  37638. {
  37639. name: "Macro",
  37640. height: math.unit(128, "feet")
  37641. },
  37642. {
  37643. name: "Megamacro",
  37644. height: math.unit(2.56, "miles")
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(7, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/fox/front.svg",
  37656. extra: 1798/1703,
  37657. bottom: 55/1853
  37658. }
  37659. },
  37660. back: {
  37661. height: math.unit(7, "feet"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/fox/back.svg",
  37665. extra: 1748/1649,
  37666. bottom: 32/1780
  37667. }
  37668. },
  37669. head: {
  37670. height: math.unit(1.95, "feet"),
  37671. name: "Head",
  37672. image: {
  37673. source: "./media/characters/fox/head.svg"
  37674. }
  37675. },
  37676. dick: {
  37677. height: math.unit(1.33, "feet"),
  37678. name: "Dick",
  37679. image: {
  37680. source: "./media/characters/fox/dick.svg"
  37681. }
  37682. },
  37683. foot: {
  37684. height: math.unit(1, "feet"),
  37685. name: "Foot",
  37686. image: {
  37687. source: "./media/characters/fox/foot.svg"
  37688. }
  37689. },
  37690. paw: {
  37691. height: math.unit(0.92, "feet"),
  37692. name: "Paw",
  37693. image: {
  37694. source: "./media/characters/fox/paw.svg"
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Small",
  37701. height: math.unit(3, "inches")
  37702. },
  37703. {
  37704. name: "\"Realistic\"",
  37705. height: math.unit(7, "feet")
  37706. },
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(150, "feet"),
  37710. default: true
  37711. },
  37712. {
  37713. name: "BIG",
  37714. height: math.unit(1200, "feet")
  37715. },
  37716. {
  37717. name: "👀",
  37718. height: math.unit(5, "miles")
  37719. },
  37720. {
  37721. name: "👀👀👀",
  37722. height: math.unit(64, "miles")
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37728. {
  37729. front: {
  37730. height: math.unit(625, "feet"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/asonja-rossa/front.svg",
  37734. extra: 1833/1686,
  37735. bottom: 24/1857
  37736. }
  37737. },
  37738. back: {
  37739. height: math.unit(625, "feet"),
  37740. name: "Back",
  37741. image: {
  37742. source: "./media/characters/asonja-rossa/back.svg",
  37743. extra: 1852/1753,
  37744. bottom: 26/1878
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Macro",
  37751. height: math.unit(625, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37758. {
  37759. side: {
  37760. height: math.unit(8, "feet"),
  37761. name: "Side",
  37762. image: {
  37763. source: "./media/characters/rezukii/side.svg",
  37764. extra: 979/542,
  37765. bottom: 87/1066
  37766. }
  37767. },
  37768. sitting: {
  37769. height: math.unit(14.6, "feet"),
  37770. name: "Sitting",
  37771. image: {
  37772. source: "./media/characters/rezukii/sitting.svg",
  37773. extra: 1023/813,
  37774. bottom: 45/1068
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Tiny",
  37781. height: math.unit(2, "feet")
  37782. },
  37783. {
  37784. name: "Smol",
  37785. height: math.unit(4, "feet")
  37786. },
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(8, "feet"),
  37790. default: true
  37791. },
  37792. {
  37793. name: "Big",
  37794. height: math.unit(12, "feet")
  37795. },
  37796. {
  37797. name: "Macro",
  37798. height: math.unit(30, "feet")
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37804. {
  37805. front: {
  37806. height: math.unit(14, "feet"),
  37807. weight: math.unit(9.5, "tonnes"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/dawnheart/front.svg",
  37811. extra: 2792/2675,
  37812. bottom: 64/2856
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(14, "feet"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37826. {
  37827. front: {
  37828. height: math.unit(1.7, "m"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/gladi/front.svg",
  37832. extra: 1460/1362,
  37833. bottom: 19/1479
  37834. }
  37835. },
  37836. back: {
  37837. height: math.unit(1.7, "m"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/gladi/back.svg",
  37841. extra: 1459/1357,
  37842. bottom: 12/1471
  37843. }
  37844. },
  37845. feral: {
  37846. height: math.unit(2.05, "m"),
  37847. name: "Feral",
  37848. image: {
  37849. source: "./media/characters/gladi/feral.svg",
  37850. extra: 821/557,
  37851. bottom: 91/912
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Shortest",
  37858. height: math.unit(70, "cm")
  37859. },
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(1.7, "m")
  37863. },
  37864. {
  37865. name: "Macro",
  37866. height: math.unit(10, "m"),
  37867. default: true
  37868. },
  37869. {
  37870. name: "Tallest",
  37871. height: math.unit(200, "m")
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37877. {
  37878. front: {
  37879. height: math.unit(5 + 7/12, "feet"),
  37880. weight: math.unit(2, "tons"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/erdno/front.svg",
  37884. extra: 1234/1129,
  37885. bottom: 35/1269
  37886. }
  37887. },
  37888. angled: {
  37889. height: math.unit(5 + 7/12, "feet"),
  37890. weight: math.unit(2, "tons"),
  37891. name: "Angled",
  37892. image: {
  37893. source: "./media/characters/erdno/angled.svg",
  37894. extra: 1185/1139,
  37895. bottom: 36/1221
  37896. }
  37897. },
  37898. side: {
  37899. height: math.unit(5 + 7/12, "feet"),
  37900. weight: math.unit(2, "tons"),
  37901. name: "Side",
  37902. image: {
  37903. source: "./media/characters/erdno/side.svg",
  37904. extra: 1191/1144,
  37905. bottom: 40/1231
  37906. }
  37907. },
  37908. back: {
  37909. height: math.unit(5 + 7/12, "feet"),
  37910. weight: math.unit(2, "tons"),
  37911. name: "Back",
  37912. image: {
  37913. source: "./media/characters/erdno/back.svg",
  37914. extra: 1202/1146,
  37915. bottom: 17/1219
  37916. }
  37917. },
  37918. frontNsfw: {
  37919. height: math.unit(5 + 7/12, "feet"),
  37920. weight: math.unit(2, "tons"),
  37921. name: "Front (NSFW)",
  37922. image: {
  37923. source: "./media/characters/erdno/front-nsfw.svg",
  37924. extra: 1234/1129,
  37925. bottom: 35/1269
  37926. }
  37927. },
  37928. angledNsfw: {
  37929. height: math.unit(5 + 7/12, "feet"),
  37930. weight: math.unit(2, "tons"),
  37931. name: "Angled (NSFW)",
  37932. image: {
  37933. source: "./media/characters/erdno/angled-nsfw.svg",
  37934. extra: 1185/1139,
  37935. bottom: 36/1221
  37936. }
  37937. },
  37938. sideNsfw: {
  37939. height: math.unit(5 + 7/12, "feet"),
  37940. weight: math.unit(2, "tons"),
  37941. name: "Side (NSFW)",
  37942. image: {
  37943. source: "./media/characters/erdno/side-nsfw.svg",
  37944. extra: 1191/1144,
  37945. bottom: 40/1231
  37946. }
  37947. },
  37948. backNsfw: {
  37949. height: math.unit(5 + 7/12, "feet"),
  37950. weight: math.unit(2, "tons"),
  37951. name: "Back (NSFW)",
  37952. image: {
  37953. source: "./media/characters/erdno/back-nsfw.svg",
  37954. extra: 1202/1146,
  37955. bottom: 17/1219
  37956. }
  37957. },
  37958. frontHyper: {
  37959. height: math.unit(5 + 7/12, "feet"),
  37960. weight: math.unit(2, "tons"),
  37961. name: "Front (Hyper)",
  37962. image: {
  37963. source: "./media/characters/erdno/front-hyper.svg",
  37964. extra: 1298/1136,
  37965. bottom: 35/1333
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(5 + 7/12, "feet"),
  37973. default: true
  37974. },
  37975. {
  37976. name: "Big",
  37977. height: math.unit(5.7, "meters")
  37978. },
  37979. {
  37980. name: "Macro",
  37981. height: math.unit(5.7, "kilometers")
  37982. },
  37983. {
  37984. name: "Megamacro",
  37985. height: math.unit(5.7, "earths")
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(5 + 10/12, "feet"),
  37994. weight: math.unit(150, "lb"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/jamie/front.svg",
  37998. extra: 1908/1768,
  37999. bottom: 19/1927
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Minimum",
  38006. height: math.unit(2, "cm")
  38007. },
  38008. {
  38009. name: "Micro",
  38010. height: math.unit(3, "inches")
  38011. },
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(5 + 10/12, "feet"),
  38015. default: true
  38016. },
  38017. {
  38018. name: "Macro",
  38019. height: math.unit(150, "feet")
  38020. },
  38021. {
  38022. name: "Megamacro",
  38023. height: math.unit(10000, "m")
  38024. },
  38025. ]
  38026. ))
  38027. characterMakers.push(() => makeCharacter(
  38028. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38029. {
  38030. front: {
  38031. height: math.unit(2, "meters"),
  38032. weight: math.unit(100, "kg"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/shiron/front.svg",
  38036. extra: 2103/1985,
  38037. bottom: 98/2201
  38038. }
  38039. },
  38040. back: {
  38041. height: math.unit(2, "meters"),
  38042. weight: math.unit(100, "kg"),
  38043. name: "Back",
  38044. image: {
  38045. source: "./media/characters/shiron/back.svg",
  38046. extra: 2110/2015,
  38047. bottom: 89/2199
  38048. }
  38049. },
  38050. hand: {
  38051. height: math.unit(0.96, "feet"),
  38052. name: "Hand",
  38053. image: {
  38054. source: "./media/characters/shiron/hand.svg"
  38055. }
  38056. },
  38057. foot: {
  38058. height: math.unit(1.464, "feet"),
  38059. name: "Foot",
  38060. image: {
  38061. source: "./media/characters/shiron/foot.svg"
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(2, "meters")
  38069. },
  38070. {
  38071. name: "Macro",
  38072. height: math.unit(500, "meters"),
  38073. default: true
  38074. },
  38075. {
  38076. name: "Megamacro",
  38077. height: math.unit(20, "km")
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(6, "feet"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/sam/front.svg",
  38089. extra: 849/826,
  38090. bottom: 19/868
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Normal",
  38097. height: math.unit(6, "feet"),
  38098. default: true
  38099. },
  38100. ]
  38101. ))
  38102. characterMakers.push(() => makeCharacter(
  38103. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38104. {
  38105. front: {
  38106. height: math.unit(8 + 4/12, "feet"),
  38107. weight: math.unit(122, "kg"),
  38108. name: "Front",
  38109. image: {
  38110. source: "./media/characters/namori-kurogawa/front.svg",
  38111. extra: 1894/1576,
  38112. bottom: 34/1928
  38113. }
  38114. },
  38115. },
  38116. [
  38117. {
  38118. name: "Normal",
  38119. height: math.unit(8 + 4/12, "feet"),
  38120. default: true
  38121. },
  38122. ]
  38123. ))
  38124. characterMakers.push(() => makeCharacter(
  38125. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38126. {
  38127. front: {
  38128. height: math.unit(9, "feet"),
  38129. weight: math.unit(621, "lb"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/unmru/front.svg",
  38133. extra: 1853/1747,
  38134. bottom: 73/1926
  38135. }
  38136. },
  38137. side: {
  38138. height: math.unit(9, "feet"),
  38139. weight: math.unit(621, "lb"),
  38140. name: "Side",
  38141. image: {
  38142. source: "./media/characters/unmru/side.svg",
  38143. extra: 1781/1671,
  38144. bottom: 127/1908
  38145. }
  38146. },
  38147. back: {
  38148. height: math.unit(9, "feet"),
  38149. weight: math.unit(621, "lb"),
  38150. name: "Back",
  38151. image: {
  38152. source: "./media/characters/unmru/back.svg",
  38153. extra: 1894/1765,
  38154. bottom: 75/1969
  38155. }
  38156. },
  38157. dick: {
  38158. height: math.unit(3, "feet"),
  38159. weight: math.unit(35, "lb"),
  38160. name: "Dick",
  38161. image: {
  38162. source: "./media/characters/unmru/dick.svg"
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(9, "feet")
  38170. },
  38171. {
  38172. name: "Natural",
  38173. height: math.unit(27, "feet"),
  38174. default: true
  38175. },
  38176. {
  38177. name: "Giant",
  38178. height: math.unit(90, "feet")
  38179. },
  38180. {
  38181. name: "Kaiju",
  38182. height: math.unit(270, "feet")
  38183. },
  38184. {
  38185. name: "Macro",
  38186. height: math.unit(900, "feet")
  38187. },
  38188. {
  38189. name: "Macro+",
  38190. height: math.unit(2700, "feet")
  38191. },
  38192. {
  38193. name: "Megamacro",
  38194. height: math.unit(9000, "feet")
  38195. },
  38196. {
  38197. name: "City-Crushing",
  38198. height: math.unit(27000, "feet")
  38199. },
  38200. {
  38201. name: "Mountain-Mashing",
  38202. height: math.unit(90000, "feet")
  38203. },
  38204. {
  38205. name: "Earth-Eclipsing",
  38206. height: math.unit(2.7e8, "feet")
  38207. },
  38208. {
  38209. name: "Sol-Swallowing",
  38210. height: math.unit(9e10, "feet")
  38211. },
  38212. {
  38213. name: "Majoris-Munching",
  38214. height: math.unit(2.7e13, "feet")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38220. {
  38221. front: {
  38222. height: math.unit(1, "inch"),
  38223. name: "Front",
  38224. image: {
  38225. source: "./media/characters/squeaks-mouse/front.svg",
  38226. extra: 352/308,
  38227. bottom: 25/377
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Micro",
  38234. height: math.unit(1, "inch"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38241. {
  38242. side: {
  38243. height: math.unit(35, "feet"),
  38244. name: "Side",
  38245. image: {
  38246. source: "./media/characters/sayko/side.svg",
  38247. extra: 1697/1021,
  38248. bottom: 82/1779
  38249. }
  38250. },
  38251. head: {
  38252. height: math.unit(16, "feet"),
  38253. name: "Head",
  38254. image: {
  38255. source: "./media/characters/sayko/head.svg"
  38256. }
  38257. },
  38258. forepaw: {
  38259. height: math.unit(7.85, "feet"),
  38260. name: "Forepaw",
  38261. image: {
  38262. source: "./media/characters/sayko/forepaw.svg"
  38263. }
  38264. },
  38265. hindpaw: {
  38266. height: math.unit(8.8, "feet"),
  38267. name: "Hindpaw",
  38268. image: {
  38269. source: "./media/characters/sayko/hindpaw.svg"
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(35, "feet"),
  38277. default: true
  38278. },
  38279. {
  38280. name: "Colossus",
  38281. height: math.unit(100, "meters")
  38282. },
  38283. {
  38284. name: "\"Small\" Deity",
  38285. height: math.unit(1, "km")
  38286. },
  38287. {
  38288. name: "\"Large\" Deity",
  38289. height: math.unit(15, "km")
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(6, "feet"),
  38298. weight: math.unit(250, "lb"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/mukiro/front.svg",
  38302. extra: 1368/1310,
  38303. bottom: 34/1402
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(6, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38317. {
  38318. front: {
  38319. height: math.unit(12 + 4/12, "feet"),
  38320. name: "Front",
  38321. image: {
  38322. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38323. extra: 1346/1311,
  38324. bottom: 65/1411
  38325. }
  38326. },
  38327. },
  38328. [
  38329. {
  38330. name: "Base",
  38331. height: math.unit(12 + 4/12, "feet"),
  38332. default: true
  38333. },
  38334. {
  38335. name: "Macro",
  38336. height: math.unit(150, "feet")
  38337. },
  38338. {
  38339. name: "Mega",
  38340. height: math.unit(2, "miles")
  38341. },
  38342. {
  38343. name: "Demi God",
  38344. height: math.unit(4, "AU")
  38345. },
  38346. {
  38347. name: "God Size",
  38348. height: math.unit(1, "universe")
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38354. {
  38355. front: {
  38356. height: math.unit(3 + 3/12, "feet"),
  38357. weight: math.unit(88, "lb"),
  38358. name: "Front",
  38359. image: {
  38360. source: "./media/characters/trey/front.svg",
  38361. extra: 1815/1509,
  38362. bottom: 60/1875
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(3 + 3/12, "feet"),
  38370. default: true
  38371. },
  38372. ]
  38373. ))
  38374. characterMakers.push(() => makeCharacter(
  38375. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38376. {
  38377. front: {
  38378. height: math.unit(4, "meters"),
  38379. name: "Front",
  38380. image: {
  38381. source: "./media/characters/adelonda/front.svg",
  38382. extra: 1077/982,
  38383. bottom: 39/1116
  38384. }
  38385. },
  38386. back: {
  38387. height: math.unit(4, "meters"),
  38388. name: "Back",
  38389. image: {
  38390. source: "./media/characters/adelonda/back.svg",
  38391. extra: 1105/1003,
  38392. bottom: 25/1130
  38393. }
  38394. },
  38395. feral: {
  38396. height: math.unit(40/1.5, "meters"),
  38397. name: "Feral",
  38398. image: {
  38399. source: "./media/characters/adelonda/feral.svg",
  38400. extra: 597/271,
  38401. bottom: 387/984
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Normal",
  38408. height: math.unit(4, "meters"),
  38409. default: true
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(8 + 4/12, "feet"),
  38418. weight: math.unit(670, "lb"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/acadiel/front.svg",
  38422. extra: 1901/1595,
  38423. bottom: 142/2043
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(8 + 4/12, "feet"),
  38431. default: true
  38432. },
  38433. {
  38434. name: "Macro",
  38435. height: math.unit(200, "feet")
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(6 + 2/12, "feet"),
  38444. weight: math.unit(185, "lb"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/kayne-ein/front.svg",
  38448. extra: 1780/1560,
  38449. bottom: 81/1861
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(6 + 2/12, "feet"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Transformation Stage",
  38461. height: math.unit(15, "feet")
  38462. },
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(150, "feet")
  38466. },
  38467. {
  38468. name: "Earth's Shadow",
  38469. height: math.unit(6200, "miles")
  38470. },
  38471. {
  38472. name: "Universal Demon",
  38473. height: math.unit(28e9, "parsecs")
  38474. },
  38475. {
  38476. name: "Multiverse God",
  38477. height: math.unit(3, "multiverses")
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38483. {
  38484. front: {
  38485. height: math.unit(5 + 5/12, "feet"),
  38486. name: "Front",
  38487. image: {
  38488. source: "./media/characters/fawn/front.svg",
  38489. extra: 1873/1731,
  38490. bottom: 95/1968
  38491. }
  38492. },
  38493. back: {
  38494. height: math.unit(5 + 5/12, "feet"),
  38495. name: "Back",
  38496. image: {
  38497. source: "./media/characters/fawn/back.svg",
  38498. extra: 1813/1700,
  38499. bottom: 14/1827
  38500. }
  38501. },
  38502. hoof: {
  38503. height: math.unit(1.45, "feet"),
  38504. name: "Hoof",
  38505. image: {
  38506. source: "./media/characters/fawn/hoof.svg"
  38507. }
  38508. },
  38509. },
  38510. [
  38511. {
  38512. name: "Normal",
  38513. height: math.unit(5 + 5/12, "feet"),
  38514. default: true
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(2 + 5/12, "feet"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/orion/front.svg",
  38526. extra: 1366/1304,
  38527. bottom: 43/1409
  38528. }
  38529. },
  38530. paw: {
  38531. height: math.unit(0.52, "feet"),
  38532. name: "Paw",
  38533. image: {
  38534. source: "./media/characters/orion/paw.svg"
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(2 + 5/12, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(5 + 10/12, "feet"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/vera/front.svg",
  38554. extra: 1680/1575,
  38555. bottom: 49/1729
  38556. }
  38557. },
  38558. back: {
  38559. height: math.unit(5 + 10/12, "feet"),
  38560. name: "Back",
  38561. image: {
  38562. source: "./media/characters/vera/back.svg",
  38563. extra: 1700/1588,
  38564. bottom: 18/1718
  38565. }
  38566. },
  38567. arcanine: {
  38568. height: math.unit(6 + 8/12, "feet"),
  38569. name: "Arcanine",
  38570. image: {
  38571. source: "./media/characters/vera/arcanine.svg",
  38572. extra: 1590/1511,
  38573. bottom: 71/1661
  38574. }
  38575. },
  38576. maw: {
  38577. height: math.unit(0.82, "feet"),
  38578. name: "Maw",
  38579. image: {
  38580. source: "./media/characters/vera/maw.svg"
  38581. }
  38582. },
  38583. mawArcanine: {
  38584. height: math.unit(0.97, "feet"),
  38585. name: "Maw (Arcanine)",
  38586. image: {
  38587. source: "./media/characters/vera/maw-arcanine.svg"
  38588. }
  38589. },
  38590. paw: {
  38591. height: math.unit(0.75, "feet"),
  38592. name: "Paw",
  38593. image: {
  38594. source: "./media/characters/vera/paw.svg"
  38595. }
  38596. },
  38597. pawprint: {
  38598. height: math.unit(0.52, "feet"),
  38599. name: "Pawprint",
  38600. image: {
  38601. source: "./media/characters/vera/pawprint.svg"
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Normal",
  38608. height: math.unit(5 + 10/12, "feet"),
  38609. default: true
  38610. },
  38611. {
  38612. name: "Macro",
  38613. height: math.unit(75, "feet")
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(4, "feet"),
  38622. weight: math.unit(40, "lb"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/orvan-rabbit/front.svg",
  38626. extra: 1896/1642,
  38627. bottom: 29/1925
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(4, "feet"),
  38635. default: true
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(6, "feet"),
  38644. weight: math.unit(168, "lb"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/lisa/front.svg",
  38648. extra: 2065/1867,
  38649. bottom: 46/2111
  38650. }
  38651. },
  38652. back: {
  38653. height: math.unit(6, "feet"),
  38654. weight: math.unit(168, "lb"),
  38655. name: "Back",
  38656. image: {
  38657. source: "./media/characters/lisa/back.svg",
  38658. extra: 1982/1838,
  38659. bottom: 29/2011
  38660. }
  38661. },
  38662. maw: {
  38663. height: math.unit(0.81, "feet"),
  38664. name: "Maw",
  38665. image: {
  38666. source: "./media/characters/lisa/maw.svg"
  38667. }
  38668. },
  38669. paw: {
  38670. height: math.unit(0.9, "feet"),
  38671. name: "Paw",
  38672. image: {
  38673. source: "./media/characters/lisa/paw.svg"
  38674. }
  38675. },
  38676. caribousune: {
  38677. height: math.unit(7 + 2/12, "feet"),
  38678. weight: math.unit(268, "lb"),
  38679. name: "Caribousune",
  38680. image: {
  38681. source: "./media/characters/lisa/caribousune.svg",
  38682. extra: 1843/1633,
  38683. bottom: 29/1872
  38684. }
  38685. },
  38686. frontCaribousune: {
  38687. height: math.unit(7 + 2/12, "feet"),
  38688. weight: math.unit(268, "lb"),
  38689. name: "Front (Caribousune)",
  38690. image: {
  38691. source: "./media/characters/lisa/front-caribousune.svg",
  38692. extra: 1818/1638,
  38693. bottom: 52/1870
  38694. }
  38695. },
  38696. sideCaribousune: {
  38697. height: math.unit(7 + 2/12, "feet"),
  38698. weight: math.unit(268, "lb"),
  38699. name: "Side (Caribousune)",
  38700. image: {
  38701. source: "./media/characters/lisa/side-caribousune.svg",
  38702. extra: 1851/1635,
  38703. bottom: 16/1867
  38704. }
  38705. },
  38706. backCaribousune: {
  38707. height: math.unit(7 + 2/12, "feet"),
  38708. weight: math.unit(268, "lb"),
  38709. name: "Back (Caribousune)",
  38710. image: {
  38711. source: "./media/characters/lisa/back-caribousune.svg",
  38712. extra: 1801/1604,
  38713. bottom: 44/1845
  38714. }
  38715. },
  38716. caribou: {
  38717. height: math.unit(7 + 2/12, "feet"),
  38718. weight: math.unit(268, "lb"),
  38719. name: "Caribou",
  38720. image: {
  38721. source: "./media/characters/lisa/caribou.svg",
  38722. extra: 1843/1633,
  38723. bottom: 29/1872
  38724. }
  38725. },
  38726. frontCaribou: {
  38727. height: math.unit(7 + 2/12, "feet"),
  38728. weight: math.unit(268, "lb"),
  38729. name: "Front (Caribou)",
  38730. image: {
  38731. source: "./media/characters/lisa/front-caribou.svg",
  38732. extra: 1818/1638,
  38733. bottom: 52/1870
  38734. }
  38735. },
  38736. sideCaribou: {
  38737. height: math.unit(7 + 2/12, "feet"),
  38738. weight: math.unit(268, "lb"),
  38739. name: "Side (Caribou)",
  38740. image: {
  38741. source: "./media/characters/lisa/side-caribou.svg",
  38742. extra: 1851/1635,
  38743. bottom: 16/1867
  38744. }
  38745. },
  38746. backCaribou: {
  38747. height: math.unit(7 + 2/12, "feet"),
  38748. weight: math.unit(268, "lb"),
  38749. name: "Back (Caribou)",
  38750. image: {
  38751. source: "./media/characters/lisa/back-caribou.svg",
  38752. extra: 1801/1604,
  38753. bottom: 44/1845
  38754. }
  38755. },
  38756. mawCaribou: {
  38757. height: math.unit(1.45, "feet"),
  38758. name: "Maw (Caribou)",
  38759. image: {
  38760. source: "./media/characters/lisa/maw-caribou.svg"
  38761. }
  38762. },
  38763. mawCaribousune: {
  38764. height: math.unit(1.45, "feet"),
  38765. name: "Maw (Caribousune)",
  38766. image: {
  38767. source: "./media/characters/lisa/maw-caribousune.svg"
  38768. }
  38769. },
  38770. pawCaribousune: {
  38771. height: math.unit(1.61, "feet"),
  38772. name: "Paw (Caribou)",
  38773. image: {
  38774. source: "./media/characters/lisa/paw-caribousune.svg"
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Normal",
  38781. height: math.unit(6, "feet")
  38782. },
  38783. {
  38784. name: "God Size",
  38785. height: math.unit(72, "feet"),
  38786. default: true
  38787. },
  38788. {
  38789. name: "Towering",
  38790. height: math.unit(288, "feet")
  38791. },
  38792. {
  38793. name: "City Size",
  38794. height: math.unit(48384, "feet")
  38795. },
  38796. {
  38797. name: "Continental",
  38798. height: math.unit(4200, "miles")
  38799. },
  38800. {
  38801. name: "Planet Eater",
  38802. height: math.unit(42, "earths")
  38803. },
  38804. {
  38805. name: "Star Swallower",
  38806. height: math.unit(42, "solarradii")
  38807. },
  38808. {
  38809. name: "System Swallower",
  38810. height: math.unit(84000, "AU")
  38811. },
  38812. {
  38813. name: "Galaxy Gobbler",
  38814. height: math.unit(42, "galaxies")
  38815. },
  38816. {
  38817. name: "Universe Devourer",
  38818. height: math.unit(42, "universes")
  38819. },
  38820. {
  38821. name: "Multiverse Muncher",
  38822. height: math.unit(42, "multiverses")
  38823. },
  38824. ]
  38825. ))
  38826. characterMakers.push(() => makeCharacter(
  38827. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38828. {
  38829. front: {
  38830. height: math.unit(36, "feet"),
  38831. name: "Front",
  38832. image: {
  38833. source: "./media/characters/shadow-rat/front.svg",
  38834. extra: 1845/1758,
  38835. bottom: 83/1928
  38836. }
  38837. },
  38838. },
  38839. [
  38840. {
  38841. name: "Macro",
  38842. height: math.unit(36, "feet"),
  38843. default: true
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38849. {
  38850. side: {
  38851. height: math.unit(8, "feet"),
  38852. weight: math.unit(2630, "lb"),
  38853. name: "Side",
  38854. image: {
  38855. source: "./media/characters/torallia/side.svg",
  38856. extra: 2164/2021,
  38857. bottom: 371/2535
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Mortal Interaction",
  38864. height: math.unit(8, "feet")
  38865. },
  38866. {
  38867. name: "Natural",
  38868. height: math.unit(24, "feet"),
  38869. default: true
  38870. },
  38871. {
  38872. name: "Giant",
  38873. height: math.unit(80, "feet")
  38874. },
  38875. {
  38876. name: "Kaiju",
  38877. height: math.unit(240, "feet")
  38878. },
  38879. {
  38880. name: "Macro",
  38881. height: math.unit(800, "feet")
  38882. },
  38883. {
  38884. name: "Macro+",
  38885. height: math.unit(2400, "feet")
  38886. },
  38887. {
  38888. name: "Macro++",
  38889. height: math.unit(8000, "feet")
  38890. },
  38891. {
  38892. name: "City-Crushing",
  38893. height: math.unit(24000, "feet")
  38894. },
  38895. {
  38896. name: "Mountain-Mashing",
  38897. height: math.unit(80000, "feet")
  38898. },
  38899. {
  38900. name: "District Demolisher",
  38901. height: math.unit(240000, "feet")
  38902. },
  38903. {
  38904. name: "Tri-County Terror",
  38905. height: math.unit(800000, "feet")
  38906. },
  38907. {
  38908. name: "State Smasher",
  38909. height: math.unit(2.4e6, "feet")
  38910. },
  38911. {
  38912. name: "Nation Nemesis",
  38913. height: math.unit(8e6, "feet")
  38914. },
  38915. {
  38916. name: "Continent Cracker",
  38917. height: math.unit(2.4e7, "feet")
  38918. },
  38919. {
  38920. name: "Planet-Pillaging",
  38921. height: math.unit(8e7, "feet")
  38922. },
  38923. {
  38924. name: "Earth-Eclipsing",
  38925. height: math.unit(2.4e8, "feet")
  38926. },
  38927. {
  38928. name: "Jovian-Jostling",
  38929. height: math.unit(8e8, "feet")
  38930. },
  38931. {
  38932. name: "Gas Giant Gulper",
  38933. height: math.unit(2.4e9, "feet")
  38934. },
  38935. {
  38936. name: "Astral Annihilator",
  38937. height: math.unit(8e9, "feet")
  38938. },
  38939. {
  38940. name: "Celestial Conqueror",
  38941. height: math.unit(2.4e10, "feet")
  38942. },
  38943. {
  38944. name: "Sol-Swallowing",
  38945. height: math.unit(8e10, "feet")
  38946. },
  38947. {
  38948. name: "Hunter of the Heavens",
  38949. height: math.unit(2.4e13, "feet")
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(6 + 8/12, "feet"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/rebecca-pawlson/front.svg",
  38961. extra: 1737/1596,
  38962. bottom: 107/1844
  38963. }
  38964. },
  38965. back: {
  38966. height: math.unit(6 + 8/12, "feet"),
  38967. name: "Back",
  38968. image: {
  38969. source: "./media/characters/rebecca-pawlson/back.svg",
  38970. extra: 1702/1523,
  38971. bottom: 86/1788
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(6 + 8/12, "feet")
  38979. },
  38980. {
  38981. name: "Mini Macro",
  38982. height: math.unit(10, "feet"),
  38983. default: true
  38984. },
  38985. {
  38986. name: "Macro",
  38987. height: math.unit(100, "feet")
  38988. },
  38989. {
  38990. name: "Mega Macro",
  38991. height: math.unit(2500, "feet")
  38992. },
  38993. {
  38994. name: "Giga Macro",
  38995. height: math.unit(50, "miles")
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(7 + 6/12, "feet"),
  39004. weight: math.unit(600, "lb"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/moxie-nova/front.svg",
  39008. extra: 1734/1652,
  39009. bottom: 41/1775
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(7 + 6/12, "feet"),
  39017. default: true
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39023. {
  39024. goat: {
  39025. height: math.unit(4, "feet"),
  39026. weight: math.unit(180, "lb"),
  39027. name: "Goat",
  39028. image: {
  39029. source: "./media/characters/tiffany/goat.svg",
  39030. extra: 1845/1595,
  39031. bottom: 106/1951
  39032. }
  39033. },
  39034. front: {
  39035. height: math.unit(5, "feet"),
  39036. weight: math.unit(150, "lb"),
  39037. name: "Foxcoon",
  39038. image: {
  39039. source: "./media/characters/tiffany/foxcoon.svg",
  39040. extra: 1941/1845,
  39041. bottom: 58/1999
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(5, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(8, "feet"),
  39058. weight: math.unit(300, "lb"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/raxinath/front.svg",
  39062. extra: 1407/1309,
  39063. bottom: 39/1446
  39064. }
  39065. },
  39066. back: {
  39067. height: math.unit(8, "feet"),
  39068. weight: math.unit(300, "lb"),
  39069. name: "Back",
  39070. image: {
  39071. source: "./media/characters/raxinath/back.svg",
  39072. extra: 1405/1315,
  39073. bottom: 9/1414
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Speck",
  39080. height: math.unit(0.5, "nm")
  39081. },
  39082. {
  39083. name: "Micro",
  39084. height: math.unit(3, "inches")
  39085. },
  39086. {
  39087. name: "Kobold",
  39088. height: math.unit(3, "feet")
  39089. },
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(8, "feet"),
  39093. default: true
  39094. },
  39095. {
  39096. name: "Giant",
  39097. height: math.unit(50, "feet")
  39098. },
  39099. {
  39100. name: "Macro",
  39101. height: math.unit(1000, "feet")
  39102. },
  39103. {
  39104. name: "Megamacro",
  39105. height: math.unit(1, "mile")
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(10, "feet"),
  39114. weight: math.unit(1442, "lb"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/mal-dragon/front.svg",
  39118. extra: 1515/1444,
  39119. bottom: 113/1628
  39120. }
  39121. },
  39122. back: {
  39123. height: math.unit(10, "feet"),
  39124. weight: math.unit(1442, "lb"),
  39125. name: "Back",
  39126. image: {
  39127. source: "./media/characters/mal-dragon/back.svg",
  39128. extra: 1527/1434,
  39129. bottom: 25/1552
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Mortal Interaction",
  39136. height: math.unit(10, "feet"),
  39137. default: true
  39138. },
  39139. {
  39140. name: "Large",
  39141. height: math.unit(30, "feet")
  39142. },
  39143. {
  39144. name: "Kaiju",
  39145. height: math.unit(300, "feet")
  39146. },
  39147. {
  39148. name: "Megamacro",
  39149. height: math.unit(10000, "feet")
  39150. },
  39151. {
  39152. name: "Continent Cracker",
  39153. height: math.unit(30000000, "feet")
  39154. },
  39155. {
  39156. name: "Sol-Swallowing",
  39157. height: math.unit(1e11, "feet")
  39158. },
  39159. {
  39160. name: "Light Universal",
  39161. height: math.unit(5, "universes")
  39162. },
  39163. {
  39164. name: "Universe Atoms",
  39165. height: math.unit(1.829e9, "universes")
  39166. },
  39167. {
  39168. name: "Light Multiversal",
  39169. height: math.unit(5, "multiverses")
  39170. },
  39171. {
  39172. name: "Multiverse Atoms",
  39173. height: math.unit(1.829e9, "multiverses")
  39174. },
  39175. {
  39176. name: "Fabric of Time",
  39177. height: math.unit(1e262, "multiverses")
  39178. },
  39179. ]
  39180. ))
  39181. characterMakers.push(() => makeCharacter(
  39182. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39183. {
  39184. front: {
  39185. height: math.unit(9, "feet"),
  39186. weight: math.unit(1050, "lb"),
  39187. name: "Front",
  39188. image: {
  39189. source: "./media/characters/tabitha/front.svg",
  39190. extra: 2083/1994,
  39191. bottom: 68/2151
  39192. }
  39193. },
  39194. },
  39195. [
  39196. {
  39197. name: "Baseline",
  39198. height: math.unit(9, "feet"),
  39199. default: true
  39200. },
  39201. {
  39202. name: "Giant",
  39203. height: math.unit(90, "feet")
  39204. },
  39205. {
  39206. name: "Macro",
  39207. height: math.unit(900, "feet")
  39208. },
  39209. {
  39210. name: "Megamacro",
  39211. height: math.unit(9000, "feet")
  39212. },
  39213. {
  39214. name: "City-Crushing",
  39215. height: math.unit(27000, "feet")
  39216. },
  39217. {
  39218. name: "Mountain-Mashing",
  39219. height: math.unit(90000, "feet")
  39220. },
  39221. {
  39222. name: "Nation Nemesis",
  39223. height: math.unit(9e6, "feet")
  39224. },
  39225. {
  39226. name: "Continent Cracker",
  39227. height: math.unit(27e6, "feet")
  39228. },
  39229. {
  39230. name: "Earth-Eclipsing",
  39231. height: math.unit(2.7e8, "feet")
  39232. },
  39233. {
  39234. name: "Gas Giant Gulper",
  39235. height: math.unit(2.7e9, "feet")
  39236. },
  39237. {
  39238. name: "Sol-Swallowing",
  39239. height: math.unit(9e10, "feet")
  39240. },
  39241. {
  39242. name: "Galaxy Gulper",
  39243. height: math.unit(9, "galaxies")
  39244. },
  39245. {
  39246. name: "Cosmos Churner",
  39247. height: math.unit(9, "universes")
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(160, "cm"),
  39256. weight: math.unit(55, "kg"),
  39257. name: "Front",
  39258. image: {
  39259. source: "./media/characters/tow/front.svg",
  39260. extra: 1751/1722,
  39261. bottom: 74/1825
  39262. }
  39263. },
  39264. },
  39265. [
  39266. {
  39267. name: "Norm",
  39268. height: math.unit(160, "cm")
  39269. },
  39270. {
  39271. name: "Casual",
  39272. height: math.unit(3200, "m"),
  39273. default: true
  39274. },
  39275. {
  39276. name: "Show-Off",
  39277. height: math.unit(160, "km")
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39283. {
  39284. front: {
  39285. height: math.unit(7 + 11/12, "feet"),
  39286. weight: math.unit(342.8, "lb"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/vivian-orca-dragon/front.svg",
  39290. extra: 1890/1865,
  39291. bottom: 28/1918
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Micro",
  39298. height: math.unit(5, "inches")
  39299. },
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(7 + 11/12, "feet"),
  39303. default: true
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(395 + 7/12, "feet")
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39313. {
  39314. side: {
  39315. height: math.unit(10, "feet"),
  39316. weight: math.unit(1442, "lb"),
  39317. name: "Side",
  39318. image: {
  39319. source: "./media/characters/lotherakon/side.svg",
  39320. extra: 1604/1497,
  39321. bottom: 89/1693
  39322. }
  39323. },
  39324. },
  39325. [
  39326. {
  39327. name: "Mortal Interaction",
  39328. height: math.unit(10, "feet")
  39329. },
  39330. {
  39331. name: "Large",
  39332. height: math.unit(30, "feet"),
  39333. default: true
  39334. },
  39335. {
  39336. name: "Giant",
  39337. height: math.unit(100, "feet")
  39338. },
  39339. {
  39340. name: "Kaiju",
  39341. height: math.unit(300, "feet")
  39342. },
  39343. {
  39344. name: "Macro",
  39345. height: math.unit(1000, "feet")
  39346. },
  39347. {
  39348. name: "Macro+",
  39349. height: math.unit(3000, "feet")
  39350. },
  39351. {
  39352. name: "Megamacro",
  39353. height: math.unit(10000, "feet")
  39354. },
  39355. {
  39356. name: "City-Crushing",
  39357. height: math.unit(30000, "feet")
  39358. },
  39359. {
  39360. name: "Continent Cracker",
  39361. height: math.unit(30e6, "feet")
  39362. },
  39363. {
  39364. name: "Earth Eclipsing",
  39365. height: math.unit(3e8, "feet")
  39366. },
  39367. {
  39368. name: "Gas Giant Gulper",
  39369. height: math.unit(3e9, "feet")
  39370. },
  39371. {
  39372. name: "Sol-Swallowing",
  39373. height: math.unit(1e11, "feet")
  39374. },
  39375. {
  39376. name: "System Swallower",
  39377. height: math.unit(3e14, "feet")
  39378. },
  39379. {
  39380. name: "Galaxy Gulper",
  39381. height: math.unit(10, "galaxies")
  39382. },
  39383. {
  39384. name: "Light Universal",
  39385. height: math.unit(5, "universes")
  39386. },
  39387. {
  39388. name: "Universe Palm",
  39389. height: math.unit(20, "universes")
  39390. },
  39391. {
  39392. name: "Light Multiversal",
  39393. height: math.unit(5, "multiverses")
  39394. },
  39395. {
  39396. name: "Multiverse Palm",
  39397. height: math.unit(20, "multiverses")
  39398. },
  39399. {
  39400. name: "Inferno Incarnate",
  39401. height: math.unit(1e7, "multiverses")
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39407. {
  39408. front: {
  39409. height: math.unit(8, "feet"),
  39410. weight: math.unit(1200, "lb"),
  39411. name: "Front",
  39412. image: {
  39413. source: "./media/characters/malithee/front.svg",
  39414. extra: 1675/1640,
  39415. bottom: 162/1837
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Mortal Interaction",
  39422. height: math.unit(8, "feet"),
  39423. default: true
  39424. },
  39425. {
  39426. name: "Large",
  39427. height: math.unit(24, "feet")
  39428. },
  39429. {
  39430. name: "Kaiju",
  39431. height: math.unit(240, "feet")
  39432. },
  39433. {
  39434. name: "Megamacro",
  39435. height: math.unit(8000, "feet")
  39436. },
  39437. {
  39438. name: "Continent Cracker",
  39439. height: math.unit(24e6, "feet")
  39440. },
  39441. {
  39442. name: "Earth-Eclipsing",
  39443. height: math.unit(2.4e8, "feet")
  39444. },
  39445. {
  39446. name: "Sol-Swallowing",
  39447. height: math.unit(8e10, "feet")
  39448. },
  39449. {
  39450. name: "Galaxy Gulper",
  39451. height: math.unit(8, "galaxies")
  39452. },
  39453. {
  39454. name: "Light Universal",
  39455. height: math.unit(4, "universes")
  39456. },
  39457. {
  39458. name: "Universe Atoms",
  39459. height: math.unit(1.829e9, "universes")
  39460. },
  39461. {
  39462. name: "Light Multiversal",
  39463. height: math.unit(4, "multiverses")
  39464. },
  39465. {
  39466. name: "Multiverse Atoms",
  39467. height: math.unit(1.829e9, "multiverses")
  39468. },
  39469. {
  39470. name: "Nigh-Omnipresence",
  39471. height: math.unit(8e261, "multiverses")
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(10, "feet"),
  39480. weight: math.unit(1500, "lb"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/miles-thestia/front.svg",
  39484. extra: 1812/1727,
  39485. bottom: 86/1898
  39486. }
  39487. },
  39488. back: {
  39489. height: math.unit(10, "feet"),
  39490. weight: math.unit(1500, "lb"),
  39491. name: "Back",
  39492. image: {
  39493. source: "./media/characters/miles-thestia/back.svg",
  39494. extra: 1799/1690,
  39495. bottom: 47/1846
  39496. }
  39497. },
  39498. frontNsfw: {
  39499. height: math.unit(10, "feet"),
  39500. weight: math.unit(1500, "lb"),
  39501. name: "Front (NSFW)",
  39502. image: {
  39503. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39504. extra: 1812/1727,
  39505. bottom: 86/1898
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Mini-Macro",
  39512. height: math.unit(10, "feet"),
  39513. default: true
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(25, "feet"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/titan-s-wulf/front.svg",
  39525. extra: 1560/1484,
  39526. bottom: 76/1636
  39527. }
  39528. },
  39529. },
  39530. [
  39531. {
  39532. name: "Smallest",
  39533. height: math.unit(25, "feet"),
  39534. default: true
  39535. },
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(200, "feet")
  39539. },
  39540. {
  39541. name: "Macro",
  39542. height: math.unit(200000, "feet")
  39543. },
  39544. {
  39545. name: "Multiversal Original",
  39546. height: math.unit(10000, "multiverses")
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(8, "feet"),
  39555. weight: math.unit(553, "lb"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/tawendeh/front.svg",
  39559. extra: 2365/2268,
  39560. bottom: 83/2448
  39561. }
  39562. },
  39563. frontClothed: {
  39564. height: math.unit(8, "feet"),
  39565. weight: math.unit(553, "lb"),
  39566. name: "Front (Clothed)",
  39567. image: {
  39568. source: "./media/characters/tawendeh/front-clothed.svg",
  39569. extra: 2365/2268,
  39570. bottom: 83/2448
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(8, "feet"),
  39575. weight: math.unit(553, "lb"),
  39576. name: "Back",
  39577. image: {
  39578. source: "./media/characters/tawendeh/back.svg",
  39579. extra: 2397/2294,
  39580. bottom: 42/2439
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Mortal Interaction",
  39587. height: math.unit(8, "feet"),
  39588. default: true
  39589. },
  39590. {
  39591. name: "Giant",
  39592. height: math.unit(80, "feet")
  39593. },
  39594. {
  39595. name: "Macro",
  39596. height: math.unit(800, "feet")
  39597. },
  39598. {
  39599. name: "Megamacro",
  39600. height: math.unit(8000, "feet")
  39601. },
  39602. {
  39603. name: "City-Crushing",
  39604. height: math.unit(24000, "feet")
  39605. },
  39606. {
  39607. name: "Mountain-Mashing",
  39608. height: math.unit(80000, "feet")
  39609. },
  39610. {
  39611. name: "Nation Nemesis",
  39612. height: math.unit(8e6, "feet")
  39613. },
  39614. {
  39615. name: "Continent Cracker",
  39616. height: math.unit(24e6, "feet")
  39617. },
  39618. {
  39619. name: "Earth-Eclipsing",
  39620. height: math.unit(2.4e8, "feet")
  39621. },
  39622. {
  39623. name: "Gas Giant Gulper",
  39624. height: math.unit(2.4e9, "feet")
  39625. },
  39626. {
  39627. name: "Sol-Swallowing",
  39628. height: math.unit(8e10, "feet")
  39629. },
  39630. {
  39631. name: "Galaxy Gulper",
  39632. height: math.unit(8, "galaxies")
  39633. },
  39634. {
  39635. name: "Cosmos Churner",
  39636. height: math.unit(8, "universes")
  39637. },
  39638. {
  39639. name: "Omnipotent Otter",
  39640. height: math.unit(80, "universes")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(2.6, "meters"),
  39649. weight: math.unit(900, "kg"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/neesha/front.svg",
  39653. extra: 1803/1653,
  39654. bottom: 128/1931
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(2.6, "meters"),
  39662. default: true
  39663. },
  39664. {
  39665. name: "Macro",
  39666. height: math.unit(50, "meters")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(5, "feet"),
  39675. weight: math.unit(185, "lb"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/kyera/front.svg",
  39679. extra: 1875/1790,
  39680. bottom: 96/1971
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(5, "feet"),
  39688. default: true
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(7 + 6/12, "feet"),
  39697. weight: math.unit(540, "lb"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/yuko/front.svg",
  39701. extra: 1282/1222,
  39702. bottom: 101/1383
  39703. }
  39704. },
  39705. frontClothed: {
  39706. height: math.unit(7 + 6/12, "feet"),
  39707. weight: math.unit(540, "lb"),
  39708. name: "Front (Clothed)",
  39709. image: {
  39710. source: "./media/characters/yuko/front-clothed.svg",
  39711. extra: 1282/1222,
  39712. bottom: 101/1383
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(7 + 6/12, "feet"),
  39720. default: true
  39721. },
  39722. {
  39723. name: "Macro",
  39724. height: math.unit(26 + 9/12, "feet")
  39725. },
  39726. {
  39727. name: "Megamacro",
  39728. height: math.unit(300, "feet")
  39729. },
  39730. {
  39731. name: "Gigamacro",
  39732. height: math.unit(5000, "feet")
  39733. },
  39734. {
  39735. name: "Planetary",
  39736. height: math.unit(10000, "miles")
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(8 + 2/12, "feet"),
  39745. weight: math.unit(600, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/deam-nitrel/front.svg",
  39749. extra: 1308/1234,
  39750. bottom: 125/1433
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(8 + 2/12, "feet"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(6.1, "feet"),
  39767. weight: math.unit(180, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/skyress/front.svg",
  39771. extra: 1045/915,
  39772. bottom: 28/1073
  39773. }
  39774. },
  39775. maw: {
  39776. height: math.unit(1, "feet"),
  39777. name: "Maw",
  39778. image: {
  39779. source: "./media/characters/skyress/maw.svg"
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(6.1, "feet"),
  39787. default: true
  39788. },
  39789. {
  39790. name: "Macro",
  39791. height: math.unit(200, "feet")
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(4 + 2/12, "feet"),
  39800. weight: math.unit(40, "kg"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/amethyst-jones/front.svg",
  39804. extra: 1220/1150,
  39805. bottom: 101/1321
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(4 + 2/12, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(1.7, "m"),
  39822. weight: math.unit(135, "lb"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/jade/front.svg",
  39826. extra: 1818/1767,
  39827. bottom: 32/1850
  39828. }
  39829. },
  39830. back: {
  39831. height: math.unit(1.7, "m"),
  39832. weight: math.unit(135, "lb"),
  39833. name: "Back",
  39834. image: {
  39835. source: "./media/characters/jade/back.svg",
  39836. extra: 1869/1809,
  39837. bottom: 35/1904
  39838. }
  39839. },
  39840. hand: {
  39841. height: math.unit(0.24, "m"),
  39842. name: "Hand",
  39843. image: {
  39844. source: "./media/characters/jade/hand.svg"
  39845. }
  39846. },
  39847. foot: {
  39848. height: math.unit(0.263, "m"),
  39849. name: "Foot",
  39850. image: {
  39851. source: "./media/characters/jade/foot.svg"
  39852. }
  39853. },
  39854. dick: {
  39855. height: math.unit(0.47, "m"),
  39856. name: "Dick",
  39857. image: {
  39858. source: "./media/characters/jade/dick.svg"
  39859. }
  39860. },
  39861. },
  39862. [
  39863. {
  39864. name: "Micro",
  39865. height: math.unit(22, "cm")
  39866. },
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(1.7, "m"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "Macro",
  39874. height: math.unit(152, "m")
  39875. },
  39876. ]
  39877. ))
  39878. characterMakers.push(() => makeCharacter(
  39879. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39880. {
  39881. front: {
  39882. height: math.unit(100, "miles"),
  39883. weight: math.unit(20000, "tons"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/cookie/front.svg",
  39887. extra: 1125/1070,
  39888. bottom: 30/1155
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Big",
  39895. height: math.unit(50, "feet")
  39896. },
  39897. {
  39898. name: "Macro",
  39899. height: math.unit(100, "miles"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Megamacro",
  39904. height: math.unit(90000, "miles")
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(6, "feet"),
  39913. weight: math.unit(145, "lb"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/farzian/front.svg",
  39917. extra: 1902/1693,
  39918. bottom: 108/2010
  39919. }
  39920. },
  39921. },
  39922. [
  39923. {
  39924. name: "Macro",
  39925. height: math.unit(500, "feet"),
  39926. default: true
  39927. },
  39928. ]
  39929. ))
  39930. characterMakers.push(() => makeCharacter(
  39931. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39932. {
  39933. front: {
  39934. height: math.unit(3 + 6/12, "feet"),
  39935. weight: math.unit(50, "lb"),
  39936. name: "Front",
  39937. image: {
  39938. source: "./media/characters/kimberly-tilson/front.svg",
  39939. extra: 1400/1322,
  39940. bottom: 36/1436
  39941. }
  39942. },
  39943. back: {
  39944. height: math.unit(3 + 6/12, "feet"),
  39945. weight: math.unit(50, "lb"),
  39946. name: "Back",
  39947. image: {
  39948. source: "./media/characters/kimberly-tilson/back.svg",
  39949. extra: 1370/1307,
  39950. bottom: 20/1390
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(3 + 6/12, "feet"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(1148, "feet"),
  39967. weight: math.unit(34057, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/harthos/front.svg",
  39971. extra: 1391/1339,
  39972. bottom: 13/1404
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(1148, "feet"),
  39980. default: true
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(15, "feet"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/hypatia/front.svg",
  39992. extra: 1653/1591,
  39993. bottom: 79/1732
  39994. }
  39995. },
  39996. },
  39997. [
  39998. {
  39999. name: "Normal",
  40000. height: math.unit(15, "feet")
  40001. },
  40002. {
  40003. name: "Small",
  40004. height: math.unit(300, "feet")
  40005. },
  40006. {
  40007. name: "Macro",
  40008. height: math.unit(2500, "feet"),
  40009. default: true
  40010. },
  40011. {
  40012. name: "Mega Macro",
  40013. height: math.unit(1500, "miles")
  40014. },
  40015. {
  40016. name: "Giga Macro",
  40017. height: math.unit(1.5e6, "miles")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(6, "feet"),
  40026. weight: math.unit(200, "lb"),
  40027. name: "Front",
  40028. image: {
  40029. source: "./media/characters/wulver/front.svg",
  40030. extra: 1724/1632,
  40031. bottom: 130/1854
  40032. }
  40033. },
  40034. frontNsfw: {
  40035. height: math.unit(6, "feet"),
  40036. weight: math.unit(200, "lb"),
  40037. name: "Front (NSFW)",
  40038. image: {
  40039. source: "./media/characters/wulver/front-nsfw.svg",
  40040. extra: 1724/1632,
  40041. bottom: 130/1854
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Human-Sized",
  40048. height: math.unit(6, "feet")
  40049. },
  40050. {
  40051. name: "Normal",
  40052. height: math.unit(4, "meters"),
  40053. default: true
  40054. },
  40055. {
  40056. name: "Large",
  40057. height: math.unit(6, "m")
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40063. {
  40064. front: {
  40065. height: math.unit(7, "feet"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/maru/front.svg",
  40069. extra: 1595/1570,
  40070. bottom: 0/1595
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Normal",
  40077. height: math.unit(7, "feet"),
  40078. default: true
  40079. },
  40080. {
  40081. name: "Macro",
  40082. height: math.unit(700, "feet")
  40083. },
  40084. {
  40085. name: "Mega Macro",
  40086. height: math.unit(25, "miles")
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(6, "feet"),
  40095. weight: math.unit(170, "lb"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/xenon/front.svg",
  40099. extra: 1376/1305,
  40100. bottom: 56/1432
  40101. }
  40102. },
  40103. back: {
  40104. height: math.unit(6, "feet"),
  40105. weight: math.unit(170, "lb"),
  40106. name: "Back",
  40107. image: {
  40108. source: "./media/characters/xenon/back.svg",
  40109. extra: 1328/1259,
  40110. bottom: 95/1423
  40111. }
  40112. },
  40113. maw: {
  40114. height: math.unit(0.52, "feet"),
  40115. name: "Maw",
  40116. image: {
  40117. source: "./media/characters/xenon/maw.svg"
  40118. }
  40119. },
  40120. hand: {
  40121. height: math.unit(0.82, "feet"),
  40122. name: "Hand",
  40123. image: {
  40124. source: "./media/characters/xenon/hand.svg"
  40125. }
  40126. },
  40127. foot: {
  40128. height: math.unit(1.13, "feet"),
  40129. name: "Foot",
  40130. image: {
  40131. source: "./media/characters/xenon/foot.svg"
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Micro",
  40138. height: math.unit(0.8, "inches")
  40139. },
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(6, "feet")
  40143. },
  40144. {
  40145. name: "Macro",
  40146. height: math.unit(50, "feet"),
  40147. default: true
  40148. },
  40149. {
  40150. name: "Macro+",
  40151. height: math.unit(250, "feet")
  40152. },
  40153. {
  40154. name: "Megamacro",
  40155. height: math.unit(1500, "feet")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40161. {
  40162. front: {
  40163. height: math.unit(7 + 5/12, "feet"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/zane/front.svg",
  40167. extra: 1260/1203,
  40168. bottom: 94/1354
  40169. }
  40170. },
  40171. back: {
  40172. height: math.unit(5.05, "feet"),
  40173. name: "Back",
  40174. image: {
  40175. source: "./media/characters/zane/back.svg",
  40176. extra: 893/829,
  40177. bottom: 30/923
  40178. }
  40179. },
  40180. werewolf: {
  40181. height: math.unit(11, "feet"),
  40182. name: "Werewolf",
  40183. image: {
  40184. source: "./media/characters/zane/werewolf.svg",
  40185. extra: 1383/1323,
  40186. bottom: 89/1472
  40187. }
  40188. },
  40189. foot: {
  40190. height: math.unit(1.46, "feet"),
  40191. name: "Foot",
  40192. image: {
  40193. source: "./media/characters/zane/foot.svg"
  40194. }
  40195. },
  40196. footFront: {
  40197. height: math.unit(0.784, "feet"),
  40198. name: "Foot (Front)",
  40199. image: {
  40200. source: "./media/characters/zane/foot-front.svg"
  40201. }
  40202. },
  40203. dick: {
  40204. height: math.unit(1.95, "feet"),
  40205. name: "Dick",
  40206. image: {
  40207. source: "./media/characters/zane/dick.svg"
  40208. }
  40209. },
  40210. dickWerewolf: {
  40211. height: math.unit(3.77, "feet"),
  40212. name: "Dick (Werewolf)",
  40213. image: {
  40214. source: "./media/characters/zane/dick.svg"
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(7 + 5/12, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(6 + 2/12, "feet"),
  40231. weight: math.unit(284, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/benni-desparque/front.svg",
  40235. extra: 1353/1126,
  40236. bottom: 69/1422
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Civilian",
  40243. height: math.unit(6 + 2/12, "feet")
  40244. },
  40245. {
  40246. name: "Normal",
  40247. height: math.unit(98, "feet"),
  40248. default: true
  40249. },
  40250. {
  40251. name: "Kaiju Fighter",
  40252. height: math.unit(268, "feet")
  40253. },
  40254. ]
  40255. ))
  40256. characterMakers.push(() => makeCharacter(
  40257. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40258. {
  40259. front: {
  40260. height: math.unit(5, "feet"),
  40261. weight: math.unit(105, "lb"),
  40262. name: "Front",
  40263. image: {
  40264. source: "./media/characters/maxine/front.svg",
  40265. extra: 1386/1250,
  40266. bottom: 71/1457
  40267. }
  40268. },
  40269. },
  40270. [
  40271. {
  40272. name: "Normal",
  40273. height: math.unit(5, "feet"),
  40274. default: true
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(11 + 7/12, "feet"),
  40283. weight: math.unit(9576, "lb"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/scaly/front.svg",
  40287. extra: 888/867,
  40288. bottom: 36/924
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(11 + 7/12, "feet"),
  40296. default: true
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40302. {
  40303. front: {
  40304. height: math.unit(6 + 3/12, "feet"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/saelria/front.svg",
  40308. extra: 1243/1138,
  40309. bottom: 46/1289
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Micro",
  40316. height: math.unit(6, "inches"),
  40317. },
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(6 + 3/12, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(25, "feet")
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(80, "meters"),
  40334. weight: math.unit(7000, "tonnes"),
  40335. name: "Front",
  40336. image: {
  40337. source: "./media/characters/tef/front.svg",
  40338. extra: 2036/1991,
  40339. bottom: 54/2090
  40340. }
  40341. },
  40342. back: {
  40343. height: math.unit(80, "meters"),
  40344. weight: math.unit(7000, "tonnes"),
  40345. name: "Back",
  40346. image: {
  40347. source: "./media/characters/tef/back.svg",
  40348. extra: 2036/1991,
  40349. bottom: 54/2090
  40350. }
  40351. },
  40352. },
  40353. [
  40354. {
  40355. name: "Macro",
  40356. height: math.unit(80, "meters"),
  40357. default: true
  40358. },
  40359. ]
  40360. ))
  40361. characterMakers.push(() => makeCharacter(
  40362. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40363. {
  40364. front: {
  40365. height: math.unit(13, "feet"),
  40366. weight: math.unit(6, "tons"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/rover/front.svg",
  40370. extra: 1233/1156,
  40371. bottom: 50/1283
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(13, "feet"),
  40376. weight: math.unit(6, "tons"),
  40377. name: "Back",
  40378. image: {
  40379. source: "./media/characters/rover/back.svg",
  40380. extra: 1327/1258,
  40381. bottom: 39/1366
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(13, "feet"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(1300, "feet")
  40394. },
  40395. {
  40396. name: "Megamacro",
  40397. height: math.unit(1300, "miles")
  40398. },
  40399. {
  40400. name: "Gigamacro",
  40401. height: math.unit(1300000, "miles")
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(6, "feet"),
  40410. weight: math.unit(150, "lb"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/ariz/front.svg",
  40414. extra: 1401/1346,
  40415. bottom: 5/1406
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(10, "feet"),
  40423. default: true
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(6, "feet"),
  40432. weight: math.unit(140, "lb"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/sigrun/front.svg",
  40436. extra: 1418/1359,
  40437. bottom: 27/1445
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(35, "feet"),
  40445. default: true
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(6, "feet"),
  40454. weight: math.unit(150, "lb"),
  40455. name: "Front",
  40456. image: {
  40457. source: "./media/characters/numin/front.svg",
  40458. extra: 1433/1388,
  40459. bottom: 12/1445
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(21.5, "km"),
  40467. default: true
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(6, "feet"),
  40476. weight: math.unit(463, "lb"),
  40477. name: "Front",
  40478. image: {
  40479. source: "./media/characters/melwa/front.svg",
  40480. extra: 1307/1248,
  40481. bottom: 93/1400
  40482. }
  40483. },
  40484. },
  40485. [
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(50, "meters"),
  40489. default: true
  40490. },
  40491. ]
  40492. ))
  40493. characterMakers.push(() => makeCharacter(
  40494. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40495. {
  40496. front: {
  40497. height: math.unit(325, "feet"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/zorkaiju/front.svg",
  40501. extra: 1955/1814,
  40502. bottom: 40/1995
  40503. }
  40504. },
  40505. frontExtended: {
  40506. height: math.unit(325, "feet"),
  40507. name: "Front (Extended)",
  40508. image: {
  40509. source: "./media/characters/zorkaiju/front-extended.svg",
  40510. extra: 1955/1814,
  40511. bottom: 40/1995
  40512. }
  40513. },
  40514. side: {
  40515. height: math.unit(325, "feet"),
  40516. name: "Side",
  40517. image: {
  40518. source: "./media/characters/zorkaiju/side.svg",
  40519. extra: 1495/1396,
  40520. bottom: 17/1512
  40521. }
  40522. },
  40523. sideExtended: {
  40524. height: math.unit(325, "feet"),
  40525. name: "Side (Extended)",
  40526. image: {
  40527. source: "./media/characters/zorkaiju/side-extended.svg",
  40528. extra: 1495/1396,
  40529. bottom: 17/1512
  40530. }
  40531. },
  40532. back: {
  40533. height: math.unit(325, "feet"),
  40534. name: "Back",
  40535. image: {
  40536. source: "./media/characters/zorkaiju/back.svg",
  40537. extra: 1959/1821,
  40538. bottom: 31/1990
  40539. }
  40540. },
  40541. backExtended: {
  40542. height: math.unit(325, "feet"),
  40543. name: "Back (Extended)",
  40544. image: {
  40545. source: "./media/characters/zorkaiju/back-extended.svg",
  40546. extra: 1959/1821,
  40547. bottom: 31/1990
  40548. }
  40549. },
  40550. hand: {
  40551. height: math.unit(58.4, "feet"),
  40552. name: "Hand",
  40553. image: {
  40554. source: "./media/characters/zorkaiju/hand.svg"
  40555. }
  40556. },
  40557. handExtended: {
  40558. height: math.unit(61.4, "feet"),
  40559. name: "Hand (Extended)",
  40560. image: {
  40561. source: "./media/characters/zorkaiju/hand-extended.svg"
  40562. }
  40563. },
  40564. foot: {
  40565. height: math.unit(95, "feet"),
  40566. name: "Foot",
  40567. image: {
  40568. source: "./media/characters/zorkaiju/foot.svg"
  40569. }
  40570. },
  40571. leftArm: {
  40572. height: math.unit(59, "feet"),
  40573. name: "Left Arm",
  40574. image: {
  40575. source: "./media/characters/zorkaiju/left-arm.svg"
  40576. }
  40577. },
  40578. rightArm: {
  40579. height: math.unit(59, "feet"),
  40580. name: "Right Arm",
  40581. image: {
  40582. source: "./media/characters/zorkaiju/right-arm.svg"
  40583. }
  40584. },
  40585. tail: {
  40586. height: math.unit(104, "feet"),
  40587. name: "Tail",
  40588. image: {
  40589. source: "./media/characters/zorkaiju/tail.svg"
  40590. }
  40591. },
  40592. tailExtended: {
  40593. height: math.unit(104, "feet"),
  40594. name: "Tail (Extended)",
  40595. image: {
  40596. source: "./media/characters/zorkaiju/tail-extended.svg"
  40597. }
  40598. },
  40599. tailBottom: {
  40600. height: math.unit(104, "feet"),
  40601. name: "Tail Bottom",
  40602. image: {
  40603. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40604. }
  40605. },
  40606. crystal: {
  40607. height: math.unit(27.54, "feet"),
  40608. name: "Crystal",
  40609. image: {
  40610. source: "./media/characters/zorkaiju/crystal.svg"
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Kaiju",
  40617. height: math.unit(325, "feet"),
  40618. default: true
  40619. },
  40620. ]
  40621. ))
  40622. characterMakers.push(() => makeCharacter(
  40623. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40624. {
  40625. front: {
  40626. height: math.unit(6 + 1/12, "feet"),
  40627. weight: math.unit(115, "lb"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/bailey-belfry/front.svg",
  40631. extra: 1240/1121,
  40632. bottom: 101/1341
  40633. }
  40634. },
  40635. },
  40636. [
  40637. {
  40638. name: "Normal",
  40639. height: math.unit(6 + 1/12, "feet"),
  40640. default: true
  40641. },
  40642. ]
  40643. ))
  40644. characterMakers.push(() => makeCharacter(
  40645. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40646. {
  40647. side: {
  40648. height: math.unit(4, "meters"),
  40649. weight: math.unit(250, "kg"),
  40650. name: "Side",
  40651. image: {
  40652. source: "./media/characters/blacky/side.svg",
  40653. extra: 1027/919,
  40654. bottom: 43/1070
  40655. }
  40656. },
  40657. maw: {
  40658. height: math.unit(1, "meters"),
  40659. name: "Maw",
  40660. image: {
  40661. source: "./media/characters/blacky/maw.svg"
  40662. }
  40663. },
  40664. paw: {
  40665. height: math.unit(1, "meters"),
  40666. name: "Paw",
  40667. image: {
  40668. source: "./media/characters/blacky/paw.svg"
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(4, "meters"),
  40676. default: true
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(170, "cm"),
  40685. weight: math.unit(66, "kg"),
  40686. name: "Front",
  40687. image: {
  40688. source: "./media/characters/thux-ei/front.svg",
  40689. extra: 1109/1011,
  40690. bottom: 8/1117
  40691. }
  40692. },
  40693. },
  40694. [
  40695. {
  40696. name: "Normal",
  40697. height: math.unit(170, "cm"),
  40698. default: true
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(5, "feet"),
  40707. weight: math.unit(120, "lb"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/roxanne-voltaire/front.svg",
  40711. extra: 1901/1779,
  40712. bottom: 53/1954
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Normal",
  40719. height: math.unit(5, "feet"),
  40720. default: true
  40721. },
  40722. {
  40723. name: "Giant",
  40724. height: math.unit(50, "feet")
  40725. },
  40726. {
  40727. name: "Titan",
  40728. height: math.unit(500, "feet")
  40729. },
  40730. {
  40731. name: "Macro",
  40732. height: math.unit(5000, "feet")
  40733. },
  40734. {
  40735. name: "Megamacro",
  40736. height: math.unit(50000, "feet")
  40737. },
  40738. {
  40739. name: "Gigamacro",
  40740. height: math.unit(500000, "feet")
  40741. },
  40742. {
  40743. name: "Teramacro",
  40744. height: math.unit(5e6, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(6 + 2/12, "feet"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/squeaks/front.svg",
  40756. extra: 1823/1768,
  40757. bottom: 138/1961
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Micro",
  40764. height: math.unit(0.5, "inches")
  40765. },
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(6 + 2/12, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(600, "feet")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(1.72, "meters"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/archinger/front.svg",
  40785. extra: 1861/1675,
  40786. bottom: 125/1986
  40787. }
  40788. },
  40789. back: {
  40790. height: math.unit(1.72, "meters"),
  40791. name: "Back",
  40792. image: {
  40793. source: "./media/characters/archinger/back.svg",
  40794. extra: 1844/1701,
  40795. bottom: 104/1948
  40796. }
  40797. },
  40798. cock: {
  40799. height: math.unit(0.59, "feet"),
  40800. name: "Cock",
  40801. image: {
  40802. source: "./media/characters/archinger/cock.svg"
  40803. }
  40804. },
  40805. },
  40806. [
  40807. {
  40808. name: "Normal",
  40809. height: math.unit(1.72, "meters"),
  40810. default: true
  40811. },
  40812. {
  40813. name: "Macro",
  40814. height: math.unit(84, "meters")
  40815. },
  40816. {
  40817. name: "Macro+",
  40818. height: math.unit(112, "meters")
  40819. },
  40820. {
  40821. name: "Macro++",
  40822. height: math.unit(960, "meters")
  40823. },
  40824. {
  40825. name: "Macro+++",
  40826. height: math.unit(4, "km")
  40827. },
  40828. {
  40829. name: "Macro++++",
  40830. height: math.unit(48, "km")
  40831. },
  40832. {
  40833. name: "Macro+++++",
  40834. height: math.unit(4500, "km")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40840. {
  40841. front: {
  40842. height: math.unit(5 + 5/12, "feet"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/alsnapz/front.svg",
  40846. extra: 1157/1065,
  40847. bottom: 42/1199
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(5 + 5/12, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40861. {
  40862. side: {
  40863. height: math.unit(3.2, "earths"),
  40864. name: "Side",
  40865. image: {
  40866. source: "./media/characters/mag/side.svg",
  40867. extra: 1331/1008,
  40868. bottom: 52/1383
  40869. }
  40870. },
  40871. wing: {
  40872. height: math.unit(1.94, "earths"),
  40873. name: "Wing",
  40874. image: {
  40875. source: "./media/characters/mag/wing.svg"
  40876. }
  40877. },
  40878. dick: {
  40879. height: math.unit(1.8, "earths"),
  40880. name: "Dick",
  40881. image: {
  40882. source: "./media/characters/mag/dick.svg"
  40883. }
  40884. },
  40885. ass: {
  40886. height: math.unit(1.33, "earths"),
  40887. name: "Ass",
  40888. image: {
  40889. source: "./media/characters/mag/ass.svg"
  40890. }
  40891. },
  40892. head: {
  40893. height: math.unit(1.1, "earths"),
  40894. name: "Head",
  40895. image: {
  40896. source: "./media/characters/mag/head.svg"
  40897. }
  40898. },
  40899. maw: {
  40900. height: math.unit(1.62, "earths"),
  40901. name: "Maw",
  40902. image: {
  40903. source: "./media/characters/mag/maw.svg"
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Small",
  40910. height: math.unit(162, "feet")
  40911. },
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(3.2, "earths"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(512, "feet"),
  40924. weight: math.unit(63509, "tonnes"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/vorrel-harroc/front.svg",
  40928. extra: 1075/1063,
  40929. bottom: 62/1137
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(10, "feet")
  40937. },
  40938. {
  40939. name: "Macro",
  40940. height: math.unit(512, "feet"),
  40941. default: true
  40942. },
  40943. {
  40944. name: "Megamacro",
  40945. height: math.unit(256, "miles")
  40946. },
  40947. {
  40948. name: "Gigamacro",
  40949. height: math.unit(4096, "miles")
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40955. {
  40956. side: {
  40957. height: math.unit(50, "feet"),
  40958. name: "Side",
  40959. image: {
  40960. source: "./media/characters/froimar/side.svg",
  40961. extra: 855/638,
  40962. bottom: 99/954
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Macro",
  40969. height: math.unit(50, "feet"),
  40970. default: true
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(210, "miles"),
  40979. name: "Front",
  40980. image: {
  40981. source: "./media/characters/timothy/front.svg",
  40982. extra: 1007/943,
  40983. bottom: 62/1069
  40984. }
  40985. },
  40986. frontSkirt: {
  40987. height: math.unit(210, "miles"),
  40988. name: "Front (Skirt)",
  40989. image: {
  40990. source: "./media/characters/timothy/front-skirt.svg",
  40991. extra: 1007/943,
  40992. bottom: 62/1069
  40993. }
  40994. },
  40995. frontCoat: {
  40996. height: math.unit(210, "miles"),
  40997. name: "Front (Coat)",
  40998. image: {
  40999. source: "./media/characters/timothy/front-coat.svg",
  41000. extra: 1007/943,
  41001. bottom: 62/1069
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Macro",
  41008. height: math.unit(210, "miles"),
  41009. default: true
  41010. },
  41011. {
  41012. name: "Megamacro",
  41013. height: math.unit(210000, "miles")
  41014. },
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41019. {
  41020. front: {
  41021. height: math.unit(188, "feet"),
  41022. name: "Front",
  41023. image: {
  41024. source: "./media/characters/pyotr/front.svg",
  41025. extra: 1912/1826,
  41026. bottom: 18/1930
  41027. }
  41028. },
  41029. },
  41030. [
  41031. {
  41032. name: "Macro",
  41033. height: math.unit(188, "feet"),
  41034. default: true
  41035. },
  41036. {
  41037. name: "Megamacro",
  41038. height: math.unit(8, "miles")
  41039. },
  41040. ]
  41041. ))
  41042. characterMakers.push(() => makeCharacter(
  41043. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41044. {
  41045. side: {
  41046. height: math.unit(10, "feet"),
  41047. weight: math.unit(4500, "lb"),
  41048. name: "Side",
  41049. image: {
  41050. source: "./media/characters/ackart/side.svg",
  41051. extra: 1776/1668,
  41052. bottom: 116/1892
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Normal",
  41059. height: math.unit(10, "feet"),
  41060. default: true
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41066. {
  41067. side: {
  41068. height: math.unit(21, "feet"),
  41069. name: "Side",
  41070. image: {
  41071. source: "./media/characters/nolow/side.svg",
  41072. extra: 1484/1434,
  41073. bottom: 85/1569
  41074. }
  41075. },
  41076. sideErect: {
  41077. height: math.unit(21, "feet"),
  41078. name: "Side-erect",
  41079. image: {
  41080. source: "./media/characters/nolow/side-erect.svg",
  41081. extra: 1484/1434,
  41082. bottom: 85/1569
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Regular",
  41089. height: math.unit(12, "feet")
  41090. },
  41091. {
  41092. name: "Big Chee",
  41093. height: math.unit(21, "feet"),
  41094. default: true
  41095. },
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41100. {
  41101. front: {
  41102. height: math.unit(7, "feet"),
  41103. weight: math.unit(250, "lb"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/nines/front.svg",
  41107. extra: 1741/1607,
  41108. bottom: 41/1782
  41109. }
  41110. },
  41111. side: {
  41112. height: math.unit(7, "feet"),
  41113. weight: math.unit(250, "lb"),
  41114. name: "Side",
  41115. image: {
  41116. source: "./media/characters/nines/side.svg",
  41117. extra: 1854/1735,
  41118. bottom: 93/1947
  41119. }
  41120. },
  41121. back: {
  41122. height: math.unit(7, "feet"),
  41123. weight: math.unit(250, "lb"),
  41124. name: "Back",
  41125. image: {
  41126. source: "./media/characters/nines/back.svg",
  41127. extra: 1748/1615,
  41128. bottom: 20/1768
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Megamacro",
  41135. height: math.unit(99, "km"),
  41136. default: true
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(5 + 10/12, "feet"),
  41145. weight: math.unit(210, "lb"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/zenith/front.svg",
  41149. extra: 1531/1452,
  41150. bottom: 198/1729
  41151. }
  41152. },
  41153. back: {
  41154. height: math.unit(5 + 10/12, "feet"),
  41155. weight: math.unit(210, "lb"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/zenith/back.svg",
  41159. extra: 1571/1487,
  41160. bottom: 75/1646
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(5 + 10/12, "feet"),
  41168. default: true
  41169. }
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41174. {
  41175. front: {
  41176. height: math.unit(4, "feet"),
  41177. weight: math.unit(60, "lb"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/jasper/front.svg",
  41181. extra: 1450/1379,
  41182. bottom: 19/1469
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(4, "feet"),
  41190. default: true
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41196. {
  41197. front: {
  41198. height: math.unit(6 + 5/12, "feet"),
  41199. weight: math.unit(290, "lb"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/tiberius-thyben/front.svg",
  41203. extra: 757/739,
  41204. bottom: 39/796
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Micro",
  41211. height: math.unit(1.5, "inches")
  41212. },
  41213. {
  41214. name: "Normal",
  41215. height: math.unit(6 + 5/12, "feet"),
  41216. default: true
  41217. },
  41218. {
  41219. name: "Macro",
  41220. height: math.unit(300, "feet")
  41221. },
  41222. ]
  41223. ))
  41224. characterMakers.push(() => makeCharacter(
  41225. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41226. {
  41227. front: {
  41228. height: math.unit(5 + 6/12, "feet"),
  41229. weight: math.unit(60, "kg"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/sabre/front.svg",
  41233. extra: 738/671,
  41234. bottom: 27/765
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "Teeny",
  41241. height: math.unit(2, "inches")
  41242. },
  41243. {
  41244. name: "Smol",
  41245. height: math.unit(8, "inches")
  41246. },
  41247. {
  41248. name: "Normal",
  41249. height: math.unit(5 + 6/12, "feet"),
  41250. default: true
  41251. },
  41252. {
  41253. name: "Mini-Macro",
  41254. height: math.unit(15, "feet")
  41255. },
  41256. {
  41257. name: "Macro",
  41258. height: math.unit(50, "feet")
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(6 + 4/12, "feet"),
  41267. weight: math.unit(170, "lb"),
  41268. name: "Front",
  41269. image: {
  41270. source: "./media/characters/charlie/front.svg",
  41271. extra: 1348/1228,
  41272. bottom: 15/1363
  41273. }
  41274. },
  41275. },
  41276. [
  41277. {
  41278. name: "Macro",
  41279. height: math.unit(1700, "meters"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "MegaMacro",
  41284. height: math.unit(20400, "meters")
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(6 + 3/12, "feet"),
  41293. weight: math.unit(185, "lb"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/susan-grant/front.svg",
  41297. extra: 1351/1327,
  41298. bottom: 26/1377
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(6 + 3/12, "feet"),
  41306. default: true
  41307. },
  41308. {
  41309. name: "Macro",
  41310. height: math.unit(225, "feet")
  41311. },
  41312. {
  41313. name: "Macro+",
  41314. height: math.unit(900, "feet")
  41315. },
  41316. {
  41317. name: "MegaMacro",
  41318. height: math.unit(14400, "feet")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41324. {
  41325. front: {
  41326. height: math.unit(5 + 4/12, "feet"),
  41327. weight: math.unit(110, "lb"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/axel-isanov/front.svg",
  41331. extra: 1096/1065,
  41332. bottom: 13/1109
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(5 + 4/12, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(9, "feet"),
  41349. weight: math.unit(467, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/necahual/front.svg",
  41353. extra: 920/873,
  41354. bottom: 26/946
  41355. }
  41356. },
  41357. back: {
  41358. height: math.unit(9, "feet"),
  41359. weight: math.unit(467, "lb"),
  41360. name: "Back",
  41361. image: {
  41362. source: "./media/characters/necahual/back.svg",
  41363. extra: 930/884,
  41364. bottom: 16/946
  41365. }
  41366. },
  41367. frontUnderwear: {
  41368. height: math.unit(9, "feet"),
  41369. weight: math.unit(467, "lb"),
  41370. name: "Front (Underwear)",
  41371. image: {
  41372. source: "./media/characters/necahual/front-underwear.svg",
  41373. extra: 920/873,
  41374. bottom: 26/946
  41375. }
  41376. },
  41377. frontDressed: {
  41378. height: math.unit(9, "feet"),
  41379. weight: math.unit(467, "lb"),
  41380. name: "Front (Dressed)",
  41381. image: {
  41382. source: "./media/characters/necahual/front-dressed.svg",
  41383. extra: 920/873,
  41384. bottom: 26/946
  41385. }
  41386. },
  41387. },
  41388. [
  41389. {
  41390. name: "Comprsesed",
  41391. height: math.unit(9, "feet")
  41392. },
  41393. {
  41394. name: "Natural",
  41395. height: math.unit(15, "feet"),
  41396. default: true
  41397. },
  41398. {
  41399. name: "Boosted",
  41400. height: math.unit(50, "feet")
  41401. },
  41402. {
  41403. name: "Boosted+",
  41404. height: math.unit(150, "feet")
  41405. },
  41406. {
  41407. name: "Max",
  41408. height: math.unit(500, "feet")
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41414. {
  41415. front: {
  41416. height: math.unit(22 + 1/12, "feet"),
  41417. weight: math.unit(3200, "lb"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/theo-acacia/front.svg",
  41421. extra: 1796/1741,
  41422. bottom: 83/1879
  41423. }
  41424. },
  41425. frontUnderwear: {
  41426. height: math.unit(22 + 1/12, "feet"),
  41427. weight: math.unit(3200, "lb"),
  41428. name: "Front (Underwear)",
  41429. image: {
  41430. source: "./media/characters/theo-acacia/front-underwear.svg",
  41431. extra: 1796/1741,
  41432. bottom: 83/1879
  41433. }
  41434. },
  41435. frontNude: {
  41436. height: math.unit(22 + 1/12, "feet"),
  41437. weight: math.unit(3200, "lb"),
  41438. name: "Front (Nude)",
  41439. image: {
  41440. source: "./media/characters/theo-acacia/front-nude.svg",
  41441. extra: 1796/1741,
  41442. bottom: 83/1879
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Normal",
  41449. height: math.unit(22 + 1/12, "feet"),
  41450. default: true
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(20, "feet"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/astra/front.svg",
  41462. extra: 1850/1714,
  41463. bottom: 106/1956
  41464. }
  41465. },
  41466. frontUndressed: {
  41467. height: math.unit(20, "feet"),
  41468. name: "Front (Undressed)",
  41469. image: {
  41470. source: "./media/characters/astra/front-undressed.svg",
  41471. extra: 1926/1749,
  41472. bottom: 0/1926
  41473. }
  41474. },
  41475. hand: {
  41476. height: math.unit(1.53, "feet"),
  41477. name: "Hand",
  41478. image: {
  41479. source: "./media/characters/astra/hand.svg"
  41480. }
  41481. },
  41482. paw: {
  41483. height: math.unit(1.53, "feet"),
  41484. name: "Paw",
  41485. image: {
  41486. source: "./media/characters/astra/paw.svg"
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Smallest",
  41493. height: math.unit(20, "feet")
  41494. },
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(1e9, "miles"),
  41498. default: true
  41499. },
  41500. {
  41501. name: "Larger",
  41502. height: math.unit(5, "multiverses")
  41503. },
  41504. {
  41505. name: "Largest",
  41506. height: math.unit(1e9, "multiverses")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(8, "feet"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/breanna/front.svg",
  41518. extra: 1912/1632,
  41519. bottom: 33/1945
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Smallest",
  41526. height: math.unit(8, "feet")
  41527. },
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(1, "mile"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Maximum",
  41535. height: math.unit(1500000000000, "lightyears")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(5 + 11/12, "feet"),
  41544. weight: math.unit(155, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/cai/front.svg",
  41548. extra: 1823/1702,
  41549. bottom: 32/1855
  41550. }
  41551. },
  41552. back: {
  41553. height: math.unit(5 + 11/12, "feet"),
  41554. weight: math.unit(155, "lb"),
  41555. name: "Back",
  41556. image: {
  41557. source: "./media/characters/cai/back.svg",
  41558. extra: 1809/1708,
  41559. bottom: 31/1840
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(5 + 11/12, "feet"),
  41567. default: true
  41568. },
  41569. {
  41570. name: "Big",
  41571. height: math.unit(15, "feet")
  41572. },
  41573. {
  41574. name: "Macro",
  41575. height: math.unit(200, "feet")
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41581. {
  41582. front: {
  41583. height: math.unit(5 + 6/12, "feet"),
  41584. weight: math.unit(160, "lb"),
  41585. name: "Front",
  41586. image: {
  41587. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41588. extra: 1227/1174,
  41589. bottom: 37/1264
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Macro",
  41596. height: math.unit(444, "meters"),
  41597. default: true
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(18 + 7/12, "feet"),
  41606. name: "Front",
  41607. image: {
  41608. source: "./media/characters/rex/front.svg",
  41609. extra: 1941/1807,
  41610. bottom: 66/2007
  41611. }
  41612. },
  41613. back: {
  41614. height: math.unit(18 + 7/12, "feet"),
  41615. name: "Back",
  41616. image: {
  41617. source: "./media/characters/rex/back.svg",
  41618. extra: 1937/1822,
  41619. bottom: 42/1979
  41620. }
  41621. },
  41622. boot: {
  41623. height: math.unit(3.45, "feet"),
  41624. name: "Boot",
  41625. image: {
  41626. source: "./media/characters/rex/boot.svg"
  41627. }
  41628. },
  41629. paw: {
  41630. height: math.unit(4.17, "feet"),
  41631. name: "Paw",
  41632. image: {
  41633. source: "./media/characters/rex/paw.svg"
  41634. }
  41635. },
  41636. head: {
  41637. height: math.unit(6.728, "feet"),
  41638. name: "Head",
  41639. image: {
  41640. source: "./media/characters/rex/head.svg"
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Nano",
  41647. height: math.unit(18 + 7/12, "feet")
  41648. },
  41649. {
  41650. name: "Micro",
  41651. height: math.unit(1.5, "megameters")
  41652. },
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(440, "megameters"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "Macro",
  41660. height: math.unit(2.5, "gigameters")
  41661. },
  41662. {
  41663. name: "Gigamacro",
  41664. height: math.unit(2, "galaxies")
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41670. {
  41671. side: {
  41672. height: math.unit(32, "feet"),
  41673. weight: math.unit(250000, "lb"),
  41674. name: "Side",
  41675. image: {
  41676. source: "./media/characters/silverwing/side.svg",
  41677. extra: 1100/1019,
  41678. bottom: 204/1304
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(32, "feet"),
  41686. default: true
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(6 + 6/12, "feet"),
  41695. weight: math.unit(350, "lb"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/tristan-hawthorne/front.svg",
  41699. extra: 1159/1124,
  41700. bottom: 37/1196
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Normal",
  41707. height: math.unit(6 + 6/12, "feet"),
  41708. default: true
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(5 + 11/12, "feet"),
  41717. weight: math.unit(190, "lb"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/mizu/front.svg",
  41721. extra: 1988/1788,
  41722. bottom: 14/2002
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Normal",
  41729. height: math.unit(5 + 11/12, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(1.7, "feet"),
  41739. weight: math.unit(50, "lb"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/dechroma/front.svg",
  41743. extra: 1095/859,
  41744. bottom: 64/1159
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Normal",
  41751. height: math.unit(1.7, "feet"),
  41752. default: true
  41753. },
  41754. ]
  41755. ))
  41756. characterMakers.push(() => makeCharacter(
  41757. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41758. {
  41759. side: {
  41760. height: math.unit(30, "feet"),
  41761. name: "Side",
  41762. image: {
  41763. source: "./media/characters/veluren-thanazel/side.svg",
  41764. extra: 1611/633,
  41765. bottom: 118/1729
  41766. }
  41767. },
  41768. front: {
  41769. height: math.unit(30, "feet"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/veluren-thanazel/front.svg",
  41773. extra: 1486/636,
  41774. bottom: 238/1724
  41775. }
  41776. },
  41777. head: {
  41778. height: math.unit(21.4, "feet"),
  41779. name: "Head",
  41780. image: {
  41781. source: "./media/characters/veluren-thanazel/head.svg"
  41782. }
  41783. },
  41784. genitals: {
  41785. height: math.unit(19.4, "feet"),
  41786. name: "Genitals",
  41787. image: {
  41788. source: "./media/characters/veluren-thanazel/genitals.svg"
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Social",
  41795. height: math.unit(6, "feet")
  41796. },
  41797. {
  41798. name: "Play",
  41799. height: math.unit(12, "feet")
  41800. },
  41801. {
  41802. name: "True",
  41803. height: math.unit(30, "feet"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(7 + 6/12, "feet"),
  41813. weight: math.unit(500, "kg"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/arcturas/front.svg",
  41817. extra: 1700/1500,
  41818. bottom: 145/1845
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(7 + 6/12, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41832. {
  41833. side: {
  41834. height: math.unit(6, "feet"),
  41835. weight: math.unit(2, "tons"),
  41836. name: "Side",
  41837. image: {
  41838. source: "./media/characters/vitaen/side.svg",
  41839. extra: 1157/617,
  41840. bottom: 122/1279
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Normal",
  41847. height: math.unit(6, "feet"),
  41848. default: true
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(19, "feet"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/fia-dreamweaver/front.svg",
  41860. extra: 1630/1504,
  41861. bottom: 25/1655
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(19, "feet"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(5 + 4/12, "feet"),
  41878. name: "Front",
  41879. image: {
  41880. source: "./media/characters/artan/front.svg",
  41881. extra: 1618/1535,
  41882. bottom: 46/1664
  41883. }
  41884. },
  41885. back: {
  41886. height: math.unit(5 + 4/12, "feet"),
  41887. name: "Back",
  41888. image: {
  41889. source: "./media/characters/artan/back.svg",
  41890. extra: 1618/1543,
  41891. bottom: 31/1649
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(5 + 4/12, "feet"),
  41899. default: true
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41905. {
  41906. side: {
  41907. height: math.unit(182, "cm"),
  41908. weight: math.unit(1000, "lb"),
  41909. name: "Side",
  41910. image: {
  41911. source: "./media/characters/silver-dragon/side.svg",
  41912. extra: 710/287,
  41913. bottom: 88/798
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(182, "cm"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41927. {
  41928. side: {
  41929. height: math.unit(6 + 6/12, "feet"),
  41930. weight: math.unit(1.5, "tons"),
  41931. name: "Side",
  41932. image: {
  41933. source: "./media/characters/zephyr/side.svg",
  41934. extra: 1433/586,
  41935. bottom: 109/1542
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(6 + 6/12, "feet"),
  41943. default: true
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41949. {
  41950. side: {
  41951. height: math.unit(1, "feet"),
  41952. name: "Side",
  41953. image: {
  41954. source: "./media/characters/vixye/side.svg",
  41955. extra: 632/541,
  41956. bottom: 0/632
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(1, "feet"),
  41964. default: true
  41965. },
  41966. {
  41967. name: "True",
  41968. height: math.unit(1e15, "multiverses")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(8 + 2/12, "feet"),
  41977. weight: math.unit(650, "lb"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41981. extra: 1174/1137,
  41982. bottom: 82/1256
  41983. }
  41984. },
  41985. back: {
  41986. height: math.unit(8 + 2/12, "feet"),
  41987. weight: math.unit(650, "lb"),
  41988. name: "Back",
  41989. image: {
  41990. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41991. extra: 1204/1157,
  41992. bottom: 46/1250
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Wildform",
  41999. height: math.unit(8 + 2/12, "feet"),
  42000. default: true
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42006. {
  42007. front: {
  42008. height: math.unit(18, "feet"),
  42009. name: "Front",
  42010. image: {
  42011. source: "./media/characters/cyphin/front.svg",
  42012. extra: 970/886,
  42013. bottom: 42/1012
  42014. }
  42015. },
  42016. back: {
  42017. height: math.unit(18, "feet"),
  42018. name: "Back",
  42019. image: {
  42020. source: "./media/characters/cyphin/back.svg",
  42021. extra: 1009/894,
  42022. bottom: 24/1033
  42023. }
  42024. },
  42025. head: {
  42026. height: math.unit(5.05, "feet"),
  42027. name: "Head",
  42028. image: {
  42029. source: "./media/characters/cyphin/head.svg"
  42030. }
  42031. },
  42032. tailbud: {
  42033. height: math.unit(5, "feet"),
  42034. name: "Tailbud",
  42035. image: {
  42036. source: "./media/characters/cyphin/tailbud.svg"
  42037. }
  42038. },
  42039. },
  42040. [
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42045. {
  42046. side: {
  42047. height: math.unit(10, "feet"),
  42048. weight: math.unit(6, "tons"),
  42049. name: "Side",
  42050. image: {
  42051. source: "./media/characters/raijin/side.svg",
  42052. extra: 1529/613,
  42053. bottom: 337/1866
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Normal",
  42060. height: math.unit(10, "feet"),
  42061. default: true
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42067. {
  42068. side: {
  42069. height: math.unit(9, "feet"),
  42070. name: "Side",
  42071. image: {
  42072. source: "./media/characters/nilghais/side.svg",
  42073. extra: 1047/744,
  42074. bottom: 91/1138
  42075. }
  42076. },
  42077. head: {
  42078. height: math.unit(3.14, "feet"),
  42079. name: "Head",
  42080. image: {
  42081. source: "./media/characters/nilghais/head.svg"
  42082. }
  42083. },
  42084. mouth: {
  42085. height: math.unit(4.6, "feet"),
  42086. name: "Mouth",
  42087. image: {
  42088. source: "./media/characters/nilghais/mouth.svg"
  42089. }
  42090. },
  42091. wings: {
  42092. height: math.unit(24, "feet"),
  42093. name: "Wings",
  42094. image: {
  42095. source: "./media/characters/nilghais/wings.svg"
  42096. }
  42097. },
  42098. ass: {
  42099. height: math.unit(6.12, "feet"),
  42100. name: "Ass",
  42101. image: {
  42102. source: "./media/characters/nilghais/ass.svg"
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Normal",
  42109. height: math.unit(9, "feet"),
  42110. default: true
  42111. },
  42112. ]
  42113. ))
  42114. characterMakers.push(() => makeCharacter(
  42115. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42116. {
  42117. regular: {
  42118. height: math.unit(16 + 2/12, "feet"),
  42119. weight: math.unit(2300, "lb"),
  42120. name: "Regular",
  42121. image: {
  42122. source: "./media/characters/zolgar/regular.svg",
  42123. extra: 1246/1004,
  42124. bottom: 124/1370
  42125. }
  42126. },
  42127. boxers: {
  42128. height: math.unit(16 + 2/12, "feet"),
  42129. weight: math.unit(2300, "lb"),
  42130. name: "Boxers",
  42131. image: {
  42132. source: "./media/characters/zolgar/boxers.svg",
  42133. extra: 1246/1004,
  42134. bottom: 124/1370
  42135. }
  42136. },
  42137. armored: {
  42138. height: math.unit(16 + 2/12, "feet"),
  42139. weight: math.unit(2300, "lb"),
  42140. name: "Armored",
  42141. image: {
  42142. source: "./media/characters/zolgar/armored.svg",
  42143. extra: 1246/1004,
  42144. bottom: 124/1370
  42145. }
  42146. },
  42147. goth: {
  42148. height: math.unit(16 + 2/12, "feet"),
  42149. weight: math.unit(2300, "lb"),
  42150. name: "Goth",
  42151. image: {
  42152. source: "./media/characters/zolgar/goth.svg",
  42153. extra: 1246/1004,
  42154. bottom: 124/1370
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Shrunken Down",
  42161. height: math.unit(9 + 2/12, "feet")
  42162. },
  42163. {
  42164. name: "Normal",
  42165. height: math.unit(16 + 2/12, "feet"),
  42166. default: true
  42167. },
  42168. ]
  42169. ))
  42170. characterMakers.push(() => makeCharacter(
  42171. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42172. {
  42173. front: {
  42174. height: math.unit(6, "feet"),
  42175. weight: math.unit(168, "lb"),
  42176. name: "Front",
  42177. image: {
  42178. source: "./media/characters/luca/front.svg",
  42179. extra: 841/667,
  42180. bottom: 102/943
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Normal",
  42187. height: math.unit(6, "feet"),
  42188. default: true
  42189. },
  42190. ]
  42191. ))
  42192. characterMakers.push(() => makeCharacter(
  42193. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42194. {
  42195. side: {
  42196. height: math.unit(7 + 3/12, "feet"),
  42197. weight: math.unit(312, "lb"),
  42198. name: "Side",
  42199. image: {
  42200. source: "./media/characters/zezo/side.svg",
  42201. extra: 1192/1067,
  42202. bottom: 63/1255
  42203. }
  42204. },
  42205. },
  42206. [
  42207. {
  42208. name: "Normal",
  42209. height: math.unit(7 + 3/12, "feet"),
  42210. default: true
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(5 + 5/12, "feet"),
  42219. weight: math.unit(170, "lb"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/mayso/front.svg",
  42223. extra: 1215/1108,
  42224. bottom: 16/1231
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Normal",
  42231. height: math.unit(5 + 5/12, "feet"),
  42232. default: true
  42233. },
  42234. ]
  42235. ))
  42236. characterMakers.push(() => makeCharacter(
  42237. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42238. {
  42239. front: {
  42240. height: math.unit(4 + 3/12, "feet"),
  42241. weight: math.unit(80, "lb"),
  42242. name: "Front",
  42243. image: {
  42244. source: "./media/characters/hess/front.svg",
  42245. extra: 1200/1123,
  42246. bottom: 16/1216
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(4 + 3/12, "feet"),
  42254. default: true
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42260. {
  42261. front: {
  42262. height: math.unit(1.9, "meters"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/ashgar/front.svg",
  42266. extra: 1177/1146,
  42267. bottom: 99/1276
  42268. }
  42269. },
  42270. back: {
  42271. height: math.unit(1.9, "meters"),
  42272. name: "Back",
  42273. image: {
  42274. source: "./media/characters/ashgar/back.svg",
  42275. extra: 1201/1183,
  42276. bottom: 53/1254
  42277. }
  42278. },
  42279. feral: {
  42280. height: math.unit(1.4, "meters"),
  42281. name: "Feral",
  42282. image: {
  42283. source: "./media/characters/ashgar/feral.svg",
  42284. extra: 370/345,
  42285. bottom: 45/415
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Normal",
  42292. height: math.unit(1.9, "meters"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42299. {
  42300. regular: {
  42301. height: math.unit(6, "feet"),
  42302. weight: math.unit(220, "lb"),
  42303. name: "Regular",
  42304. image: {
  42305. source: "./media/characters/phillip/regular.svg",
  42306. extra: 1373/1277,
  42307. bottom: 75/1448
  42308. }
  42309. },
  42310. dressed: {
  42311. height: math.unit(6, "feet"),
  42312. weight: math.unit(220, "lb"),
  42313. name: "Dressed",
  42314. image: {
  42315. source: "./media/characters/phillip/dressed.svg",
  42316. extra: 1373/1277,
  42317. bottom: 75/1448
  42318. }
  42319. },
  42320. paw: {
  42321. height: math.unit(1.44, "feet"),
  42322. name: "Paw",
  42323. image: {
  42324. source: "./media/characters/phillip/paw.svg"
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(6, "feet"),
  42332. default: true
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42338. {
  42339. side: {
  42340. height: math.unit(42, "feet"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/uvula/side.svg",
  42344. extra: 683/586,
  42345. bottom: 60/743
  42346. }
  42347. },
  42348. front: {
  42349. height: math.unit(42, "feet"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/uvula/front.svg",
  42353. extra: 705/613,
  42354. bottom: 54/759
  42355. }
  42356. },
  42357. maw: {
  42358. height: math.unit(23.5, "feet"),
  42359. name: "Maw",
  42360. image: {
  42361. source: "./media/characters/uvula/maw.svg"
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Original Size",
  42368. height: math.unit(14, "inches")
  42369. },
  42370. {
  42371. name: "Human Size",
  42372. height: math.unit(6, "feet")
  42373. },
  42374. {
  42375. name: "Big",
  42376. height: math.unit(42, "feet"),
  42377. default: true
  42378. },
  42379. {
  42380. name: "Bigger",
  42381. height: math.unit(100, "feet")
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(5 + 11/12, "feet"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/lannah/front.svg",
  42393. extra: 1208/1113,
  42394. bottom: 97/1305
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Normal",
  42401. height: math.unit(5 + 11/12, "feet"),
  42402. default: true
  42403. },
  42404. ]
  42405. ))
  42406. characterMakers.push(() => makeCharacter(
  42407. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42408. {
  42409. front: {
  42410. height: math.unit(6 + 3/12, "feet"),
  42411. weight: math.unit(3.5, "tons"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/emberflame/front.svg",
  42415. extra: 1198/672,
  42416. bottom: 82/1280
  42417. }
  42418. },
  42419. side: {
  42420. height: math.unit(6 + 3/12, "feet"),
  42421. weight: math.unit(3.5, "tons"),
  42422. name: "Side",
  42423. image: {
  42424. source: "./media/characters/emberflame/side.svg",
  42425. extra: 938/527,
  42426. bottom: 56/994
  42427. }
  42428. },
  42429. },
  42430. [
  42431. {
  42432. name: "Normal",
  42433. height: math.unit(6 + 3/12, "feet"),
  42434. default: true
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42440. {
  42441. side: {
  42442. height: math.unit(17.5, "feet"),
  42443. weight: math.unit(35, "tons"),
  42444. name: "Side",
  42445. image: {
  42446. source: "./media/characters/sophie-ambrose/side.svg",
  42447. extra: 1573/1242,
  42448. bottom: 71/1644
  42449. }
  42450. },
  42451. maw: {
  42452. height: math.unit(7.4, "feet"),
  42453. name: "Maw",
  42454. image: {
  42455. source: "./media/characters/sophie-ambrose/maw.svg"
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(17.5, "feet"),
  42463. default: true
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(280, "feet"),
  42472. weight: math.unit(550, "tons"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/king-mugi/front.svg",
  42476. extra: 1102/947,
  42477. bottom: 104/1206
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "King Mugi",
  42484. height: math.unit(280, "feet"),
  42485. default: true
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(64, "meters"),
  42494. name: "Front",
  42495. image: {
  42496. source: "./media/characters/nova-fox/front.svg",
  42497. extra: 1310/1246,
  42498. bottom: 65/1375
  42499. }
  42500. },
  42501. },
  42502. [
  42503. {
  42504. name: "Macro",
  42505. height: math.unit(64, "meters"),
  42506. default: true
  42507. },
  42508. ]
  42509. ))
  42510. characterMakers.push(() => makeCharacter(
  42511. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42512. {
  42513. front: {
  42514. height: math.unit(6 + 3/12, "feet"),
  42515. weight: math.unit(170, "lb"),
  42516. name: "Front",
  42517. image: {
  42518. source: "./media/characters/sam-bat/front.svg",
  42519. extra: 1601/1411,
  42520. bottom: 125/1726
  42521. }
  42522. },
  42523. back: {
  42524. height: math.unit(6 + 3/12, "feet"),
  42525. weight: math.unit(170, "lb"),
  42526. name: "Back",
  42527. image: {
  42528. source: "./media/characters/sam-bat/back.svg",
  42529. extra: 1577/1405,
  42530. bottom: 58/1635
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(6 + 3/12, "feet"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42544. {
  42545. front: {
  42546. height: math.unit(59, "feet"),
  42547. weight: math.unit(40000, "lb"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/inari/front.svg",
  42551. extra: 1884/1350,
  42552. bottom: 95/1979
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Gigantamax",
  42559. height: math.unit(59, "feet"),
  42560. default: true
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(5 + 8/12, "feet"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/elizabeth/front.svg",
  42572. extra: 1395/1298,
  42573. bottom: 54/1449
  42574. }
  42575. },
  42576. mouth: {
  42577. height: math.unit(1.97, "feet"),
  42578. name: "Mouth",
  42579. image: {
  42580. source: "./media/characters/elizabeth/mouth.svg"
  42581. }
  42582. },
  42583. foot: {
  42584. height: math.unit(1.17, "feet"),
  42585. name: "Foot",
  42586. image: {
  42587. source: "./media/characters/elizabeth/foot.svg"
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Normal",
  42594. height: math.unit(5 + 8/12, "feet"),
  42595. default: true
  42596. },
  42597. {
  42598. name: "Minimacro",
  42599. height: math.unit(18, "feet")
  42600. },
  42601. {
  42602. name: "Macro",
  42603. height: math.unit(180, "feet")
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(5 + 2/12, "feet"),
  42612. name: "Front",
  42613. image: {
  42614. source: "./media/characters/october-gossamer/front.svg",
  42615. extra: 505/454,
  42616. bottom: 7/512
  42617. }
  42618. },
  42619. back: {
  42620. height: math.unit(5 + 2/12, "feet"),
  42621. name: "Back",
  42622. image: {
  42623. source: "./media/characters/october-gossamer/back.svg",
  42624. extra: 501/454,
  42625. bottom: 11/512
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(5 + 2/12, "feet"),
  42633. default: true
  42634. },
  42635. ]
  42636. ))
  42637. characterMakers.push(() => makeCharacter(
  42638. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42639. {
  42640. front: {
  42641. height: math.unit(5, "feet"),
  42642. name: "Front",
  42643. image: {
  42644. source: "./media/characters/epiglottis/front.svg",
  42645. extra: 923/849,
  42646. bottom: 17/940
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Original Size",
  42653. height: math.unit(10, "inches")
  42654. },
  42655. {
  42656. name: "Human Size",
  42657. height: math.unit(5, "feet"),
  42658. default: true
  42659. },
  42660. {
  42661. name: "Big",
  42662. height: math.unit(25, "feet")
  42663. },
  42664. {
  42665. name: "Bigger",
  42666. height: math.unit(50, "feet")
  42667. },
  42668. {
  42669. name: "oh lawd",
  42670. height: math.unit(75, "feet")
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(2 + 4/12, "feet"),
  42679. weight: math.unit(60, "lb"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/lerm/front.svg",
  42683. extra: 796/790,
  42684. bottom: 79/875
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(2 + 4/12, "feet"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42698. {
  42699. front: {
  42700. height: math.unit(5.5, "feet"),
  42701. weight: math.unit(130, "lb"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/xena-nebadon/front.svg",
  42705. extra: 1828/1730,
  42706. bottom: 79/1907
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Tiny Puppy",
  42713. height: math.unit(3, "inches")
  42714. },
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(5.5, "feet"),
  42718. default: true
  42719. },
  42720. {
  42721. name: "Lotta Lady",
  42722. height: math.unit(12, "feet")
  42723. },
  42724. {
  42725. name: "Pretty Big",
  42726. height: math.unit(100, "feet")
  42727. },
  42728. {
  42729. name: "Big",
  42730. height: math.unit(500, "feet")
  42731. },
  42732. {
  42733. name: "Skyscraper Toys",
  42734. height: math.unit(2500, "feet")
  42735. },
  42736. {
  42737. name: "Plane Catcher",
  42738. height: math.unit(8, "miles")
  42739. },
  42740. {
  42741. name: "Planet Toys",
  42742. height: math.unit(15, "earths")
  42743. },
  42744. {
  42745. name: "Stardust",
  42746. height: math.unit(0.25, "galaxies")
  42747. },
  42748. {
  42749. name: "Snacks",
  42750. height: math.unit(70, "universes")
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(1.6, "meters"),
  42759. weight: math.unit(60, "kg"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/bounty/front.svg",
  42763. extra: 1426/1308,
  42764. bottom: 15/1441
  42765. }
  42766. },
  42767. back: {
  42768. height: math.unit(1.6, "meters"),
  42769. weight: math.unit(60, "kg"),
  42770. name: "Back",
  42771. image: {
  42772. source: "./media/characters/bounty/back.svg",
  42773. extra: 1417/1307,
  42774. bottom: 8/1425
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(1.6, "meters"),
  42782. default: true
  42783. },
  42784. {
  42785. name: "Macro",
  42786. height: math.unit(300, "meters")
  42787. },
  42788. ]
  42789. ))
  42790. characterMakers.push(() => makeCharacter(
  42791. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42792. {
  42793. front: {
  42794. height: math.unit(2 + 8/12, "feet"),
  42795. weight: math.unit(15, "lb"),
  42796. name: "Front",
  42797. image: {
  42798. source: "./media/characters/mochi/front.svg",
  42799. extra: 1022/852,
  42800. bottom: 435/1457
  42801. }
  42802. },
  42803. back: {
  42804. height: math.unit(2 + 8/12, "feet"),
  42805. weight: math.unit(15, "lb"),
  42806. name: "Back",
  42807. image: {
  42808. source: "./media/characters/mochi/back.svg",
  42809. extra: 1335/1119,
  42810. bottom: 39/1374
  42811. }
  42812. },
  42813. bird: {
  42814. height: math.unit(2 + 8/12, "feet"),
  42815. weight: math.unit(15, "lb"),
  42816. name: "Bird",
  42817. image: {
  42818. source: "./media/characters/mochi/bird.svg",
  42819. extra: 1251/1113,
  42820. bottom: 178/1429
  42821. }
  42822. },
  42823. kaiju: {
  42824. height: math.unit(154, "feet"),
  42825. weight: math.unit(1e7, "lb"),
  42826. name: "Kaiju",
  42827. image: {
  42828. source: "./media/characters/mochi/kaiju.svg",
  42829. extra: 460/324,
  42830. bottom: 40/500
  42831. }
  42832. },
  42833. head: {
  42834. height: math.unit(1.21, "feet"),
  42835. name: "Head",
  42836. image: {
  42837. source: "./media/characters/mochi/head.svg"
  42838. }
  42839. },
  42840. alternateTail: {
  42841. height: math.unit(2 + 8/12, "feet"),
  42842. weight: math.unit(45, "lb"),
  42843. name: "Alternate Tail",
  42844. image: {
  42845. source: "./media/characters/mochi/alternate-tail.svg",
  42846. extra: 139/76,
  42847. bottom: 45/184
  42848. }
  42849. },
  42850. },
  42851. [
  42852. {
  42853. name: "Micro",
  42854. height: math.unit(2, "inches")
  42855. },
  42856. {
  42857. name: "Normal",
  42858. height: math.unit(2 + 8/12, "feet"),
  42859. default: true
  42860. },
  42861. {
  42862. name: "Macro",
  42863. height: math.unit(106, "feet")
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(5.67, "feet"),
  42872. weight: math.unit(135, "lb"),
  42873. name: "Front",
  42874. image: {
  42875. source: "./media/characters/sarel/front.svg",
  42876. extra: 865/788,
  42877. bottom: 97/962
  42878. }
  42879. },
  42880. back: {
  42881. height: math.unit(5.67, "feet"),
  42882. weight: math.unit(135, "lb"),
  42883. name: "Back",
  42884. image: {
  42885. source: "./media/characters/sarel/back.svg",
  42886. extra: 857/777,
  42887. bottom: 32/889
  42888. }
  42889. },
  42890. chozoan: {
  42891. height: math.unit(5.67, "feet"),
  42892. weight: math.unit(135, "lb"),
  42893. name: "Chozoan",
  42894. image: {
  42895. source: "./media/characters/sarel/chozoan.svg",
  42896. extra: 865/788,
  42897. bottom: 97/962
  42898. }
  42899. },
  42900. current: {
  42901. height: math.unit(5.67, "feet"),
  42902. weight: math.unit(135, "lb"),
  42903. name: "Current",
  42904. image: {
  42905. source: "./media/characters/sarel/current.svg",
  42906. extra: 865/788,
  42907. bottom: 97/962
  42908. }
  42909. },
  42910. head: {
  42911. height: math.unit(1.77, "feet"),
  42912. name: "Head",
  42913. image: {
  42914. source: "./media/characters/sarel/head.svg"
  42915. }
  42916. },
  42917. claws: {
  42918. height: math.unit(1.8, "feet"),
  42919. name: "Claws",
  42920. image: {
  42921. source: "./media/characters/sarel/claws.svg"
  42922. }
  42923. },
  42924. clawsAlt: {
  42925. height: math.unit(1.8, "feet"),
  42926. name: "Claws-alt",
  42927. image: {
  42928. source: "./media/characters/sarel/claws-alt.svg"
  42929. }
  42930. },
  42931. },
  42932. [
  42933. {
  42934. name: "Normal",
  42935. height: math.unit(5.67, "feet"),
  42936. default: true
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42942. {
  42943. front: {
  42944. height: math.unit(5500, "feet"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/alyonia/front.svg",
  42948. extra: 1200/1135,
  42949. bottom: 29/1229
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(5500, "feet"),
  42954. name: "Back",
  42955. image: {
  42956. source: "./media/characters/alyonia/back.svg",
  42957. extra: 1205/1138,
  42958. bottom: 10/1215
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Small",
  42965. height: math.unit(10, "feet")
  42966. },
  42967. {
  42968. name: "Macro",
  42969. height: math.unit(500, "feet")
  42970. },
  42971. {
  42972. name: "Mega Macro",
  42973. height: math.unit(5500, "feet"),
  42974. default: true
  42975. },
  42976. {
  42977. name: "Mega Macro+",
  42978. height: math.unit(500000, "feet")
  42979. },
  42980. {
  42981. name: "Giga Macro",
  42982. height: math.unit(3000, "miles")
  42983. },
  42984. {
  42985. name: "Tera Macro",
  42986. height: math.unit(2.8e6, "miles")
  42987. },
  42988. {
  42989. name: "Galactic",
  42990. height: math.unit(120000, "lightyears")
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42996. {
  42997. werewolf: {
  42998. height: math.unit(8, "feet"),
  42999. weight: math.unit(425, "lb"),
  43000. name: "Werewolf",
  43001. image: {
  43002. source: "./media/characters/autumn/werewolf.svg",
  43003. extra: 2154/2031,
  43004. bottom: 160/2314
  43005. }
  43006. },
  43007. human: {
  43008. height: math.unit(5 + 8/12, "feet"),
  43009. weight: math.unit(150, "lb"),
  43010. name: "Human",
  43011. image: {
  43012. source: "./media/characters/autumn/human.svg",
  43013. extra: 1200/1149,
  43014. bottom: 30/1230
  43015. }
  43016. },
  43017. },
  43018. [
  43019. {
  43020. name: "Normal",
  43021. height: math.unit(8, "feet"),
  43022. default: true
  43023. },
  43024. ]
  43025. ))
  43026. characterMakers.push(() => makeCharacter(
  43027. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43028. {
  43029. front: {
  43030. height: math.unit(8 + 5/12, "feet"),
  43031. weight: math.unit(825, "lb"),
  43032. name: "Front",
  43033. image: {
  43034. source: "./media/characters/cobalt-charizard/front.svg",
  43035. extra: 1268/1155,
  43036. bottom: 122/1390
  43037. }
  43038. },
  43039. side: {
  43040. height: math.unit(8 + 5/12, "feet"),
  43041. weight: math.unit(825, "lb"),
  43042. name: "Side",
  43043. image: {
  43044. source: "./media/characters/cobalt-charizard/side.svg",
  43045. extra: 1348/1257,
  43046. bottom: 58/1406
  43047. }
  43048. },
  43049. gMax: {
  43050. height: math.unit(134 + 11/12, "feet"),
  43051. name: "G-Max",
  43052. image: {
  43053. source: "./media/characters/cobalt-charizard/g-max.svg",
  43054. extra: 1835/1541,
  43055. bottom: 151/1986
  43056. }
  43057. },
  43058. },
  43059. [
  43060. {
  43061. name: "Normal",
  43062. height: math.unit(8 + 5/12, "feet"),
  43063. default: true
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(6 + 3/12, "feet"),
  43072. weight: math.unit(210, "lb"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/stella/front.svg",
  43076. extra: 3549/3335,
  43077. bottom: 51/3600
  43078. }
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(6 + 3/12, "feet"),
  43085. default: true
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(5, "feet"),
  43094. weight: math.unit(90, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/riley-bishop/front.svg",
  43098. extra: 1450/1428,
  43099. bottom: 152/1602
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(5, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43113. {
  43114. side: {
  43115. height: math.unit(8 + 2/12, "feet"),
  43116. weight: math.unit(500, "kg"),
  43117. name: "Side",
  43118. image: {
  43119. source: "./media/characters/theo-arcanine/side.svg",
  43120. extra: 1342/1074,
  43121. bottom: 111/1453
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(8 + 2/12, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43135. {
  43136. front: {
  43137. height: math.unit(4, "feet"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/kali/front.svg",
  43141. extra: 1921/1357,
  43142. bottom: 70/1991
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Normal",
  43149. height: math.unit(4, "feet"),
  43150. default: true
  43151. },
  43152. {
  43153. name: "Macro",
  43154. height: math.unit(32, "meters")
  43155. },
  43156. {
  43157. name: "Macro+",
  43158. height: math.unit(150, "meters")
  43159. },
  43160. {
  43161. name: "Megamacro",
  43162. height: math.unit(7500, "meters")
  43163. },
  43164. {
  43165. name: "Megamacro+",
  43166. height: math.unit(80, "kilometers")
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43172. {
  43173. side: {
  43174. height: math.unit(5 + 11/12, "feet"),
  43175. weight: math.unit(236, "lb"),
  43176. name: "Side",
  43177. image: {
  43178. source: "./media/characters/gapp/side.svg",
  43179. extra: 775/340,
  43180. bottom: 58/833
  43181. }
  43182. },
  43183. mouth: {
  43184. height: math.unit(2.98, "feet"),
  43185. name: "Mouth",
  43186. image: {
  43187. source: "./media/characters/gapp/mouth.svg"
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(5 + 1/12, "feet"),
  43195. default: true
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43201. {
  43202. front: {
  43203. height: math.unit(6, "feet"),
  43204. name: "Front",
  43205. image: {
  43206. source: "./media/characters/persephone/front.svg",
  43207. extra: 1895/1717,
  43208. bottom: 96/1991
  43209. }
  43210. },
  43211. back: {
  43212. height: math.unit(6, "feet"),
  43213. name: "Back",
  43214. image: {
  43215. source: "./media/characters/persephone/back.svg",
  43216. extra: 1868/1679,
  43217. bottom: 26/1894
  43218. }
  43219. },
  43220. casual: {
  43221. height: math.unit(6, "feet"),
  43222. name: "Casual",
  43223. image: {
  43224. source: "./media/characters/persephone/casual.svg",
  43225. extra: 1713/1541,
  43226. bottom: 76/1789
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Human Size",
  43233. height: math.unit(6, "feet")
  43234. },
  43235. {
  43236. name: "Big Steppy",
  43237. height: math.unit(600, "meters"),
  43238. default: true
  43239. },
  43240. {
  43241. name: "Galaxy Brain",
  43242. height: math.unit(1, "zettameter")
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(1.85, "meters"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/riley-foxthing/front.svg",
  43254. extra: 1495/1354,
  43255. bottom: 122/1617
  43256. }
  43257. },
  43258. frontAlt: {
  43259. height: math.unit(1.85, "meters"),
  43260. name: "Front (Alt)",
  43261. image: {
  43262. source: "./media/characters/riley-foxthing/front-alt.svg",
  43263. extra: 1572/1389,
  43264. bottom: 116/1688
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Normal Sized",
  43271. height: math.unit(1.85, "meters"),
  43272. default: true
  43273. },
  43274. {
  43275. name: "Quite Sizable",
  43276. height: math.unit(5, "meters")
  43277. },
  43278. {
  43279. name: "Rather Large",
  43280. height: math.unit(20, "meters")
  43281. },
  43282. {
  43283. name: "Macro",
  43284. height: math.unit(450, "meters")
  43285. },
  43286. {
  43287. name: "Giga",
  43288. height: math.unit(5, "km")
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(6, "feet"),
  43297. weight: math.unit(200, "lb"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/blizzard/front.svg",
  43301. extra: 1136/990,
  43302. bottom: 136/1272
  43303. }
  43304. },
  43305. back: {
  43306. height: math.unit(6, "feet"),
  43307. weight: math.unit(200, "lb"),
  43308. name: "Back",
  43309. image: {
  43310. source: "./media/characters/blizzard/back.svg",
  43311. extra: 1175/1034,
  43312. bottom: 97/1272
  43313. }
  43314. },
  43315. sitting: {
  43316. height: math.unit(3.725, "feet"),
  43317. weight: math.unit(200, "lb"),
  43318. name: "Sitting",
  43319. image: {
  43320. source: "./media/characters/blizzard/sitting.svg",
  43321. extra: 581/485,
  43322. bottom: 90/671
  43323. }
  43324. },
  43325. frontWizard: {
  43326. height: math.unit(7.9, "feet"),
  43327. weight: math.unit(200, "lb"),
  43328. name: "Front (Wizard)",
  43329. image: {
  43330. source: "./media/characters/blizzard/front-wizard.svg"
  43331. }
  43332. },
  43333. backWizard: {
  43334. height: math.unit(7.9, "feet"),
  43335. weight: math.unit(200, "lb"),
  43336. name: "Back (Wizard)",
  43337. image: {
  43338. source: "./media/characters/blizzard/back-wizard.svg"
  43339. }
  43340. },
  43341. frontNsfw: {
  43342. height: math.unit(6, "feet"),
  43343. weight: math.unit(200, "lb"),
  43344. name: "Front (NSFW)",
  43345. image: {
  43346. source: "./media/characters/blizzard/front-nsfw.svg",
  43347. extra: 1136/990,
  43348. bottom: 136/1272
  43349. }
  43350. },
  43351. backNsfw: {
  43352. height: math.unit(6, "feet"),
  43353. weight: math.unit(200, "lb"),
  43354. name: "Back (NSFW)",
  43355. image: {
  43356. source: "./media/characters/blizzard/back-nsfw.svg",
  43357. extra: 1175/1034,
  43358. bottom: 97/1272
  43359. }
  43360. },
  43361. sittingNsfw: {
  43362. height: math.unit(3.725, "feet"),
  43363. weight: math.unit(200, "lb"),
  43364. name: "Sitting (NSFW)",
  43365. image: {
  43366. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43367. extra: 581/485,
  43368. bottom: 90/671
  43369. }
  43370. },
  43371. wizardFrontNsfw: {
  43372. height: math.unit(7.9, "feet"),
  43373. weight: math.unit(200, "lb"),
  43374. name: "Wizard (Front, NSFW)",
  43375. image: {
  43376. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43377. }
  43378. },
  43379. },
  43380. [
  43381. {
  43382. name: "Normal",
  43383. height: math.unit(6, "feet"),
  43384. default: true
  43385. },
  43386. ]
  43387. ))
  43388. characterMakers.push(() => makeCharacter(
  43389. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43390. {
  43391. front: {
  43392. height: math.unit(5 + 2/12, "feet"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/lumi/front.svg",
  43396. extra: 1328/1268,
  43397. bottom: 103/1431
  43398. }
  43399. },
  43400. back: {
  43401. height: math.unit(5 + 2/12, "feet"),
  43402. name: "Back",
  43403. image: {
  43404. source: "./media/characters/lumi/back.svg",
  43405. extra: 1381/1327,
  43406. bottom: 43/1424
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5 + 2/12, "feet"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(5 + 9/12, "feet"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/aliya-cotton/front.svg",
  43426. extra: 577/564,
  43427. bottom: 29/606
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Normal",
  43434. height: math.unit(5 + 9/12, "feet"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43441. {
  43442. front: {
  43443. height: math.unit(2.7, "meters"),
  43444. weight: math.unit(25000, "lb"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/noah-luxray/front.svg",
  43448. extra: 1644/825,
  43449. bottom: 339/1983
  43450. }
  43451. },
  43452. side: {
  43453. height: math.unit(2.97, "meters"),
  43454. weight: math.unit(25000, "lb"),
  43455. name: "Side",
  43456. image: {
  43457. source: "./media/characters/noah-luxray/side.svg",
  43458. extra: 1319/650,
  43459. bottom: 163/1482
  43460. }
  43461. },
  43462. dick: {
  43463. height: math.unit(7.4, "feet"),
  43464. weight: math.unit(2500, "lb"),
  43465. name: "Dick",
  43466. image: {
  43467. source: "./media/characters/noah-luxray/dick.svg"
  43468. }
  43469. },
  43470. dickAlt: {
  43471. height: math.unit(10.83, "feet"),
  43472. weight: math.unit(2500, "lb"),
  43473. name: "Dick-alt",
  43474. image: {
  43475. source: "./media/characters/noah-luxray/dick-alt.svg"
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "BIG",
  43482. height: math.unit(2.7, "meters"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43489. {
  43490. standing: {
  43491. height: math.unit(183, "cm"),
  43492. weight: math.unit(68, "kg"),
  43493. name: "Standing",
  43494. image: {
  43495. source: "./media/characters/arion/standing.svg",
  43496. extra: 1869/1807,
  43497. bottom: 93/1962
  43498. }
  43499. },
  43500. reclining: {
  43501. height: math.unit(70.5, "cm"),
  43502. weight: math.unit(68, "lb"),
  43503. name: "Reclining",
  43504. image: {
  43505. source: "./media/characters/arion/reclining.svg",
  43506. extra: 937/870,
  43507. bottom: 63/1000
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Colossus Size, Low",
  43514. height: math.unit(33, "meters"),
  43515. default: true
  43516. },
  43517. {
  43518. name: "Colossus Size, Mid",
  43519. height: math.unit(52, "meters")
  43520. },
  43521. {
  43522. name: "Colossus Size, High",
  43523. height: math.unit(60, "meters")
  43524. },
  43525. {
  43526. name: "Titan Size, Low",
  43527. height: math.unit(91, "meters"),
  43528. },
  43529. {
  43530. name: "Titan Size, Mid",
  43531. height: math.unit(122, "meters")
  43532. },
  43533. {
  43534. name: "Titan Size, High",
  43535. height: math.unit(162, "meters")
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(53, "meters"),
  43544. name: "Front",
  43545. image: {
  43546. source: "./media/characters/stellar-marbey/front.svg",
  43547. extra: 1913/1805,
  43548. bottom: 92/2005
  43549. }
  43550. },
  43551. back: {
  43552. height: math.unit(53, "meters"),
  43553. name: "Back",
  43554. image: {
  43555. source: "./media/characters/stellar-marbey/back.svg",
  43556. extra: 1960/1851,
  43557. bottom: 28/1988
  43558. }
  43559. },
  43560. mouth: {
  43561. height: math.unit(3.5, "meters"),
  43562. name: "Mouth",
  43563. image: {
  43564. source: "./media/characters/stellar-marbey/mouth.svg"
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Macro",
  43571. height: math.unit(53, "meters"),
  43572. default: true
  43573. },
  43574. ]
  43575. ))
  43576. characterMakers.push(() => makeCharacter(
  43577. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43578. {
  43579. front: {
  43580. height: math.unit(8 + 1/12, "feet"),
  43581. weight: math.unit(233, "lb"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/matsu/front.svg",
  43585. extra: 832/772,
  43586. bottom: 40/872
  43587. }
  43588. },
  43589. back: {
  43590. height: math.unit(8 + 1/12, "feet"),
  43591. weight: math.unit(233, "lb"),
  43592. name: "Back",
  43593. image: {
  43594. source: "./media/characters/matsu/back.svg",
  43595. extra: 839/780,
  43596. bottom: 47/886
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Normal",
  43603. height: math.unit(8 + 1/12, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(4, "feet"),
  43613. weight: math.unit(148, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/thiz/front.svg",
  43617. extra: 1913/1748,
  43618. bottom: 62/1975
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Normal",
  43625. height: math.unit(4, "feet"),
  43626. default: true
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43632. {
  43633. front: {
  43634. height: math.unit(7 + 6/12, "feet"),
  43635. weight: math.unit(267, "lb"),
  43636. name: "Front",
  43637. image: {
  43638. source: "./media/characters/marcel/front.svg",
  43639. extra: 1221/1096,
  43640. bottom: 76/1297
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Normal",
  43647. height: math.unit(7 + 6/12, "feet"),
  43648. default: true
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43654. {
  43655. side: {
  43656. height: math.unit(42, "meters"),
  43657. name: "Side",
  43658. image: {
  43659. source: "./media/characters/flake/side.svg",
  43660. extra: 1525/1306,
  43661. bottom: 209/1734
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Normal",
  43668. height: math.unit(42, "meters"),
  43669. default: true
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43675. {
  43676. dressed: {
  43677. height: math.unit(6 + 4/12, "feet"),
  43678. weight: math.unit(520, "lb"),
  43679. name: "Dressed",
  43680. image: {
  43681. source: "./media/characters/someonne/dressed.svg",
  43682. extra: 1020/1010,
  43683. bottom: 178/1198
  43684. }
  43685. },
  43686. undressed: {
  43687. height: math.unit(6 + 4/12, "feet"),
  43688. weight: math.unit(520, "lb"),
  43689. name: "Undressed",
  43690. image: {
  43691. source: "./media/characters/someonne/undressed.svg",
  43692. extra: 1019/1014,
  43693. bottom: 169/1188
  43694. }
  43695. },
  43696. },
  43697. [
  43698. {
  43699. name: "Normal",
  43700. height: math.unit(6 + 4/12, "feet"),
  43701. default: true
  43702. },
  43703. ]
  43704. ))
  43705. characterMakers.push(() => makeCharacter(
  43706. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43707. {
  43708. front: {
  43709. height: math.unit(3, "feet"),
  43710. weight: math.unit(30, "lb"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/till/front.svg",
  43714. extra: 892/823,
  43715. bottom: 55/947
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(3, "feet"),
  43723. default: true
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43729. {
  43730. front: {
  43731. height: math.unit(9 + 8/12, "feet"),
  43732. weight: math.unit(800, "lb"),
  43733. name: "Front",
  43734. image: {
  43735. source: "./media/characters/sydney-heki/front.svg",
  43736. extra: 1360/1300,
  43737. bottom: 22/1382
  43738. }
  43739. },
  43740. back: {
  43741. height: math.unit(9 + 8/12, "feet"),
  43742. weight: math.unit(800, "lb"),
  43743. name: "Back",
  43744. image: {
  43745. source: "./media/characters/sydney-heki/back.svg",
  43746. extra: 1356/1293,
  43747. bottom: 12/1368
  43748. }
  43749. },
  43750. frontDressed: {
  43751. height: math.unit(9 + 8/12, "feet"),
  43752. weight: math.unit(800, "lb"),
  43753. name: "Front-dressed",
  43754. image: {
  43755. source: "./media/characters/sydney-heki/front-dressed.svg",
  43756. extra: 1360/1300,
  43757. bottom: 22/1382
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Normal",
  43764. height: math.unit(9 + 8/12, "feet"),
  43765. default: true
  43766. },
  43767. {
  43768. name: "Macro",
  43769. height: math.unit(500, "feet")
  43770. },
  43771. {
  43772. name: "Megamacro",
  43773. height: math.unit(3.6, "miles")
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(200, "cm"),
  43782. weight: math.unit(250, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/fowler-karlsson/front.svg",
  43786. extra: 897/845,
  43787. bottom: 123/1020
  43788. }
  43789. },
  43790. back: {
  43791. height: math.unit(200, "cm"),
  43792. weight: math.unit(250, "lb"),
  43793. name: "Back",
  43794. image: {
  43795. source: "./media/characters/fowler-karlsson/back.svg",
  43796. extra: 999/944,
  43797. bottom: 26/1025
  43798. }
  43799. },
  43800. dick: {
  43801. height: math.unit(1.92, "feet"),
  43802. weight: math.unit(150, "lb"),
  43803. name: "Dick",
  43804. image: {
  43805. source: "./media/characters/fowler-karlsson/dick.svg"
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(200, "cm"),
  43813. default: true
  43814. },
  43815. {
  43816. name: "Smaller Macro",
  43817. height: math.unit(90, "m")
  43818. },
  43819. {
  43820. name: "Macro",
  43821. height: math.unit(150, "m")
  43822. },
  43823. {
  43824. name: "Bigger Macro",
  43825. height: math.unit(300, "m")
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43831. {
  43832. side: {
  43833. height: math.unit(8 + 2/12, "feet"),
  43834. weight: math.unit(1, "tonne"),
  43835. name: "Side",
  43836. image: {
  43837. source: "./media/characters/rylide/side.svg",
  43838. extra: 1318/1034,
  43839. bottom: 106/1424
  43840. }
  43841. },
  43842. sitting: {
  43843. height: math.unit(303, "cm"),
  43844. weight: math.unit(1, "tonne"),
  43845. name: "Sitting",
  43846. image: {
  43847. source: "./media/characters/rylide/sitting.svg",
  43848. extra: 1303/1103,
  43849. bottom: 36/1339
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(8 + 2/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(5 + 10/12, "feet"),
  43866. weight: math.unit(160, "lb"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/pudask/front.svg",
  43870. extra: 1616/1590,
  43871. bottom: 161/1777
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Ferret Height",
  43878. height: math.unit(2 + 5/12, "feet")
  43879. },
  43880. {
  43881. name: "Canon Height",
  43882. height: math.unit(5 + 10/12, "feet"),
  43883. default: true
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(3 + 6/12, "feet"),
  43892. weight: math.unit(60, "lb"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/ramita/front.svg",
  43896. extra: 1402/1232,
  43897. bottom: 62/1464
  43898. }
  43899. },
  43900. dressed: {
  43901. height: math.unit(3 + 6/12, "feet"),
  43902. weight: math.unit(60, "lb"),
  43903. name: "Dressed",
  43904. image: {
  43905. source: "./media/characters/ramita/dressed.svg",
  43906. extra: 1534/1249,
  43907. bottom: 50/1584
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(3 + 6/12, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(8, "feet"),
  43924. name: "Front",
  43925. image: {
  43926. source: "./media/characters/ark/front.svg",
  43927. extra: 772/693,
  43928. bottom: 45/817
  43929. }
  43930. },
  43931. },
  43932. [
  43933. {
  43934. name: "Normal",
  43935. height: math.unit(8, "feet"),
  43936. default: true
  43937. },
  43938. ]
  43939. ))
  43940. characterMakers.push(() => makeCharacter(
  43941. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43942. {
  43943. front: {
  43944. height: math.unit(6, "feet"),
  43945. weight: math.unit(250, "lb"),
  43946. volume: math.unit(5/8, "gallons"),
  43947. name: "Front",
  43948. image: {
  43949. source: "./media/characters/ludwig-horn/front.svg",
  43950. extra: 1782/1635,
  43951. bottom: 96/1878
  43952. }
  43953. },
  43954. back: {
  43955. height: math.unit(6, "feet"),
  43956. weight: math.unit(250, "lb"),
  43957. volume: math.unit(5/8, "gallons"),
  43958. name: "Back",
  43959. image: {
  43960. source: "./media/characters/ludwig-horn/back.svg",
  43961. extra: 1874/1729,
  43962. bottom: 27/1901
  43963. }
  43964. },
  43965. dick: {
  43966. height: math.unit(1.05, "feet"),
  43967. weight: math.unit(15, "lb"),
  43968. volume: math.unit(5/8, "gallons"),
  43969. name: "Dick",
  43970. image: {
  43971. source: "./media/characters/ludwig-horn/dick.svg"
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Small",
  43978. height: math.unit(6, "feet")
  43979. },
  43980. {
  43981. name: "Typical",
  43982. height: math.unit(12, "feet"),
  43983. default: true
  43984. },
  43985. {
  43986. name: "Building",
  43987. height: math.unit(80, "feet")
  43988. },
  43989. {
  43990. name: "Town",
  43991. height: math.unit(800, "feet")
  43992. },
  43993. {
  43994. name: "Kingdom",
  43995. height: math.unit(80000, "feet")
  43996. },
  43997. {
  43998. name: "Planet",
  43999. height: math.unit(8000000, "feet")
  44000. },
  44001. {
  44002. name: "Universe",
  44003. height: math.unit(8000000000, "feet")
  44004. },
  44005. {
  44006. name: "Transcended",
  44007. height: math.unit(8e27, "feet")
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44013. {
  44014. front: {
  44015. height: math.unit(5, "feet"),
  44016. weight: math.unit(50, "kg"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/biot-avery/front.svg",
  44020. extra: 1295/1232,
  44021. bottom: 86/1381
  44022. }
  44023. },
  44024. },
  44025. [
  44026. {
  44027. name: "Normal",
  44028. height: math.unit(5, "feet"),
  44029. default: true
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44035. {
  44036. front: {
  44037. height: math.unit(6, "feet"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/kitsune-kiro/front.svg",
  44041. extra: 1270/1158,
  44042. bottom: 42/1312
  44043. }
  44044. },
  44045. frontAlt: {
  44046. height: math.unit(6, "feet"),
  44047. name: "Front-alt",
  44048. image: {
  44049. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44050. extra: 1130/1081,
  44051. bottom: 36/1166
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Smol",
  44058. height: math.unit(3, "feet")
  44059. },
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(6, "feet"),
  44063. default: true
  44064. },
  44065. ]
  44066. ))
  44067. characterMakers.push(() => makeCharacter(
  44068. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44069. {
  44070. front: {
  44071. height: math.unit(6, "feet"),
  44072. weight: math.unit(125, "lb"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/jack-thatcher/front.svg",
  44076. extra: 1474/1370,
  44077. bottom: 26/1500
  44078. }
  44079. },
  44080. back: {
  44081. height: math.unit(6, "feet"),
  44082. weight: math.unit(125, "lb"),
  44083. name: "Back",
  44084. image: {
  44085. source: "./media/characters/jack-thatcher/back.svg",
  44086. extra: 1489/1384,
  44087. bottom: 18/1507
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Normal",
  44094. height: math.unit(6, "feet"),
  44095. default: true
  44096. },
  44097. {
  44098. name: "Macro",
  44099. height: math.unit(75, "feet")
  44100. },
  44101. {
  44102. name: "Macro-er",
  44103. height: math.unit(250, "feet")
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44109. {
  44110. front: {
  44111. height: math.unit(7, "feet"),
  44112. weight: math.unit(110, "kg"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/max-hyper/front.svg",
  44116. extra: 1969/1881,
  44117. bottom: 49/2018
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(7, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(5 + 5/12, "feet"),
  44134. weight: math.unit(160, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/spook/front.svg",
  44138. extra: 794/791,
  44139. bottom: 54/848
  44140. }
  44141. },
  44142. back: {
  44143. height: math.unit(5 + 5/12, "feet"),
  44144. weight: math.unit(160, "lb"),
  44145. name: "Back",
  44146. image: {
  44147. source: "./media/characters/spook/back.svg",
  44148. extra: 812/798,
  44149. bottom: 32/844
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(5 + 5/12, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(18, "feet"),
  44166. name: "Front",
  44167. image: {
  44168. source: "./media/characters/xeaduulix/front.svg",
  44169. extra: 1380/1166,
  44170. bottom: 110/1490
  44171. }
  44172. },
  44173. back: {
  44174. height: math.unit(18, "feet"),
  44175. name: "Back",
  44176. image: {
  44177. source: "./media/characters/xeaduulix/back.svg",
  44178. extra: 1592/1170,
  44179. bottom: 128/1720
  44180. }
  44181. },
  44182. frontNsfw: {
  44183. height: math.unit(18, "feet"),
  44184. name: "Front (NSFW)",
  44185. image: {
  44186. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44187. extra: 1380/1166,
  44188. bottom: 110/1490
  44189. }
  44190. },
  44191. backNsfw: {
  44192. height: math.unit(18, "feet"),
  44193. name: "Back (NSFW)",
  44194. image: {
  44195. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44196. extra: 1592/1170,
  44197. bottom: 128/1720
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(18, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44211. {
  44212. spreadWings: {
  44213. height: math.unit(20, "feet"),
  44214. name: "Spread Wings",
  44215. image: {
  44216. source: "./media/characters/fledge/spread-wings.svg",
  44217. extra: 693/635,
  44218. bottom: 26/719
  44219. }
  44220. },
  44221. front: {
  44222. height: math.unit(20, "feet"),
  44223. name: "Front",
  44224. image: {
  44225. source: "./media/characters/fledge/front.svg",
  44226. extra: 684/637,
  44227. bottom: 18/702
  44228. }
  44229. },
  44230. frontAlt: {
  44231. height: math.unit(20, "feet"),
  44232. name: "Front (Alt)",
  44233. image: {
  44234. source: "./media/characters/fledge/front-alt.svg",
  44235. extra: 708/664,
  44236. bottom: 13/721
  44237. }
  44238. },
  44239. back: {
  44240. height: math.unit(20, "feet"),
  44241. name: "Back",
  44242. image: {
  44243. source: "./media/characters/fledge/back.svg",
  44244. extra: 718/634,
  44245. bottom: 22/740
  44246. }
  44247. },
  44248. head: {
  44249. height: math.unit(5.55, "feet"),
  44250. name: "Head",
  44251. image: {
  44252. source: "./media/characters/fledge/head.svg"
  44253. }
  44254. },
  44255. headAlt: {
  44256. height: math.unit(5.1, "feet"),
  44257. name: "Head (Alt)",
  44258. image: {
  44259. source: "./media/characters/fledge/head-alt.svg"
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Small",
  44266. height: math.unit(6 + 2/12, "feet")
  44267. },
  44268. {
  44269. name: "Big",
  44270. height: math.unit(20, "feet"),
  44271. default: true
  44272. },
  44273. {
  44274. name: "Giant",
  44275. height: math.unit(100, "feet")
  44276. },
  44277. {
  44278. name: "Macro",
  44279. height: math.unit(200, "feet")
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44285. {
  44286. front: {
  44287. height: math.unit(1, "meter"),
  44288. name: "Front",
  44289. image: {
  44290. source: "./media/characters/atlas-morenai/front.svg",
  44291. extra: 1275/1043,
  44292. bottom: 19/1294
  44293. }
  44294. },
  44295. back: {
  44296. height: math.unit(1, "meter"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/atlas-morenai/back.svg",
  44300. extra: 1141/1001,
  44301. bottom: 25/1166
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(1, "meter"),
  44309. default: true
  44310. },
  44311. {
  44312. name: "Magic-Infused",
  44313. height: math.unit(5, "meters")
  44314. },
  44315. ]
  44316. ))
  44317. characterMakers.push(() => makeCharacter(
  44318. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44319. {
  44320. front: {
  44321. height: math.unit(5, "meters"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/cintia/front.svg",
  44325. extra: 1312/1228,
  44326. bottom: 38/1350
  44327. }
  44328. },
  44329. back: {
  44330. height: math.unit(5, "meters"),
  44331. name: "Back",
  44332. image: {
  44333. source: "./media/characters/cintia/back.svg",
  44334. extra: 1260/1166,
  44335. bottom: 98/1358
  44336. }
  44337. },
  44338. frontDick: {
  44339. height: math.unit(5, "meters"),
  44340. name: "Front (Dick)",
  44341. image: {
  44342. source: "./media/characters/cintia/front-dick.svg",
  44343. extra: 1312/1228,
  44344. bottom: 38/1350
  44345. }
  44346. },
  44347. backDick: {
  44348. height: math.unit(5, "meters"),
  44349. name: "Back (Dick)",
  44350. image: {
  44351. source: "./media/characters/cintia/back-dick.svg",
  44352. extra: 1260/1166,
  44353. bottom: 98/1358
  44354. }
  44355. },
  44356. bust: {
  44357. height: math.unit(1.97, "meters"),
  44358. name: "Bust",
  44359. image: {
  44360. source: "./media/characters/cintia/bust.svg",
  44361. extra: 617/565,
  44362. bottom: 0/617
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Normal",
  44369. height: math.unit(5, "meters"),
  44370. default: true
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44376. {
  44377. side: {
  44378. height: math.unit(100, "feet"),
  44379. name: "Side",
  44380. image: {
  44381. source: "./media/characters/denora/side.svg",
  44382. extra: 875/803,
  44383. bottom: 9/884
  44384. }
  44385. },
  44386. },
  44387. [
  44388. {
  44389. name: "Standard",
  44390. height: math.unit(100, "feet"),
  44391. default: true
  44392. },
  44393. {
  44394. name: "Grand",
  44395. height: math.unit(1000, "feet")
  44396. },
  44397. {
  44398. name: "Conquering",
  44399. height: math.unit(10000, "feet")
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44405. {
  44406. dressed: {
  44407. height: math.unit(8 + 5/12, "feet"),
  44408. weight: math.unit(700, "lb"),
  44409. name: "Dressed",
  44410. image: {
  44411. source: "./media/characters/kiva/dressed.svg",
  44412. extra: 1102/1055,
  44413. bottom: 60/1162
  44414. }
  44415. },
  44416. nude: {
  44417. height: math.unit(8 + 5/12, "feet"),
  44418. weight: math.unit(700, "lb"),
  44419. name: "Nude",
  44420. image: {
  44421. source: "./media/characters/kiva/nude.svg",
  44422. extra: 1102/1055,
  44423. bottom: 60/1162
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Base Height",
  44430. height: math.unit(8 + 5/12, "feet"),
  44431. default: true
  44432. },
  44433. {
  44434. name: "Macro",
  44435. height: math.unit(100, "feet")
  44436. },
  44437. {
  44438. name: "Max",
  44439. height: math.unit(3280, "feet")
  44440. },
  44441. ]
  44442. ))
  44443. characterMakers.push(() => makeCharacter(
  44444. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44445. {
  44446. front: {
  44447. height: math.unit(6 + 8/12, "feet"),
  44448. weight: math.unit(250, "lb"),
  44449. name: "Front",
  44450. image: {
  44451. source: "./media/characters/ztragon/front.svg",
  44452. extra: 1825/1684,
  44453. bottom: 98/1923
  44454. }
  44455. },
  44456. },
  44457. [
  44458. {
  44459. name: "Normal",
  44460. height: math.unit(6 + 8/12, "feet"),
  44461. default: true
  44462. },
  44463. {
  44464. name: "Macro",
  44465. height: math.unit(80, "feet")
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44471. {
  44472. front: {
  44473. height: math.unit(10.4, "feet"),
  44474. weight: math.unit(2, "tons"),
  44475. name: "Front",
  44476. image: {
  44477. source: "./media/characters/yesenia/front.svg",
  44478. extra: 1479/1474,
  44479. bottom: 233/1712
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Normal",
  44486. height: math.unit(10.4, "feet"),
  44487. default: true
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44493. {
  44494. normal: {
  44495. height: math.unit(6 + 1/12, "feet"),
  44496. weight: math.unit(180, "lb"),
  44497. name: "Normal",
  44498. image: {
  44499. source: "./media/characters/leanne-lycheborne/normal.svg",
  44500. extra: 1748/1660,
  44501. bottom: 98/1846
  44502. }
  44503. },
  44504. were: {
  44505. height: math.unit(12, "feet"),
  44506. weight: math.unit(1600, "lb"),
  44507. name: "Were",
  44508. image: {
  44509. source: "./media/characters/leanne-lycheborne/were.svg",
  44510. extra: 1485/1432,
  44511. bottom: 66/1551
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Normal",
  44518. height: math.unit(6 + 1/12, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44525. {
  44526. side: {
  44527. height: math.unit(13, "feet"),
  44528. name: "Side",
  44529. image: {
  44530. source: "./media/characters/kira-tyler/side.svg",
  44531. extra: 693/393,
  44532. bottom: 58/751
  44533. }
  44534. },
  44535. },
  44536. [
  44537. {
  44538. name: "Normal",
  44539. height: math.unit(13, "feet"),
  44540. default: true
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(10.3, "feet"),
  44549. weight: math.unit(150, "lb"),
  44550. name: "Front",
  44551. image: {
  44552. source: "./media/characters/blaze/front.svg",
  44553. extra: 1378/1286,
  44554. bottom: 172/1550
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(10.3, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44568. {
  44569. side: {
  44570. height: math.unit(2, "meters"),
  44571. weight: math.unit(400, "kg"),
  44572. name: "Side",
  44573. image: {
  44574. source: "./media/characters/anu/side.svg",
  44575. extra: 506/394,
  44576. bottom: 18/524
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Humanoid",
  44583. height: math.unit(2, "meters")
  44584. },
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(5, "meters"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(5 + 5/12, "feet"),
  44597. weight: math.unit(170, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/synx-the-lynx/front.svg",
  44601. extra: 1893/1745,
  44602. bottom: 17/1910
  44603. }
  44604. },
  44605. side: {
  44606. height: math.unit(5 + 5/12, "feet"),
  44607. weight: math.unit(170, "lb"),
  44608. name: "Side",
  44609. image: {
  44610. source: "./media/characters/synx-the-lynx/side.svg",
  44611. extra: 1884/1740,
  44612. bottom: 39/1923
  44613. }
  44614. },
  44615. back: {
  44616. height: math.unit(5 + 5/12, "feet"),
  44617. weight: math.unit(170, "lb"),
  44618. name: "Back",
  44619. image: {
  44620. source: "./media/characters/synx-the-lynx/back.svg",
  44621. extra: 1903/1755,
  44622. bottom: 14/1917
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Normal",
  44629. height: math.unit(5 + 5/12, "feet"),
  44630. default: true
  44631. },
  44632. ]
  44633. ))
  44634. characterMakers.push(() => makeCharacter(
  44635. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44636. {
  44637. back: {
  44638. height: math.unit(15, "feet"),
  44639. name: "Back",
  44640. image: {
  44641. source: "./media/characters/nadezda-fex/back.svg",
  44642. extra: 1695/1481,
  44643. bottom: 25/1720
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(15, "feet"),
  44651. default: true
  44652. },
  44653. {
  44654. name: "Macro",
  44655. height: math.unit(2.5, "miles")
  44656. },
  44657. {
  44658. name: "Goddess",
  44659. height: math.unit(2, "multiverses")
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(216, "cm"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/lev/front.svg",
  44671. extra: 1728/1670,
  44672. bottom: 82/1810
  44673. }
  44674. },
  44675. back: {
  44676. height: math.unit(216, "cm"),
  44677. name: "Back",
  44678. image: {
  44679. source: "./media/characters/lev/back.svg",
  44680. extra: 1738/1675,
  44681. bottom: 24/1762
  44682. }
  44683. },
  44684. dressed: {
  44685. height: math.unit(216, "cm"),
  44686. name: "Dressed",
  44687. image: {
  44688. source: "./media/characters/lev/dressed.svg",
  44689. extra: 1397/1351,
  44690. bottom: 73/1470
  44691. }
  44692. },
  44693. head: {
  44694. height: math.unit(0.51, "meter"),
  44695. name: "Head",
  44696. image: {
  44697. source: "./media/characters/lev/head.svg"
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Normal",
  44704. height: math.unit(216, "cm"),
  44705. default: true
  44706. },
  44707. {
  44708. name: "Relatively Macro",
  44709. height: math.unit(80, "meters")
  44710. },
  44711. {
  44712. name: "Megamacro",
  44713. height: math.unit(21600, "meters")
  44714. },
  44715. {
  44716. name: "Megamacro+",
  44717. height: math.unit(64800, "meters")
  44718. },
  44719. ]
  44720. ))
  44721. characterMakers.push(() => makeCharacter(
  44722. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44723. {
  44724. front: {
  44725. height: math.unit(2, "meters"),
  44726. weight: math.unit(80, "kg"),
  44727. name: "Front",
  44728. image: {
  44729. source: "./media/characters/moka/front.svg",
  44730. extra: 1337/1255,
  44731. bottom: 58/1395
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Micro",
  44738. height: math.unit(15, "cm")
  44739. },
  44740. {
  44741. name: "Normal",
  44742. height: math.unit(2, "meters"),
  44743. default: true
  44744. },
  44745. {
  44746. name: "Macro",
  44747. height: math.unit(20, "meters"),
  44748. },
  44749. ]
  44750. ))
  44751. characterMakers.push(() => makeCharacter(
  44752. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44753. {
  44754. front: {
  44755. height: math.unit(9, "feet"),
  44756. weight: math.unit(240, "lb"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/kuzco/front.svg",
  44760. extra: 1593/1487,
  44761. bottom: 32/1625
  44762. }
  44763. },
  44764. side: {
  44765. height: math.unit(9, "feet"),
  44766. weight: math.unit(240, "lb"),
  44767. name: "Side",
  44768. image: {
  44769. source: "./media/characters/kuzco/side.svg",
  44770. extra: 1575/1485,
  44771. bottom: 30/1605
  44772. }
  44773. },
  44774. back: {
  44775. height: math.unit(9, "feet"),
  44776. weight: math.unit(240, "lb"),
  44777. name: "Back",
  44778. image: {
  44779. source: "./media/characters/kuzco/back.svg",
  44780. extra: 1603/1514,
  44781. bottom: 14/1617
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Normal",
  44788. height: math.unit(9, "feet"),
  44789. default: true
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44795. {
  44796. side: {
  44797. height: math.unit(2, "meters"),
  44798. weight: math.unit(300, "kg"),
  44799. name: "Side",
  44800. image: {
  44801. source: "./media/characters/ceruleus/side.svg",
  44802. extra: 1068/974,
  44803. bottom: 126/1194
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Normal",
  44810. height: math.unit(16, "meters"),
  44811. default: true
  44812. },
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44817. {
  44818. front: {
  44819. height: math.unit(9, "feet"),
  44820. weight: math.unit(500, "kg"),
  44821. name: "Front",
  44822. image: {
  44823. source: "./media/characters/acouya/front.svg",
  44824. extra: 1660/1473,
  44825. bottom: 28/1688
  44826. }
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(9, "feet"),
  44833. default: true
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44839. {
  44840. front: {
  44841. height: math.unit(5 + 6/12, "feet"),
  44842. weight: math.unit(195, "lb"),
  44843. name: "Front",
  44844. image: {
  44845. source: "./media/characters/vant/front.svg",
  44846. extra: 1396/1320,
  44847. bottom: 20/1416
  44848. }
  44849. },
  44850. back: {
  44851. height: math.unit(5 + 6/12, "feet"),
  44852. weight: math.unit(195, "lb"),
  44853. name: "Back",
  44854. image: {
  44855. source: "./media/characters/vant/back.svg",
  44856. extra: 1396/1320,
  44857. bottom: 20/1416
  44858. }
  44859. },
  44860. maw: {
  44861. height: math.unit(0.75, "feet"),
  44862. name: "Maw",
  44863. image: {
  44864. source: "./media/characters/vant/maw.svg"
  44865. }
  44866. },
  44867. paw: {
  44868. height: math.unit(1.07, "feet"),
  44869. name: "Paw",
  44870. image: {
  44871. source: "./media/characters/vant/paw.svg"
  44872. }
  44873. },
  44874. },
  44875. [
  44876. {
  44877. name: "Micro",
  44878. height: math.unit(0.25, "inches")
  44879. },
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(5 + 6/12, "feet"),
  44883. default: true
  44884. },
  44885. {
  44886. name: "Macro",
  44887. height: math.unit(75, "feet")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44893. {
  44894. front: {
  44895. height: math.unit(30, "meters"),
  44896. weight: math.unit(363, "tons"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/ahra/front.svg",
  44900. extra: 1914/1814,
  44901. bottom: 46/1960
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Macro",
  44908. height: math.unit(30, "meters"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44915. {
  44916. undressed: {
  44917. height: math.unit(2, "m"),
  44918. weight: math.unit(250, "kg"),
  44919. name: "Undressed",
  44920. image: {
  44921. source: "./media/characters/coriander/undressed.svg",
  44922. extra: 1757/1606,
  44923. bottom: 107/1864
  44924. }
  44925. },
  44926. dressed: {
  44927. height: math.unit(2, "m"),
  44928. weight: math.unit(250, "kg"),
  44929. name: "Dressed",
  44930. image: {
  44931. source: "./media/characters/coriander/dressed.svg",
  44932. extra: 1757/1606,
  44933. bottom: 107/1864
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(4, "meters"),
  44941. default: true
  44942. },
  44943. {
  44944. name: "XL",
  44945. height: math.unit(6, "meters")
  44946. },
  44947. {
  44948. name: "XXL",
  44949. height: math.unit(8, "meters")
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(6, "feet"),
  44958. name: "Front",
  44959. image: {
  44960. source: "./media/characters/syrinx/front.svg",
  44961. extra: 1557/1259,
  44962. bottom: 171/1728
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal",
  44969. height: math.unit(6 + 3/12, "feet"),
  44970. default: true
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(11 + 6/12, "feet"),
  44979. weight: math.unit(1.5, "tons"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/bor/front.svg",
  44983. extra: 1189/1109,
  44984. bottom: 170/1359
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "Normal",
  44991. height: math.unit(11 + 6/12, "feet"),
  44992. default: true
  44993. },
  44994. {
  44995. name: "Macro",
  44996. height: math.unit(32 + 9/12, "feet")
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45002. {
  45003. anthro: {
  45004. height: math.unit(9, "feet"),
  45005. weight: math.unit(2076, "lb"),
  45006. name: "Anthro",
  45007. image: {
  45008. source: "./media/characters/abacus/anthro.svg",
  45009. extra: 1540/1494,
  45010. bottom: 233/1773
  45011. }
  45012. },
  45013. pigeon: {
  45014. height: math.unit(1, "feet"),
  45015. name: "Pigeon",
  45016. image: {
  45017. source: "./media/characters/abacus/pigeon.svg",
  45018. extra: 528/525,
  45019. bottom: 46/574
  45020. }
  45021. },
  45022. },
  45023. [
  45024. {
  45025. name: "Normal",
  45026. height: math.unit(9, "feet"),
  45027. default: true
  45028. },
  45029. ]
  45030. ))
  45031. characterMakers.push(() => makeCharacter(
  45032. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45033. {
  45034. side: {
  45035. height: math.unit(6, "feet"),
  45036. name: "Side",
  45037. image: {
  45038. source: "./media/characters/delkhan/side.svg",
  45039. extra: 1884/1786,
  45040. bottom: 308/2192
  45041. }
  45042. },
  45043. head: {
  45044. height: math.unit(3.38, "feet"),
  45045. name: "Head",
  45046. image: {
  45047. source: "./media/characters/delkhan/head.svg"
  45048. }
  45049. },
  45050. },
  45051. [
  45052. {
  45053. name: "Normal",
  45054. height: math.unit(72, "feet"),
  45055. default: true
  45056. },
  45057. {
  45058. name: "Giant",
  45059. height: math.unit(172, "feet")
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45065. {
  45066. standing: {
  45067. height: math.unit(6, "feet"),
  45068. name: "Standing",
  45069. image: {
  45070. source: "./media/characters/euchidat/standing.svg",
  45071. extra: 1612/1553,
  45072. bottom: 116/1728
  45073. }
  45074. },
  45075. leaning: {
  45076. height: math.unit(6, "feet"),
  45077. name: "Leaning",
  45078. image: {
  45079. source: "./media/characters/euchidat/leaning.svg",
  45080. extra: 1719/1674,
  45081. bottom: 27/1746
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(175, "feet"),
  45089. default: true
  45090. },
  45091. {
  45092. name: "Megamacro",
  45093. height: math.unit(190, "miles")
  45094. },
  45095. {
  45096. name: "Gigamacro",
  45097. height: math.unit(190000, "miles")
  45098. },
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45103. {
  45104. front: {
  45105. height: math.unit(6, "feet"),
  45106. weight: math.unit(150, "lb"),
  45107. name: "Front",
  45108. image: {
  45109. source: "./media/characters/rebecca-stack/front.svg",
  45110. extra: 1256/1201,
  45111. bottom: 18/1274
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(5 + 8/12, "feet"),
  45119. default: true
  45120. },
  45121. {
  45122. name: "Demolitionist",
  45123. height: math.unit(200, "feet")
  45124. },
  45125. {
  45126. name: "Out of Control",
  45127. height: math.unit(2, "miles")
  45128. },
  45129. {
  45130. name: "Giga",
  45131. height: math.unit(7200, "miles")
  45132. },
  45133. ]
  45134. ))
  45135. characterMakers.push(() => makeCharacter(
  45136. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45137. {
  45138. front: {
  45139. height: math.unit(6, "feet"),
  45140. weight: math.unit(150, "lb"),
  45141. name: "Front",
  45142. image: {
  45143. source: "./media/characters/jenny-cartwright/front.svg",
  45144. extra: 1384/1376,
  45145. bottom: 58/1442
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(6 + 7/12, "feet"),
  45153. default: true
  45154. },
  45155. {
  45156. name: "Librarian",
  45157. height: math.unit(55, "feet")
  45158. },
  45159. {
  45160. name: "Sightseer",
  45161. height: math.unit(50, "miles")
  45162. },
  45163. {
  45164. name: "Giga",
  45165. height: math.unit(30000, "miles")
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45171. {
  45172. nude: {
  45173. height: math.unit(8, "feet"),
  45174. weight: math.unit(225, "lb"),
  45175. name: "Nude",
  45176. image: {
  45177. source: "./media/characters/marvy/nude.svg",
  45178. extra: 1900/1683,
  45179. bottom: 89/1989
  45180. }
  45181. },
  45182. dressed: {
  45183. height: math.unit(8, "feet"),
  45184. weight: math.unit(225, "lb"),
  45185. name: "Dressed",
  45186. image: {
  45187. source: "./media/characters/marvy/dressed.svg",
  45188. extra: 1900/1683,
  45189. bottom: 89/1989
  45190. }
  45191. },
  45192. head: {
  45193. height: math.unit(2.85, "feet"),
  45194. name: "Head",
  45195. image: {
  45196. source: "./media/characters/marvy/head.svg"
  45197. }
  45198. },
  45199. },
  45200. [
  45201. {
  45202. name: "Normal",
  45203. height: math.unit(8, "feet"),
  45204. default: true
  45205. },
  45206. ]
  45207. ))
  45208. characterMakers.push(() => makeCharacter(
  45209. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45210. {
  45211. front: {
  45212. height: math.unit(8, "feet"),
  45213. weight: math.unit(250, "lb"),
  45214. name: "Front",
  45215. image: {
  45216. source: "./media/characters/leah/front.svg",
  45217. extra: 1257/1149,
  45218. bottom: 109/1366
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(8, "feet"),
  45226. default: true
  45227. },
  45228. {
  45229. name: "Minimacro",
  45230. height: math.unit(40, "feet")
  45231. },
  45232. {
  45233. name: "Macro",
  45234. height: math.unit(124, "feet")
  45235. },
  45236. {
  45237. name: "Megamacro",
  45238. height: math.unit(850, "feet")
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45244. {
  45245. side: {
  45246. height: math.unit(13 + 6/12, "feet"),
  45247. weight: math.unit(3200, "lb"),
  45248. name: "Side",
  45249. image: {
  45250. source: "./media/characters/alvir/side.svg",
  45251. extra: 896/589,
  45252. bottom: 26/922
  45253. }
  45254. },
  45255. },
  45256. [
  45257. {
  45258. name: "Normal",
  45259. height: math.unit(13 + 6/12, "feet"),
  45260. default: true
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45266. {
  45267. front: {
  45268. height: math.unit(5 + 4/12, "feet"),
  45269. weight: math.unit(236, "lb"),
  45270. name: "Front",
  45271. image: {
  45272. source: "./media/characters/zaina-khalil/front.svg",
  45273. extra: 1533/1485,
  45274. bottom: 94/1627
  45275. }
  45276. },
  45277. side: {
  45278. height: math.unit(5 + 4/12, "feet"),
  45279. weight: math.unit(236, "lb"),
  45280. name: "Side",
  45281. image: {
  45282. source: "./media/characters/zaina-khalil/side.svg",
  45283. extra: 1537/1498,
  45284. bottom: 66/1603
  45285. }
  45286. },
  45287. back: {
  45288. height: math.unit(5 + 4/12, "feet"),
  45289. weight: math.unit(236, "lb"),
  45290. name: "Back",
  45291. image: {
  45292. source: "./media/characters/zaina-khalil/back.svg",
  45293. extra: 1546/1494,
  45294. bottom: 89/1635
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(5 + 4/12, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45308. {
  45309. side: {
  45310. height: math.unit(12, "feet"),
  45311. weight: math.unit(4000, "lb"),
  45312. name: "Side",
  45313. image: {
  45314. source: "./media/characters/terry/side.svg",
  45315. extra: 1518/1439,
  45316. bottom: 149/1667
  45317. }
  45318. },
  45319. },
  45320. [
  45321. {
  45322. name: "Normal",
  45323. height: math.unit(12, "feet"),
  45324. default: true
  45325. },
  45326. ]
  45327. ))
  45328. characterMakers.push(() => makeCharacter(
  45329. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45330. {
  45331. front: {
  45332. height: math.unit(12, "feet"),
  45333. weight: math.unit(1500, "lb"),
  45334. name: "Front",
  45335. image: {
  45336. source: "./media/characters/kahea/front.svg",
  45337. extra: 1722/1617,
  45338. bottom: 179/1901
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(12, "feet"),
  45346. default: true
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45352. {
  45353. demonFront: {
  45354. height: math.unit(36, "feet"),
  45355. name: "Front",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/demon-front.svg",
  45358. extra: 1705/1673,
  45359. bottom: 198/1903
  45360. },
  45361. form: "demon",
  45362. default: true
  45363. },
  45364. demonBack: {
  45365. height: math.unit(36, "feet"),
  45366. name: "Back",
  45367. image: {
  45368. source: "./media/characters/alex-xuria/demon-back.svg",
  45369. extra: 1725/1693,
  45370. bottom: 70/1795
  45371. },
  45372. form: "demon"
  45373. },
  45374. demonHead: {
  45375. height: math.unit(2.14, "meters"),
  45376. name: "Head",
  45377. image: {
  45378. source: "./media/characters/alex-xuria/demon-head.svg"
  45379. },
  45380. form: "demon"
  45381. },
  45382. demonHand: {
  45383. height: math.unit(1.61, "meters"),
  45384. name: "Hand",
  45385. image: {
  45386. source: "./media/characters/alex-xuria/demon-hand.svg"
  45387. },
  45388. form: "demon"
  45389. },
  45390. demonPaw: {
  45391. height: math.unit(1.35, "meters"),
  45392. name: "Paw",
  45393. image: {
  45394. source: "./media/characters/alex-xuria/demon-paw.svg"
  45395. },
  45396. form: "demon"
  45397. },
  45398. demonFoot: {
  45399. height: math.unit(2.2, "meters"),
  45400. name: "Foot",
  45401. image: {
  45402. source: "./media/characters/alex-xuria/demon-foot.svg"
  45403. },
  45404. form: "demon"
  45405. },
  45406. demonCock: {
  45407. height: math.unit(1.74, "meters"),
  45408. name: "Cock",
  45409. image: {
  45410. source: "./media/characters/alex-xuria/demon-cock.svg"
  45411. },
  45412. form: "demon"
  45413. },
  45414. demonTailClosed: {
  45415. height: math.unit(1.47, "meters"),
  45416. name: "Tail (Closed)",
  45417. image: {
  45418. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45419. },
  45420. form: "demon"
  45421. },
  45422. demonTailOpen: {
  45423. height: math.unit(2.85, "meters"),
  45424. name: "Tail (Open)",
  45425. image: {
  45426. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45427. },
  45428. form: "demon"
  45429. },
  45430. incubusFront: {
  45431. height: math.unit(12, "feet"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/alex-xuria/incubus-front.svg",
  45435. extra: 1754/1677,
  45436. bottom: 125/1879
  45437. },
  45438. form: "incubus",
  45439. default: true
  45440. },
  45441. incubusBack: {
  45442. height: math.unit(12, "feet"),
  45443. name: "Back",
  45444. image: {
  45445. source: "./media/characters/alex-xuria/incubus-back.svg",
  45446. extra: 1702/1647,
  45447. bottom: 30/1732
  45448. },
  45449. form: "incubus"
  45450. },
  45451. incubusHead: {
  45452. height: math.unit(3.45, "feet"),
  45453. name: "Head",
  45454. image: {
  45455. source: "./media/characters/alex-xuria/incubus-head.svg"
  45456. },
  45457. form: "incubus"
  45458. },
  45459. rabbitFront: {
  45460. height: math.unit(6, "feet"),
  45461. name: "Front",
  45462. image: {
  45463. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45464. extra: 1369/1349,
  45465. bottom: 45/1414
  45466. },
  45467. form: "rabbit",
  45468. default: true
  45469. },
  45470. rabbitSide: {
  45471. height: math.unit(6, "feet"),
  45472. name: "Side",
  45473. image: {
  45474. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45475. extra: 1370/1356,
  45476. bottom: 37/1407
  45477. },
  45478. form: "rabbit"
  45479. },
  45480. rabbitBack: {
  45481. height: math.unit(6, "feet"),
  45482. name: "Back",
  45483. image: {
  45484. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45485. extra: 1375/1358,
  45486. bottom: 43/1418
  45487. },
  45488. form: "rabbit"
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(6, "feet"),
  45495. default: true,
  45496. form: "rabbit"
  45497. },
  45498. {
  45499. name: "Incubus",
  45500. height: math.unit(12, "feet"),
  45501. default: true,
  45502. form: "incubus"
  45503. },
  45504. {
  45505. name: "Demon",
  45506. height: math.unit(36, "feet"),
  45507. default: true,
  45508. form: "demon"
  45509. }
  45510. ],
  45511. {
  45512. "demon": {
  45513. name: "Demon",
  45514. default: true
  45515. },
  45516. "incubus": {
  45517. name: "Incubus",
  45518. },
  45519. "rabbit": {
  45520. name: "Rabbit"
  45521. }
  45522. }
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45526. {
  45527. front: {
  45528. height: math.unit(7 + 5/12, "feet"),
  45529. weight: math.unit(510, "lb"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/syrup/front.svg",
  45533. extra: 932/916,
  45534. bottom: 26/958
  45535. }
  45536. },
  45537. },
  45538. [
  45539. {
  45540. name: "Normal",
  45541. height: math.unit(7 + 5/12, "feet"),
  45542. default: true
  45543. },
  45544. {
  45545. name: "Big",
  45546. height: math.unit(50, "feet")
  45547. },
  45548. {
  45549. name: "Macro",
  45550. height: math.unit(300, "feet")
  45551. },
  45552. {
  45553. name: "Megamacro",
  45554. height: math.unit(1, "mile")
  45555. },
  45556. ]
  45557. ))
  45558. characterMakers.push(() => makeCharacter(
  45559. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45560. {
  45561. front: {
  45562. height: math.unit(6 + 9/12, "feet"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/zeimne/front.svg",
  45566. extra: 1969/1806,
  45567. bottom: 53/2022
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(6 + 9/12, "feet"),
  45575. default: true
  45576. },
  45577. {
  45578. name: "Giant",
  45579. height: math.unit(550, "feet")
  45580. },
  45581. {
  45582. name: "Mega",
  45583. height: math.unit(3, "miles")
  45584. },
  45585. {
  45586. name: "Giga",
  45587. height: math.unit(250, "miles")
  45588. },
  45589. {
  45590. name: "Tera",
  45591. height: math.unit(1, "AU")
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45597. {
  45598. front: {
  45599. height: math.unit(5 + 2/12, "feet"),
  45600. name: "Front",
  45601. image: {
  45602. source: "./media/characters/grar/front.svg",
  45603. extra: 1331/1119,
  45604. bottom: 60/1391
  45605. }
  45606. },
  45607. back: {
  45608. height: math.unit(5 + 2/12, "feet"),
  45609. name: "Back",
  45610. image: {
  45611. source: "./media/characters/grar/back.svg",
  45612. extra: 1385/1169,
  45613. bottom: 23/1408
  45614. }
  45615. },
  45616. },
  45617. [
  45618. {
  45619. name: "Normal",
  45620. height: math.unit(5 + 2/12, "feet"),
  45621. default: true
  45622. },
  45623. ]
  45624. ))
  45625. characterMakers.push(() => makeCharacter(
  45626. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45627. {
  45628. front: {
  45629. height: math.unit(13 + 7/12, "feet"),
  45630. weight: math.unit(2200, "lb"),
  45631. name: "Front",
  45632. image: {
  45633. source: "./media/characters/endraya/front.svg",
  45634. extra: 1289/1215,
  45635. bottom: 50/1339
  45636. }
  45637. },
  45638. nude: {
  45639. height: math.unit(13 + 7/12, "feet"),
  45640. weight: math.unit(2200, "lb"),
  45641. name: "Nude",
  45642. image: {
  45643. source: "./media/characters/endraya/nude.svg",
  45644. extra: 1247/1171,
  45645. bottom: 40/1287
  45646. }
  45647. },
  45648. head: {
  45649. height: math.unit(2.6, "feet"),
  45650. name: "Head",
  45651. image: {
  45652. source: "./media/characters/endraya/head.svg"
  45653. }
  45654. },
  45655. slit: {
  45656. height: math.unit(3.4, "feet"),
  45657. name: "Slit",
  45658. image: {
  45659. source: "./media/characters/endraya/slit.svg"
  45660. }
  45661. },
  45662. },
  45663. [
  45664. {
  45665. name: "Normal",
  45666. height: math.unit(13 + 7/12, "feet"),
  45667. default: true
  45668. },
  45669. {
  45670. name: "Macro",
  45671. height: math.unit(200, "feet")
  45672. },
  45673. ]
  45674. ))
  45675. characterMakers.push(() => makeCharacter(
  45676. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45677. {
  45678. front: {
  45679. height: math.unit(412, "meters"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/rodryana/front.svg",
  45683. extra: 2002/1921,
  45684. bottom: 53/2055
  45685. }
  45686. },
  45687. back: {
  45688. height: math.unit(412, "meters"),
  45689. name: "Back",
  45690. image: {
  45691. source: "./media/characters/rodryana/back.svg",
  45692. extra: 1993/1926,
  45693. bottom: 48/2041
  45694. }
  45695. },
  45696. maw: {
  45697. height: math.unit(45, "meters"),
  45698. name: "Maw",
  45699. image: {
  45700. source: "./media/characters/rodryana/maw.svg"
  45701. }
  45702. },
  45703. slit: {
  45704. height: math.unit(72, "meters"),
  45705. name: "Slit",
  45706. image: {
  45707. source: "./media/characters/rodryana/slit.svg"
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Macro",
  45714. height: math.unit(412, "meters"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(6, "feet"),
  45724. weight: math.unit(1000, "lb"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/asaya/front.svg",
  45728. extra: 1460/1200,
  45729. bottom: 71/1531
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Normal",
  45736. height: math.unit(8, "km"),
  45737. default: true
  45738. },
  45739. ]
  45740. ))
  45741. characterMakers.push(() => makeCharacter(
  45742. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45743. {
  45744. front: {
  45745. height: math.unit(3.5, "meters"),
  45746. name: "Front",
  45747. image: {
  45748. source: "./media/characters/sarzu-and-israz/front.svg",
  45749. extra: 1570/1558,
  45750. bottom: 150/1720
  45751. },
  45752. },
  45753. back: {
  45754. height: math.unit(3.5, "meters"),
  45755. name: "Back",
  45756. image: {
  45757. source: "./media/characters/sarzu-and-israz/back.svg",
  45758. extra: 1523/1509,
  45759. bottom: 132/1655
  45760. },
  45761. },
  45762. frontFemale: {
  45763. height: math.unit(3.5, "meters"),
  45764. name: "Front (Female)",
  45765. image: {
  45766. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45767. extra: 1570/1558,
  45768. bottom: 150/1720
  45769. },
  45770. },
  45771. frontHerm: {
  45772. height: math.unit(3.5, "meters"),
  45773. name: "Front (Herm)",
  45774. image: {
  45775. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45776. extra: 1570/1558,
  45777. bottom: 150/1720
  45778. },
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(3.5, "meters"),
  45785. default: true,
  45786. },
  45787. {
  45788. name: "Macro",
  45789. height: math.unit(65.5, "meters"),
  45790. },
  45791. ],
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(6, "feet"),
  45798. weight: math.unit(250, "lb"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/zenimma/front.svg",
  45802. extra: 1346/1320,
  45803. bottom: 58/1404
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(6, "feet"),
  45808. weight: math.unit(250, "lb"),
  45809. name: "Back",
  45810. image: {
  45811. source: "./media/characters/zenimma/back.svg",
  45812. extra: 1324/1308,
  45813. bottom: 44/1368
  45814. }
  45815. },
  45816. dick: {
  45817. height: math.unit(1.44, "feet"),
  45818. name: "Dick",
  45819. image: {
  45820. source: "./media/characters/zenimma/dick.svg"
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Canon Height",
  45827. height: math.unit(66, "miles"),
  45828. default: true
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45834. {
  45835. nude: {
  45836. height: math.unit(6, "feet"),
  45837. weight: math.unit(150, "lb"),
  45838. name: "Nude",
  45839. image: {
  45840. source: "./media/characters/shavon/nude.svg",
  45841. extra: 1242/1096,
  45842. bottom: 98/1340
  45843. }
  45844. },
  45845. dressed: {
  45846. height: math.unit(6, "feet"),
  45847. weight: math.unit(150, "lb"),
  45848. name: "Dressed",
  45849. image: {
  45850. source: "./media/characters/shavon/dressed.svg",
  45851. extra: 1242/1096,
  45852. bottom: 98/1340
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Macro",
  45859. height: math.unit(255, "feet"),
  45860. default: true
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(6, "feet"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/steph/front.svg",
  45872. extra: 1430/1330,
  45873. bottom: 54/1484
  45874. }
  45875. },
  45876. },
  45877. [
  45878. {
  45879. name: "Normal",
  45880. height: math.unit(6, "feet"),
  45881. default: true
  45882. },
  45883. ]
  45884. ))
  45885. characterMakers.push(() => makeCharacter(
  45886. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45887. {
  45888. front: {
  45889. height: math.unit(9, "feet"),
  45890. weight: math.unit(400, "lb"),
  45891. name: "Front",
  45892. image: {
  45893. source: "./media/characters/kil'aman/front.svg",
  45894. extra: 1210/1159,
  45895. bottom: 109/1319
  45896. }
  45897. },
  45898. head: {
  45899. height: math.unit(2.14, "feet"),
  45900. name: "Head",
  45901. image: {
  45902. source: "./media/characters/kil'aman/head.svg"
  45903. }
  45904. },
  45905. maw: {
  45906. height: math.unit(1.21, "feet"),
  45907. name: "Maw",
  45908. image: {
  45909. source: "./media/characters/kil'aman/maw.svg"
  45910. }
  45911. },
  45912. foot: {
  45913. height: math.unit(1.7, "feet"),
  45914. name: "Foot",
  45915. image: {
  45916. source: "./media/characters/kil'aman/foot.svg"
  45917. }
  45918. },
  45919. dick: {
  45920. height: math.unit(2.1, "feet"),
  45921. name: "Dick",
  45922. image: {
  45923. source: "./media/characters/kil'aman/dick.svg"
  45924. }
  45925. },
  45926. },
  45927. [
  45928. {
  45929. name: "Normal",
  45930. height: math.unit(9, "feet")
  45931. },
  45932. {
  45933. name: "Canon Height",
  45934. height: math.unit(10, "miles"),
  45935. default: true
  45936. },
  45937. {
  45938. name: "Maximum",
  45939. height: math.unit(6e9, "miles")
  45940. },
  45941. ]
  45942. ))
  45943. characterMakers.push(() => makeCharacter(
  45944. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45945. {
  45946. front: {
  45947. height: math.unit(90, "feet"),
  45948. weight: math.unit(675000, "lb"),
  45949. name: "Front",
  45950. image: {
  45951. source: "./media/characters/qadan/front.svg",
  45952. extra: 1012/1004,
  45953. bottom: 78/1090
  45954. }
  45955. },
  45956. back: {
  45957. height: math.unit(90, "feet"),
  45958. weight: math.unit(675000, "lb"),
  45959. name: "Back",
  45960. image: {
  45961. source: "./media/characters/qadan/back.svg",
  45962. extra: 1042/1031,
  45963. bottom: 55/1097
  45964. }
  45965. },
  45966. armored: {
  45967. height: math.unit(90, "feet"),
  45968. weight: math.unit(675000, "lb"),
  45969. name: "Armored",
  45970. image: {
  45971. source: "./media/characters/qadan/armored.svg",
  45972. extra: 1047/1037,
  45973. bottom: 48/1095
  45974. }
  45975. },
  45976. },
  45977. [
  45978. {
  45979. name: "Normal",
  45980. height: math.unit(90, "feet"),
  45981. default: true
  45982. },
  45983. ]
  45984. ))
  45985. characterMakers.push(() => makeCharacter(
  45986. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45987. {
  45988. front: {
  45989. height: math.unit(6, "feet"),
  45990. weight: math.unit(225, "lb"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/brooke/front.svg",
  45994. extra: 1050/1010,
  45995. bottom: 66/1116
  45996. }
  45997. },
  45998. back: {
  45999. height: math.unit(6, "feet"),
  46000. weight: math.unit(225, "lb"),
  46001. name: "Back",
  46002. image: {
  46003. source: "./media/characters/brooke/back.svg",
  46004. extra: 1053/1013,
  46005. bottom: 41/1094
  46006. }
  46007. },
  46008. dressed: {
  46009. height: math.unit(6, "feet"),
  46010. weight: math.unit(225, "lb"),
  46011. name: "Dressed",
  46012. image: {
  46013. source: "./media/characters/brooke/dressed.svg",
  46014. extra: 1050/1010,
  46015. bottom: 66/1116
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Canon Height",
  46022. height: math.unit(500, "miles"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46029. {
  46030. front: {
  46031. height: math.unit(6 + 2/12, "feet"),
  46032. weight: math.unit(210, "lb"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/wubs/front.svg",
  46036. extra: 1345/1325,
  46037. bottom: 70/1415
  46038. }
  46039. },
  46040. back: {
  46041. height: math.unit(6 + 2/12, "feet"),
  46042. weight: math.unit(210, "lb"),
  46043. name: "Back",
  46044. image: {
  46045. source: "./media/characters/wubs/back.svg",
  46046. extra: 1296/1275,
  46047. bottom: 58/1354
  46048. }
  46049. },
  46050. },
  46051. [
  46052. {
  46053. name: "Normal",
  46054. height: math.unit(6 + 2/12, "feet"),
  46055. default: true
  46056. },
  46057. {
  46058. name: "Macro",
  46059. height: math.unit(1000, "feet")
  46060. },
  46061. {
  46062. name: "Megamacro",
  46063. height: math.unit(1, "mile")
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(4, "feet"),
  46072. weight: math.unit(120, "lb"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/blue/front.svg",
  46076. extra: 1636/1525,
  46077. bottom: 43/1679
  46078. }
  46079. },
  46080. back: {
  46081. height: math.unit(4, "feet"),
  46082. weight: math.unit(120, "lb"),
  46083. name: "Back",
  46084. image: {
  46085. source: "./media/characters/blue/back.svg",
  46086. extra: 1660/1560,
  46087. bottom: 57/1717
  46088. }
  46089. },
  46090. paws: {
  46091. height: math.unit(0.826, "feet"),
  46092. name: "Paws",
  46093. image: {
  46094. source: "./media/characters/blue/paws.svg"
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Micro",
  46101. height: math.unit(3, "inches")
  46102. },
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(4, "feet"),
  46106. default: true
  46107. },
  46108. {
  46109. name: "Femenine Form",
  46110. height: math.unit(14, "feet")
  46111. },
  46112. {
  46113. name: "Werebat Form",
  46114. height: math.unit(18, "feet")
  46115. },
  46116. ]
  46117. ))
  46118. characterMakers.push(() => makeCharacter(
  46119. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46120. {
  46121. female: {
  46122. height: math.unit(7 + 4/12, "feet"),
  46123. weight: math.unit(243, "lb"),
  46124. name: "Female",
  46125. image: {
  46126. source: "./media/characters/kaya/female.svg",
  46127. extra: 975/898,
  46128. bottom: 34/1009
  46129. }
  46130. },
  46131. herm: {
  46132. height: math.unit(7 + 4/12, "feet"),
  46133. weight: math.unit(243, "lb"),
  46134. name: "Herm",
  46135. image: {
  46136. source: "./media/characters/kaya/herm.svg",
  46137. extra: 975/898,
  46138. bottom: 34/1009
  46139. }
  46140. },
  46141. },
  46142. [
  46143. {
  46144. name: "Normal",
  46145. height: math.unit(7 + 4/12, "feet"),
  46146. default: true
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46152. {
  46153. female: {
  46154. height: math.unit(9 + 4/12, "feet"),
  46155. weight: math.unit(398, "lb"),
  46156. name: "Female",
  46157. image: {
  46158. source: "./media/characters/kassandra/female.svg",
  46159. extra: 908/839,
  46160. bottom: 61/969
  46161. }
  46162. },
  46163. intersex: {
  46164. height: math.unit(9 + 4/12, "feet"),
  46165. weight: math.unit(398, "lb"),
  46166. name: "Intersex",
  46167. image: {
  46168. source: "./media/characters/kassandra/intersex.svg",
  46169. extra: 908/839,
  46170. bottom: 61/969
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(9 + 4/12, "feet"),
  46178. default: true
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46184. {
  46185. front: {
  46186. height: math.unit(3, "meters"),
  46187. name: "Front",
  46188. image: {
  46189. source: "./media/characters/amy/front.svg",
  46190. extra: 1380/1343,
  46191. bottom: 70/1450
  46192. }
  46193. },
  46194. back: {
  46195. height: math.unit(3, "meters"),
  46196. name: "Back",
  46197. image: {
  46198. source: "./media/characters/amy/back.svg",
  46199. extra: 1380/1347,
  46200. bottom: 66/1446
  46201. }
  46202. },
  46203. },
  46204. [
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(3, "meters"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46214. {
  46215. side: {
  46216. height: math.unit(47, "cm"),
  46217. weight: math.unit(10.8, "kg"),
  46218. name: "Side",
  46219. image: {
  46220. source: "./media/characters/alphaschakal/side.svg",
  46221. extra: 1058/568,
  46222. bottom: 62/1120
  46223. }
  46224. },
  46225. back: {
  46226. height: math.unit(78, "cm"),
  46227. weight: math.unit(10.8, "kg"),
  46228. name: "Back",
  46229. image: {
  46230. source: "./media/characters/alphaschakal/back.svg",
  46231. extra: 1102/942,
  46232. bottom: 185/1287
  46233. }
  46234. },
  46235. head: {
  46236. height: math.unit(28, "cm"),
  46237. name: "Head",
  46238. image: {
  46239. source: "./media/characters/alphaschakal/head.svg",
  46240. extra: 696/508,
  46241. bottom: 0/696
  46242. }
  46243. },
  46244. paw: {
  46245. height: math.unit(16, "cm"),
  46246. name: "Paw",
  46247. image: {
  46248. source: "./media/characters/alphaschakal/paw.svg"
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(47, "cm"),
  46256. default: true
  46257. },
  46258. {
  46259. name: "Macro",
  46260. height: math.unit(340, "cm")
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(36, "earths"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/ecobyss/front.svg",
  46272. extra: 1282/1215,
  46273. bottom: 11/1293
  46274. }
  46275. },
  46276. back: {
  46277. height: math.unit(36, "earths"),
  46278. name: "Back",
  46279. image: {
  46280. source: "./media/characters/ecobyss/back.svg",
  46281. extra: 1291/1222,
  46282. bottom: 8/1299
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(36, "earths"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46296. {
  46297. front: {
  46298. height: math.unit(12, "feet"),
  46299. name: "Front",
  46300. image: {
  46301. source: "./media/characters/vasuk/front.svg",
  46302. extra: 1326/1207,
  46303. bottom: 64/1390
  46304. }
  46305. },
  46306. },
  46307. [
  46308. {
  46309. name: "Normal",
  46310. height: math.unit(12, "feet"),
  46311. default: true
  46312. },
  46313. ]
  46314. ))
  46315. characterMakers.push(() => makeCharacter(
  46316. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46317. {
  46318. side: {
  46319. height: math.unit(100, "feet"),
  46320. name: "Side",
  46321. image: {
  46322. source: "./media/characters/linneaus/side.svg",
  46323. extra: 987/807,
  46324. bottom: 47/1034
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Macro",
  46331. height: math.unit(100, "feet"),
  46332. default: true
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(8, "feet"),
  46341. weight: math.unit(1200, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/nyterious-daligdig/front.svg",
  46345. extra: 1284/1094,
  46346. bottom: 84/1368
  46347. }
  46348. },
  46349. back: {
  46350. height: math.unit(8, "feet"),
  46351. weight: math.unit(1200, "lb"),
  46352. name: "Back",
  46353. image: {
  46354. source: "./media/characters/nyterious-daligdig/back.svg",
  46355. extra: 1301/1121,
  46356. bottom: 129/1430
  46357. }
  46358. },
  46359. mouth: {
  46360. height: math.unit(1.464, "feet"),
  46361. name: "Mouth",
  46362. image: {
  46363. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46364. }
  46365. },
  46366. },
  46367. [
  46368. {
  46369. name: "Small",
  46370. height: math.unit(8, "feet"),
  46371. default: true
  46372. },
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(15, "feet")
  46376. },
  46377. {
  46378. name: "Macro",
  46379. height: math.unit(90, "feet")
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46385. {
  46386. front: {
  46387. height: math.unit(7 + 4/12, "feet"),
  46388. weight: math.unit(252, "lb"),
  46389. name: "Front",
  46390. image: {
  46391. source: "./media/characters/bandel/front.svg",
  46392. extra: 1946/1775,
  46393. bottom: 26/1972
  46394. }
  46395. },
  46396. back: {
  46397. height: math.unit(7 + 4/12, "feet"),
  46398. weight: math.unit(252, "lb"),
  46399. name: "Back",
  46400. image: {
  46401. source: "./media/characters/bandel/back.svg",
  46402. extra: 1940/1770,
  46403. bottom: 25/1965
  46404. }
  46405. },
  46406. maw: {
  46407. height: math.unit(2.15, "feet"),
  46408. name: "Maw",
  46409. image: {
  46410. source: "./media/characters/bandel/maw.svg"
  46411. }
  46412. },
  46413. stomach: {
  46414. height: math.unit(1.95, "feet"),
  46415. name: "Stomach",
  46416. image: {
  46417. source: "./media/characters/bandel/stomach.svg"
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Normal",
  46424. height: math.unit(7 + 4/12, "feet"),
  46425. default: true
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46431. {
  46432. front: {
  46433. height: math.unit(10 + 5/12, "feet"),
  46434. weight: math.unit(773.5, "kg"),
  46435. name: "Front",
  46436. image: {
  46437. source: "./media/characters/zed/front.svg",
  46438. extra: 987/941,
  46439. bottom: 52/1039
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Short",
  46446. height: math.unit(5 + 4/12, "feet")
  46447. },
  46448. {
  46449. name: "Average",
  46450. height: math.unit(10 + 5/12, "feet"),
  46451. default: true
  46452. },
  46453. {
  46454. name: "Mini-Macro",
  46455. height: math.unit(24 + 9/12, "feet")
  46456. },
  46457. {
  46458. name: "Macro",
  46459. height: math.unit(249, "feet")
  46460. },
  46461. {
  46462. name: "Mega-Macro",
  46463. height: math.unit(12490, "feet")
  46464. },
  46465. {
  46466. name: "Giga-Macro",
  46467. height: math.unit(24.9, "miles")
  46468. },
  46469. {
  46470. name: "Tera-Macro",
  46471. height: math.unit(24900, "miles")
  46472. },
  46473. {
  46474. name: "Cosmic Scale",
  46475. height: math.unit(38.9, "lightyears")
  46476. },
  46477. {
  46478. name: "Universal Scale",
  46479. height: math.unit(138e12, "lightyears")
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(1561, "inches"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/ivan/front.svg",
  46491. extra: 1126/1071,
  46492. bottom: 26/1152
  46493. }
  46494. },
  46495. back: {
  46496. height: math.unit(1561, "inches"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/ivan/back.svg",
  46500. extra: 1134/1079,
  46501. bottom: 30/1164
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(1561, "inches"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(5 + 7/12, "feet"),
  46518. weight: math.unit(150, "lb"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/robin-arctic-hare/front.svg",
  46522. extra: 1148/974,
  46523. bottom: 20/1168
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(5 + 7/12, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46537. {
  46538. side: {
  46539. height: math.unit(5, "feet"),
  46540. name: "Side",
  46541. image: {
  46542. source: "./media/characters/birch/side.svg",
  46543. extra: 985/796,
  46544. bottom: 111/1096
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(5, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(4, "feet"),
  46561. name: "Front",
  46562. image: {
  46563. source: "./media/characters/rasp/front.svg",
  46564. extra: 561/478,
  46565. bottom: 74/635
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Normal",
  46572. height: math.unit(4, "feet"),
  46573. default: true
  46574. },
  46575. ]
  46576. ))
  46577. characterMakers.push(() => makeCharacter(
  46578. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46579. {
  46580. front: {
  46581. height: math.unit(4 + 6/12, "feet"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/agatha/front.svg",
  46585. extra: 947/933,
  46586. bottom: 42/989
  46587. }
  46588. },
  46589. back: {
  46590. height: math.unit(4 + 6/12, "feet"),
  46591. name: "Back",
  46592. image: {
  46593. source: "./media/characters/agatha/back.svg",
  46594. extra: 935/922,
  46595. bottom: 48/983
  46596. }
  46597. },
  46598. },
  46599. [
  46600. {
  46601. name: "Normal",
  46602. height: math.unit(4 + 6 /12, "feet"),
  46603. default: true
  46604. },
  46605. {
  46606. name: "Max Size",
  46607. height: math.unit(500, "feet")
  46608. },
  46609. ]
  46610. ))
  46611. characterMakers.push(() => makeCharacter(
  46612. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46613. {
  46614. side: {
  46615. height: math.unit(30, "feet"),
  46616. name: "Side",
  46617. image: {
  46618. source: "./media/characters/roggy/side.svg",
  46619. extra: 909/643,
  46620. bottom: 63/972
  46621. }
  46622. },
  46623. lounging: {
  46624. height: math.unit(20, "feet"),
  46625. name: "Lounging",
  46626. image: {
  46627. source: "./media/characters/roggy/lounging.svg",
  46628. extra: 643/479,
  46629. bottom: 145/788
  46630. }
  46631. },
  46632. handpaw: {
  46633. height: math.unit(13.1, "feet"),
  46634. name: "Handpaw",
  46635. image: {
  46636. source: "./media/characters/roggy/handpaw.svg"
  46637. }
  46638. },
  46639. footpaw: {
  46640. height: math.unit(15.8, "feet"),
  46641. name: "Footpaw",
  46642. image: {
  46643. source: "./media/characters/roggy/footpaw.svg"
  46644. }
  46645. },
  46646. },
  46647. [
  46648. {
  46649. name: "Menacing",
  46650. height: math.unit(30, "feet"),
  46651. default: true
  46652. },
  46653. ]
  46654. ))
  46655. characterMakers.push(() => makeCharacter(
  46656. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46657. {
  46658. front: {
  46659. height: math.unit(5 + 7/12, "feet"),
  46660. weight: math.unit(135, "lb"),
  46661. name: "Front",
  46662. image: {
  46663. source: "./media/characters/naomi/front.svg",
  46664. extra: 1209/1154,
  46665. bottom: 129/1338
  46666. }
  46667. },
  46668. back: {
  46669. height: math.unit(5 + 7/12, "feet"),
  46670. weight: math.unit(135, "lb"),
  46671. name: "Back",
  46672. image: {
  46673. source: "./media/characters/naomi/back.svg",
  46674. extra: 1252/1190,
  46675. bottom: 23/1275
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(5 + 7 /12, "feet"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46689. {
  46690. side: {
  46691. height: math.unit(35, "meters"),
  46692. name: "Side",
  46693. image: {
  46694. source: "./media/characters/kimpi/side.svg",
  46695. extra: 419/382,
  46696. bottom: 63/482
  46697. }
  46698. },
  46699. hand: {
  46700. height: math.unit(8.96, "meters"),
  46701. name: "Hand",
  46702. image: {
  46703. source: "./media/characters/kimpi/hand.svg"
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(35, "meters"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(4 + 4/12, "feet"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/pepper-purrloin/front.svg",
  46723. extra: 1141/1024,
  46724. bottom: 21/1162
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(4 + 4/12, "feet"),
  46732. default: true
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46738. {
  46739. front: {
  46740. height: math.unit(6 + 2/12, "feet"),
  46741. name: "Front",
  46742. image: {
  46743. source: "./media/characters/raphael/front.svg",
  46744. extra: 1101/962,
  46745. bottom: 59/1160
  46746. }
  46747. },
  46748. },
  46749. [
  46750. {
  46751. name: "Normal",
  46752. height: math.unit(6 + 2/12, "feet"),
  46753. default: true
  46754. },
  46755. ]
  46756. ))
  46757. //characters
  46758. function makeCharacters() {
  46759. const results = [];
  46760. characterMakers.forEach(character => {
  46761. results.push(character());
  46762. });
  46763. return results;
  46764. }