less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

49907 строки
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", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. "amogus": {
  1908. name: "Amogus",
  1909. parents: ["deity"]
  1910. },
  1911. }
  1912. //species
  1913. function getSpeciesInfo(speciesList) {
  1914. let result = new Set();
  1915. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1916. result.add(entry)
  1917. });
  1918. return Array.from(result);
  1919. };
  1920. function getSpeciesInfoHelper(species) {
  1921. if (!speciesData[species]) {
  1922. console.warn(species + " doesn't exist");
  1923. return [];
  1924. }
  1925. if (speciesData[species].parents) {
  1926. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1927. } else {
  1928. return [species];
  1929. }
  1930. }
  1931. characterMakers.push(() => makeCharacter(
  1932. {
  1933. name: "Fen",
  1934. species: ["crux"],
  1935. description: {
  1936. title: "Bio",
  1937. text: "Very furry. Sheds on everything."
  1938. },
  1939. tags: [
  1940. "anthro",
  1941. "goo"
  1942. ]
  1943. },
  1944. {
  1945. front: {
  1946. height: math.unit(12, "feet"),
  1947. weight: math.unit(2400, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/fen/front.svg",
  1951. extra: 1804/1562,
  1952. bottom: 205/2009
  1953. }
  1954. },
  1955. diving: {
  1956. height: math.unit(4.9, "meters"),
  1957. weight: math.unit(2400, "lb"),
  1958. name: "Diving",
  1959. image: {
  1960. source: "./media/characters/fen/diving.svg"
  1961. }
  1962. },
  1963. goo: {
  1964. height: math.unit(12, "feet"),
  1965. weight: math.unit(3600, "lb"),
  1966. volume: math.unit(1000, "liters"),
  1967. capacity: math.unit(6, "people"),
  1968. name: "Goo",
  1969. image: {
  1970. source: "./media/characters/fen/goo.svg",
  1971. extra: 1307/1071,
  1972. bottom: 134/1441
  1973. }
  1974. },
  1975. maw: {
  1976. height: math.unit(5.03, "feet"),
  1977. name: "Maw",
  1978. image: {
  1979. source: "./media/characters/fen/maw.svg"
  1980. }
  1981. },
  1982. gooCeiling: {
  1983. height: math.unit(6.6, "feet"),
  1984. weight: math.unit(3000, "lb"),
  1985. volume: math.unit(1000, "liters"),
  1986. capacity: math.unit(6, "people"),
  1987. name: "Goo (Ceiling)",
  1988. image: {
  1989. source: "./media/characters/fen/goo-ceiling.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(12, "feet"),
  1994. weight: math.unit(2400, "lb"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/fen/back.svg",
  1998. },
  1999. info: {
  2000. description: {
  2001. mode: "append",
  2002. text: "\n\nHe is not currently looking at you."
  2003. }
  2004. }
  2005. },
  2006. full: {
  2007. height: math.unit(1.6, "meter"),
  2008. weight: math.unit(3200, "lb"),
  2009. name: "Full",
  2010. image: {
  2011. source: "./media/characters/fen/full.svg",
  2012. extra: 1133/859,
  2013. bottom: 145/1278
  2014. },
  2015. info: {
  2016. description: {
  2017. mode: "append",
  2018. text: "\n\nMunch."
  2019. }
  2020. }
  2021. },
  2022. gooLounging: {
  2023. height: math.unit(4.53, "feet"),
  2024. weight: math.unit(3000, "lb"),
  2025. capacity: math.unit(6, "people"),
  2026. name: "Goo (Lounging)",
  2027. image: {
  2028. source: "./media/characters/fen/goo-lounging.svg",
  2029. bottom: 116 / 613
  2030. }
  2031. },
  2032. lounging: {
  2033. height: math.unit(10.52, "feet"),
  2034. weight: math.unit(2400, "lb"),
  2035. name: "Lounging",
  2036. image: {
  2037. source: "./media/characters/fen/lounging.svg"
  2038. }
  2039. },
  2040. },
  2041. [
  2042. {
  2043. name: "Small",
  2044. height: math.unit(2.2428, "meter")
  2045. },
  2046. {
  2047. name: "Normal",
  2048. height: math.unit(12, "feet"),
  2049. default: true,
  2050. },
  2051. {
  2052. name: "Big",
  2053. height: math.unit(20, "feet")
  2054. },
  2055. {
  2056. name: "Minimacro",
  2057. height: math.unit(40, "feet"),
  2058. info: {
  2059. description: {
  2060. mode: "append",
  2061. text: "\n\nTOO DAMN BIG"
  2062. }
  2063. }
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(100, "feet"),
  2068. info: {
  2069. description: {
  2070. mode: "append",
  2071. text: "\n\nTOO DAMN BIG"
  2072. }
  2073. }
  2074. },
  2075. {
  2076. name: "Megamacro",
  2077. height: math.unit(2, "miles")
  2078. },
  2079. {
  2080. name: "Gigamacro",
  2081. height: math.unit(10, "earths")
  2082. },
  2083. ]
  2084. ))
  2085. characterMakers.push(() => makeCharacter(
  2086. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2087. {
  2088. front: {
  2089. height: math.unit(183, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/front.svg",
  2094. bottom: 0.01,
  2095. extra: 2154 / 2081
  2096. }
  2097. },
  2098. frontAlt: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Front (alt)",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2104. }
  2105. },
  2106. back: {
  2107. height: math.unit(183, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Back",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/back.svg"
  2112. }
  2113. },
  2114. kneeling: {
  2115. height: math.unit(125, "cm"),
  2116. weight: math.unit(80, "kg"),
  2117. name: "Kneeling",
  2118. image: {
  2119. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2120. extra: 1033 / 977,
  2121. bottom: 23.7 / 1057
  2122. }
  2123. },
  2124. maw: {
  2125. height: math.unit(183 / 5, "cm"),
  2126. name: "Maw",
  2127. image: {
  2128. source: "./media/characters/sofia-fluttertail/maw.svg"
  2129. }
  2130. },
  2131. mawcloseup: {
  2132. height: math.unit(183 / 5 * 0.41, "cm"),
  2133. name: "Maw (Closeup)",
  2134. image: {
  2135. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2136. }
  2137. },
  2138. paws: {
  2139. height: math.unit(1.17, "feet"),
  2140. name: "Paws",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/paws.svg",
  2143. extra: 851 / 851,
  2144. bottom: 17 / 868
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(1.83, "meter")
  2152. },
  2153. {
  2154. name: "Size Thief",
  2155. height: math.unit(18, "feet")
  2156. },
  2157. {
  2158. name: "50 Foot Collie",
  2159. height: math.unit(50, "feet")
  2160. },
  2161. {
  2162. name: "Macro",
  2163. height: math.unit(96, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Megamerger",
  2168. height: math.unit(650, "feet")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/march/front.svg",
  2181. extra: 1992/1851,
  2182. bottom: 39/2031
  2183. }
  2184. },
  2185. foot: {
  2186. height: math.unit(0.9, "feet"),
  2187. name: "Foot",
  2188. image: {
  2189. source: "./media/characters/march/foot.svg"
  2190. }
  2191. },
  2192. },
  2193. [
  2194. {
  2195. name: "Normal",
  2196. height: math.unit(7.9, "feet")
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(220, "meters")
  2201. },
  2202. {
  2203. name: "Megamacro",
  2204. height: math.unit(2.98, "km"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(15963, "km")
  2210. },
  2211. {
  2212. name: "Teramacro",
  2213. height: math.unit(2980000000, "km")
  2214. },
  2215. {
  2216. name: "Examacro",
  2217. height: math.unit(250, "parsecs")
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(60, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/noir/front.svg",
  2230. extra: 1,
  2231. bottom: 0.032
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(6.6, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(500, "feet")
  2243. },
  2244. {
  2245. name: "Megamacro",
  2246. height: math.unit(2.5, "km"),
  2247. default: true
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(22500, "km")
  2252. },
  2253. {
  2254. name: "Teramacro",
  2255. height: math.unit(2500000000, "km")
  2256. },
  2257. {
  2258. name: "Examacro",
  2259. height: math.unit(200, "parsecs")
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(7, "feet"),
  2268. weight: math.unit(100, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/okuri/front.svg",
  2272. extra: 739/665,
  2273. bottom: 39/778
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/okuri/back.svg",
  2282. extra: 734/653,
  2283. bottom: 13/747
  2284. }
  2285. },
  2286. sitting: {
  2287. height: math.unit(2.95, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Sitting",
  2290. image: {
  2291. source: "./media/characters/okuri/sitting.svg",
  2292. extra: 370/318,
  2293. bottom: 99/469
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Smallest",
  2300. height: math.unit(5 + 2/12, "feet")
  2301. },
  2302. {
  2303. name: "Smaller",
  2304. height: math.unit(300, "feet")
  2305. },
  2306. {
  2307. name: "Small",
  2308. height: math.unit(1000, "feet")
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(1, "mile")
  2313. },
  2314. {
  2315. name: "Mega Macro (Small)",
  2316. height: math.unit(20, "km")
  2317. },
  2318. {
  2319. name: "Mega Macro (Large)",
  2320. height: math.unit(600, "km")
  2321. },
  2322. {
  2323. name: "Giga Macro",
  2324. height: math.unit(10000, "km")
  2325. },
  2326. {
  2327. name: "Normal",
  2328. height: math.unit(577560, "km"),
  2329. default: true
  2330. },
  2331. {
  2332. name: "Large",
  2333. height: math.unit(4, "galaxies")
  2334. },
  2335. {
  2336. name: "Largest",
  2337. height: math.unit(15, "multiverses")
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(100, "kg"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/manny/front.svg",
  2350. extra: 1,
  2351. bottom: 0.06
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(100, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/manny/back.svg",
  2360. extra: 1,
  2361. bottom: 0.014
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(7, "feet"),
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(78, "feet"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Macro+",
  2377. height: math.unit(300, "meters")
  2378. },
  2379. {
  2380. name: "Macro++",
  2381. height: math.unit(2400, "meters")
  2382. },
  2383. {
  2384. name: "Megamacro",
  2385. height: math.unit(5167, "meters")
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(41769, "miles")
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2395. {
  2396. front: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front",
  2400. image: {
  2401. source: "./media/characters/adake/front-1.svg"
  2402. }
  2403. },
  2404. frontAlt: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(100, "kg"),
  2407. name: "Front (Alt)",
  2408. image: {
  2409. source: "./media/characters/adake/front-2.svg",
  2410. extra: 1,
  2411. bottom: 0.01
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/adake/back.svg",
  2420. }
  2421. },
  2422. kneel: {
  2423. height: math.unit(5.385, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Kneeling",
  2426. image: {
  2427. source: "./media/characters/adake/kneel.svg",
  2428. bottom: 0.052
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(7, "feet"),
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(78, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(300, "meters")
  2445. },
  2446. {
  2447. name: "Macro++",
  2448. height: math.unit(2400, "meters")
  2449. },
  2450. {
  2451. name: "Megamacro",
  2452. height: math.unit(5167, "meters")
  2453. },
  2454. {
  2455. name: "Gigamacro",
  2456. height: math.unit(41769, "miles")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(1.65, "meters"),
  2465. weight: math.unit(50, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/elijah/front.svg",
  2469. extra: 858 / 830,
  2470. bottom: 95.5 / 953.8559
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(1.65, "meters"),
  2475. weight: math.unit(50, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/elijah/back.svg",
  2479. extra: 895 / 850,
  2480. bottom: 5.3 / 897.956
  2481. }
  2482. },
  2483. frontNsfw: {
  2484. height: math.unit(1.65, "meters"),
  2485. weight: math.unit(50, "kg"),
  2486. name: "Front (NSFW)",
  2487. image: {
  2488. source: "./media/characters/elijah/front-nsfw.svg",
  2489. extra: 858 / 830,
  2490. bottom: 95.5 / 953.8559
  2491. }
  2492. },
  2493. backNsfw: {
  2494. height: math.unit(1.65, "meters"),
  2495. weight: math.unit(50, "kg"),
  2496. name: "Back (NSFW)",
  2497. image: {
  2498. source: "./media/characters/elijah/back-nsfw.svg",
  2499. extra: 895 / 850,
  2500. bottom: 5.3 / 897.956
  2501. }
  2502. },
  2503. dick: {
  2504. height: math.unit(1, "feet"),
  2505. name: "Dick",
  2506. image: {
  2507. source: "./media/characters/elijah/dick.svg"
  2508. }
  2509. },
  2510. beakOpen: {
  2511. height: math.unit(1.25, "feet"),
  2512. name: "Beak (Open)",
  2513. image: {
  2514. source: "./media/characters/elijah/beak-open.svg"
  2515. }
  2516. },
  2517. beakShut: {
  2518. height: math.unit(1.25, "feet"),
  2519. name: "Beak (Shut)",
  2520. image: {
  2521. source: "./media/characters/elijah/beak-shut.svg"
  2522. }
  2523. },
  2524. footFlexing: {
  2525. height: math.unit(1.61, "feet"),
  2526. name: "Foot (Flexing)",
  2527. image: {
  2528. source: "./media/characters/elijah/foot-flexing.svg"
  2529. }
  2530. },
  2531. footStepping: {
  2532. height: math.unit(1.44, "feet"),
  2533. name: "Foot (Stepping)",
  2534. image: {
  2535. source: "./media/characters/elijah/foot-stepping.svg"
  2536. }
  2537. },
  2538. plantigradeLeg: {
  2539. height: math.unit(2.34, "feet"),
  2540. name: "Plantigrade Leg",
  2541. image: {
  2542. source: "./media/characters/elijah/plantigrade-leg.svg"
  2543. }
  2544. },
  2545. plantigradeFootLeft: {
  2546. height: math.unit(0.9, "feet"),
  2547. name: "Plantigrade Foot (Left)",
  2548. image: {
  2549. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2550. }
  2551. },
  2552. plantigradeFootRight: {
  2553. height: math.unit(0.9, "feet"),
  2554. name: "Plantigrade Foot (Right)",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Normal",
  2563. height: math.unit(1.65, "meters")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(55, "meters"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Macro+",
  2572. height: math.unit(105, "meters")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(7 + 2/12, "feet"),
  2581. weight: math.unit(320, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/rai/front.svg",
  2585. extra: 1802/1696,
  2586. bottom: 68/1870
  2587. }
  2588. },
  2589. frontDressed: {
  2590. height: math.unit(7 + 2/12, "feet"),
  2591. weight: math.unit(320, "kg"),
  2592. name: "Front (Dressed)",
  2593. image: {
  2594. source: "./media/characters/rai/front-dressed.svg",
  2595. extra: 1802/1696,
  2596. bottom: 68/1870
  2597. }
  2598. },
  2599. side: {
  2600. height: math.unit(7 + 2/12, "feet"),
  2601. weight: math.unit(320, "kg"),
  2602. name: "Side",
  2603. image: {
  2604. source: "./media/characters/rai/side.svg",
  2605. extra: 1789/1710,
  2606. bottom: 115/1904
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7 + 2/12, "feet"),
  2611. weight: math.unit(320, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/rai/back.svg",
  2615. extra: 1770/1707,
  2616. bottom: 28/1798
  2617. }
  2618. },
  2619. feral: {
  2620. height: math.unit(9.5, "feet"),
  2621. weight: math.unit(640, "kg"),
  2622. name: "Feral",
  2623. image: {
  2624. source: "./media/characters/rai/feral.svg",
  2625. extra: 945/553,
  2626. bottom: 176/1121
  2627. }
  2628. },
  2629. dragon: {
  2630. height: math.unit(23, "feet"),
  2631. weight: math.unit(50000, "lb"),
  2632. name: "Dragon",
  2633. image: {
  2634. source: "./media/characters/rai/dragon.svg",
  2635. extra: 2498 / 2030,
  2636. bottom: 85.2 / 2584
  2637. }
  2638. },
  2639. maw: {
  2640. height: math.unit(1.69, "feet"),
  2641. name: "Maw",
  2642. image: {
  2643. source: "./media/characters/rai/maw.svg"
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(7 + 2/12, "feet")
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(11, "feet")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(302, "feet"),
  2659. default: true
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2665. {
  2666. frontDressed: {
  2667. height: math.unit(216, "feet"),
  2668. weight: math.unit(7000000, "lb"),
  2669. name: "Front (Dressed)",
  2670. image: {
  2671. source: "./media/characters/jazzy/front-dressed.svg",
  2672. extra: 2738 / 2651,
  2673. bottom: 41.8 / 2786
  2674. }
  2675. },
  2676. backDressed: {
  2677. height: math.unit(216, "feet"),
  2678. weight: math.unit(7000000, "lb"),
  2679. name: "Back (Dressed)",
  2680. image: {
  2681. source: "./media/characters/jazzy/back-dressed.svg",
  2682. extra: 2775 / 2673,
  2683. bottom: 36.8 / 2817
  2684. }
  2685. },
  2686. front: {
  2687. height: math.unit(216, "feet"),
  2688. weight: math.unit(7000000, "lb"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/jazzy/front.svg",
  2692. extra: 2738 / 2651,
  2693. bottom: 41.8 / 2786
  2694. }
  2695. },
  2696. back: {
  2697. height: math.unit(216, "feet"),
  2698. weight: math.unit(7000000, "lb"),
  2699. name: "Back",
  2700. image: {
  2701. source: "./media/characters/jazzy/back.svg",
  2702. extra: 2775 / 2673,
  2703. bottom: 36.8 / 2817
  2704. }
  2705. },
  2706. maw: {
  2707. height: math.unit(20, "feet"),
  2708. name: "Maw",
  2709. image: {
  2710. source: "./media/characters/jazzy/maw.svg"
  2711. }
  2712. },
  2713. paws: {
  2714. height: math.unit(27.5, "feet"),
  2715. name: "Paws",
  2716. image: {
  2717. source: "./media/characters/jazzy/paws.svg"
  2718. }
  2719. },
  2720. eye: {
  2721. height: math.unit(4.4, "feet"),
  2722. name: "Eye",
  2723. image: {
  2724. source: "./media/characters/jazzy/eye.svg"
  2725. }
  2726. },
  2727. droneOffense: {
  2728. height: math.unit(9.5, "inches"),
  2729. name: "Drone (Offense)",
  2730. image: {
  2731. source: "./media/characters/jazzy/drone-offense.svg"
  2732. }
  2733. },
  2734. droneRecon: {
  2735. height: math.unit(9.5, "inches"),
  2736. name: "Drone (Recon)",
  2737. image: {
  2738. source: "./media/characters/jazzy/drone-recon.svg"
  2739. }
  2740. },
  2741. droneDefense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Defense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-defense.svg"
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(216, "feet"),
  2753. default: true
  2754. },
  2755. ]
  2756. ))
  2757. characterMakers.push(() => makeCharacter(
  2758. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2759. {
  2760. front: {
  2761. height: math.unit(9 + 6/12, "feet"),
  2762. weight: math.unit(700, "lb"),
  2763. name: "Front",
  2764. image: {
  2765. source: "./media/characters/flamm/front.svg",
  2766. extra: 1751/1632,
  2767. bottom: 46/1797
  2768. }
  2769. },
  2770. buff: {
  2771. height: math.unit(9 + 6/12, "feet"),
  2772. weight: math.unit(950, "lb"),
  2773. name: "Buff",
  2774. image: {
  2775. source: "./media/characters/flamm/buff.svg",
  2776. extra: 3018/2874,
  2777. bottom: 221/3239
  2778. }
  2779. },
  2780. },
  2781. [
  2782. {
  2783. name: "Normal",
  2784. height: math.unit(9.5, "feet")
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(200, "feet"),
  2789. default: true
  2790. },
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2795. {
  2796. front: {
  2797. height: math.unit(5 + 3/12, "feet"),
  2798. weight: math.unit(60, "kg"),
  2799. name: "Front",
  2800. image: {
  2801. source: "./media/characters/zephiro/front.svg",
  2802. extra: 2309 / 2162,
  2803. bottom: 0.069
  2804. }
  2805. },
  2806. side: {
  2807. height: math.unit(5 + 3/12, "feet"),
  2808. weight: math.unit(60, "kg"),
  2809. name: "Side",
  2810. image: {
  2811. source: "./media/characters/zephiro/side.svg",
  2812. extra: 2403 / 2279,
  2813. bottom: 0.015
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(5 + 3/12, "feet"),
  2818. weight: math.unit(60, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/zephiro/back.svg",
  2822. extra: 2373 / 2244,
  2823. bottom: 0.013
  2824. }
  2825. },
  2826. hand: {
  2827. height: math.unit(0.68, "feet"),
  2828. name: "Hand",
  2829. image: {
  2830. source: "./media/characters/zephiro/hand.svg"
  2831. }
  2832. },
  2833. paw: {
  2834. height: math.unit(1, "feet"),
  2835. name: "Paw",
  2836. image: {
  2837. source: "./media/characters/zephiro/paw.svg"
  2838. }
  2839. },
  2840. beans: {
  2841. height: math.unit(0.93, "feet"),
  2842. name: "Beans",
  2843. image: {
  2844. source: "./media/characters/zephiro/beans.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Micro",
  2851. height: math.unit(3, "inches")
  2852. },
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(5 + 3 / 12, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(118, "feet")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(5, "feet"),
  2869. weight: math.unit(90, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/fory/front.svg",
  2873. extra: 2862 / 2674,
  2874. bottom: 180 / 3043.8
  2875. }
  2876. },
  2877. back: {
  2878. height: math.unit(5, "feet"),
  2879. weight: math.unit(90, "kg"),
  2880. name: "Back",
  2881. image: {
  2882. source: "./media/characters/fory/back.svg",
  2883. extra: 2962 / 2791,
  2884. bottom: 106 / 3071.8
  2885. }
  2886. },
  2887. foot: {
  2888. height: math.unit(2.14, "feet"),
  2889. name: "Foot",
  2890. image: {
  2891. source: "./media/characters/fory/foot.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(5, "feet")
  2899. },
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(50, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(10, "miles")
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(5, "earths")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(7, "feet"),
  2920. weight: math.unit(90, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/kurrikage/front.svg",
  2924. extra: 1845/1733,
  2925. bottom: 119/1964
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(7, "feet"),
  2930. weight: math.unit(90, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/kurrikage/back.svg",
  2934. extra: 1790/1677,
  2935. bottom: 61/1851
  2936. }
  2937. },
  2938. dressed: {
  2939. height: math.unit(7, "feet"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Dressed",
  2942. image: {
  2943. source: "./media/characters/kurrikage/dressed.svg",
  2944. extra: 1845/1733,
  2945. bottom: 119/1964
  2946. }
  2947. },
  2948. foot: {
  2949. height: math.unit(1.5, "feet"),
  2950. name: "Foot",
  2951. image: {
  2952. source: "./media/characters/kurrikage/foot.svg"
  2953. }
  2954. },
  2955. staff: {
  2956. height: math.unit(6.7, "feet"),
  2957. name: "Staff",
  2958. image: {
  2959. source: "./media/characters/kurrikage/staff.svg"
  2960. }
  2961. },
  2962. peek: {
  2963. height: math.unit(1.05, "feet"),
  2964. name: "Peeking",
  2965. image: {
  2966. source: "./media/characters/kurrikage/peek.svg",
  2967. bottom: 0.08
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(12, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Big",
  2979. height: math.unit(20, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(500, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(20, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/shingo/front.svg",
  3000. extra: 1900/1825,
  3001. bottom: 82/1982
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(6, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/shingo/side.svg",
  3010. extra: 1930/1865,
  3011. bottom: 16/1946
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(75, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/shingo/back.svg",
  3020. extra: 1922/1852,
  3021. bottom: 16/1938
  3022. }
  3023. },
  3024. frontDressed: {
  3025. height: math.unit(6, "feet"),
  3026. weight: math.unit(150, "lb"),
  3027. name: "Front-dressed",
  3028. image: {
  3029. source: "./media/characters/shingo/front-dressed.svg",
  3030. extra: 1900/1825,
  3031. bottom: 82/1982
  3032. }
  3033. },
  3034. paw: {
  3035. height: math.unit(1.29, "feet"),
  3036. name: "Paw",
  3037. image: {
  3038. source: "./media/characters/shingo/paw.svg"
  3039. }
  3040. },
  3041. hand: {
  3042. height: math.unit(1.07, "feet"),
  3043. name: "Hand",
  3044. image: {
  3045. source: "./media/characters/shingo/hand.svg"
  3046. }
  3047. },
  3048. frontAlt: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front (Alt)",
  3052. image: {
  3053. source: "./media/characters/shingo/front-alt.svg",
  3054. extra: 3511 / 3338,
  3055. bottom: 0.005
  3056. }
  3057. },
  3058. frontAlt2: {
  3059. height: math.unit(6, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (Alt 2)",
  3062. image: {
  3063. source: "./media/characters/shingo/front-alt-2.svg",
  3064. extra: 706/681,
  3065. bottom: 11/717
  3066. }
  3067. },
  3068. pawAlt: {
  3069. height: math.unit(1, "feet"),
  3070. name: "Paw (Alt)",
  3071. image: {
  3072. source: "./media/characters/shingo/paw-alt.svg"
  3073. }
  3074. },
  3075. },
  3076. [
  3077. {
  3078. name: "Micro",
  3079. height: math.unit(4, "inches")
  3080. },
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(6, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(108, "feet")
  3089. },
  3090. {
  3091. name: "Macro+",
  3092. height: math.unit(1500, "feet")
  3093. },
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3098. {
  3099. side: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(75, "kg"),
  3102. name: "Side",
  3103. image: {
  3104. source: "./media/characters/aigey/side.svg"
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(200, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(100, "miles")
  3117. },
  3118. ]
  3119. )
  3120. )
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/natasha/front.svg",
  3130. extra: 859 / 824,
  3131. bottom: 23 / 879.6
  3132. }
  3133. },
  3134. frontNsfw: {
  3135. height: math.unit(5 + 5 / 12, "feet"),
  3136. weight: math.unit(75, "kg"),
  3137. name: "Front (NSFW)",
  3138. image: {
  3139. source: "./media/characters/natasha/front-nsfw.svg",
  3140. extra: 859 / 824,
  3141. bottom: 23 / 879.6
  3142. }
  3143. },
  3144. frontErect: {
  3145. height: math.unit(5 + 5 / 12, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front (Erect)",
  3148. image: {
  3149. source: "./media/characters/natasha/front-erect.svg",
  3150. extra: 859 / 824,
  3151. bottom: 23 / 879.6
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(5 + 5 / 12, "feet"),
  3156. weight: math.unit(75, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/natasha/back.svg",
  3160. extra: 887.9 / 852.6,
  3161. bottom: 9.7 / 896.4
  3162. }
  3163. },
  3164. backAlt: {
  3165. height: math.unit(5 + 5 / 12, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Back (Alt)",
  3168. image: {
  3169. source: "./media/characters/natasha/back-alt.svg",
  3170. extra: 1236.7 / 1192,
  3171. bottom: 22.3 / 1258.2
  3172. }
  3173. },
  3174. dick: {
  3175. height: math.unit(1.772, "feet"),
  3176. name: "Dick",
  3177. image: {
  3178. source: "./media/characters/natasha/dick.svg"
  3179. }
  3180. },
  3181. paw: {
  3182. height: math.unit(0.250, "meters"),
  3183. name: "Paw",
  3184. image: {
  3185. source: "./media/characters/natasha/paw.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(5 + 5 / 12, "feet")
  3193. },
  3194. {
  3195. name: "Large",
  3196. height: math.unit(12, "feet")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(100, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro+",
  3205. height: math.unit(260, "feet")
  3206. },
  3207. {
  3208. name: "Macro++",
  3209. height: math.unit(1, "mile")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/malik/front.svg"
  3222. }
  3223. },
  3224. side: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(75, "kg"),
  3227. name: "Side",
  3228. image: {
  3229. source: "./media/characters/malik/side.svg",
  3230. extra: 1.1539
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(6, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/malik/back.svg"
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(156, "feet"),
  3246. default: true
  3247. },
  3248. {
  3249. name: "Macro+",
  3250. height: math.unit(1188, "feet")
  3251. },
  3252. ]
  3253. ))
  3254. characterMakers.push(() => makeCharacter(
  3255. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3256. {
  3257. front: {
  3258. height: math.unit(6, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/sefer/front.svg",
  3263. extra: 848 / 659,
  3264. bottom: 28.3 / 876.442
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/sefer/back.svg",
  3273. extra: 864 / 695,
  3274. bottom: 10 / 871
  3275. }
  3276. },
  3277. frontDressed: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(75, "kg"),
  3280. name: "Front (Dressed)",
  3281. image: {
  3282. source: "./media/characters/sefer/front-dressed.svg",
  3283. extra: 839 / 653,
  3284. bottom: 37.6 / 878
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(6, "feet"),
  3292. default: true
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3298. {
  3299. body: {
  3300. height: math.unit(2.2428, "meter"),
  3301. weight: math.unit(124.738, "kg"),
  3302. name: "Body",
  3303. image: {
  3304. extra: 1225 / 1050,
  3305. source: "./media/characters/north/front.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Micro",
  3312. height: math.unit(4, "inches")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(63, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(101, "miles"),
  3321. default: true
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3327. {
  3328. angled: {
  3329. height: math.unit(4, "meter"),
  3330. weight: math.unit(150, "kg"),
  3331. name: "Angled",
  3332. image: {
  3333. source: "./media/characters/talan/angled-sfw.svg",
  3334. bottom: 29 / 3734
  3335. }
  3336. },
  3337. angledNsfw: {
  3338. height: math.unit(4, "meter"),
  3339. weight: math.unit(150, "kg"),
  3340. name: "Angled (NSFW)",
  3341. image: {
  3342. source: "./media/characters/talan/angled-nsfw.svg",
  3343. bottom: 29 / 3734
  3344. }
  3345. },
  3346. frontNsfw: {
  3347. height: math.unit(4, "meter"),
  3348. weight: math.unit(150, "kg"),
  3349. name: "Front (NSFW)",
  3350. image: {
  3351. source: "./media/characters/talan/front-nsfw.svg",
  3352. bottom: 29 / 3734
  3353. }
  3354. },
  3355. sideNsfw: {
  3356. height: math.unit(4, "meter"),
  3357. weight: math.unit(150, "kg"),
  3358. name: "Side (NSFW)",
  3359. image: {
  3360. source: "./media/characters/talan/side-nsfw.svg",
  3361. bottom: 29 / 3734
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(4, "meter"),
  3366. weight: math.unit(150, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/talan/back.svg"
  3370. }
  3371. },
  3372. dickBottom: {
  3373. height: math.unit(0.621, "meter"),
  3374. name: "Dick (Bottom)",
  3375. image: {
  3376. source: "./media/characters/talan/dick-bottom.svg"
  3377. }
  3378. },
  3379. dickTop: {
  3380. height: math.unit(0.621, "meter"),
  3381. name: "Dick (Top)",
  3382. image: {
  3383. source: "./media/characters/talan/dick-top.svg"
  3384. }
  3385. },
  3386. dickSide: {
  3387. height: math.unit(0.305, "meter"),
  3388. name: "Dick (Side)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-side.svg"
  3391. }
  3392. },
  3393. dickFront: {
  3394. height: math.unit(0.305, "meter"),
  3395. name: "Dick (Front)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-front.svg"
  3398. }
  3399. },
  3400. },
  3401. [
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(4, "meters")
  3405. },
  3406. {
  3407. name: "Macro",
  3408. height: math.unit(100, "meters")
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(2, "miles"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(5000, "miles")
  3418. },
  3419. {
  3420. name: "Teramacro",
  3421. height: math.unit(100, "parsecs")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front.svg"
  3434. }
  3435. },
  3436. frontAlt: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt.svg"
  3442. }
  3443. },
  3444. frontAlt2: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(90, "kg"),
  3447. name: "Front (alt 2)",
  3448. image: {
  3449. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3450. }
  3451. }
  3452. },
  3453. [
  3454. {
  3455. name: "Normal",
  3456. height: math.unit(9, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Large",
  3461. height: math.unit(25, "feet")
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(0.25, "miles")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3475. {
  3476. side: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(140, "kg"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/sosha/side.svg",
  3482. bottom: 0.042
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(12, "feet"),
  3490. default: true
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3496. {
  3497. side: {
  3498. height: math.unit(5 + 5 / 12, "feet"),
  3499. weight: math.unit(170, "kg"),
  3500. name: "Side",
  3501. image: {
  3502. source: "./media/characters/runnola/side.svg",
  3503. extra: 741 / 448,
  3504. bottom: 0.05
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Small",
  3511. height: math.unit(3, "feet")
  3512. },
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5 + 5 / 12, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Big",
  3520. height: math.unit(10, "feet")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(50, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/kurribird/front.svg",
  3533. bottom: 0.015
  3534. }
  3535. },
  3536. frontAlt: {
  3537. height: math.unit(1.5, "meter"),
  3538. weight: math.unit(50, "kg"),
  3539. name: "Front (Alt)",
  3540. image: {
  3541. source: "./media/characters/kurribird/front-alt.svg",
  3542. extra: 1.45
  3543. }
  3544. },
  3545. },
  3546. [
  3547. {
  3548. name: "Normal",
  3549. height: math.unit(7, "feet")
  3550. },
  3551. {
  3552. name: "Big",
  3553. height: math.unit(12, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(1500, "feet")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(2, "miles")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(80, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/elbial/front.svg",
  3575. extra: 1643 / 1556,
  3576. bottom: 60.2 / 1696
  3577. }
  3578. },
  3579. side: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Side",
  3583. image: {
  3584. source: "./media/characters/elbial/side.svg",
  3585. extra: 1601/1528,
  3586. bottom: 97/1698
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(80, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/elbial/back.svg",
  3595. extra: 1653/1569,
  3596. bottom: 20/1673
  3597. }
  3598. },
  3599. frontDressed: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(80, "kg"),
  3602. name: "Front (Dressed)",
  3603. image: {
  3604. source: "./media/characters/elbial/front-dressed.svg",
  3605. extra: 1638/1569,
  3606. bottom: 70/1708
  3607. }
  3608. },
  3609. genitals: {
  3610. height: math.unit(2 / 3.367, "meter"),
  3611. name: "Genitals",
  3612. image: {
  3613. source: "./media/characters/elbial/genitals.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Large",
  3620. height: math.unit(100, "feet")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(500, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(10, "miles")
  3630. },
  3631. {
  3632. name: "Gigamacro",
  3633. height: math.unit(25000, "miles")
  3634. },
  3635. {
  3636. name: "Full-Size",
  3637. height: math.unit(8000000, "gigaparsecs")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(2, "meter"),
  3646. weight: math.unit(60, "kg"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/noah/front.svg"
  3650. }
  3651. },
  3652. talons: {
  3653. height: math.unit(0.315, "meter"),
  3654. name: "Talons",
  3655. image: {
  3656. source: "./media/characters/noah/talons.svg"
  3657. }
  3658. }
  3659. },
  3660. [
  3661. {
  3662. name: "Large",
  3663. height: math.unit(50, "feet")
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(750, "feet"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Megamacro",
  3672. height: math.unit(50, "miles")
  3673. },
  3674. {
  3675. name: "Gigamacro",
  3676. height: math.unit(100000, "miles")
  3677. },
  3678. {
  3679. name: "Full-Size",
  3680. height: math.unit(3000000000, "miles")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/natalya/front.svg"
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(2, "meter"),
  3697. weight: math.unit(80, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/natalya/back.svg"
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(150, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(5, "miles")
  3713. },
  3714. {
  3715. name: "Full-Size",
  3716. height: math.unit(600, "kiloparsecs")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(50, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/erestrebah/front.svg",
  3729. extra: 1262/1162,
  3730. bottom: 96/1358
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(2, "meter"),
  3735. weight: math.unit(50, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/erestrebah/back.svg",
  3739. extra: 1257/1139,
  3740. bottom: 13/1270
  3741. }
  3742. },
  3743. wing: {
  3744. height: math.unit(2, "meter"),
  3745. weight: math.unit(50, "kg"),
  3746. name: "Wing",
  3747. image: {
  3748. source: "./media/characters/erestrebah/wing.svg",
  3749. extra: 1262/1162,
  3750. bottom: 96/1358
  3751. }
  3752. },
  3753. mouth: {
  3754. height: math.unit(0.39, "feet"),
  3755. name: "Mouth",
  3756. image: {
  3757. source: "./media/characters/erestrebah/mouth.svg"
  3758. }
  3759. }
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(10, "feet")
  3765. },
  3766. {
  3767. name: "Large",
  3768. height: math.unit(50, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(300, "feet")
  3774. },
  3775. {
  3776. name: "Macro+",
  3777. height: math.unit(750, "feet")
  3778. },
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(3, "miles")
  3782. }
  3783. ]
  3784. ))
  3785. characterMakers.push(() => makeCharacter(
  3786. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3787. {
  3788. front: {
  3789. height: math.unit(2, "meter"),
  3790. weight: math.unit(80, "kg"),
  3791. name: "Front",
  3792. image: {
  3793. source: "./media/characters/jennifer/front.svg",
  3794. bottom: 0.11,
  3795. extra: 1.16
  3796. }
  3797. },
  3798. frontAlt: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(80, "kg"),
  3801. name: "Front (Alt)",
  3802. image: {
  3803. source: "./media/characters/jennifer/front-alt.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Canon Height",
  3810. height: math.unit(120, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(300, "feet")
  3816. },
  3817. {
  3818. name: "Megamacro",
  3819. height: math.unit(20000, "feet")
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/kalista/front.svg",
  3832. extra: 1314/1145,
  3833. bottom: 101/1415
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(2, "meter"),
  3838. weight: math.unit(50, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/kalista/back.svg",
  3842. extra: 1366 / 1156,
  3843. bottom: 33.9 / 1362.78
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Uncomfortably Small",
  3850. height: math.unit(10, "feet")
  3851. },
  3852. {
  3853. name: "Small",
  3854. height: math.unit(30, "feet")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(100, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(2000, "feet")
  3864. },
  3865. {
  3866. name: "True Form",
  3867. height: math.unit(8924, "miles")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/ggv/front.svg"
  3880. }
  3881. },
  3882. side: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(120, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/ggv/side.svg"
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Extremely Puny",
  3894. height: math.unit(9 + 5 / 12, "feet")
  3895. },
  3896. {
  3897. name: "Horribly Small",
  3898. height: math.unit(47.7, "miles"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Reasonably Sized",
  3903. height: math.unit(25000, "parsecs")
  3904. },
  3905. {
  3906. name: "Slightly Uncompressed",
  3907. height: math.unit(7.77e31, "parsecs")
  3908. },
  3909. {
  3910. name: "Omniversal",
  3911. height: math.unit(1e300, "meters")
  3912. },
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/napalm/front.svg"
  3924. }
  3925. },
  3926. back: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(75, "lb"),
  3929. name: "Back",
  3930. image: {
  3931. source: "./media/characters/napalm/back.svg"
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Standard",
  3938. height: math.unit(55, "feet"),
  3939. default: true
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(7 + 5 / 6, "feet"),
  3948. weight: math.unit(325, "lb"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/asana/front.svg",
  3952. extra: 1133 / 1060,
  3953. bottom: 15.2 / 1148.6
  3954. }
  3955. },
  3956. back: {
  3957. height: math.unit(7 + 5 / 6, "feet"),
  3958. weight: math.unit(325, "lb"),
  3959. name: "Back",
  3960. image: {
  3961. source: "./media/characters/asana/back.svg",
  3962. extra: 1114 / 1043,
  3963. bottom: 5 / 1120
  3964. }
  3965. },
  3966. dressedDark: {
  3967. height: math.unit(7 + 5 / 6, "feet"),
  3968. weight: math.unit(325, "lb"),
  3969. name: "Dressed (Dark)",
  3970. image: {
  3971. source: "./media/characters/asana/dressed-dark.svg",
  3972. extra: 1133 / 1060,
  3973. bottom: 15.2 / 1148.6
  3974. }
  3975. },
  3976. dressedLight: {
  3977. height: math.unit(7 + 5 / 6, "feet"),
  3978. weight: math.unit(325, "lb"),
  3979. name: "Dressed (Light)",
  3980. image: {
  3981. source: "./media/characters/asana/dressed-light.svg",
  3982. extra: 1133 / 1060,
  3983. bottom: 15.2 / 1148.6
  3984. }
  3985. },
  3986. },
  3987. [
  3988. {
  3989. name: "Standard",
  3990. height: math.unit(7 + 5 / 6, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Large",
  3995. height: math.unit(10, "meters")
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(2500, "meters")
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(5e6, "meters")
  4004. },
  4005. {
  4006. name: "Examacro",
  4007. height: math.unit(5e12, "lightyears")
  4008. },
  4009. {
  4010. name: "Max Size",
  4011. height: math.unit(1e31, "lightyears")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2, "meter"),
  4020. weight: math.unit(60, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/ebony/front.svg",
  4024. bottom: 0.03,
  4025. extra: 1045 / 810 + 0.03
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(2, "meter"),
  4030. weight: math.unit(60, "kg"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/ebony/side.svg",
  4034. bottom: 0.03,
  4035. extra: 1045 / 810 + 0.03
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(60, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/ebony/back.svg",
  4044. bottom: 0.01,
  4045. extra: 1045 / 810 + 0.01
  4046. }
  4047. },
  4048. },
  4049. [
  4050. // TODO check why I did this lol
  4051. {
  4052. name: "Standard",
  4053. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(200, "feet")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(13000, "km")
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/mountain/front.svg",
  4075. extra: 972 / 955,
  4076. bottom: 64 / 1036.6
  4077. }
  4078. },
  4079. back: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(175, "lb"),
  4082. name: "Back",
  4083. image: {
  4084. source: "./media/characters/mountain/back.svg",
  4085. extra: 970 / 950,
  4086. bottom: 28.25 / 999
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Large",
  4093. height: math.unit(20, "meters")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(300, "meters")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(10000, "km"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Examacro",
  4106. height: math.unit(10e9, "lightyears")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(8, "feet"),
  4115. weight: math.unit(500, "lb"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/rick/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(8, "feet"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(5, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/ona/front.svg"
  4143. }
  4144. },
  4145. frontAlt: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Front (Alt)",
  4149. image: {
  4150. source: "./media/characters/ona/front-alt.svg"
  4151. }
  4152. },
  4153. back: {
  4154. height: math.unit(8, "feet"),
  4155. weight: math.unit(120, "lb"),
  4156. name: "Back",
  4157. image: {
  4158. source: "./media/characters/ona/back.svg"
  4159. }
  4160. },
  4161. foot: {
  4162. height: math.unit(1.1, "feet"),
  4163. name: "Foot",
  4164. image: {
  4165. source: "./media/characters/ona/foot.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(70, "km"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(681818, "miles")
  4178. },
  4179. {
  4180. name: "Examacro",
  4181. height: math.unit(3800000, "lightyears")
  4182. },
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(12, "feet"),
  4190. weight: math.unit(3000, "lb"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/mech/front.svg",
  4194. extra: 2900 / 2770,
  4195. bottom: 110 / 3010
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(12, "feet"),
  4200. weight: math.unit(3000, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/mech/back.svg",
  4204. extra: 3011 / 2890,
  4205. bottom: 94 / 3105
  4206. }
  4207. },
  4208. maw: {
  4209. height: math.unit(3.07, "feet"),
  4210. name: "Maw",
  4211. image: {
  4212. source: "./media/characters/mech/maw.svg"
  4213. }
  4214. },
  4215. head: {
  4216. height: math.unit(2.82, "feet"),
  4217. name: "Head",
  4218. image: {
  4219. source: "./media/characters/mech/head.svg"
  4220. }
  4221. },
  4222. dick: {
  4223. height: math.unit(1.43, "feet"),
  4224. name: "Dick",
  4225. image: {
  4226. source: "./media/characters/mech/dick.svg"
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(12, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Macro+",
  4242. height: math.unit(1500, "feet")
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(1.3, "meter"),
  4251. weight: math.unit(30, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/gregory/front.svg",
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(1.3, "meter"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(20, "meter")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(2.8, "meter"),
  4275. weight: math.unit(200, "kg"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/elory/front.svg",
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(2.8, "meter"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(38, "meter")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(470, "feet"),
  4299. weight: math.unit(924, "tons"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/angelpatamon/front.svg",
  4303. }
  4304. }
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(470, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Deity Size I",
  4314. height: math.unit(28651.2, "km")
  4315. },
  4316. {
  4317. name: "Deity Size II",
  4318. height: math.unit(171907.2, "km")
  4319. }
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4324. {
  4325. side: {
  4326. height: math.unit(7.2, "meter"),
  4327. weight: math.unit(8.2, "tons"),
  4328. name: "Side",
  4329. image: {
  4330. source: "./media/characters/cryae/side.svg",
  4331. extra: 3500 / 1500
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7.2, "meter"),
  4339. default: true
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(175, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/xera/front.svg",
  4352. extra: 2377 / 1972,
  4353. bottom: 75.5 / 2452
  4354. }
  4355. },
  4356. side: {
  4357. height: math.unit(6, "feet"),
  4358. weight: math.unit(175, "lb"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/xera/side.svg",
  4362. extra: 2345 / 2019,
  4363. bottom: 39.7 / 2384
  4364. }
  4365. },
  4366. back: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(175, "lb"),
  4369. name: "Back",
  4370. image: {
  4371. source: "./media/characters/xera/back.svg",
  4372. extra: 2095 / 1984,
  4373. bottom: 67 / 2166
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "Small",
  4380. height: math.unit(10, "feet")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(500, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro+",
  4389. height: math.unit(10, "km")
  4390. },
  4391. {
  4392. name: "Gigamacro",
  4393. height: math.unit(25000, "km")
  4394. },
  4395. {
  4396. name: "Teramacro",
  4397. height: math.unit(3e6, "km")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(175, "lb"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/nebula/front.svg",
  4410. extra: 2566 / 2362,
  4411. bottom: 81 / 2644
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Small",
  4418. height: math.unit(4.5, "meters")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(1500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(150, "km")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(27000, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(225, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/abysgar/front.svg"
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Small",
  4450. height: math.unit(4.5, "meters")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(1250, "meters"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(125, "km")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(26000, "km")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(180, "lb"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/yakuz/front.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Small",
  4482. height: math.unit(5, "meters")
  4483. },
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(1500, "meters"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(200, "km")
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(100000, "km")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(175, "lb"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/mirova/front.svg",
  4508. extra: 3334 / 3071,
  4509. bottom: 42 / 3375.6
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Small",
  4516. height: math.unit(5, "meters")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(900, "meters"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(135, "km")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(20000, "km")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4535. {
  4536. side: {
  4537. height: math.unit(28.35, "feet"),
  4538. weight: math.unit(99.75, "tons"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/asana-mech/side.svg",
  4542. extra: 923 / 699,
  4543. bottom: 50 / 975
  4544. }
  4545. },
  4546. chaingun: {
  4547. height: math.unit(7, "feet"),
  4548. weight: math.unit(2400, "lb"),
  4549. name: "Chaingun",
  4550. image: {
  4551. source: "./media/characters/asana-mech/chaingun.svg"
  4552. }
  4553. },
  4554. laser: {
  4555. height: math.unit(7.12, "feet"),
  4556. weight: math.unit(2000, "lb"),
  4557. name: "Laser",
  4558. image: {
  4559. source: "./media/characters/asana-mech/laser.svg"
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(28.35, "feet"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(2500, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(25, "miles")
  4576. },
  4577. {
  4578. name: "Examacro",
  4579. height: math.unit(6e8, "lightyears")
  4580. },
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(5, "meters"),
  4588. weight: math.unit(1000, "kg"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/asche/front.svg",
  4592. extra: 1258 / 1190,
  4593. bottom: 47 / 1305
  4594. }
  4595. },
  4596. frontUnderwear: {
  4597. height: math.unit(5, "meters"),
  4598. weight: math.unit(1000, "kg"),
  4599. name: "Front (Underwear)",
  4600. image: {
  4601. source: "./media/characters/asche/front-underwear.svg",
  4602. extra: 1258 / 1190,
  4603. bottom: 47 / 1305
  4604. }
  4605. },
  4606. frontDressed: {
  4607. height: math.unit(5, "meters"),
  4608. weight: math.unit(1000, "kg"),
  4609. name: "Front (Dressed)",
  4610. image: {
  4611. source: "./media/characters/asche/front-dressed.svg",
  4612. extra: 1258 / 1190,
  4613. bottom: 47 / 1305
  4614. }
  4615. },
  4616. frontArmor: {
  4617. height: math.unit(5, "meters"),
  4618. weight: math.unit(1000, "kg"),
  4619. name: "Front (Armored)",
  4620. image: {
  4621. source: "./media/characters/asche/front-armored.svg",
  4622. extra: 1374 / 1308,
  4623. bottom: 23 / 1397
  4624. }
  4625. },
  4626. mp724: {
  4627. height: math.unit(0.96, "meters"),
  4628. weight: math.unit(38, "kg"),
  4629. name: "H&K MP724",
  4630. image: {
  4631. source: "./media/characters/asche/h&k-mp724.svg"
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(5, "meters"),
  4636. weight: math.unit(1000, "kg"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/asche/side.svg",
  4640. extra: 1717 / 1609,
  4641. bottom: 0.005
  4642. }
  4643. },
  4644. back: {
  4645. height: math.unit(5, "meters"),
  4646. weight: math.unit(1000, "kg"),
  4647. name: "Back",
  4648. image: {
  4649. source: "./media/characters/asche/back.svg",
  4650. extra: 1570 / 1501
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "DEFCON 5",
  4657. height: math.unit(5, "meters")
  4658. },
  4659. {
  4660. name: "DEFCON 4",
  4661. height: math.unit(500, "meters"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "DEFCON 3",
  4666. height: math.unit(5, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 2",
  4670. height: math.unit(500, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 1",
  4674. height: math.unit(500000, "km")
  4675. },
  4676. {
  4677. name: "DEFCON 0",
  4678. height: math.unit(3, "gigaparsecs")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4684. {
  4685. front: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/gale/front.svg"
  4691. }
  4692. },
  4693. frontAlt1: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 1)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-1.svg"
  4699. }
  4700. },
  4701. frontAlt2: {
  4702. height: math.unit(2, "meters"),
  4703. weight: math.unit(76, "kg"),
  4704. name: "Front (Alt 2)",
  4705. image: {
  4706. source: "./media/characters/gale/front-alt-2.svg"
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(7, "feet")
  4714. },
  4715. {
  4716. name: "Macro",
  4717. height: math.unit(150, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Macro+",
  4722. height: math.unit(300, "feet")
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(5 + 10/12, "feet"),
  4731. weight: math.unit(67, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/draylen/front.svg",
  4735. extra: 832/777,
  4736. bottom: 85/917
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(5 + 10/12, "feet")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(150, "feet"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/chez/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(7 + 9 / 12, "feet"),
  4765. weight: math.unit(379, "lbs"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/chez/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(7 + 9 / 12, "feet"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "God King",
  4780. height: math.unit(9750000, "meters")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(275, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/kaylum/front.svg",
  4793. bottom: 0.01,
  4794. extra: 1166 / 1031
  4795. }
  4796. },
  4797. frontWingless: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(275, "lbs"),
  4800. name: "Front (Wingless)",
  4801. image: {
  4802. source: "./media/characters/kaylum/front-wingless.svg",
  4803. bottom: 0.01,
  4804. extra: 1117 / 1031
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(3.05, "meters")
  4812. },
  4813. {
  4814. name: "Master",
  4815. height: math.unit(5.5, "meters")
  4816. },
  4817. {
  4818. name: "Rampage",
  4819. height: math.unit(19, "meters")
  4820. },
  4821. {
  4822. name: "Macro Lite",
  4823. height: math.unit(37, "meters")
  4824. },
  4825. {
  4826. name: "Hyper Predator",
  4827. height: math.unit(61, "meters")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(138, "meters"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5 + 5 / 12, "feet"),
  4841. weight: math.unit(120, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/geta/front.svg",
  4845. extra: 1003/933,
  4846. bottom: 21/1024
  4847. }
  4848. },
  4849. paw: {
  4850. height: math.unit(0.35, "feet"),
  4851. name: "Paw",
  4852. image: {
  4853. source: "./media/characters/geta/paw.svg"
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Micro",
  4860. height: math.unit(3, "inches"),
  4861. default: true
  4862. },
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5 + 5 / 12, "feet")
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4871. {
  4872. front: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(300, "lbs"),
  4875. name: "Front",
  4876. image: {
  4877. source: "./media/characters/tyrnn/front.svg"
  4878. }
  4879. }
  4880. },
  4881. [
  4882. {
  4883. name: "Main Height",
  4884. height: math.unit(355, "feet"),
  4885. default: true
  4886. },
  4887. {
  4888. name: "Fave. Height",
  4889. height: math.unit(2400, "feet")
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4895. {
  4896. front: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(300, "lbs"),
  4899. name: "Front",
  4900. image: {
  4901. source: "./media/characters/appledectomy/front.svg"
  4902. }
  4903. }
  4904. },
  4905. [
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(2500, "feet")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(50, "miles"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Gigamacro",
  4917. height: math.unit(5000, "miles")
  4918. },
  4919. {
  4920. name: "Teramacro",
  4921. height: math.unit(250000, "miles")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(200, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/vulpes/front.svg",
  4934. extra: 573 / 543,
  4935. bottom: 0.033
  4936. }
  4937. },
  4938. side: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(200, "lbs"),
  4941. name: "Side",
  4942. image: {
  4943. source: "./media/characters/vulpes/side.svg",
  4944. extra: 577 / 549,
  4945. bottom: 11 / 588
  4946. }
  4947. },
  4948. back: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(200, "lbs"),
  4951. name: "Back",
  4952. image: {
  4953. source: "./media/characters/vulpes/back.svg",
  4954. extra: 573 / 549,
  4955. bottom: 20 / 593
  4956. }
  4957. },
  4958. feet: {
  4959. height: math.unit(1.276, "feet"),
  4960. name: "Feet",
  4961. image: {
  4962. source: "./media/characters/vulpes/feet.svg"
  4963. }
  4964. },
  4965. maw: {
  4966. height: math.unit(1.18, "feet"),
  4967. name: "Maw",
  4968. image: {
  4969. source: "./media/characters/vulpes/maw.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Micro",
  4976. height: math.unit(2, "inches")
  4977. },
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6.3, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(850, "feet")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(7500, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Gigamacro",
  4993. height: math.unit(570000, "miles")
  4994. }
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4999. {
  5000. front: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(210, "lbs"),
  5003. name: "Front",
  5004. image: {
  5005. source: "./media/characters/rain-fallen/front.svg"
  5006. }
  5007. },
  5008. side: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(210, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/rain-fallen/side.svg"
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(210, "lbs"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/rain-fallen/back.svg"
  5022. }
  5023. },
  5024. feral: {
  5025. height: math.unit(9, "feet"),
  5026. weight: math.unit(700, "lbs"),
  5027. name: "Feral",
  5028. image: {
  5029. source: "./media/characters/rain-fallen/feral.svg"
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Meddling with Mortals",
  5036. height: math.unit(8 + 8/12, "feet")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5, "meter")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(150, "meter"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(278e6, "meter")
  5050. },
  5051. {
  5052. name: "Gigamacro",
  5053. height: math.unit(2e9, "meter")
  5054. },
  5055. {
  5056. name: "Teramacro",
  5057. height: math.unit(8e12, "meter")
  5058. },
  5059. {
  5060. name: "Devourer",
  5061. height: math.unit(14, "zettameters")
  5062. },
  5063. {
  5064. name: "Scarlet King",
  5065. height: math.unit(18, "yottameters")
  5066. },
  5067. {
  5068. name: "Void",
  5069. height: math.unit(1e88, "yottameters")
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5075. {
  5076. standing: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Standing",
  5080. image: {
  5081. source: "./media/characters/zaakira/standing.svg",
  5082. extra: 1599/1504,
  5083. bottom: 39/1638
  5084. }
  5085. },
  5086. laying: {
  5087. height: math.unit(3, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Laying",
  5090. image: {
  5091. source: "./media/characters/zaakira/laying.svg"
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(279, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5109. {
  5110. femSfw: {
  5111. height: math.unit(8, "feet"),
  5112. weight: math.unit(350, "lb"),
  5113. name: "Fem",
  5114. image: {
  5115. source: "./media/characters/sigvald/fem-sfw.svg",
  5116. extra: 182 / 164,
  5117. bottom: 8.7 / 190.5
  5118. }
  5119. },
  5120. femNsfw: {
  5121. height: math.unit(8, "feet"),
  5122. weight: math.unit(350, "lb"),
  5123. name: "Fem (NSFW)",
  5124. image: {
  5125. source: "./media/characters/sigvald/fem-nsfw.svg",
  5126. extra: 182 / 164,
  5127. bottom: 8.7 / 190.5
  5128. }
  5129. },
  5130. maleNsfw: {
  5131. height: math.unit(8, "feet"),
  5132. weight: math.unit(350, "lb"),
  5133. name: "Male (NSFW)",
  5134. image: {
  5135. source: "./media/characters/sigvald/male-nsfw.svg",
  5136. extra: 182 / 164,
  5137. bottom: 8.7 / 190.5
  5138. }
  5139. },
  5140. hermNsfw: {
  5141. height: math.unit(8, "feet"),
  5142. weight: math.unit(350, "lb"),
  5143. name: "Herm (NSFW)",
  5144. image: {
  5145. source: "./media/characters/sigvald/herm-nsfw.svg",
  5146. extra: 182 / 164,
  5147. bottom: 8.7 / 190.5
  5148. }
  5149. },
  5150. dick: {
  5151. height: math.unit(2.36, "feet"),
  5152. name: "Dick",
  5153. image: {
  5154. source: "./media/characters/sigvald/dick.svg"
  5155. }
  5156. },
  5157. eye: {
  5158. height: math.unit(0.31, "feet"),
  5159. name: "Eye",
  5160. image: {
  5161. source: "./media/characters/sigvald/eye.svg"
  5162. }
  5163. },
  5164. mouth: {
  5165. height: math.unit(0.92, "feet"),
  5166. name: "Mouth",
  5167. image: {
  5168. source: "./media/characters/sigvald/mouth.svg"
  5169. }
  5170. },
  5171. paws: {
  5172. height: math.unit(2.2, "feet"),
  5173. name: "Paws",
  5174. image: {
  5175. source: "./media/characters/sigvald/paws.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(8, "feet")
  5183. },
  5184. {
  5185. name: "Large",
  5186. height: math.unit(12, "feet")
  5187. },
  5188. {
  5189. name: "Larger",
  5190. height: math.unit(20, "feet")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(150, "feet")
  5195. },
  5196. {
  5197. name: "Macro+",
  5198. height: math.unit(200, "feet"),
  5199. default: true
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(12, "feet"),
  5208. weight: math.unit(2000, "kg"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/scott/side.svg",
  5212. extra: 754 / 724,
  5213. bottom: 0.069
  5214. }
  5215. },
  5216. upright: {
  5217. height: math.unit(12, "feet"),
  5218. weight: math.unit(2000, "kg"),
  5219. name: "Upright",
  5220. image: {
  5221. source: "./media/characters/scott/upright.svg",
  5222. extra: 3881 / 3722,
  5223. bottom: 0.05
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(12, "feet"),
  5231. default: true
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5237. {
  5238. side: {
  5239. height: math.unit(8, "meters"),
  5240. weight: math.unit(84755, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/tobias/side.svg",
  5244. extra: 1474 / 1096,
  5245. bottom: 38.9 / 1513.1235
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(8, "meters"),
  5253. default: true
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5259. {
  5260. front: {
  5261. height: math.unit(5.5, "feet"),
  5262. weight: math.unit(400, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/kieran/front.svg",
  5266. extra: 2694 / 2364,
  5267. bottom: 217 / 2908
  5268. }
  5269. },
  5270. side: {
  5271. height: math.unit(5.5, "feet"),
  5272. weight: math.unit(400, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/kieran/side.svg",
  5276. extra: 875 / 777,
  5277. bottom: 84.6 / 959
  5278. }
  5279. },
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(5.5, "feet"),
  5285. default: true
  5286. },
  5287. ]
  5288. ))
  5289. characterMakers.push(() => makeCharacter(
  5290. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5291. {
  5292. side: {
  5293. height: math.unit(2, "meters"),
  5294. weight: math.unit(70, "kg"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/sanya/side.svg",
  5298. bottom: 0.02,
  5299. extra: 1.02
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Small",
  5306. height: math.unit(2, "meters")
  5307. },
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(3, "meters")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(16, "meters"),
  5315. default: true
  5316. },
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(2, "meters"),
  5324. weight: math.unit(120, "kg"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/miranda/front.svg",
  5328. extra: 195 / 185,
  5329. bottom: 10.9 / 206.5
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(2, "meters"),
  5334. weight: math.unit(120, "kg"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/miranda/back.svg",
  5338. extra: 201 / 193,
  5339. bottom: 2.3 / 203.7
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(10, "feet"),
  5347. default: true
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "James", species: ["deer"], tags: ["anthro"] },
  5353. {
  5354. side: {
  5355. height: math.unit(2, "meters"),
  5356. weight: math.unit(100, "kg"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/james/front.svg",
  5360. extra: 10 / 8.5
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(8.5, "feet"),
  5368. default: true
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5374. {
  5375. side: {
  5376. height: math.unit(9.5, "feet"),
  5377. weight: math.unit(2500, "lbs"),
  5378. name: "Side",
  5379. image: {
  5380. source: "./media/characters/heather/side.svg"
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(9.5, "feet"),
  5388. default: true
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5394. {
  5395. side: {
  5396. height: math.unit(6.5, "feet"),
  5397. weight: math.unit(400, "lbs"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/lukas/side.svg",
  5401. extra: 7.25 / 6.5
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6.5, "feet"),
  5409. default: true
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5415. {
  5416. side: {
  5417. height: math.unit(5, "feet"),
  5418. weight: math.unit(3000, "lbs"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/louise/side.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(5, "feet"),
  5429. default: true
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5435. {
  5436. side: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(150, "lbs"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/ramona/side.svg",
  5442. extra: 871/854,
  5443. bottom: 41/912
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5.3, "meters"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(20, "stories")
  5456. },
  5457. {
  5458. name: "Macro+",
  5459. height: math.unit(50, "stories")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5465. {
  5466. standing: {
  5467. height: math.unit(5.75, "feet"),
  5468. weight: math.unit(160, "lbs"),
  5469. name: "Standing",
  5470. image: {
  5471. source: "./media/characters/deerpuff/standing.svg",
  5472. extra: 682 / 624
  5473. }
  5474. },
  5475. sitting: {
  5476. height: math.unit(5.75 / 1.79, "feet"),
  5477. weight: math.unit(160, "lbs"),
  5478. name: "Sitting",
  5479. image: {
  5480. source: "./media/characters/deerpuff/sitting.svg",
  5481. bottom: 44 / 400,
  5482. extra: 1
  5483. }
  5484. },
  5485. taurLaying: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(400, "lbs"),
  5488. name: "Taur (Laying)",
  5489. image: {
  5490. source: "./media/characters/deerpuff/taur-laying.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Puffball",
  5497. height: math.unit(6, "inches")
  5498. },
  5499. {
  5500. name: "Normalpuff",
  5501. height: math.unit(5.75, "feet")
  5502. },
  5503. {
  5504. name: "Macropuff",
  5505. height: math.unit(1500, "feet"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megapuff",
  5510. height: math.unit(500, "miles")
  5511. },
  5512. {
  5513. name: "Gigapuff",
  5514. height: math.unit(250000, "miles")
  5515. },
  5516. {
  5517. name: "Omegapuff",
  5518. height: math.unit(1000, "lightyears")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5524. {
  5525. stomping: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(170, "lbs"),
  5528. name: "Stomping",
  5529. image: {
  5530. source: "./media/characters/vivian/stomping.svg"
  5531. }
  5532. },
  5533. sitting: {
  5534. height: math.unit(6 / 1.75, "feet"),
  5535. weight: math.unit(170, "lbs"),
  5536. name: "Sitting",
  5537. image: {
  5538. source: "./media/characters/vivian/sitting.svg",
  5539. bottom: 1 / 6.4,
  5540. extra: 1,
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(7, "feet"),
  5548. default: true
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(10, "stories")
  5553. },
  5554. {
  5555. name: "Macro+",
  5556. height: math.unit(30, "stories")
  5557. },
  5558. {
  5559. name: "Megamacro",
  5560. height: math.unit(10, "miles")
  5561. },
  5562. {
  5563. name: "Megamacro+",
  5564. height: math.unit(2750000, "meters")
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5570. {
  5571. front: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(160, "lbs"),
  5574. name: "Front",
  5575. image: {
  5576. source: "./media/characters/prince/front.svg",
  5577. extra: 3400 / 3000
  5578. }
  5579. },
  5580. jumping: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(160, "lbs"),
  5583. name: "Jumping",
  5584. image: {
  5585. source: "./media/characters/prince/jump.svg",
  5586. extra: 2555 / 2134
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(7.75, "feet"),
  5594. default: true
  5595. },
  5596. {
  5597. name: "Not cute",
  5598. height: math.unit(17, "feet")
  5599. },
  5600. {
  5601. name: "I said NOT",
  5602. height: math.unit(91, "feet")
  5603. },
  5604. {
  5605. name: "Please stop",
  5606. height: math.unit(560, "feet")
  5607. },
  5608. {
  5609. name: "What have you done",
  5610. height: math.unit(2200, "feet")
  5611. },
  5612. {
  5613. name: "Deer God",
  5614. height: math.unit(3.6, "miles")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5620. {
  5621. standing: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(300, "lbs"),
  5624. name: "Standing",
  5625. image: {
  5626. source: "./media/characters/psymon/standing.svg",
  5627. extra: 1888 / 1810,
  5628. bottom: 0.05
  5629. }
  5630. },
  5631. slithering: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(300, "lbs"),
  5634. name: "Slithering",
  5635. image: {
  5636. source: "./media/characters/psymon/slithering.svg",
  5637. extra: 1330 / 1224
  5638. }
  5639. },
  5640. slitheringAlt: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(300, "lbs"),
  5643. name: "Slithering (Alt)",
  5644. image: {
  5645. source: "./media/characters/psymon/slithering-alt.svg",
  5646. extra: 1330 / 1224
  5647. }
  5648. },
  5649. },
  5650. [
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(11.25, "feet"),
  5654. default: true
  5655. },
  5656. {
  5657. name: "Large",
  5658. height: math.unit(27, "feet")
  5659. },
  5660. {
  5661. name: "Giant",
  5662. height: math.unit(87, "feet")
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(365, "feet")
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(3, "miles")
  5671. },
  5672. {
  5673. name: "World Serpent",
  5674. height: math.unit(8000, "miles")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(180, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/daimos/front.svg",
  5687. extra: 4160 / 3897,
  5688. bottom: 0.021
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(8, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Big Dog",
  5700. height: math.unit(22, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(127, "feet")
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(3600, "feet")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5714. {
  5715. side: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Side",
  5719. image: {
  5720. source: "./media/characters/blake/side.svg",
  5721. extra: 1212 / 1120,
  5722. bottom: 0.05
  5723. }
  5724. },
  5725. crouched: {
  5726. height: math.unit(6 * 0.57, "feet"),
  5727. weight: math.unit(180, "lbs"),
  5728. name: "Crouched",
  5729. image: {
  5730. source: "./media/characters/blake/crouched.svg",
  5731. extra: 840 / 587,
  5732. bottom: 0.04
  5733. }
  5734. },
  5735. bent: {
  5736. height: math.unit(6 * 0.75, "feet"),
  5737. weight: math.unit(180, "lbs"),
  5738. name: "Bent",
  5739. image: {
  5740. source: "./media/characters/blake/bent.svg",
  5741. extra: 592 / 544,
  5742. bottom: 0.035
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(8 + 1 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Big Backside",
  5754. height: math.unit(37, "feet")
  5755. },
  5756. {
  5757. name: "Subway Shredder",
  5758. height: math.unit(72, "feet")
  5759. },
  5760. {
  5761. name: "City Carver",
  5762. height: math.unit(1675, "feet")
  5763. },
  5764. {
  5765. name: "Tectonic Tweaker",
  5766. height: math.unit(2300, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(180, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/guisetto/front.svg",
  5779. extra: 856 / 817,
  5780. bottom: 0.06
  5781. }
  5782. },
  5783. airborne: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(180, "lbs"),
  5786. name: "Airborne",
  5787. image: {
  5788. source: "./media/characters/guisetto/airborne.svg",
  5789. extra: 584 / 525
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(10 + 11 / 12, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Large",
  5801. height: math.unit(35, "feet")
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(475, "feet")
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/luxor/front.svg",
  5818. extra: 2940 / 2152
  5819. }
  5820. },
  5821. back: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(180, "lbs"),
  5824. name: "Back",
  5825. image: {
  5826. source: "./media/characters/luxor/back.svg",
  5827. extra: 1083 / 960
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(5 + 5 / 6, "feet"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Lamp",
  5839. height: math.unit(50, "feet")
  5840. },
  5841. {
  5842. name: "Lämp",
  5843. height: math.unit(300, "feet")
  5844. },
  5845. {
  5846. name: "The sun is a lamp",
  5847. height: math.unit(250000, "miles")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5853. {
  5854. front: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(50, "lbs"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/huoyan/front.svg"
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(180, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/huoyan/side.svg"
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Chef",
  5874. height: math.unit(9, "feet")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(65, "feet"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(780, "feet")
  5884. },
  5885. {
  5886. name: "Flaming Mountain",
  5887. height: math.unit(4.8, "miles")
  5888. },
  5889. {
  5890. name: "Celestial",
  5891. height: math.unit(765000, "miles")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(5 + 3 / 4, "feet"),
  5900. weight: math.unit(120, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/tails/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(5 + 3 / 4, "feet"),
  5911. default: true
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(4, "feet"),
  5920. weight: math.unit(50, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/rainy/front.svg"
  5924. }
  5925. }
  5926. },
  5927. [
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(800, "feet"),
  5931. default: true
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(150, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/rainier/front.svg"
  5944. }
  5945. }
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(2, "mm"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(8 + 4/12, "feet"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/andy-renard/front.svg",
  5963. extra: 1839/1726,
  5964. bottom: 134/1973
  5965. }
  5966. },
  5967. back: {
  5968. height: math.unit(8 + 4/12, "feet"),
  5969. name: "Back",
  5970. image: {
  5971. source: "./media/characters/andy-renard/back.svg",
  5972. extra: 1838/1710,
  5973. bottom: 105/1943
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Tall",
  5980. height: math.unit(8 + 4/12, "feet")
  5981. },
  5982. {
  5983. name: "Mini Macro",
  5984. height: math.unit(15, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(100, "feet")
  5990. },
  5991. {
  5992. name: "Mega Macro",
  5993. height: math.unit(1000, "feet")
  5994. },
  5995. {
  5996. name: "Giga Macro",
  5997. height: math.unit(10, "miles")
  5998. },
  5999. {
  6000. name: "God Macro",
  6001. height: math.unit(1, "multiverse")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(210, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/cimmaron/front-sfw.svg",
  6014. extra: 701 / 676,
  6015. bottom: 0.046
  6016. }
  6017. },
  6018. back: {
  6019. height: math.unit(6, "feet"),
  6020. weight: math.unit(210, "lbs"),
  6021. name: "Back",
  6022. image: {
  6023. source: "./media/characters/cimmaron/back-sfw.svg",
  6024. extra: 701 / 676,
  6025. bottom: 0.046
  6026. }
  6027. },
  6028. frontNsfw: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(210, "lbs"),
  6031. name: "Front (NSFW)",
  6032. image: {
  6033. source: "./media/characters/cimmaron/front-nsfw.svg",
  6034. extra: 701 / 676,
  6035. bottom: 0.046
  6036. }
  6037. },
  6038. backNsfw: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(210, "lbs"),
  6041. name: "Back (NSFW)",
  6042. image: {
  6043. source: "./media/characters/cimmaron/back-nsfw.svg",
  6044. extra: 701 / 676,
  6045. bottom: 0.046
  6046. }
  6047. },
  6048. dick: {
  6049. height: math.unit(1.714, "feet"),
  6050. name: "Dick",
  6051. image: {
  6052. source: "./media/characters/cimmaron/dick.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(6, "feet"),
  6060. default: true
  6061. },
  6062. {
  6063. name: "Macro Mayor",
  6064. height: math.unit(350, "meters")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(200, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/akari/front.svg",
  6077. extra: 962 / 901,
  6078. bottom: 0.04
  6079. }
  6080. }
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(5, "inches"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(7, "feet")
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(140, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/cynosura/front.svg",
  6103. extra: 896 / 847
  6104. }
  6105. },
  6106. back: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(140, "lbs"),
  6109. name: "Back",
  6110. image: {
  6111. source: "./media/characters/cynosura/back.svg",
  6112. extra: 1365 / 1250
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(4, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5.75, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Tall",
  6128. height: math.unit(10, "feet")
  6129. },
  6130. {
  6131. name: "Big",
  6132. height: math.unit(20, "feet")
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(50, "feet")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(13 + 2/12, "feet"),
  6145. weight: math.unit(800, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/gin/front.svg",
  6149. extra: 1312/1191,
  6150. bottom: 45/1357
  6151. }
  6152. },
  6153. mouth: {
  6154. height: math.unit(2.39 * 1.8, "feet"),
  6155. name: "Mouth",
  6156. image: {
  6157. source: "./media/characters/gin/mouth.svg"
  6158. }
  6159. },
  6160. hand: {
  6161. height: math.unit(1.57 * 2.19, "feet"),
  6162. name: "Hand",
  6163. image: {
  6164. source: "./media/characters/gin/hand.svg"
  6165. }
  6166. },
  6167. foot: {
  6168. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6169. name: "Foot",
  6170. image: {
  6171. source: "./media/characters/gin/foot.svg"
  6172. }
  6173. },
  6174. sole: {
  6175. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6176. name: "Sole",
  6177. image: {
  6178. source: "./media/characters/gin/sole.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Very Small",
  6185. height: math.unit(13 + 2 / 12, "feet")
  6186. },
  6187. {
  6188. name: "Micro",
  6189. height: math.unit(600, "miles")
  6190. },
  6191. {
  6192. name: "Regular",
  6193. height: math.unit(20, "earths"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(2.2, "solarradii")
  6199. },
  6200. {
  6201. name: "Teramacro",
  6202. height: math.unit(1.2, "galaxies")
  6203. },
  6204. {
  6205. name: "Omegamacro",
  6206. height: math.unit(200, "universes")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6 + 1 / 6, "feet"),
  6215. weight: math.unit(178, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/guy/front.svg"
  6219. }
  6220. }
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(6 + 1 / 6, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Large",
  6230. height: math.unit(25 + 7 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(60 + 9 / 12, "feet")
  6235. },
  6236. {
  6237. name: "Macro+",
  6238. height: math.unit(246, "feet")
  6239. },
  6240. {
  6241. name: "Macro++",
  6242. height: math.unit(878, "feet")
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(9, "feet"),
  6251. weight: math.unit(800, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/tiberius/front.svg",
  6255. extra: 2295 / 2071
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(9, "feet"),
  6260. weight: math.unit(800, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/tiberius/back.svg",
  6264. extra: 2373 / 2160
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(9, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(600, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/surgo/front.svg",
  6285. extra: 3591 / 2227
  6286. }
  6287. },
  6288. back: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(600, "lbs"),
  6291. name: "Back",
  6292. image: {
  6293. source: "./media/characters/surgo/back.svg",
  6294. extra: 3557 / 2228
  6295. }
  6296. },
  6297. laying: {
  6298. height: math.unit(6 * 0.85, "feet"),
  6299. weight: math.unit(600, "lbs"),
  6300. name: "Laying",
  6301. image: {
  6302. source: "./media/characters/surgo/laying.svg"
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6316. {
  6317. side: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(150, "lbs"),
  6320. name: "Side",
  6321. image: {
  6322. source: "./media/characters/cibus/side.svg",
  6323. extra: 800 / 400
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(6, "feet"),
  6331. default: true
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(240, "lbs"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/nibbles/front.svg"
  6344. }
  6345. },
  6346. side: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(240, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/nibbles/side.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(9, "feet"),
  6359. default: true
  6360. }
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6365. {
  6366. side: {
  6367. height: math.unit(5 + 1 / 6, "feet"),
  6368. weight: math.unit(130, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/rikky/side.svg",
  6372. extra: 851 / 801
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(5 + 1 / 6, "feet")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(152, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(7, "miles")
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6394. {
  6395. side: {
  6396. height: math.unit(370, "cm"),
  6397. weight: math.unit(350, "lbs"),
  6398. name: "Side",
  6399. image: {
  6400. source: "./media/characters/malfressa/side.svg"
  6401. }
  6402. },
  6403. walking: {
  6404. height: math.unit(370, "cm"),
  6405. weight: math.unit(350, "lbs"),
  6406. name: "Walking",
  6407. image: {
  6408. source: "./media/characters/malfressa/walking.svg"
  6409. }
  6410. },
  6411. feral: {
  6412. height: math.unit(2500, "cm"),
  6413. weight: math.unit(100000, "lbs"),
  6414. name: "Feral",
  6415. image: {
  6416. source: "./media/characters/malfressa/feral.svg",
  6417. extra: 2108 / 837,
  6418. bottom: 0.02
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(370, "cm")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(300, "meters"),
  6430. default: true
  6431. }
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(60, "kg"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/jaro/front.svg",
  6443. extra: 845/817,
  6444. bottom: 45/890
  6445. }
  6446. },
  6447. back: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(60, "kg"),
  6450. name: "Back",
  6451. image: {
  6452. source: "./media/characters/jaro/back.svg",
  6453. extra: 847/817,
  6454. bottom: 34/881
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(7, "inches")
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(5.5, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Minimacro",
  6470. height: math.unit(20, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(200, "meters")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(195, "lb"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/rogue/front.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(90, "feet"),
  6494. default: true
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6500. {
  6501. standing: {
  6502. height: math.unit(5 + 8 / 12, "feet"),
  6503. weight: math.unit(140, "lb"),
  6504. name: "Standing",
  6505. image: {
  6506. source: "./media/characters/piper/standing.svg",
  6507. extra: 1440/1284,
  6508. bottom: 66/1506
  6509. }
  6510. },
  6511. running: {
  6512. height: math.unit(5 + 8 / 12, "feet"),
  6513. weight: math.unit(140, "lb"),
  6514. name: "Running",
  6515. image: {
  6516. source: "./media/characters/piper/running.svg",
  6517. extra: 3948/3655,
  6518. bottom: 0/3948
  6519. }
  6520. },
  6521. sole: {
  6522. height: math.unit(0.81, "feet"),
  6523. weight: math.unit(2, "kg"),
  6524. name: "Sole",
  6525. image: {
  6526. source: "./media/characters/piper/sole.svg"
  6527. }
  6528. },
  6529. nipple: {
  6530. height: math.unit(0.25, "feet"),
  6531. weight: math.unit(1.5, "lb"),
  6532. name: "Nipple",
  6533. image: {
  6534. source: "./media/characters/piper/nipple.svg"
  6535. }
  6536. },
  6537. head: {
  6538. height: math.unit(1.1, "feet"),
  6539. name: "Head",
  6540. image: {
  6541. source: "./media/characters/piper/head.svg"
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Micro",
  6548. height: math.unit(2, "inches")
  6549. },
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(5 + 8 / 12, "feet")
  6553. },
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(250, "feet"),
  6557. default: true
  6558. },
  6559. {
  6560. name: "Megamacro",
  6561. height: math.unit(7, "miles")
  6562. },
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6567. {
  6568. front: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(220, "lb"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/gemini/front.svg"
  6574. }
  6575. },
  6576. back: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(220, "lb"),
  6579. name: "Back",
  6580. image: {
  6581. source: "./media/characters/gemini/back.svg"
  6582. }
  6583. },
  6584. kneeling: {
  6585. height: math.unit(6 / 1.5, "feet"),
  6586. weight: math.unit(220, "lb"),
  6587. name: "Kneeling",
  6588. image: {
  6589. source: "./media/characters/gemini/kneeling.svg",
  6590. bottom: 0.02
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(300, "meters"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Megamacro",
  6602. height: math.unit(6900, "meters")
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6608. {
  6609. anthro: {
  6610. height: math.unit(2.35, "meters"),
  6611. weight: math.unit(73, "kg"),
  6612. name: "Anthro",
  6613. image: {
  6614. source: "./media/characters/alicia/anthro.svg",
  6615. extra: 2571 / 2385,
  6616. bottom: 75 / 2648
  6617. }
  6618. },
  6619. paw: {
  6620. height: math.unit(1.32, "feet"),
  6621. name: "Paw",
  6622. image: {
  6623. source: "./media/characters/alicia/paw.svg"
  6624. }
  6625. },
  6626. feral: {
  6627. height: math.unit(1.69, "meters"),
  6628. weight: math.unit(73, "kg"),
  6629. name: "Feral",
  6630. image: {
  6631. source: "./media/characters/alicia/feral.svg",
  6632. extra: 2123 / 1715,
  6633. bottom: 222 / 2349
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(2.35, "meters")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(60, "meters"),
  6645. default: true
  6646. },
  6647. {
  6648. name: "Megamacro",
  6649. height: math.unit(10000, "kilometers")
  6650. },
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(7, "feet"),
  6658. weight: math.unit(250, "lbs"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/archy/front.svg"
  6662. }
  6663. }
  6664. },
  6665. [
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(1, "inch")
  6669. },
  6670. {
  6671. name: "Shorty",
  6672. height: math.unit(5, "feet")
  6673. },
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(7, "feet")
  6677. },
  6678. {
  6679. name: "Macro",
  6680. height: math.unit(600, "meters"),
  6681. default: true
  6682. },
  6683. {
  6684. name: "Megamacro",
  6685. height: math.unit(1, "mile")
  6686. },
  6687. ]
  6688. ))
  6689. characterMakers.push(() => makeCharacter(
  6690. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6691. {
  6692. front: {
  6693. height: math.unit(1.65, "meters"),
  6694. weight: math.unit(74, "kg"),
  6695. name: "Front",
  6696. image: {
  6697. source: "./media/characters/berri/front.svg",
  6698. extra: 857 / 837,
  6699. bottom: 18 / 877
  6700. }
  6701. },
  6702. bum: {
  6703. height: math.unit(1.46, "feet"),
  6704. name: "Bum",
  6705. image: {
  6706. source: "./media/characters/berri/bum.svg"
  6707. }
  6708. },
  6709. mouth: {
  6710. height: math.unit(0.44, "feet"),
  6711. name: "Mouth",
  6712. image: {
  6713. source: "./media/characters/berri/mouth.svg"
  6714. }
  6715. },
  6716. paw: {
  6717. height: math.unit(0.826, "feet"),
  6718. name: "Paw",
  6719. image: {
  6720. source: "./media/characters/berri/paw.svg"
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(1.65, "meters")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(60, "m"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(9.213, "km")
  6737. },
  6738. {
  6739. name: "Planet Eater",
  6740. height: math.unit(489, "megameters")
  6741. },
  6742. {
  6743. name: "Teramacro",
  6744. height: math.unit(2471635000000, "meters")
  6745. },
  6746. {
  6747. name: "Examacro",
  6748. height: math.unit(8.0624e+26, "meters")
  6749. }
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(1.72, "meters"),
  6757. weight: math.unit(68, "kg"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/lexi/front.svg"
  6761. }
  6762. }
  6763. },
  6764. [
  6765. {
  6766. name: "Very Smol",
  6767. height: math.unit(10, "mm")
  6768. },
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(6.8, "cm"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(1.72, "m")
  6777. }
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(1.69, "meters"),
  6785. weight: math.unit(68, "kg"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/martin/front.svg",
  6789. extra: 596 / 581
  6790. }
  6791. }
  6792. },
  6793. [
  6794. {
  6795. name: "Micro",
  6796. height: math.unit(6.85, "cm"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(1.69, "m")
  6802. }
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(1.69, "meters"),
  6810. weight: math.unit(68, "kg"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/juno/front.svg"
  6814. }
  6815. }
  6816. },
  6817. [
  6818. {
  6819. name: "Micro",
  6820. height: math.unit(7, "cm")
  6821. },
  6822. {
  6823. name: "Normal",
  6824. height: math.unit(1.89, "m")
  6825. },
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(353, "meters"),
  6829. default: true
  6830. }
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(1.93, "meters"),
  6838. weight: math.unit(83, "kg"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/samantha/front.svg"
  6842. }
  6843. },
  6844. frontClothed: {
  6845. height: math.unit(1.93, "meters"),
  6846. weight: math.unit(83, "kg"),
  6847. name: "Front (Clothed)",
  6848. image: {
  6849. source: "./media/characters/samantha/front-clothed.svg"
  6850. }
  6851. },
  6852. back: {
  6853. height: math.unit(1.93, "meters"),
  6854. weight: math.unit(83, "kg"),
  6855. name: "Back",
  6856. image: {
  6857. source: "./media/characters/samantha/back.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(1.93, "m")
  6865. },
  6866. {
  6867. name: "Macro",
  6868. height: math.unit(74, "meters"),
  6869. default: true
  6870. },
  6871. {
  6872. name: "Macro+",
  6873. height: math.unit(223, "meters"),
  6874. },
  6875. {
  6876. name: "Megamacro",
  6877. height: math.unit(8381, "meters"),
  6878. },
  6879. {
  6880. name: "Megamacro+",
  6881. height: math.unit(12000, "kilometers")
  6882. },
  6883. ]
  6884. ))
  6885. characterMakers.push(() => makeCharacter(
  6886. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6887. {
  6888. front: {
  6889. height: math.unit(1.92, "meters"),
  6890. weight: math.unit(80, "kg"),
  6891. name: "Front",
  6892. image: {
  6893. source: "./media/characters/dr-clay/front.svg"
  6894. }
  6895. },
  6896. frontClothed: {
  6897. height: math.unit(1.92, "meters"),
  6898. weight: math.unit(80, "kg"),
  6899. name: "Front (Clothed)",
  6900. image: {
  6901. source: "./media/characters/dr-clay/front-clothed.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(1.92, "m")
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(214, "meters"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Macro+",
  6917. height: math.unit(12.237, "meters"),
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(557, "megameters"),
  6922. },
  6923. {
  6924. name: "Unimaginable",
  6925. height: math.unit(120e9, "lightyears")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(2, "meters"),
  6934. weight: math.unit(80, "kg"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Teramacro",
  6944. height: math.unit(500000, "lightyears"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6951. {
  6952. crux: {
  6953. height: math.unit(2, "meters"),
  6954. weight: math.unit(150, "kg"),
  6955. name: "Crux",
  6956. image: {
  6957. source: "./media/characters/vemus/crux.svg",
  6958. extra: 1074/936,
  6959. bottom: 23/1097
  6960. }
  6961. },
  6962. skunkTanuki: {
  6963. height: math.unit(2, "meters"),
  6964. weight: math.unit(150, "kg"),
  6965. name: "Skunk-Tanuki",
  6966. image: {
  6967. source: "./media/characters/vemus/skunk-tanuki.svg",
  6968. extra: 926/893,
  6969. bottom: 20/946
  6970. }
  6971. },
  6972. },
  6973. [
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(3.75, "meters"),
  6977. default: true
  6978. },
  6979. {
  6980. name: "Big",
  6981. height: math.unit(8, "meters")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(100, "meters")
  6986. },
  6987. {
  6988. name: "Macro+",
  6989. height: math.unit(1500, "meters")
  6990. },
  6991. {
  6992. name: "Stellar",
  6993. height: math.unit(14e8, "meters")
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(2, "meters"),
  7002. weight: math.unit(70, "kg"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/beherit/front.svg",
  7006. extra: 1234/1109,
  7007. bottom: 55/1289
  7008. }
  7009. }
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(6, "feet")
  7015. },
  7016. {
  7017. name: "Lorg",
  7018. height: math.unit(25, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Lorger",
  7023. height: math.unit(75, "feet")
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(200, "meters")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(150, "kg"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/everett/front.svg",
  7040. extra: 1017/866,
  7041. bottom: 86/1103
  7042. }
  7043. },
  7044. paw: {
  7045. height: math.unit(2 / 3.6, "meters"),
  7046. name: "Paw",
  7047. image: {
  7048. source: "./media/characters/everett/paw.svg"
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(15, "feet"),
  7056. default: true
  7057. },
  7058. {
  7059. name: "Lorg",
  7060. height: math.unit(70, "feet"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Lorger",
  7065. height: math.unit(250, "feet")
  7066. },
  7067. {
  7068. name: "Macro",
  7069. height: math.unit(500, "meters")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(2, "meters"),
  7078. weight: math.unit(86, "kg"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/rose/front.svg",
  7082. extra: 1785/1636,
  7083. bottom: 30/1815
  7084. },
  7085. form: "liom",
  7086. default: true
  7087. },
  7088. frontSporty: {
  7089. height: math.unit(2, "meters"),
  7090. weight: math.unit(86, "kg"),
  7091. name: "Front (Sporty)",
  7092. image: {
  7093. source: "./media/characters/rose/front-sporty.svg",
  7094. extra: 350/335,
  7095. bottom: 10/360
  7096. },
  7097. form: "liom"
  7098. },
  7099. frontAlt: {
  7100. height: math.unit(1.6, "meters"),
  7101. weight: math.unit(86, "kg"),
  7102. name: "Front (Alt)",
  7103. image: {
  7104. source: "./media/characters/rose/front-alt.svg",
  7105. extra: 299/283,
  7106. bottom: 3/302
  7107. },
  7108. form: "liom"
  7109. },
  7110. plush: {
  7111. height: math.unit(2, "meters"),
  7112. weight: math.unit(86/3, "kg"),
  7113. name: "Plush",
  7114. image: {
  7115. source: "./media/characters/rose/plush.svg",
  7116. extra: 361/337,
  7117. bottom: 11/372
  7118. },
  7119. form: "plush",
  7120. default: true
  7121. },
  7122. fae: {
  7123. height: math.unit(4, "cm"),
  7124. weight: math.unit(10, "grams"),
  7125. name: "Fae",
  7126. image: {
  7127. source: "./media/characters/rose/fae.svg",
  7128. extra: 737/577,
  7129. bottom: 356/1093
  7130. },
  7131. form: "fae",
  7132. default: true
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "True Micro",
  7138. height: math.unit(9, "cm"),
  7139. form: "liom"
  7140. },
  7141. {
  7142. name: "Micro",
  7143. height: math.unit(16, "cm"),
  7144. form: "liom"
  7145. },
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(1.85, "meters"),
  7149. default: true,
  7150. form: "liom"
  7151. },
  7152. {
  7153. name: "Mini-Macro",
  7154. height: math.unit(5, "meters"),
  7155. form: "liom"
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(15, "meters"),
  7160. form: "liom"
  7161. },
  7162. {
  7163. name: "True Macro",
  7164. height: math.unit(40, "meters"),
  7165. form: "liom"
  7166. },
  7167. {
  7168. name: "City Scale",
  7169. height: math.unit(1, "km"),
  7170. form: "liom"
  7171. },
  7172. {
  7173. name: "Plushie",
  7174. height: math.unit(9, "cm"),
  7175. form: "plush",
  7176. default: true
  7177. },
  7178. {
  7179. name: "Fae",
  7180. height: math.unit(4, "cm"),
  7181. form: "fae",
  7182. default: true
  7183. },
  7184. ],
  7185. {
  7186. "liom": {
  7187. name: "Liom",
  7188. default: true
  7189. },
  7190. "plush": {
  7191. name: "Plush"
  7192. },
  7193. "fae": {
  7194. name: "Fae Fox"
  7195. }
  7196. }
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(2, "meters"),
  7203. weight: math.unit(350, "lbs"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/regal/front.svg"
  7207. }
  7208. },
  7209. back: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(350, "lbs"),
  7212. name: "Back",
  7213. image: {
  7214. source: "./media/characters/regal/back.svg"
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(350, "feet"),
  7222. default: true
  7223. }
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(4 + 11 / 12, "feet"),
  7231. weight: math.unit(100, "lbs"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/opal/front.svg"
  7235. }
  7236. },
  7237. frontAlt: {
  7238. height: math.unit(4 + 11 / 12, "feet"),
  7239. weight: math.unit(100, "lbs"),
  7240. name: "Front (Alt)",
  7241. image: {
  7242. source: "./media/characters/opal/front-alt.svg"
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Small",
  7249. height: math.unit(4 + 11 / 12, "feet")
  7250. },
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(20, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(120, "feet")
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(80, "miles")
  7263. },
  7264. {
  7265. name: "True Size",
  7266. height: math.unit(100000, "lightyears")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(200, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/vector-wuff/front.svg"
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(2.8, "meters")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(450, "meters"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(15, "kilometers")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(256, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/dannik/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(69.57, "meters"),
  7314. default: true
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(120, "lbs"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/azura-saharah/front.svg"
  7327. }
  7328. },
  7329. back: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(120, "lbs"),
  7332. name: "Back",
  7333. image: {
  7334. source: "./media/characters/azura-saharah/back.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(100, "feet"),
  7342. default: true
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7348. {
  7349. side: {
  7350. height: math.unit(5 + 4 / 12, "feet"),
  7351. weight: math.unit(163, "lbs"),
  7352. name: "Side",
  7353. image: {
  7354. source: "./media/characters/kennedy/side.svg"
  7355. }
  7356. }
  7357. },
  7358. [
  7359. {
  7360. name: "Standard Doggo",
  7361. height: math.unit(5 + 4 / 12, "feet")
  7362. },
  7363. {
  7364. name: "Big Doggo",
  7365. height: math.unit(25 + 3 / 12, "feet"),
  7366. default: true
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(5 + 5/12, "feet"),
  7375. weight: math.unit(100, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/odios-de-lunar/front.svg",
  7379. extra: 1468/1323,
  7380. bottom: 22/1490
  7381. }
  7382. }
  7383. },
  7384. [
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(3, "inches")
  7388. },
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(5.5, "feet"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(100, "feet")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7402. {
  7403. back: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(220, "lbs"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/mandake/back.svg"
  7409. }
  7410. }
  7411. },
  7412. [
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(7, "feet"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(78, "feet")
  7421. },
  7422. {
  7423. name: "Macro+",
  7424. height: math.unit(300, "meters")
  7425. },
  7426. {
  7427. name: "Macro++",
  7428. height: math.unit(2400, "feet")
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(5167, "meters")
  7433. },
  7434. {
  7435. name: "Gigamacro",
  7436. height: math.unit(41769, "miles")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(6, "feet"),
  7445. weight: math.unit(120, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/yozey/front.svg"
  7449. }
  7450. },
  7451. frontAlt: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(120, "lbs"),
  7454. name: "Front (Alt)",
  7455. image: {
  7456. source: "./media/characters/yozey/front-alt.svg"
  7457. }
  7458. },
  7459. side: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(120, "lbs"),
  7462. name: "Side",
  7463. image: {
  7464. source: "./media/characters/yozey/side.svg"
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(3, "inches"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(6, "feet")
  7477. }
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(103, "lbs"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/valeska-voss/front.svg"
  7489. }
  7490. }
  7491. },
  7492. [
  7493. {
  7494. name: "Mini-Sized Sub",
  7495. height: math.unit(3.1, "inches")
  7496. },
  7497. {
  7498. name: "Mid-Sized Sub",
  7499. height: math.unit(6.2, "inches")
  7500. },
  7501. {
  7502. name: "Full-Sized Sub",
  7503. height: math.unit(9.3, "inches")
  7504. },
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(5 + 2 / 12, "foot"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(160, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/gene-zeta/front.svg",
  7521. extra: 3006 / 2826,
  7522. bottom: 182 / 3188
  7523. }
  7524. }
  7525. },
  7526. [
  7527. {
  7528. name: "Micro",
  7529. height: math.unit(6, "inches")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(5 + 11 / 12, "foot"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(140, "feet")
  7539. },
  7540. {
  7541. name: "Supercharged",
  7542. height: math.unit(2500, "feet")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(350, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/razinox/front.svg",
  7555. extra: 1686 / 1548,
  7556. bottom: 28.2 / 1868
  7557. }
  7558. },
  7559. back: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(350, "lbs"),
  7562. name: "Back",
  7563. image: {
  7564. source: "./media/characters/razinox/back.svg",
  7565. extra: 1660 / 1590,
  7566. bottom: 15 / 1665
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(10 + 8 / 12, "foot")
  7574. },
  7575. {
  7576. name: "Minimacro",
  7577. height: math.unit(15, "foot")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(60, "foot"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Megamacro",
  7586. height: math.unit(5, "miles")
  7587. },
  7588. {
  7589. name: "Gigamacro",
  7590. height: math.unit(6000, "miles")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(150, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/cobalt/front.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(8 + 1 / 12, "foot")
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(111, "foot"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Supracosmic",
  7618. height: math.unit(1e42, "feet")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(5, "inches"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/amanda/front.svg",
  7630. extra: 926/791,
  7631. bottom: 38/964
  7632. }
  7633. },
  7634. back: {
  7635. height: math.unit(5, "inches"),
  7636. name: "Back",
  7637. image: {
  7638. source: "./media/characters/amanda/back.svg",
  7639. extra: 909/805,
  7640. bottom: 43/952
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(5, "inches"),
  7648. default: true
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(2.75, "meters"),
  7657. weight: math.unit(1200, "lb"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/teal/front.svg",
  7661. extra: 2463 / 2320,
  7662. bottom: 166 / 2629
  7663. }
  7664. },
  7665. back: {
  7666. height: math.unit(2.75, "meters"),
  7667. weight: math.unit(1200, "lb"),
  7668. name: "Back",
  7669. image: {
  7670. source: "./media/characters/teal/back.svg",
  7671. extra: 2580 / 2489,
  7672. bottom: 151 / 2731
  7673. }
  7674. },
  7675. sitting: {
  7676. height: math.unit(1.9, "meters"),
  7677. weight: math.unit(1200, "lb"),
  7678. name: "Sitting",
  7679. image: {
  7680. source: "./media/characters/teal/sitting.svg",
  7681. extra: 623 / 590,
  7682. bottom: 121 / 744
  7683. }
  7684. },
  7685. standing: {
  7686. height: math.unit(2.75, "meters"),
  7687. weight: math.unit(1200, "lb"),
  7688. name: "Standing",
  7689. image: {
  7690. source: "./media/characters/teal/standing.svg",
  7691. extra: 923 / 893,
  7692. bottom: 60 / 983
  7693. }
  7694. },
  7695. stretching: {
  7696. height: math.unit(3.65, "meters"),
  7697. weight: math.unit(1200, "lb"),
  7698. name: "Stretching",
  7699. image: {
  7700. source: "./media/characters/teal/stretching.svg",
  7701. extra: 1276 / 1244,
  7702. bottom: 0 / 1276
  7703. }
  7704. },
  7705. legged: {
  7706. height: math.unit(1.3, "meters"),
  7707. weight: math.unit(100, "lb"),
  7708. name: "Legged",
  7709. image: {
  7710. source: "./media/characters/teal/legged.svg",
  7711. extra: 462 / 437,
  7712. bottom: 24 / 486
  7713. }
  7714. },
  7715. naga: {
  7716. height: math.unit(5.4, "meters"),
  7717. weight: math.unit(4000, "lb"),
  7718. name: "Naga",
  7719. image: {
  7720. source: "./media/characters/teal/naga.svg",
  7721. extra: 1902 / 1858,
  7722. bottom: 0 / 1902
  7723. }
  7724. },
  7725. hand: {
  7726. height: math.unit(0.52, "meters"),
  7727. name: "Hand",
  7728. image: {
  7729. source: "./media/characters/teal/hand.svg"
  7730. }
  7731. },
  7732. maw: {
  7733. height: math.unit(0.43, "meters"),
  7734. name: "Maw",
  7735. image: {
  7736. source: "./media/characters/teal/maw.svg"
  7737. }
  7738. },
  7739. slit: {
  7740. height: math.unit(0.25, "meters"),
  7741. name: "Slit",
  7742. image: {
  7743. source: "./media/characters/teal/slit.svg"
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(2.75, "meters"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(300, "feet")
  7756. },
  7757. {
  7758. name: "Macro+",
  7759. height: math.unit(2000, "feet")
  7760. },
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7765. {
  7766. frontCat: {
  7767. height: math.unit(6, "feet"),
  7768. weight: math.unit(180, "lbs"),
  7769. name: "Front (Cat)",
  7770. image: {
  7771. source: "./media/characters/ravin-amulet/front-cat.svg"
  7772. }
  7773. },
  7774. frontCatAlt: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(180, "lbs"),
  7777. name: "Front (Alt, Cat)",
  7778. image: {
  7779. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7780. }
  7781. },
  7782. frontWerewolf: {
  7783. height: math.unit(6 * 1.2, "feet"),
  7784. weight: math.unit(225, "lbs"),
  7785. name: "Front (Werewolf)",
  7786. image: {
  7787. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7788. }
  7789. },
  7790. backWerewolf: {
  7791. height: math.unit(6 * 1.2, "feet"),
  7792. weight: math.unit(225, "lbs"),
  7793. name: "Back (Werewolf)",
  7794. image: {
  7795. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7796. }
  7797. },
  7798. },
  7799. [
  7800. {
  7801. name: "Nano",
  7802. height: math.unit(1, "micrometer")
  7803. },
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(1, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6, "feet"),
  7811. default: true
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(60, "feet")
  7816. }
  7817. ]
  7818. ))
  7819. characterMakers.push(() => makeCharacter(
  7820. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7821. {
  7822. front: {
  7823. height: math.unit(6, "feet"),
  7824. weight: math.unit(165, "lbs"),
  7825. name: "Front",
  7826. image: {
  7827. source: "./media/characters/fluoresce/front.svg"
  7828. }
  7829. }
  7830. },
  7831. [
  7832. {
  7833. name: "Micro",
  7834. height: math.unit(6, "cm")
  7835. },
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(5 + 7 / 12, "feet"),
  7839. default: true
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(56, "feet")
  7844. },
  7845. {
  7846. name: "Megamacro",
  7847. height: math.unit(1.9, "miles")
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(9 + 6 / 12, "feet"),
  7856. weight: math.unit(523, "lbs"),
  7857. name: "Side",
  7858. image: {
  7859. source: "./media/characters/aurora/side.svg"
  7860. }
  7861. }
  7862. },
  7863. [
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(9 + 6 / 12, "feet")
  7867. },
  7868. {
  7869. name: "Macro",
  7870. height: math.unit(96, "feet"),
  7871. default: true
  7872. },
  7873. {
  7874. name: "Macro+",
  7875. height: math.unit(243, "feet")
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(194, "cm"),
  7884. weight: math.unit(90, "kg"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/ranek/front.svg",
  7888. extra: 1862/1791,
  7889. bottom: 80/1942
  7890. }
  7891. },
  7892. back: {
  7893. height: math.unit(194, "cm"),
  7894. weight: math.unit(90, "kg"),
  7895. name: "Back",
  7896. image: {
  7897. source: "./media/characters/ranek/back.svg",
  7898. extra: 1853/1787,
  7899. bottom: 74/1927
  7900. }
  7901. },
  7902. feral: {
  7903. height: math.unit(30, "cm"),
  7904. weight: math.unit(1.6, "lbs"),
  7905. name: "Feral",
  7906. image: {
  7907. source: "./media/characters/ranek/feral.svg",
  7908. extra: 990/631,
  7909. bottom: 29/1019
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Normal",
  7916. height: math.unit(194, "cm"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(100, "meters")
  7922. },
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7927. {
  7928. front: {
  7929. height: math.unit(5 + 6 / 12, "feet"),
  7930. weight: math.unit(153, "lbs"),
  7931. name: "Front",
  7932. image: {
  7933. source: "./media/characters/andrew-cooper/front.svg"
  7934. }
  7935. },
  7936. },
  7937. [
  7938. {
  7939. name: "Nano",
  7940. height: math.unit(1, "mm")
  7941. },
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(2, "inches")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(5 + 6 / 12, "feet"),
  7949. default: true
  7950. }
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(180, "lbs"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/akane-sato/front.svg",
  7962. extra: 1219 / 1140
  7963. }
  7964. },
  7965. back: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(180, "lbs"),
  7968. name: "Back",
  7969. image: {
  7970. source: "./media/characters/akane-sato/back.svg",
  7971. extra: 1219 / 1170
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(2.5, "meters")
  7979. },
  7980. {
  7981. name: "Macro",
  7982. height: math.unit(250, "meters"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Megamacro",
  7987. height: math.unit(25, "km")
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(65, "kg"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/rook/front.svg",
  8000. extra: 960 / 950
  8001. }
  8002. }
  8003. },
  8004. [
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(8.8, "feet")
  8008. },
  8009. {
  8010. name: "Macro",
  8011. height: math.unit(88, "feet"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Megamacro",
  8016. height: math.unit(8, "miles")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(12 + 2 / 12, "feet"),
  8025. weight: math.unit(808, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/prodigy/front.svg"
  8029. }
  8030. }
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(12 + 2 / 12, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(143, "feet")
  8041. },
  8042. {
  8043. name: "Macro+",
  8044. height: math.unit(400, "feet")
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(225, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/daniel/front.svg"
  8057. }
  8058. },
  8059. leaning: {
  8060. height: math.unit(6, "feet"),
  8061. weight: math.unit(225, "lbs"),
  8062. name: "Leaning",
  8063. image: {
  8064. source: "./media/characters/daniel/leaning.svg"
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Macro",
  8071. height: math.unit(1000, "feet"),
  8072. default: true
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(88, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/chiros/front.svg",
  8085. extra: 306 / 226
  8086. }
  8087. },
  8088. side: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(88, "lbs"),
  8091. name: "Side",
  8092. image: {
  8093. source: "./media/characters/chiros/side.svg",
  8094. extra: 306 / 226
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(6, "cm"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(100, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/selka/front.svg",
  8115. extra: 947 / 887
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(5, "cm"),
  8123. default: true
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(8 + 3 / 12, "feet"),
  8132. weight: math.unit(424, "lbs"),
  8133. name: "Front",
  8134. image: {
  8135. source: "./media/characters/verin/front.svg",
  8136. extra: 1845 / 1550
  8137. }
  8138. },
  8139. frontArmored: {
  8140. height: math.unit(8 + 3 / 12, "feet"),
  8141. weight: math.unit(424, "lbs"),
  8142. name: "Front (Armored)",
  8143. image: {
  8144. source: "./media/characters/verin/front-armor.svg",
  8145. extra: 1845 / 1550,
  8146. bottom: 0.01
  8147. }
  8148. },
  8149. back: {
  8150. height: math.unit(8 + 3 / 12, "feet"),
  8151. weight: math.unit(424, "lbs"),
  8152. name: "Back",
  8153. image: {
  8154. source: "./media/characters/verin/back.svg",
  8155. bottom: 0.1,
  8156. extra: 1
  8157. }
  8158. },
  8159. foot: {
  8160. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8161. name: "Foot",
  8162. image: {
  8163. source: "./media/characters/verin/foot.svg"
  8164. }
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(8 + 3 / 12, "feet")
  8171. },
  8172. {
  8173. name: "Minimacro",
  8174. height: math.unit(21, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(626, "feet")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(2.718, "meters"),
  8188. weight: math.unit(150, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/sovrim-terraquian/front.svg",
  8192. extra: 1752/1689,
  8193. bottom: 36/1788
  8194. }
  8195. },
  8196. back: {
  8197. height: math.unit(2.718, "meters"),
  8198. weight: math.unit(150, "lbs"),
  8199. name: "Back",
  8200. image: {
  8201. source: "./media/characters/sovrim-terraquian/back.svg",
  8202. extra: 1698/1657,
  8203. bottom: 58/1756
  8204. }
  8205. },
  8206. tongue: {
  8207. height: math.unit(2.865, "feet"),
  8208. name: "Tongue",
  8209. image: {
  8210. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8211. }
  8212. },
  8213. hand: {
  8214. height: math.unit(1.61, "feet"),
  8215. name: "Hand",
  8216. image: {
  8217. source: "./media/characters/sovrim-terraquian/hand.svg"
  8218. }
  8219. },
  8220. foot: {
  8221. height: math.unit(1.05, "feet"),
  8222. name: "Foot",
  8223. image: {
  8224. source: "./media/characters/sovrim-terraquian/foot.svg"
  8225. }
  8226. },
  8227. footAlt: {
  8228. height: math.unit(0.88, "feet"),
  8229. name: "Foot (Alt)",
  8230. image: {
  8231. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Micro",
  8238. height: math.unit(2, "inches")
  8239. },
  8240. {
  8241. name: "Small",
  8242. height: math.unit(1, "meter")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(Math.E, "meters"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(20, "meters")
  8252. },
  8253. {
  8254. name: "Macro+",
  8255. height: math.unit(400, "meters")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(7, "feet"),
  8264. weight: math.unit(489, "lbs"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/reece-silvermane/front.svg",
  8268. bottom: 0.02,
  8269. extra: 1
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(1.5, "miles"),
  8277. default: true
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(78, "kg"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/kane/front.svg",
  8290. extra: 978 / 899
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(2.1, "m"),
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(1, "km"),
  8302. default: true
  8303. },
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(200, "kg"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/tegon/front.svg",
  8315. bottom: 0.01,
  8316. extra: 1
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(1, "inch")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(6 + 3 / 12, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(300, "feet")
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(69, "miles")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8342. {
  8343. side: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(2304, "lbs"),
  8346. name: "Side",
  8347. image: {
  8348. source: "./media/characters/arcturax/side.svg",
  8349. extra: 790 / 376,
  8350. bottom: 0.01
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(2, "inch")
  8358. },
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(6, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(39, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(7, "miles")
  8371. },
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(50, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/sentri/front.svg",
  8383. extra: 1750 / 1570,
  8384. bottom: 0.025
  8385. }
  8386. },
  8387. frontAlt: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(50, "lbs"),
  8390. name: "Front (Alt)",
  8391. image: {
  8392. source: "./media/characters/sentri/front-alt.svg",
  8393. extra: 1750 / 1570,
  8394. bottom: 0.025
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(15, "feet"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(2500, "feet")
  8407. }
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 8 / 12, "feet"),
  8415. weight: math.unit(130, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/corvin/front.svg",
  8419. extra: 1803 / 1629
  8420. }
  8421. },
  8422. frontShirt: {
  8423. height: math.unit(5 + 8 / 12, "feet"),
  8424. weight: math.unit(130, "lbs"),
  8425. name: "Front (Shirt)",
  8426. image: {
  8427. source: "./media/characters/corvin/front-shirt.svg",
  8428. extra: 1803 / 1629
  8429. }
  8430. },
  8431. frontPoncho: {
  8432. height: math.unit(5 + 8 / 12, "feet"),
  8433. weight: math.unit(130, "lbs"),
  8434. name: "Front (Poncho)",
  8435. image: {
  8436. source: "./media/characters/corvin/front-poncho.svg",
  8437. extra: 1803 / 1629
  8438. }
  8439. },
  8440. side: {
  8441. height: math.unit(5 + 8 / 12, "feet"),
  8442. weight: math.unit(130, "lbs"),
  8443. name: "Side",
  8444. image: {
  8445. source: "./media/characters/corvin/side.svg",
  8446. extra: 1012 / 945
  8447. }
  8448. },
  8449. back: {
  8450. height: math.unit(5 + 8 / 12, "feet"),
  8451. weight: math.unit(130, "lbs"),
  8452. name: "Back",
  8453. image: {
  8454. source: "./media/characters/corvin/back.svg",
  8455. extra: 1803 / 1629
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Micro",
  8462. height: math.unit(3, "inches")
  8463. },
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(5 + 8 / 12, "feet")
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(300, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Megamacro",
  8475. height: math.unit(500, "miles")
  8476. }
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(135, "lbs"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/q/front.svg",
  8488. extra: 854 / 752,
  8489. bottom: 0.005
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(130, "lbs"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/q/back.svg",
  8498. extra: 854 / 752
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(90, "feet"),
  8506. default: true
  8507. },
  8508. {
  8509. name: "Extra Macro",
  8510. height: math.unit(300, "feet"),
  8511. },
  8512. {
  8513. name: "BIG WALF",
  8514. height: math.unit(750, "feet"),
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(150, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/carley/front.svg",
  8527. extra: 3927 / 3540,
  8528. bottom: 29.2 / 735
  8529. }
  8530. }
  8531. },
  8532. [
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(6 + 3 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(185, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Megamacro",
  8544. height: math.unit(8, "miles"),
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(3, "feet"),
  8553. weight: math.unit(28, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/citrine/front.svg"
  8557. }
  8558. }
  8559. },
  8560. [
  8561. {
  8562. name: "Normal",
  8563. height: math.unit(3, "feet"),
  8564. default: true
  8565. }
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8570. {
  8571. front: {
  8572. height: math.unit(14, "feet"),
  8573. weight: math.unit(1450, "kg"),
  8574. capacity: math.unit(15, "people"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/aura-starwind/front.svg",
  8578. extra: 1440/1327,
  8579. bottom: 11/1451
  8580. }
  8581. },
  8582. side: {
  8583. height: math.unit(14, "feet"),
  8584. weight: math.unit(1450, "kg"),
  8585. capacity: math.unit(15, "people"),
  8586. name: "Side",
  8587. image: {
  8588. source: "./media/characters/aura-starwind/side.svg",
  8589. extra: 1654 / 1497
  8590. }
  8591. },
  8592. taur: {
  8593. height: math.unit(18, "feet"),
  8594. weight: math.unit(5500, "kg"),
  8595. capacity: math.unit(50, "people"),
  8596. name: "Taur",
  8597. image: {
  8598. source: "./media/characters/aura-starwind/taur.svg",
  8599. extra: 1760 / 1650
  8600. }
  8601. },
  8602. feral: {
  8603. height: math.unit(46, "feet"),
  8604. weight: math.unit(25000, "kg"),
  8605. capacity: math.unit(120, "people"),
  8606. name: "Feral",
  8607. image: {
  8608. source: "./media/characters/aura-starwind/feral.svg"
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(14, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(50, "meters")
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(5000, "meters")
  8625. },
  8626. {
  8627. name: "Gigamacro",
  8628. height: math.unit(100000, "kilometers")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(2 + 7 / 12, "feet"),
  8637. weight: math.unit(32, "lbs"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/rivet/front.svg",
  8641. extra: 1716 / 1658,
  8642. bottom: 0.03
  8643. }
  8644. },
  8645. foot: {
  8646. height: math.unit(0.551, "feet"),
  8647. name: "Rivet's Foot",
  8648. image: {
  8649. source: "./media/characters/rivet/foot.svg"
  8650. },
  8651. rename: true
  8652. }
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(1.5, "inches"),
  8658. },
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(2 + 7 / 12, "feet"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(85, "feet")
  8667. },
  8668. {
  8669. name: "Megamacro",
  8670. height: math.unit(2.2, "km")
  8671. }
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(5 + 9 / 12, "feet"),
  8679. weight: math.unit(150, "lbs"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/coffee/front.svg",
  8683. extra: 3666 / 3032,
  8684. bottom: 0.04
  8685. }
  8686. },
  8687. foot: {
  8688. height: math.unit(1.29, "feet"),
  8689. name: "Foot",
  8690. image: {
  8691. source: "./media/characters/coffee/foot.svg"
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(2, "inches"),
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 9 / 12, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(800, "feet")
  8708. },
  8709. {
  8710. name: "Megamacro",
  8711. height: math.unit(25, "miles")
  8712. }
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(200, "lbs"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/chari-gal/front.svg",
  8724. extra: 1568 / 1385,
  8725. bottom: 0.047
  8726. }
  8727. },
  8728. gigantamax: {
  8729. height: math.unit(6 * 16, "feet"),
  8730. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8731. name: "Gigantamax",
  8732. image: {
  8733. source: "./media/characters/chari-gal/gigantamax.svg",
  8734. extra: 1124 / 888,
  8735. bottom: 0.03
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(5 + 7 / 12, "feet")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(200, "feet"),
  8747. default: true
  8748. }
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(150, "lbs"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/nova/front.svg",
  8760. extra: 5000 / 4722,
  8761. bottom: 0.02
  8762. }
  8763. }
  8764. },
  8765. [
  8766. {
  8767. name: "Micro-",
  8768. height: math.unit(0.8, "inches")
  8769. },
  8770. {
  8771. name: "Micro",
  8772. height: math.unit(2, "inches"),
  8773. default: true
  8774. },
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(3 + 1 / 12, "feet"),
  8782. weight: math.unit(21.7, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/argent/front.svg",
  8786. extra: 1471 / 1331,
  8787. bottom: 100.8 / 1575.5
  8788. }
  8789. }
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(2, "inches")
  8795. },
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(3 + 1 / 12, "feet"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(120, "feet")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8809. {
  8810. lamp: {
  8811. height: math.unit(7 * 1559 / 989, "feet"),
  8812. name: "Magic Lamp",
  8813. image: {
  8814. source: "./media/characters/mira-al-cul/lamp.svg",
  8815. extra: 1617 / 1559
  8816. }
  8817. },
  8818. front: {
  8819. height: math.unit(7, "feet"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/mira-al-cul/front.svg",
  8823. extra: 1044 / 990
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Heavily Restricted",
  8830. height: math.unit(7 * 1559 / 989, "feet")
  8831. },
  8832. {
  8833. name: "Freshly Freed",
  8834. height: math.unit(50 * 1559 / 989, "feet")
  8835. },
  8836. {
  8837. name: "World Encompassing",
  8838. height: math.unit(10000 * 1559 / 989, "miles")
  8839. },
  8840. {
  8841. name: "Galactic",
  8842. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8843. },
  8844. {
  8845. name: "Palmed Universe",
  8846. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Multiversal Matriarch",
  8851. height: math.unit(8.87e10, "yottameters")
  8852. },
  8853. {
  8854. name: "Void Mother",
  8855. height: math.unit(3.14e110, "yottaparsecs")
  8856. },
  8857. {
  8858. name: "Toying with Transcendence",
  8859. height: math.unit(1e307, "meters")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8865. {
  8866. front: {
  8867. height: math.unit(17 + 1 / 12, "feet"),
  8868. weight: math.unit(476.2 * 5, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/kuro-shi-uchū/front.svg",
  8872. extra: 2329 / 1835,
  8873. bottom: 0.02
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Micro",
  8880. height: math.unit(2, "inches")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(12, "meters")
  8885. },
  8886. {
  8887. name: "Planetary",
  8888. height: math.unit(0.00929, "AU"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Universal",
  8893. height: math.unit(20, "gigaparsecs")
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8899. {
  8900. front: {
  8901. height: math.unit(5 + 2 / 12, "feet"),
  8902. weight: math.unit(120, "lbs"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/katherine/front.svg",
  8906. extra: 2075 / 1969
  8907. }
  8908. },
  8909. dress: {
  8910. height: math.unit(5 + 2 / 12, "feet"),
  8911. weight: math.unit(120, "lbs"),
  8912. name: "Dress",
  8913. image: {
  8914. source: "./media/characters/katherine/dress.svg",
  8915. extra: 2258 / 2064
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Micro",
  8922. height: math.unit(1, "inches"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(5 + 2 / 12, "feet")
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(100, "meters")
  8932. },
  8933. {
  8934. name: "Megamacro",
  8935. height: math.unit(80, "miles")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(7 + 8 / 12, "feet"),
  8944. weight: math.unit(250, "lbs"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/yevis/front.svg",
  8948. extra: 1938 / 1755
  8949. }
  8950. }
  8951. },
  8952. [
  8953. {
  8954. name: "Mortal",
  8955. height: math.unit(7 + 8 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Battle",
  8959. height: math.unit(25 + 11 / 12, "feet")
  8960. },
  8961. {
  8962. name: "Wrath",
  8963. height: math.unit(1654 + 11 / 12, "feet")
  8964. },
  8965. {
  8966. name: "Planet Destroyer",
  8967. height: math.unit(12000, "miles")
  8968. },
  8969. {
  8970. name: "Galaxy Conqueror",
  8971. height: math.unit(1.45, "zettameters"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Universal War",
  8976. height: math.unit(184, "gigaparsecs")
  8977. },
  8978. {
  8979. name: "Eternity War",
  8980. height: math.unit(1.98e55, "yottaparsecs")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(5 + 8 / 12, "feet"),
  8989. weight: math.unit(63, "kg"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/xavier/front.svg",
  8993. extra: 944 / 883
  8994. }
  8995. },
  8996. frontStretch: {
  8997. height: math.unit(5 + 8 / 12, "feet"),
  8998. weight: math.unit(63, "kg"),
  8999. name: "Stretching",
  9000. image: {
  9001. source: "./media/characters/xavier/front-stretch.svg",
  9002. extra: 962 / 820
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(5 + 8 / 12, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(100, "meters"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "McLargeHuge",
  9018. height: math.unit(10, "miles")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(5 + 5 / 12, "feet"),
  9027. weight: math.unit(150, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/joshii/front.svg",
  9031. extra: 765 / 653,
  9032. bottom: 51 / 816
  9033. }
  9034. },
  9035. foot: {
  9036. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9037. name: "Foot",
  9038. image: {
  9039. source: "./media/characters/joshii/foot.svg"
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(2, "inches"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(5 + 5 / 12, "feet")
  9052. },
  9053. {
  9054. name: "Macro",
  9055. height: math.unit(785, "feet")
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(24.5, "miles")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(150, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/goddess-elizabeth/front.svg",
  9072. extra: 1800 / 1525,
  9073. bottom: 0.005
  9074. }
  9075. },
  9076. foot: {
  9077. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9078. name: "Foot",
  9079. image: {
  9080. source: "./media/characters/goddess-elizabeth/foot.svg"
  9081. }
  9082. },
  9083. mouth: {
  9084. height: math.unit(6, "feet"),
  9085. name: "Mouth",
  9086. image: {
  9087. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Micro",
  9094. height: math.unit(12, "feet")
  9095. },
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(80, "miles"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(15000, "parsecs")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(5 + 9 / 12, "feet"),
  9112. weight: math.unit(144, "lb"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/kara/front.svg"
  9116. }
  9117. },
  9118. feet: {
  9119. height: math.unit(6 / 6.765, "feet"),
  9120. name: "Kara's Feet",
  9121. rename: true,
  9122. image: {
  9123. source: "./media/characters/kara/feet.svg"
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(5 + 9 / 12, "feet")
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(174, "feet"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(18, "feet"),
  9144. weight: math.unit(4050, "lb"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/tyrone/front.svg",
  9148. extra: 2405 / 2270,
  9149. bottom: 182 / 2587
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(18, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(300, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(15, "km")
  9166. },
  9167. {
  9168. name: "Gigamacro",
  9169. height: math.unit(500, "km")
  9170. },
  9171. {
  9172. name: "Teramacro",
  9173. height: math.unit(0.5, "gigameters")
  9174. },
  9175. {
  9176. name: "Omnimacro",
  9177. height: math.unit(1e252, "yottauniverse")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(7 + 8 / 12, "feet"),
  9186. weight: math.unit(120, "lb"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/danny/front.svg",
  9190. extra: 1490 / 1350
  9191. }
  9192. },
  9193. back: {
  9194. height: math.unit(7 + 8 / 12, "feet"),
  9195. weight: math.unit(120, "lb"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/danny/back.svg",
  9199. extra: 1490 / 1350
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(7 + 8 / 12, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(3.5, "inches"),
  9216. weight: math.unit(19, "grams"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/mallow/front.svg",
  9220. extra: 471 / 431
  9221. }
  9222. },
  9223. back: {
  9224. height: math.unit(3.5, "inches"),
  9225. weight: math.unit(19, "grams"),
  9226. name: "Back",
  9227. image: {
  9228. source: "./media/characters/mallow/back.svg",
  9229. extra: 471 / 431
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(3.5, "inches"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(9, "feet"),
  9246. weight: math.unit(230, "kg"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/starry-aqua/front.svg"
  9250. }
  9251. },
  9252. back: {
  9253. height: math.unit(9, "feet"),
  9254. weight: math.unit(230, "kg"),
  9255. name: "Back",
  9256. image: {
  9257. source: "./media/characters/starry-aqua/back.svg"
  9258. }
  9259. },
  9260. hand: {
  9261. height: math.unit(9 * 0.1168, "feet"),
  9262. name: "Hand",
  9263. image: {
  9264. source: "./media/characters/starry-aqua/hand.svg"
  9265. }
  9266. },
  9267. foot: {
  9268. height: math.unit(9 * 0.18, "feet"),
  9269. name: "Foot",
  9270. image: {
  9271. source: "./media/characters/starry-aqua/foot.svg"
  9272. }
  9273. }
  9274. },
  9275. [
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(3, "inches")
  9279. },
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(9, "feet")
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(300, "feet"),
  9287. default: true
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(3200, "feet")
  9292. }
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(15, "feet"),
  9300. weight: math.unit(5026, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/luka-towers/front.svg",
  9304. extra: 1269/1133,
  9305. bottom: 51/1320
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(15, "feet"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Minimacro",
  9317. height: math.unit(25, "feet")
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(320, "feet")
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(35000, "feet")
  9326. },
  9327. {
  9328. name: "Gigamacro",
  9329. height: math.unit(4000, "miles")
  9330. },
  9331. {
  9332. name: "Teramacro",
  9333. height: math.unit(15000, "miles")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(150, "lb"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/natalie-nightring/front.svg",
  9346. extra: 1,
  9347. bottom: 0.06
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Uh Oh",
  9354. height: math.unit(0.1, "mm")
  9355. },
  9356. {
  9357. name: "Small",
  9358. height: math.unit(3, "inches")
  9359. },
  9360. {
  9361. name: "Human Scale",
  9362. height: math.unit(6, "feet")
  9363. },
  9364. {
  9365. name: "Librarian",
  9366. height: math.unit(50, "feet"),
  9367. default: true
  9368. },
  9369. {
  9370. name: "Immense",
  9371. height: math.unit(200, "miles")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(180, "lbs"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/danni-rosie/front.svg",
  9384. extra: 1260 / 1128,
  9385. bottom: 0.022
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Micro",
  9392. height: math.unit(2, "inches"),
  9393. default: true
  9394. },
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9399. {
  9400. front: {
  9401. height: math.unit(5 + 9 / 12, "feet"),
  9402. weight: math.unit(220, "lb"),
  9403. name: "Front",
  9404. image: {
  9405. source: "./media/characters/samantha-kruse/front.svg",
  9406. extra: (985 / 935),
  9407. bottom: 0.03
  9408. }
  9409. },
  9410. frontUndressed: {
  9411. height: math.unit(5 + 9 / 12, "feet"),
  9412. weight: math.unit(220, "lb"),
  9413. name: "Front (Undressed)",
  9414. image: {
  9415. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9416. extra: (973 / 923),
  9417. bottom: 0.025
  9418. }
  9419. },
  9420. fat: {
  9421. height: math.unit(5 + 9 / 12, "feet"),
  9422. weight: math.unit(900, "lb"),
  9423. name: "Front (Fat)",
  9424. image: {
  9425. source: "./media/characters/samantha-kruse/fat.svg",
  9426. extra: 2688 / 2561
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5 + 9 / 12, "feet"),
  9434. default: true
  9435. }
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9440. {
  9441. back: {
  9442. height: math.unit(5 + 4 / 12, "feet"),
  9443. weight: math.unit(4963, "lb"),
  9444. name: "Back",
  9445. image: {
  9446. source: "./media/characters/amelia-rosie/back.svg",
  9447. extra: 1113 / 963,
  9448. bottom: 0.01
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Level 0",
  9455. height: math.unit(5 + 4 / 12, "feet")
  9456. },
  9457. {
  9458. name: "Level 1",
  9459. height: math.unit(164597, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Level 2",
  9464. height: math.unit(956243, "miles")
  9465. },
  9466. {
  9467. name: "Level 3",
  9468. height: math.unit(29421709423, "miles")
  9469. },
  9470. {
  9471. name: "Level 4",
  9472. height: math.unit(154, "lightyears")
  9473. },
  9474. {
  9475. name: "Level 5",
  9476. height: math.unit(4738272, "lightyears")
  9477. },
  9478. {
  9479. name: "Level 6",
  9480. height: math.unit(145787152896, "lightyears")
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9486. {
  9487. front: {
  9488. height: math.unit(5 + 11 / 12, "feet"),
  9489. weight: math.unit(65, "kg"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/rook-kitara/front.svg",
  9493. extra: 1347 / 1274,
  9494. bottom: 0.005
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Totally Unfair",
  9501. height: math.unit(1.8, "mm")
  9502. },
  9503. {
  9504. name: "Lap Rookie",
  9505. height: math.unit(1.4, "feet")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5 + 11 / 12, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "How Did This Happen",
  9514. height: math.unit(80, "miles")
  9515. }
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(7, "feet"),
  9523. weight: math.unit(300, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/pisces/front.svg",
  9527. extra: 2255 / 2115,
  9528. bottom: 0.03
  9529. }
  9530. },
  9531. back: {
  9532. height: math.unit(7, "feet"),
  9533. weight: math.unit(300, "lb"),
  9534. name: "Back",
  9535. image: {
  9536. source: "./media/characters/pisces/back.svg",
  9537. extra: 2146 / 2055,
  9538. bottom: 0.04
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(7, "feet"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Swimming Pool",
  9550. height: math.unit(12.2, "meters")
  9551. },
  9552. {
  9553. name: "Olympic Swimming Pool",
  9554. height: math.unit(56.3, "meters")
  9555. },
  9556. {
  9557. name: "Lake Superior",
  9558. height: math.unit(93900, "meters")
  9559. },
  9560. {
  9561. name: "Mediterranean Sea",
  9562. height: math.unit(644457, "meters")
  9563. },
  9564. {
  9565. name: "World's Oceans",
  9566. height: math.unit(4567491, "meters")
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(2.3, "meters"),
  9575. weight: math.unit(120, "kg"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/zelas/front.svg"
  9579. }
  9580. },
  9581. side: {
  9582. height: math.unit(2.3, "meters"),
  9583. weight: math.unit(120, "kg"),
  9584. name: "Side",
  9585. image: {
  9586. source: "./media/characters/zelas/side.svg"
  9587. }
  9588. },
  9589. back: {
  9590. height: math.unit(2.3, "meters"),
  9591. weight: math.unit(120, "kg"),
  9592. name: "Back",
  9593. image: {
  9594. source: "./media/characters/zelas/back.svg"
  9595. }
  9596. },
  9597. foot: {
  9598. height: math.unit(1.116, "feet"),
  9599. name: "Foot",
  9600. image: {
  9601. source: "./media/characters/zelas/foot.svg"
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(2.3, "meters")
  9609. },
  9610. {
  9611. name: "Macro",
  9612. height: math.unit(30, "meters"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(1, "inch"),
  9622. weight: math.unit(0.21, "grams"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/talbot/front.svg",
  9626. extra: 594 / 544
  9627. }
  9628. },
  9629. },
  9630. [
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(1, "inch"),
  9634. default: true
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9640. {
  9641. front: {
  9642. height: math.unit(3 + 3 / 12, "feet"),
  9643. weight: math.unit(51.8, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/fliss/front.svg",
  9647. extra: 840 / 640
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Teeny Tiny",
  9654. height: math.unit(1, "mm")
  9655. },
  9656. {
  9657. name: "Small",
  9658. height: math.unit(1, "inch"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Standard Sylveon",
  9663. height: math.unit(3 + 3 / 12, "feet")
  9664. },
  9665. {
  9666. name: "Large Nuisance",
  9667. height: math.unit(33, "feet")
  9668. },
  9669. {
  9670. name: "City Filler",
  9671. height: math.unit(3000, "feet")
  9672. },
  9673. {
  9674. name: "New Horizon",
  9675. height: math.unit(6000, "miles")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(5, "cm"),
  9684. weight: math.unit(1.94, "g"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/fleta/front.svg",
  9688. extra: 835 / 803
  9689. }
  9690. },
  9691. back: {
  9692. height: math.unit(5, "cm"),
  9693. weight: math.unit(1.94, "g"),
  9694. name: "Back",
  9695. image: {
  9696. source: "./media/characters/fleta/back.svg",
  9697. extra: 835 / 803
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(5, "cm"),
  9705. default: true
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(6, "feet"),
  9714. weight: math.unit(225, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/dominic/front.svg",
  9718. extra: 1770 / 1620,
  9719. bottom: 0.025
  9720. }
  9721. },
  9722. back: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(225, "lb"),
  9725. name: "Back",
  9726. image: {
  9727. source: "./media/characters/dominic/back.svg",
  9728. extra: 1745 / 1620,
  9729. bottom: 0.065
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Nano",
  9736. height: math.unit(0.1, "mm")
  9737. },
  9738. {
  9739. name: "Micro-",
  9740. height: math.unit(1, "mm")
  9741. },
  9742. {
  9743. name: "Micro",
  9744. height: math.unit(4, "inches")
  9745. },
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(6 + 4 / 12, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(115, "feet")
  9754. },
  9755. {
  9756. name: "Macro+",
  9757. height: math.unit(955, "feet")
  9758. },
  9759. {
  9760. name: "Megamacro",
  9761. height: math.unit(8990, "feet")
  9762. },
  9763. {
  9764. name: "Gigmacro",
  9765. height: math.unit(9310, "miles")
  9766. },
  9767. {
  9768. name: "Teramacro",
  9769. height: math.unit(1567005010, "miles")
  9770. },
  9771. {
  9772. name: "Examacro",
  9773. height: math.unit(1425, "parsecs")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(400, "feet"),
  9782. weight: math.unit(44444444, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/major-colonel/front.svg"
  9786. }
  9787. },
  9788. back: {
  9789. height: math.unit(400, "feet"),
  9790. weight: math.unit(44444444, "lb"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/major-colonel/back.svg"
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(400, "feet"),
  9801. default: true
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9807. {
  9808. catFront: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(120, "lb"),
  9811. name: "Front (Cat Side)",
  9812. image: {
  9813. source: "./media/characters/axel-lycan/cat-front.svg",
  9814. extra: 430 / 402,
  9815. bottom: 43 / 472.35
  9816. }
  9817. },
  9818. catBack: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(120, "lb"),
  9821. name: "Back (Cat Side)",
  9822. image: {
  9823. source: "./media/characters/axel-lycan/cat-back.svg",
  9824. extra: 447 / 419,
  9825. bottom: 23.3 / 469
  9826. }
  9827. },
  9828. wolfFront: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(120, "lb"),
  9831. name: "Front (Wolf Side)",
  9832. image: {
  9833. source: "./media/characters/axel-lycan/wolf-front.svg",
  9834. extra: 485 / 456,
  9835. bottom: 19 / 504
  9836. }
  9837. },
  9838. wolfBack: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(120, "lb"),
  9841. name: "Back (Wolf Side)",
  9842. image: {
  9843. source: "./media/characters/axel-lycan/wolf-back.svg",
  9844. extra: 475 / 438,
  9845. bottom: 39.2 / 514
  9846. }
  9847. },
  9848. },
  9849. [
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(1, "km"),
  9853. default: true
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(5 + 9 / 12, "feet"),
  9862. weight: math.unit(175, "lb"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/vanrel-hyena/front.svg",
  9866. extra: 1086 / 1010,
  9867. bottom: 0.04
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(5 + 9 / 12, "feet"),
  9875. default: true
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(103, "lb"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/abbott-absol/front.svg",
  9888. extra: 2010 / 1842
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Megamicro",
  9895. height: math.unit(0.1, "mm")
  9896. },
  9897. {
  9898. name: "Micro",
  9899. height: math.unit(1, "inch")
  9900. },
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(6, "feet"),
  9904. default: true
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(264, "lb"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/hector/front.svg",
  9917. extra: 2280 / 2130,
  9918. bottom: 0.07
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(12.25, "foot"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(160, "feet")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(150, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/sal/front.svg",
  9943. extra: 1846 / 1699,
  9944. bottom: 0.04
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Megamacro",
  9951. height: math.unit(10, "miles"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9958. {
  9959. front: {
  9960. height: math.unit(3, "meters"),
  9961. weight: math.unit(450, "kg"),
  9962. name: "front",
  9963. image: {
  9964. source: "./media/characters/ranger/front.svg",
  9965. extra: 2401 / 2243,
  9966. bottom: 0.05
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(3, "meters"),
  9974. default: true
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(14, "feet"),
  9983. weight: math.unit(800, "kg"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/theresa/front.svg",
  9987. extra: 3575 / 3346,
  9988. bottom: 0.03
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(14, "feet"),
  9996. default: true
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10002. {
  10003. front: {
  10004. height: math.unit(6, "feet"),
  10005. weight: math.unit(3, "kg"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/ine/front.svg",
  10009. extra: 678 / 539,
  10010. bottom: 0.023
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(2.265, "feet"),
  10018. default: true
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(5, "feet"),
  10027. weight: math.unit(30, "kg"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/vial/front.svg",
  10031. extra: 1365 / 1277,
  10032. bottom: 0.04
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(5, "feet"),
  10040. default: true
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10046. {
  10047. side: {
  10048. height: math.unit(3.4, "meters"),
  10049. weight: math.unit(1000, "lb"),
  10050. name: "Side",
  10051. image: {
  10052. source: "./media/characters/rovoska/side.svg",
  10053. extra: 4403 / 1515
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(3.4, "meters"),
  10061. default: true
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(8, "feet"),
  10070. weight: math.unit(315, "lb"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/gunner-rotthbauer/front.svg"
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(8, "feet"),
  10078. weight: math.unit(315, "lb"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/gunner-rotthbauer/back.svg"
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(3.5, "inches")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(8, "feet"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Macro",
  10097. height: math.unit(250, "feet")
  10098. },
  10099. {
  10100. name: "Megamacro",
  10101. height: math.unit(1, "AU")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(5 + 5 / 12, "feet"),
  10110. weight: math.unit(140, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/allatia/front.svg",
  10114. extra: 1227 / 1180,
  10115. bottom: 0.027
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(5 + 5 / 12, "feet")
  10123. },
  10124. {
  10125. name: "Macro",
  10126. height: math.unit(250, "feet"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Megamacro",
  10131. height: math.unit(8, "miles")
  10132. }
  10133. ]
  10134. ))
  10135. characterMakers.push(() => makeCharacter(
  10136. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10137. {
  10138. front: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(120, "lb"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/tene/front.svg",
  10144. extra: 814/750,
  10145. bottom: 36/850
  10146. }
  10147. },
  10148. stomping: {
  10149. height: math.unit(2.025, "meters"),
  10150. weight: math.unit(120, "lb"),
  10151. name: "Stomping",
  10152. image: {
  10153. source: "./media/characters/tene/stomping.svg",
  10154. extra: 885/821,
  10155. bottom: 15/900
  10156. }
  10157. },
  10158. sitting: {
  10159. height: math.unit(1, "meter"),
  10160. weight: math.unit(120, "lb"),
  10161. name: "Sitting",
  10162. image: {
  10163. source: "./media/characters/tene/sitting.svg",
  10164. extra: 396/366,
  10165. bottom: 79/475
  10166. }
  10167. },
  10168. smiling: {
  10169. height: math.unit(1.2, "feet"),
  10170. name: "Smiling",
  10171. image: {
  10172. source: "./media/characters/tene/smiling.svg",
  10173. extra: 1364/1071,
  10174. bottom: 0/1364
  10175. }
  10176. },
  10177. smug: {
  10178. height: math.unit(1.3, "feet"),
  10179. name: "Smug",
  10180. image: {
  10181. source: "./media/characters/tene/smug.svg",
  10182. extra: 1323/1082,
  10183. bottom: 0/1323
  10184. }
  10185. },
  10186. feral: {
  10187. height: math.unit(3.9, "feet"),
  10188. weight: math.unit(250, "lb"),
  10189. name: "Feral",
  10190. image: {
  10191. source: "./media/characters/tene/feral.svg",
  10192. extra: 717 / 458,
  10193. bottom: 0.179
  10194. }
  10195. },
  10196. },
  10197. [
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(6, "feet")
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(300, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Megamacro",
  10209. height: math.unit(5, "miles")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10215. {
  10216. side: {
  10217. height: math.unit(6, "feet"),
  10218. name: "Side",
  10219. image: {
  10220. source: "./media/characters/evander/side.svg",
  10221. extra: 877 / 477
  10222. }
  10223. },
  10224. },
  10225. [
  10226. {
  10227. name: "Normal",
  10228. height: math.unit(0.83, "meters"),
  10229. default: true
  10230. },
  10231. ]
  10232. ))
  10233. characterMakers.push(() => makeCharacter(
  10234. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10235. {
  10236. front: {
  10237. height: math.unit(12, "feet"),
  10238. weight: math.unit(1000, "lb"),
  10239. name: "Front",
  10240. image: {
  10241. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10242. extra: 1762 / 1611
  10243. }
  10244. },
  10245. back: {
  10246. height: math.unit(12, "feet"),
  10247. weight: math.unit(1000, "lb"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10251. extra: 1762 / 1611
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(12, "feet"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Kaiju",
  10263. height: math.unit(150, "feet")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(150, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/zero-alurus/front.svg"
  10276. }
  10277. },
  10278. back: {
  10279. height: math.unit(6, "feet"),
  10280. weight: math.unit(150, "lb"),
  10281. name: "Back",
  10282. image: {
  10283. source: "./media/characters/zero-alurus/back.svg"
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(5 + 10 / 12, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(60, "feet"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Macro+",
  10299. height: math.unit(450, "feet")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(6, "feet"),
  10308. weight: math.unit(200, "lb"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/mega-shi/front.svg",
  10312. extra: 1279 / 1250,
  10313. bottom: 0.02
  10314. }
  10315. },
  10316. back: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(200, "lb"),
  10319. name: "Back",
  10320. image: {
  10321. source: "./media/characters/mega-shi/back.svg",
  10322. extra: 1279 / 1250,
  10323. bottom: 0.02
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Micro",
  10330. height: math.unit(16 + 6 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Third Dimension",
  10334. height: math.unit(40, "meters")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(660, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Megamacro",
  10343. height: math.unit(10, "miles")
  10344. },
  10345. {
  10346. name: "Planetary Launch",
  10347. height: math.unit(500, "miles")
  10348. },
  10349. {
  10350. name: "Interstellar",
  10351. height: math.unit(1e9, "miles")
  10352. },
  10353. {
  10354. name: "Leaving the Universe",
  10355. height: math.unit(1, "gigaparsec")
  10356. },
  10357. {
  10358. name: "Travelling Universes",
  10359. height: math.unit(30e15, "parsecs")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(5 + 4/12, "feet"),
  10368. weight: math.unit(120, "lb"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/odyssey/front.svg",
  10372. extra: 1747/1571,
  10373. bottom: 47/1794
  10374. }
  10375. },
  10376. side: {
  10377. height: math.unit(5.1, "feet"),
  10378. weight: math.unit(120, "lb"),
  10379. name: "Side",
  10380. image: {
  10381. source: "./media/characters/odyssey/side.svg",
  10382. extra: 1847/1619,
  10383. bottom: 47/1894
  10384. }
  10385. },
  10386. lounging: {
  10387. height: math.unit(1.464, "feet"),
  10388. weight: math.unit(120, "lb"),
  10389. name: "Lounging",
  10390. image: {
  10391. source: "./media/characters/odyssey/lounging.svg",
  10392. extra: 1235/837,
  10393. bottom: 551/1786
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(5 + 4 / 12, "feet")
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(1, "km")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(3000, "km")
  10409. },
  10410. {
  10411. name: "Gigamacro",
  10412. height: math.unit(1, "AU"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Omniversal",
  10417. height: math.unit(100e14, "lightyears")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(6, "feet"),
  10426. weight: math.unit(300, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/mekuto/front.svg",
  10430. extra: 921 / 832,
  10431. bottom: 0.03
  10432. }
  10433. },
  10434. hand: {
  10435. height: math.unit(6 / 10.24, "feet"),
  10436. name: "Hand",
  10437. image: {
  10438. source: "./media/characters/mekuto/hand.svg"
  10439. }
  10440. },
  10441. foot: {
  10442. height: math.unit(6 / 5.05, "feet"),
  10443. name: "Foot",
  10444. image: {
  10445. source: "./media/characters/mekuto/foot.svg"
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Minimicro",
  10452. height: math.unit(0.2, "inches")
  10453. },
  10454. {
  10455. name: "Micro",
  10456. height: math.unit(1.5, "inches")
  10457. },
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(5 + 11 / 12, "feet"),
  10461. default: true
  10462. },
  10463. {
  10464. name: "Minimacro",
  10465. height: math.unit(17 + 9 / 12, "feet")
  10466. },
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(177.5, "feet")
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(152, "miles")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(6.5, "inches"),
  10482. weight: math.unit(13, "oz"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/dafydd-tomos/front.svg",
  10486. extra: 2990 / 2603,
  10487. bottom: 0.03
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Micro",
  10494. height: math.unit(6.5, "inches"),
  10495. default: true
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(6, "feet"),
  10504. weight: math.unit(150, "lb"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/splinter/front.svg",
  10508. extra: 2990 / 2882,
  10509. bottom: 0.04
  10510. }
  10511. },
  10512. back: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(150, "lb"),
  10515. name: "Back",
  10516. image: {
  10517. source: "./media/characters/splinter/back.svg",
  10518. extra: 2990 / 2882,
  10519. bottom: 0.04
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(6, "feet")
  10527. },
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(230, "meters"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(4 + 10 / 12, "feet"),
  10540. weight: math.unit(480, "lb"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/snow-gabumon/front.svg",
  10544. extra: 1140 / 963,
  10545. bottom: 0.058
  10546. }
  10547. },
  10548. back: {
  10549. height: math.unit(4 + 10 / 12, "feet"),
  10550. weight: math.unit(480, "lb"),
  10551. name: "Back",
  10552. image: {
  10553. source: "./media/characters/snow-gabumon/back.svg",
  10554. extra: 1115 / 962,
  10555. bottom: 0.041
  10556. }
  10557. },
  10558. frontUndresed: {
  10559. height: math.unit(4 + 10 / 12, "feet"),
  10560. weight: math.unit(480, "lb"),
  10561. name: "Front (Undressed)",
  10562. image: {
  10563. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10564. extra: 1061 / 960,
  10565. bottom: 0.045
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Micro",
  10572. height: math.unit(1, "inch")
  10573. },
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(4 + 10 / 12, "feet"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(200, "feet")
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(120, "miles")
  10586. },
  10587. {
  10588. name: "Gigamacro",
  10589. height: math.unit(9800, "miles")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(1.7, "meters"),
  10598. weight: math.unit(140, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/moody/front.svg",
  10602. extra: 3226 / 3007,
  10603. bottom: 0.087
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Micro",
  10610. height: math.unit(1, "mm")
  10611. },
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(1.7, "meters"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(80, "meters")
  10620. },
  10621. {
  10622. name: "Macro+",
  10623. height: math.unit(500, "meters")
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10629. {
  10630. front: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(150, "lb"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/zyas/front.svg",
  10636. extra: 1180 / 1120,
  10637. bottom: 0.045
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(10, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(500, "feet")
  10650. },
  10651. {
  10652. name: "Megamacro",
  10653. height: math.unit(5, "miles")
  10654. },
  10655. {
  10656. name: "Teramacro",
  10657. height: math.unit(150000, "miles")
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(150, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/cuon/front.svg",
  10670. extra: 1390 / 1320,
  10671. bottom: 0.008
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Micro",
  10678. height: math.unit(3, "inches")
  10679. },
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(18 + 9 / 12, "feet"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(360, "feet")
  10688. },
  10689. {
  10690. name: "Megamacro",
  10691. height: math.unit(360, "miles")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(2.4, "meters"),
  10700. weight: math.unit(70, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/nyanuxk/front.svg",
  10704. extra: 1172 / 1084,
  10705. bottom: 0.065
  10706. }
  10707. },
  10708. side: {
  10709. height: math.unit(2.4, "meters"),
  10710. weight: math.unit(70, "kg"),
  10711. name: "Side",
  10712. image: {
  10713. source: "./media/characters/nyanuxk/side.svg",
  10714. extra: 1190 / 1132,
  10715. bottom: 0.007
  10716. }
  10717. },
  10718. back: {
  10719. height: math.unit(2.4, "meters"),
  10720. weight: math.unit(70, "kg"),
  10721. name: "Back",
  10722. image: {
  10723. source: "./media/characters/nyanuxk/back.svg",
  10724. extra: 1200 / 1141,
  10725. bottom: 0.015
  10726. }
  10727. },
  10728. foot: {
  10729. height: math.unit(0.52, "meters"),
  10730. name: "Foot",
  10731. image: {
  10732. source: "./media/characters/nyanuxk/foot.svg"
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Micro",
  10739. height: math.unit(2, "cm")
  10740. },
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(2.4, "meters"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Smaller Macro",
  10748. height: math.unit(120, "meters")
  10749. },
  10750. {
  10751. name: "Bigger Macro",
  10752. height: math.unit(1.2, "km")
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(15, "kilometers")
  10757. },
  10758. {
  10759. name: "Gigamacro",
  10760. height: math.unit(2000, "km")
  10761. },
  10762. {
  10763. name: "Teramacro",
  10764. height: math.unit(500000, "km")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10770. {
  10771. side: {
  10772. height: math.unit(6, "feet"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/ailbhe/side.svg",
  10776. extra: 757 / 464,
  10777. bottom: 0.041
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(1.07, "meters"),
  10785. default: true
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(120, "kg"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/zevulfius/front.svg",
  10798. extra: 965 / 903
  10799. }
  10800. },
  10801. side: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(120, "kg"),
  10804. name: "Side",
  10805. image: {
  10806. source: "./media/characters/zevulfius/side.svg",
  10807. extra: 939 / 900
  10808. }
  10809. },
  10810. back: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(120, "kg"),
  10813. name: "Back",
  10814. image: {
  10815. source: "./media/characters/zevulfius/back.svg",
  10816. extra: 918 / 854,
  10817. bottom: 0.005
  10818. }
  10819. },
  10820. foot: {
  10821. height: math.unit(6 / 3.72, "feet"),
  10822. name: "Foot",
  10823. image: {
  10824. source: "./media/characters/zevulfius/foot.svg"
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Macro",
  10831. height: math.unit(750, "meters")
  10832. },
  10833. {
  10834. name: "Megamacro",
  10835. height: math.unit(20, "km"),
  10836. default: true
  10837. },
  10838. {
  10839. name: "Gigamacro",
  10840. height: math.unit(2000, "km")
  10841. },
  10842. {
  10843. name: "Teramacro",
  10844. height: math.unit(250000, "km")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(100, "feet"),
  10853. weight: math.unit(350, "kg"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/rikes/front.svg",
  10857. extra: 1565 / 1483,
  10858. bottom: 0.017
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Macro",
  10865. height: math.unit(100, "feet"),
  10866. default: true
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(8, "feet"),
  10875. weight: math.unit(356, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/adam-silver-mane/front.svg",
  10879. extra: 1036/937,
  10880. bottom: 63/1099
  10881. }
  10882. },
  10883. side: {
  10884. height: math.unit(8, "feet"),
  10885. weight: math.unit(356, "lb"),
  10886. name: "Side",
  10887. image: {
  10888. source: "./media/characters/adam-silver-mane/side.svg",
  10889. extra: 997/901,
  10890. bottom: 59/1056
  10891. }
  10892. },
  10893. frontNsfw: {
  10894. height: math.unit(8, "feet"),
  10895. weight: math.unit(356, "lb"),
  10896. name: "Front (NSFW)",
  10897. image: {
  10898. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10899. extra: 1036/937,
  10900. bottom: 63/1099
  10901. }
  10902. },
  10903. sideNsfw: {
  10904. height: math.unit(8, "feet"),
  10905. weight: math.unit(356, "lb"),
  10906. name: "Side (NSFW)",
  10907. image: {
  10908. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10909. extra: 997/901,
  10910. bottom: 59/1056
  10911. }
  10912. },
  10913. dick: {
  10914. height: math.unit(2.1, "feet"),
  10915. name: "Dick",
  10916. image: {
  10917. source: "./media/characters/adam-silver-mane/dick.svg"
  10918. }
  10919. },
  10920. taur: {
  10921. height: math.unit(16, "feet"),
  10922. weight: math.unit(1500, "kg"),
  10923. name: "Taur",
  10924. image: {
  10925. source: "./media/characters/adam-silver-mane/taur.svg",
  10926. extra: 1713 / 1571,
  10927. bottom: 0.01
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(8, "feet")
  10935. },
  10936. {
  10937. name: "Minimacro",
  10938. height: math.unit(80, "feet")
  10939. },
  10940. {
  10941. name: "MDA",
  10942. height: math.unit(80, "meters")
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(800, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Megamacro",
  10951. height: math.unit(8000, "feet")
  10952. },
  10953. {
  10954. name: "Gigamacro",
  10955. height: math.unit(800, "miles")
  10956. },
  10957. {
  10958. name: "Teramacro",
  10959. height: math.unit(80000, "miles")
  10960. },
  10961. {
  10962. name: "Celestial",
  10963. height: math.unit(8e6, "miles")
  10964. },
  10965. {
  10966. name: "Star Dragon",
  10967. height: math.unit(800000, "parsecs")
  10968. },
  10969. {
  10970. name: "Godly",
  10971. height: math.unit(800, "teraparsecs")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(150, "lb"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/ky'owin/front.svg",
  10984. extra: 3888 / 3068,
  10985. bottom: 0.015
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(6 + 8 / 12, "feet")
  10993. },
  10994. {
  10995. name: "Large",
  10996. height: math.unit(68, "feet")
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(132, "feet")
  11001. },
  11002. {
  11003. name: "Macro+",
  11004. height: math.unit(340, "feet")
  11005. },
  11006. {
  11007. name: "Macro++",
  11008. height: math.unit(680, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(1, "mile")
  11014. },
  11015. {
  11016. name: "Megamacro+",
  11017. height: math.unit(10, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(4, "feet"),
  11026. weight: math.unit(50, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/mal/front.svg",
  11030. extra: 785 / 724,
  11031. bottom: 0.07
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Micro",
  11038. height: math.unit(4, "inches")
  11039. },
  11040. {
  11041. name: "Normal",
  11042. height: math.unit(4, "feet"),
  11043. default: true
  11044. },
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(200, "feet")
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11053. {
  11054. front: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(150, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/jordan-deware/front.svg",
  11060. extra: 1191 / 1012
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Nano",
  11067. height: math.unit(0.01, "mm")
  11068. },
  11069. {
  11070. name: "Minimicro",
  11071. height: math.unit(1, "mm")
  11072. },
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(0.5, "inches")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(4, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Minimacro",
  11084. height: math.unit(40, "meters")
  11085. },
  11086. {
  11087. name: "Small Macro",
  11088. height: math.unit(400, "meters")
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(4, "miles")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(40, "miles")
  11097. },
  11098. {
  11099. name: "Megamacro+",
  11100. height: math.unit(400, "miles")
  11101. },
  11102. {
  11103. name: "Gigamacro",
  11104. height: math.unit(400000, "miles")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11110. {
  11111. side: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Side",
  11115. image: {
  11116. source: "./media/characters/kimiko/side.svg",
  11117. extra: 600 / 358
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(15, "feet"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(220, "feet")
  11130. },
  11131. {
  11132. name: "Macro+",
  11133. height: math.unit(1450, "feet")
  11134. },
  11135. {
  11136. name: "Megamacro",
  11137. height: math.unit(11500, "feet")
  11138. },
  11139. {
  11140. name: "Gigamacro",
  11141. height: math.unit(9500, "miles")
  11142. },
  11143. {
  11144. name: "Teramacro",
  11145. height: math.unit(2208005005, "miles")
  11146. },
  11147. {
  11148. name: "Examacro",
  11149. height: math.unit(2750, "parsecs")
  11150. },
  11151. {
  11152. name: "Zettamacro",
  11153. height: math.unit(101500, "parsecs")
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(70, "kg"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/andrew-sleepy/front.svg"
  11166. }
  11167. },
  11168. side: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(70, "kg"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/andrew-sleepy/side.svg"
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(1, "mm"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/judio/front.svg",
  11194. extra: 1258 / 1110
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(5 + 6 / 12, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(1000, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(10, "miles")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11216. {
  11217. frontDressed: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(68, "kg"),
  11220. name: "Front (Dressed)",
  11221. image: {
  11222. source: "./media/characters/nomaxice/front-dressed.svg",
  11223. extra: 1137/824,
  11224. bottom: 74/1211
  11225. }
  11226. },
  11227. frontShorts: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(68, "kg"),
  11230. name: "Front (Shorts)",
  11231. image: {
  11232. source: "./media/characters/nomaxice/front-shorts.svg",
  11233. extra: 1137/824,
  11234. bottom: 74/1211
  11235. }
  11236. },
  11237. back: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(68, "kg"),
  11240. name: "Back",
  11241. image: {
  11242. source: "./media/characters/nomaxice/back.svg",
  11243. extra: 822/786,
  11244. bottom: 39/861
  11245. }
  11246. },
  11247. hand: {
  11248. height: math.unit(0.565, "feet"),
  11249. name: "Hand",
  11250. image: {
  11251. source: "./media/characters/nomaxice/hand.svg"
  11252. }
  11253. },
  11254. foot: {
  11255. height: math.unit(1, "feet"),
  11256. name: "Foot",
  11257. image: {
  11258. source: "./media/characters/nomaxice/foot.svg"
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Micro",
  11265. height: math.unit(8, "cm")
  11266. },
  11267. {
  11268. name: "Norm",
  11269. height: math.unit(1.82, "m")
  11270. },
  11271. {
  11272. name: "Norm+",
  11273. height: math.unit(8.8, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Big",
  11278. height: math.unit(8, "meters")
  11279. },
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(18, "meters")
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(88, "meters")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(12, "feet"),
  11295. weight: math.unit(1.5, "tons"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/dydros/front.svg",
  11299. extra: 863 / 800,
  11300. bottom: 0.015
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(12, "feet"),
  11305. weight: math.unit(1.5, "tons"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/dydros/back.svg",
  11309. extra: 900 / 843,
  11310. bottom: 0.005
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(12, "feet"),
  11318. default: true
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(100, "kg"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/riggi/front.svg",
  11331. extra: 5787 / 5303
  11332. }
  11333. },
  11334. hyper: {
  11335. height: math.unit(6 * 5 / 3, "feet"),
  11336. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11337. name: "Hyper",
  11338. image: {
  11339. source: "./media/characters/riggi/hyper.svg",
  11340. extra: 3595 / 3485
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Small Macro",
  11347. height: math.unit(50, "feet")
  11348. },
  11349. {
  11350. name: "Default",
  11351. height: math.unit(200, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Loom",
  11356. height: math.unit(10000, "feet")
  11357. },
  11358. {
  11359. name: "Cruising Altitude",
  11360. height: math.unit(30000, "feet")
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(100, "miles")
  11365. },
  11366. {
  11367. name: "Continent Sized",
  11368. height: math.unit(2800, "miles")
  11369. },
  11370. {
  11371. name: "Earth Sized",
  11372. height: math.unit(8000, "miles")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(250, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/alexi/front.svg",
  11385. extra: 3483 / 3291,
  11386. bottom: 0.04
  11387. }
  11388. },
  11389. back: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(250, "lb"),
  11392. name: "Back",
  11393. image: {
  11394. source: "./media/characters/alexi/back.svg",
  11395. extra: 3533 / 3356,
  11396. bottom: 0.021
  11397. }
  11398. },
  11399. frontTransforming: {
  11400. height: math.unit(8.58, "feet"),
  11401. weight: math.unit(1300, "lb"),
  11402. name: "Transforming",
  11403. image: {
  11404. source: "./media/characters/alexi/front-transforming.svg",
  11405. extra: 437 / 409,
  11406. bottom: 19 / 458.66
  11407. }
  11408. },
  11409. frontTransformed: {
  11410. height: math.unit(12.5, "feet"),
  11411. weight: math.unit(4000, "lb"),
  11412. name: "Transformed",
  11413. image: {
  11414. source: "./media/characters/alexi/front-transformed.svg",
  11415. extra: 639 / 614,
  11416. bottom: 30.55 / 671
  11417. }
  11418. },
  11419. },
  11420. [
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(14, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Minimacro",
  11428. height: math.unit(30, "meters")
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(500, "meters")
  11433. },
  11434. {
  11435. name: "Megamacro",
  11436. height: math.unit(9000, "km")
  11437. },
  11438. {
  11439. name: "Teramacro",
  11440. height: math.unit(384000, "km")
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11446. {
  11447. front: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/kayroo/front.svg",
  11453. extra: 1153 / 1038,
  11454. bottom: 0.06
  11455. }
  11456. },
  11457. foot: {
  11458. height: math.unit(6, "feet"),
  11459. weight: math.unit(150, "lb"),
  11460. name: "Foot",
  11461. image: {
  11462. source: "./media/characters/kayroo/foot.svg"
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(8, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Minimacro",
  11474. height: math.unit(250, "feet")
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(2800, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(5200, "feet")
  11483. },
  11484. {
  11485. name: "Gigamacro",
  11486. height: math.unit(27000, "feet")
  11487. },
  11488. {
  11489. name: "Omega",
  11490. height: math.unit(45000, "feet")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(18, "feet"),
  11499. weight: math.unit(5800, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/rhys/front.svg",
  11503. extra: 3386 / 3090,
  11504. bottom: 0.07
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(18, "feet"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Working Size",
  11516. height: math.unit(200, "feet")
  11517. },
  11518. {
  11519. name: "Demolition Size",
  11520. height: math.unit(2000, "feet")
  11521. },
  11522. {
  11523. name: "Maximum Licensed Size",
  11524. height: math.unit(5, "miles")
  11525. },
  11526. {
  11527. name: "Maximum Observed Size",
  11528. height: math.unit(10, "yottameters")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(250, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/toto/front.svg",
  11541. extra: 527 / 479,
  11542. bottom: 0.05
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(3, "feet")
  11550. },
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(10, "feet")
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(150, "feet"),
  11558. default: true
  11559. },
  11560. {
  11561. name: "Megamacro",
  11562. height: math.unit(1200, "feet")
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "King", species: ["lion"], tags: ["anthro"] },
  11568. {
  11569. back: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(150, "lb"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/king/back.svg"
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(2, "inches")
  11582. },
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(8, "feet")
  11586. },
  11587. {
  11588. name: "Macro",
  11589. height: math.unit(200, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(50, "miles")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(11, "feet"),
  11603. weight: math.unit(1400, "lb"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/cordite/front.svg",
  11607. extra: 1919/1827,
  11608. bottom: 40/1959
  11609. }
  11610. },
  11611. side: {
  11612. height: math.unit(11, "feet"),
  11613. weight: math.unit(1400, "lb"),
  11614. name: "Side",
  11615. image: {
  11616. source: "./media/characters/cordite/side.svg",
  11617. extra: 1908/1793,
  11618. bottom: 38/1946
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(11, "feet"),
  11623. weight: math.unit(1400, "lb"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/cordite/back.svg",
  11627. extra: 1938/1837,
  11628. bottom: 10/1948
  11629. }
  11630. },
  11631. feral: {
  11632. height: math.unit(2, "feet"),
  11633. weight: math.unit(90, "lb"),
  11634. name: "Feral",
  11635. image: {
  11636. source: "./media/characters/cordite/feral.svg",
  11637. extra: 1260 / 755,
  11638. bottom: 0.05
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(11, "feet"),
  11646. default: true
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/pianostrong/front.svg",
  11659. extra: 6577 / 6254,
  11660. bottom: 0.02
  11661. }
  11662. },
  11663. side: {
  11664. height: math.unit(6, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Side",
  11667. image: {
  11668. source: "./media/characters/pianostrong/side.svg",
  11669. extra: 6106 / 5730
  11670. }
  11671. },
  11672. back: {
  11673. height: math.unit(6, "feet"),
  11674. weight: math.unit(150, "lb"),
  11675. name: "Back",
  11676. image: {
  11677. source: "./media/characters/pianostrong/back.svg",
  11678. extra: 6085 / 5733,
  11679. bottom: 0.01
  11680. }
  11681. },
  11682. },
  11683. [
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(100, "feet")
  11687. },
  11688. {
  11689. name: "Macro+",
  11690. height: math.unit(300, "feet"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Macro++",
  11695. height: math.unit(1000, "feet")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/kona/front.svg",
  11708. extra: 2960 / 2629,
  11709. bottom: 0.005
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Normal",
  11716. height: math.unit(11 + 8 / 12, "feet")
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(850, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Macro+",
  11725. height: math.unit(1.5, "km"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(80, "miles")
  11731. },
  11732. {
  11733. name: "Gigamacro",
  11734. height: math.unit(3500, "miles")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11740. {
  11741. side: {
  11742. height: math.unit(1.9, "meters"),
  11743. weight: math.unit(326, "kg"),
  11744. name: "Side",
  11745. image: {
  11746. source: "./media/characters/levi/side.svg",
  11747. extra: 1704 / 1334,
  11748. bottom: 0.02
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(1.9, "meters"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(20, "meters")
  11761. },
  11762. {
  11763. name: "Macro+",
  11764. height: math.unit(200, "meters")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(2, "km")
  11769. },
  11770. {
  11771. name: "Megamacro+",
  11772. height: math.unit(20, "km")
  11773. },
  11774. {
  11775. name: "Gigamacro",
  11776. height: math.unit(2500, "km")
  11777. },
  11778. {
  11779. name: "Gigamacro+",
  11780. height: math.unit(120000, "km")
  11781. },
  11782. {
  11783. name: "Teramacro",
  11784. height: math.unit(7.77e6, "km")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(6 + 4/12, "feet"),
  11793. weight: math.unit(190, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/bmc/front.svg",
  11797. extra: 1626/1472,
  11798. bottom: 79/1705
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(6 + 4/12, "feet"),
  11803. weight: math.unit(190, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/bmc/back.svg",
  11807. extra: 1640/1479,
  11808. bottom: 45/1685
  11809. }
  11810. },
  11811. frontArmor: {
  11812. height: math.unit(6 + 4/12, "feet"),
  11813. weight: math.unit(190, "lb"),
  11814. name: "Front-armor",
  11815. image: {
  11816. source: "./media/characters/bmc/front-armor.svg",
  11817. extra: 1538/1468,
  11818. bottom: 79/1617
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Human-sized",
  11825. height: math.unit(6 + 4 / 12, "feet")
  11826. },
  11827. {
  11828. name: "Interactive Size",
  11829. height: math.unit(25, "feet")
  11830. },
  11831. {
  11832. name: "Small",
  11833. height: math.unit(250, "feet")
  11834. },
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(1250, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Good Day",
  11842. height: math.unit(88, "miles")
  11843. },
  11844. {
  11845. name: "Largest Measured Size",
  11846. height: math.unit(105.960, "galaxies")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(20, "feet"),
  11855. weight: math.unit(2016, "kg"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/sven-the-kaiju/front.svg",
  11859. extra: 1277/1250,
  11860. bottom: 35/1312
  11861. }
  11862. },
  11863. mouth: {
  11864. height: math.unit(1.85, "feet"),
  11865. name: "Mouth",
  11866. image: {
  11867. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Fairy",
  11874. height: math.unit(6, "inches")
  11875. },
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(20, "feet"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Rampage",
  11883. height: math.unit(200, "feet")
  11884. },
  11885. {
  11886. name: "Archfey Forest Guardian",
  11887. height: math.unit(1, "mile")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(4, "meters"),
  11896. weight: math.unit(2, "tons"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/marik/front.svg",
  11900. extra: 1057 / 1003,
  11901. bottom: 0.08
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(4, "meters"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(20, "meters")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(50, "km")
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(100, "km")
  11922. },
  11923. {
  11924. name: "Alpha Macro",
  11925. height: math.unit(7.88e7, "yottameters")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(110, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/mel/front.svg",
  11938. extra: 736 / 617,
  11939. bottom: 0.017
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Pico",
  11946. height: math.unit(3, "pm")
  11947. },
  11948. {
  11949. name: "Nano",
  11950. height: math.unit(3, "nm")
  11951. },
  11952. {
  11953. name: "Micro",
  11954. height: math.unit(0.3, "mm"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Micro+",
  11959. height: math.unit(3, "mm")
  11960. },
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(5 + 10.5 / 12, "feet")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11969. {
  11970. kaiju: {
  11971. height: math.unit(1.75, "meters"),
  11972. weight: math.unit(55, "kg"),
  11973. name: "Kaiju",
  11974. image: {
  11975. source: "./media/characters/lykonous/kaiju.svg",
  11976. extra: 1055 / 946,
  11977. bottom: 0.135
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(2.5, "meters"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Kaiju Dragon",
  11989. height: math.unit(60, "meters")
  11990. },
  11991. {
  11992. name: "Mega Kaiju",
  11993. height: math.unit(120, "km")
  11994. },
  11995. {
  11996. name: "Giga Kaiju",
  11997. height: math.unit(200, "megameters")
  11998. },
  11999. {
  12000. name: "Terra Kaiju",
  12001. height: math.unit(400, "gigameters")
  12002. },
  12003. {
  12004. name: "Kaiju Dragon God",
  12005. height: math.unit(13000, "exaparsecs")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/blü/front.svg",
  12018. extra: 1883 / 1564,
  12019. bottom: 0.031
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(13, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Big Boi",
  12031. height: math.unit(150, "meters")
  12032. },
  12033. {
  12034. name: "Mini Stomper",
  12035. height: math.unit(300, "meters")
  12036. },
  12037. {
  12038. name: "Macro",
  12039. height: math.unit(1000, "meters")
  12040. },
  12041. {
  12042. name: "Megamacro",
  12043. height: math.unit(11000, "meters")
  12044. },
  12045. {
  12046. name: "Gigamacro",
  12047. height: math.unit(11000, "km")
  12048. },
  12049. {
  12050. name: "Teramacro",
  12051. height: math.unit(420000, "km")
  12052. },
  12053. {
  12054. name: "Examacro",
  12055. height: math.unit(120, "parsecs")
  12056. },
  12057. {
  12058. name: "God Tho",
  12059. height: math.unit(98000000000, "parsecs")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12065. {
  12066. taurFront: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(200, "lb"),
  12069. name: "Taur (Front)",
  12070. image: {
  12071. source: "./media/characters/scales/taur-front.svg",
  12072. extra: 1,
  12073. bottom: 0.05
  12074. }
  12075. },
  12076. taurBack: {
  12077. height: math.unit(6, "feet"),
  12078. weight: math.unit(200, "lb"),
  12079. name: "Taur (Back)",
  12080. image: {
  12081. source: "./media/characters/scales/taur-back.svg",
  12082. extra: 1,
  12083. bottom: 0.08
  12084. }
  12085. },
  12086. anthro: {
  12087. height: math.unit(6 * 7 / 12, "feet"),
  12088. weight: math.unit(100, "lb"),
  12089. name: "Anthro",
  12090. image: {
  12091. source: "./media/characters/scales/anthro.svg",
  12092. extra: 1,
  12093. bottom: 0.06
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(12, "feet"),
  12101. default: true
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/koragos/front.svg",
  12114. extra: 841 / 794,
  12115. bottom: 0.035
  12116. }
  12117. },
  12118. back: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(150, "lb"),
  12121. name: "Back",
  12122. image: {
  12123. source: "./media/characters/koragos/back.svg",
  12124. extra: 841 / 810,
  12125. bottom: 0.022
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Normal",
  12132. height: math.unit(6 + 11 / 12, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Macro",
  12137. height: math.unit(490, "feet")
  12138. },
  12139. {
  12140. name: "Megamacro",
  12141. height: math.unit(10, "miles")
  12142. },
  12143. {
  12144. name: "Gigamacro",
  12145. height: math.unit(50, "miles")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(250, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/xylrem/front.svg",
  12158. extra: 3323 / 3050,
  12159. bottom: 0.065
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Micro",
  12166. height: math.unit(4, "feet")
  12167. },
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(16, "feet"),
  12171. default: true
  12172. },
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(2720, "feet")
  12176. },
  12177. {
  12178. name: "Megamacro",
  12179. height: math.unit(25000, "miles")
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(8, "feet"),
  12188. weight: math.unit(250, "kg"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/ikideru/front.svg",
  12192. extra: 930 / 870,
  12193. bottom: 0.087
  12194. }
  12195. },
  12196. back: {
  12197. height: math.unit(8, "feet"),
  12198. weight: math.unit(250, "kg"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/ikideru/back.svg",
  12202. extra: 919 / 852,
  12203. bottom: 0.055
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Rare",
  12210. height: math.unit(8, "feet"),
  12211. default: true
  12212. },
  12213. {
  12214. name: "Playful Loom",
  12215. height: math.unit(80, "feet")
  12216. },
  12217. {
  12218. name: "City Leaner",
  12219. height: math.unit(230, "feet")
  12220. },
  12221. {
  12222. name: "Megamacro",
  12223. height: math.unit(2500, "feet")
  12224. },
  12225. {
  12226. name: "Gigamacro",
  12227. height: math.unit(26400, "feet")
  12228. },
  12229. {
  12230. name: "Tectonic Shifter",
  12231. height: math.unit(1.7, "megameters")
  12232. },
  12233. {
  12234. name: "Planet Carer",
  12235. height: math.unit(21, "megameters")
  12236. },
  12237. {
  12238. name: "God",
  12239. height: math.unit(11157.22, "parsecs")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(120, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/neo/front.svg"
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Micro",
  12258. height: math.unit(2, "inches"),
  12259. default: true
  12260. },
  12261. {
  12262. name: "Human Size",
  12263. height: math.unit(5 + 8 / 12, "feet")
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12269. {
  12270. front: {
  12271. height: math.unit(13 + 10 / 12, "feet"),
  12272. weight: math.unit(5320, "lb"),
  12273. name: "Front",
  12274. image: {
  12275. source: "./media/characters/chauncey-chantz/front.svg",
  12276. extra: 1587 / 1435,
  12277. bottom: 0.02
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(13 + 10 / 12, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Macro",
  12289. height: math.unit(45, "feet")
  12290. },
  12291. {
  12292. name: "Megamacro",
  12293. height: math.unit(250, "miles")
  12294. },
  12295. {
  12296. name: "Planetary",
  12297. height: math.unit(10000, "miles")
  12298. },
  12299. {
  12300. name: "Galactic",
  12301. height: math.unit(40000, "parsecs")
  12302. },
  12303. {
  12304. name: "Universal",
  12305. height: math.unit(1, "yottameter")
  12306. },
  12307. ]
  12308. ))
  12309. characterMakers.push(() => makeCharacter(
  12310. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12311. {
  12312. front: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Front",
  12316. image: {
  12317. source: "./media/characters/epifox/front.svg",
  12318. extra: 1,
  12319. bottom: 0.075
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Micro",
  12326. height: math.unit(6, "inches")
  12327. },
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(12, "feet"),
  12331. default: true
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(3810, "feet")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(500, "miles")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(1.8796, "m"),
  12348. weight: math.unit(230, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/colin-t/front.svg",
  12352. extra: 1272 / 1193,
  12353. bottom: 0.07
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Micro",
  12360. height: math.unit(0.571, "meters")
  12361. },
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(1.8796, "meters"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Tall",
  12369. height: math.unit(4, "meters")
  12370. },
  12371. {
  12372. name: "Macro",
  12373. height: math.unit(67.241, "meters")
  12374. },
  12375. {
  12376. name: "Megamacro",
  12377. height: math.unit(371.856, "meters")
  12378. },
  12379. {
  12380. name: "Planetary",
  12381. height: math.unit(12631.5689, "km")
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(1.85, "meters"),
  12390. weight: math.unit(80, "kg"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/matvei/front.svg",
  12394. extra: 614 / 594,
  12395. bottom: 0.01
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(1.85, "meters"),
  12403. default: true
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(5 + 9 / 12, "feet"),
  12412. weight: math.unit(70, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/quincy/front.svg",
  12416. extra: 3041 / 2751
  12417. }
  12418. },
  12419. back: {
  12420. height: math.unit(5 + 9 / 12, "feet"),
  12421. weight: math.unit(70, "lb"),
  12422. name: "Back",
  12423. image: {
  12424. source: "./media/characters/quincy/back.svg",
  12425. extra: 3041 / 2751
  12426. }
  12427. },
  12428. flying: {
  12429. height: math.unit(5 + 4 / 12, "feet"),
  12430. weight: math.unit(70, "lb"),
  12431. name: "Flying",
  12432. image: {
  12433. source: "./media/characters/quincy/flying.svg",
  12434. extra: 1044 / 930
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Micro",
  12441. height: math.unit(3, "cm")
  12442. },
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(5 + 9 / 12, "feet")
  12446. },
  12447. {
  12448. name: "Macro",
  12449. height: math.unit(200, "meters"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(1000, "meters")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(3 + 11/12, "feet"),
  12463. weight: math.unit(50, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/vanrel/front.svg",
  12467. extra: 1104/949,
  12468. bottom: 52/1156
  12469. }
  12470. },
  12471. back: {
  12472. height: math.unit(3 + 11/12, "feet"),
  12473. weight: math.unit(50, "lb"),
  12474. name: "Back",
  12475. image: {
  12476. source: "./media/characters/vanrel/back.svg",
  12477. extra: 1119/976,
  12478. bottom: 37/1156
  12479. }
  12480. },
  12481. tome: {
  12482. height: math.unit(1.35, "feet"),
  12483. weight: math.unit(10, "lb"),
  12484. name: "Vanrel's Tome",
  12485. rename: true,
  12486. image: {
  12487. source: "./media/characters/vanrel/tome.svg"
  12488. }
  12489. },
  12490. beans: {
  12491. height: math.unit(0.89, "feet"),
  12492. name: "Beans",
  12493. image: {
  12494. source: "./media/characters/vanrel/beans.svg"
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(3 + 11/12, "feet"),
  12502. default: true
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(7 + 5 / 12, "feet"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/kuiper-vanrel/front.svg",
  12514. extra: 1219/1169,
  12515. bottom: 69/1288
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(7 + 5 / 12, "feet"),
  12520. name: "Back",
  12521. image: {
  12522. source: "./media/characters/kuiper-vanrel/back.svg",
  12523. extra: 1236/1193,
  12524. bottom: 27/1263
  12525. }
  12526. },
  12527. foot: {
  12528. height: math.unit(0.55, "meters"),
  12529. name: "Foot",
  12530. image: {
  12531. source: "./media/characters/kuiper-vanrel/foot.svg",
  12532. }
  12533. },
  12534. battle: {
  12535. height: math.unit(6.824, "feet"),
  12536. name: "Battle",
  12537. image: {
  12538. source: "./media/characters/kuiper-vanrel/battle.svg",
  12539. extra: 1466 / 1327,
  12540. bottom: 29 / 1492.5
  12541. }
  12542. },
  12543. meerkui: {
  12544. height: math.unit(18, "inches"),
  12545. name: "Meerkui",
  12546. image: {
  12547. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12548. extra: 1354/1289,
  12549. bottom: 69/1423
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(7 + 5 / 12, "feet"),
  12557. default: true
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(8 + 5 / 12, "feet"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/keset-vanrel/front.svg",
  12569. extra: 1231/1148,
  12570. bottom: 82/1313
  12571. }
  12572. },
  12573. back: {
  12574. height: math.unit(8 + 5 / 12, "feet"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/keset-vanrel/back.svg",
  12578. extra: 1240/1174,
  12579. bottom: 33/1273
  12580. }
  12581. },
  12582. hand: {
  12583. height: math.unit(0.6, "meters"),
  12584. name: "Hand",
  12585. image: {
  12586. source: "./media/characters/keset-vanrel/hand.svg"
  12587. }
  12588. },
  12589. foot: {
  12590. height: math.unit(0.94978, "meters"),
  12591. name: "Foot",
  12592. image: {
  12593. source: "./media/characters/keset-vanrel/foot.svg"
  12594. }
  12595. },
  12596. battle: {
  12597. height: math.unit(7.408, "feet"),
  12598. name: "Battle",
  12599. image: {
  12600. source: "./media/characters/keset-vanrel/battle.svg",
  12601. extra: 1890 / 1386,
  12602. bottom: 73.28 / 1970
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(8 + 5 / 12, "feet"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/neos/front.svg",
  12623. extra: 1696 / 992,
  12624. bottom: 0.14
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(54, "cm"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Macro",
  12636. height: math.unit(100, "m")
  12637. },
  12638. {
  12639. name: "Megamacro",
  12640. height: math.unit(10, "km")
  12641. },
  12642. {
  12643. name: "Megamacro+",
  12644. height: math.unit(100, "km")
  12645. },
  12646. {
  12647. name: "Gigamacro",
  12648. height: math.unit(100, "Mm")
  12649. },
  12650. {
  12651. name: "Teramacro",
  12652. height: math.unit(100, "Gm")
  12653. },
  12654. {
  12655. name: "Examacro",
  12656. height: math.unit(100, "Em")
  12657. },
  12658. {
  12659. name: "Godly",
  12660. height: math.unit(10000, "Ym")
  12661. },
  12662. {
  12663. name: "Beyond Godly",
  12664. height: math.unit(25, "multiverses")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12670. {
  12671. feminine: {
  12672. height: math.unit(5, "feet"),
  12673. weight: math.unit(100, "lb"),
  12674. name: "Feminine",
  12675. image: {
  12676. source: "./media/characters/sammy-mouse/feminine.svg",
  12677. extra: 2526 / 2425,
  12678. bottom: 0.123
  12679. }
  12680. },
  12681. masculine: {
  12682. height: math.unit(5, "feet"),
  12683. weight: math.unit(100, "lb"),
  12684. name: "Masculine",
  12685. image: {
  12686. source: "./media/characters/sammy-mouse/masculine.svg",
  12687. extra: 2526 / 2425,
  12688. bottom: 0.123
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Micro",
  12695. height: math.unit(5, "inches")
  12696. },
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(5, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Macro",
  12704. height: math.unit(60, "feet")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(4, "feet"),
  12713. weight: math.unit(50, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/kole/front.svg",
  12717. extra: 1423 / 1303,
  12718. bottom: 0.025
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(4, "feet"),
  12723. weight: math.unit(50, "lb"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/kole/back.svg",
  12727. extra: 1426 / 1280,
  12728. bottom: 0.02
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Normal",
  12735. height: math.unit(4, "feet"),
  12736. default: true
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(2.5, "feet"),
  12745. weight: math.unit(32, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/rufran/front.svg",
  12749. extra: 1313/885,
  12750. bottom: 94/1407
  12751. }
  12752. },
  12753. side: {
  12754. height: math.unit(2.5, "feet"),
  12755. weight: math.unit(32, "lb"),
  12756. name: "Side",
  12757. image: {
  12758. source: "./media/characters/rufran/side.svg",
  12759. extra: 1109/852,
  12760. bottom: 118/1227
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(2.5, "feet"),
  12765. weight: math.unit(32, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/rufran/back.svg",
  12769. extra: 1280/878,
  12770. bottom: 131/1411
  12771. }
  12772. },
  12773. mouth: {
  12774. height: math.unit(1.13, "feet"),
  12775. name: "Mouth",
  12776. image: {
  12777. source: "./media/characters/rufran/mouth.svg"
  12778. }
  12779. },
  12780. foot: {
  12781. height: math.unit(1.33, "feet"),
  12782. name: "Foot",
  12783. image: {
  12784. source: "./media/characters/rufran/foot.svg"
  12785. }
  12786. },
  12787. koboldFront: {
  12788. height: math.unit(2 + 6 / 12, "feet"),
  12789. weight: math.unit(20, "lb"),
  12790. name: "Front (Kobold)",
  12791. image: {
  12792. source: "./media/characters/rufran/kobold-front.svg",
  12793. extra: 2041 / 1839,
  12794. bottom: 0.055
  12795. }
  12796. },
  12797. koboldBack: {
  12798. height: math.unit(2 + 6 / 12, "feet"),
  12799. weight: math.unit(20, "lb"),
  12800. name: "Back (Kobold)",
  12801. image: {
  12802. source: "./media/characters/rufran/kobold-back.svg",
  12803. extra: 2054 / 1839,
  12804. bottom: 0.01
  12805. }
  12806. },
  12807. koboldHand: {
  12808. height: math.unit(0.2166, "meters"),
  12809. name: "Hand (Kobold)",
  12810. image: {
  12811. source: "./media/characters/rufran/kobold-hand.svg"
  12812. }
  12813. },
  12814. koboldFoot: {
  12815. height: math.unit(0.185, "meters"),
  12816. name: "Foot (Kobold)",
  12817. image: {
  12818. source: "./media/characters/rufran/kobold-foot.svg"
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Micro",
  12825. height: math.unit(1, "inch")
  12826. },
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(2 + 6 / 12, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Big",
  12834. height: math.unit(60, "feet")
  12835. },
  12836. {
  12837. name: "Macro",
  12838. height: math.unit(325, "feet")
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(0.3, "meters"),
  12847. weight: math.unit(3.5, "kg"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/chip/front.svg",
  12851. extra: 748 / 674
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(1, "inch"),
  12859. default: true
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12865. {
  12866. side: {
  12867. height: math.unit(2.3, "meters"),
  12868. weight: math.unit(3500, "lb"),
  12869. name: "Side",
  12870. image: {
  12871. source: "./media/characters/torvid/side.svg",
  12872. extra: 1972 / 722,
  12873. bottom: 0.035
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(2.3, "meters"),
  12881. default: true
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(2, "meters"),
  12890. weight: math.unit(150.5, "kg"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/susan/front.svg",
  12894. extra: 693 / 635,
  12895. bottom: 0.05
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Megamacro",
  12902. height: math.unit(505, "miles"),
  12903. default: true
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/raindrops/front.svg",
  12916. extra: 2655 / 2461,
  12917. bottom: 49 / 2705
  12918. }
  12919. },
  12920. back: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Back",
  12924. image: {
  12925. source: "./media/characters/raindrops/back.svg",
  12926. extra: 2574 / 2400,
  12927. bottom: 65 / 2634
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Micro",
  12934. height: math.unit(6, "inches")
  12935. },
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(6 + 2 / 12, "feet")
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(131, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(15, "miles")
  12948. },
  12949. {
  12950. name: "Gigamacro",
  12951. height: math.unit(4000, "miles")
  12952. },
  12953. {
  12954. name: "Teramacro",
  12955. height: math.unit(315000, "miles")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(2.794, "meters"),
  12964. weight: math.unit(325, "kg"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/tezwa/front.svg",
  12968. extra: 2083 / 1906,
  12969. bottom: 0.031
  12970. }
  12971. },
  12972. foot: {
  12973. height: math.unit(0.687, "meters"),
  12974. name: "Foot",
  12975. image: {
  12976. source: "./media/characters/tezwa/foot.svg"
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(9 + 2 / 12, "feet"),
  12984. default: true
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(58, "feet"),
  12993. weight: math.unit(89000, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/typhus/front.svg",
  12997. extra: 816 / 800,
  12998. bottom: 0.065
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Macro",
  13005. height: math.unit(58, "feet"),
  13006. default: true
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(12, "feet"),
  13015. weight: math.unit(6, "tonnes"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/lyra-von-wulf/front.svg",
  13019. extra: 1,
  13020. bottom: 0.10
  13021. }
  13022. },
  13023. frontMecha: {
  13024. height: math.unit(12, "feet"),
  13025. weight: math.unit(12, "tonnes"),
  13026. name: "Front (Mecha)",
  13027. image: {
  13028. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13029. extra: 1,
  13030. bottom: 0.042
  13031. }
  13032. },
  13033. maw: {
  13034. height: math.unit(2.2, "feet"),
  13035. name: "Maw",
  13036. image: {
  13037. source: "./media/characters/lyra-von-wulf/maw.svg"
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(12, "feet"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Classic",
  13049. height: math.unit(50, "feet")
  13050. },
  13051. {
  13052. name: "Macro",
  13053. height: math.unit(500, "feet")
  13054. },
  13055. {
  13056. name: "Megamacro",
  13057. height: math.unit(1, "mile")
  13058. },
  13059. {
  13060. name: "Gigamacro",
  13061. height: math.unit(400, "miles")
  13062. },
  13063. {
  13064. name: "Teramacro",
  13065. height: math.unit(22000, "miles")
  13066. },
  13067. {
  13068. name: "Solarmacro",
  13069. height: math.unit(8600000, "miles")
  13070. },
  13071. {
  13072. name: "Galactic",
  13073. height: math.unit(1057000, "lightyears")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6 + 10 / 12, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/dixon/front.svg",
  13086. extra: 3361 / 3209,
  13087. bottom: 0.01
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(6 + 10 / 12, "feet"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Big",
  13099. height: math.unit(12, "meters")
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(500, "meters")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(2, "km")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(185, "cm"),
  13116. weight: math.unit(68, "kg"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/kauko/front.svg",
  13120. extra: 1455 / 1421,
  13121. bottom: 0.03
  13122. }
  13123. },
  13124. back: {
  13125. height: math.unit(185, "cm"),
  13126. weight: math.unit(68, "kg"),
  13127. name: "Back",
  13128. image: {
  13129. source: "./media/characters/kauko/back.svg",
  13130. extra: 1455 / 1421,
  13131. bottom: 0.004
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(185, "cm"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "kg"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/varg/front.svg",
  13152. extra: 1108 / 1018,
  13153. bottom: 0.0375
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(5, "meters")
  13161. },
  13162. {
  13163. name: "Macro",
  13164. height: math.unit(200, "meters")
  13165. },
  13166. {
  13167. name: "Megamacro",
  13168. height: math.unit(20, "kilometers")
  13169. },
  13170. {
  13171. name: "True Size",
  13172. height: math.unit(211, "km"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Gigamacro",
  13177. height: math.unit(1000, "km")
  13178. },
  13179. {
  13180. name: "Gigamacro+",
  13181. height: math.unit(8000, "km")
  13182. },
  13183. {
  13184. name: "Teramacro",
  13185. height: math.unit(1000000, "km")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(7 + 7 / 12, "feet"),
  13194. weight: math.unit(267, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/dayza/front.svg",
  13198. extra: 1262 / 1200,
  13199. bottom: 0.035
  13200. }
  13201. },
  13202. side: {
  13203. height: math.unit(7 + 7 / 12, "feet"),
  13204. weight: math.unit(267, "lb"),
  13205. name: "Side",
  13206. image: {
  13207. source: "./media/characters/dayza/side.svg",
  13208. extra: 1295 / 1245,
  13209. bottom: 0.05
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(7 + 7 / 12, "feet"),
  13214. weight: math.unit(267, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/dayza/back.svg",
  13218. extra: 1241 / 1170
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Normal",
  13225. height: math.unit(7 + 7 / 12, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(155, "feet")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6 + 5 / 12, "feet"),
  13239. weight: math.unit(160, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/xanthos/front.svg",
  13243. extra: 1,
  13244. bottom: 0.04
  13245. }
  13246. },
  13247. back: {
  13248. height: math.unit(6 + 5 / 12, "feet"),
  13249. weight: math.unit(160, "lb"),
  13250. name: "Back",
  13251. image: {
  13252. source: "./media/characters/xanthos/back.svg",
  13253. extra: 1,
  13254. bottom: 0.03
  13255. }
  13256. },
  13257. hand: {
  13258. height: math.unit(0.928, "feet"),
  13259. name: "Hand",
  13260. image: {
  13261. source: "./media/characters/xanthos/hand.svg"
  13262. }
  13263. },
  13264. foot: {
  13265. height: math.unit(1.286, "feet"),
  13266. name: "Foot",
  13267. image: {
  13268. source: "./media/characters/xanthos/foot.svg"
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(6 + 5 / 12, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Normal+",
  13280. height: math.unit(6, "meters")
  13281. },
  13282. {
  13283. name: "Macro",
  13284. height: math.unit(40, "feet")
  13285. },
  13286. {
  13287. name: "Macro+",
  13288. height: math.unit(200, "meters")
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(20, "km")
  13293. },
  13294. {
  13295. name: "Megamacro+",
  13296. height: math.unit(100, "km")
  13297. },
  13298. {
  13299. name: "Gigamacro",
  13300. height: math.unit(200, "megameters")
  13301. },
  13302. {
  13303. name: "Gigamacro+",
  13304. height: math.unit(1.5, "gigameters")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6 + 3 / 12, "feet"),
  13313. weight: math.unit(215, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/grynn/front.svg",
  13317. extra: 4627 / 4209,
  13318. bottom: 0.047
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Micro",
  13325. height: math.unit(6, "inches")
  13326. },
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(6 + 3 / 12, "feet"),
  13330. default: true
  13331. },
  13332. {
  13333. name: "Big",
  13334. height: math.unit(104, "feet")
  13335. },
  13336. {
  13337. name: "Macro",
  13338. height: math.unit(944, "feet")
  13339. },
  13340. {
  13341. name: "Macro+",
  13342. height: math.unit(9480, "feet")
  13343. },
  13344. {
  13345. name: "Megamacro",
  13346. height: math.unit(78752, "feet")
  13347. },
  13348. {
  13349. name: "Megamacro+",
  13350. height: math.unit(630128, "feet")
  13351. },
  13352. {
  13353. name: "Megamacro++",
  13354. height: math.unit(3150695, "feet")
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(7 + 5 / 12, "feet"),
  13363. weight: math.unit(450, "lb"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/mocha-aura/front.svg",
  13367. extra: 1907 / 1817,
  13368. bottom: 0.04
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(7 + 5 / 12, "feet"),
  13373. weight: math.unit(450, "lb"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/mocha-aura/back.svg",
  13377. extra: 1900 / 1825,
  13378. bottom: 0.045
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Nano",
  13385. height: math.unit(1, "nm")
  13386. },
  13387. {
  13388. name: "Megamicro",
  13389. height: math.unit(1, "mm")
  13390. },
  13391. {
  13392. name: "Micro",
  13393. height: math.unit(3, "inches")
  13394. },
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(7 + 5 / 12, "feet"),
  13398. default: true
  13399. },
  13400. {
  13401. name: "Macro",
  13402. height: math.unit(30, "feet")
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(3500, "feet")
  13407. },
  13408. {
  13409. name: "Teramacro",
  13410. height: math.unit(500000, "miles")
  13411. },
  13412. {
  13413. name: "Petamacro",
  13414. height: math.unit(50000000000000000, "parsecs")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(6, "feet"),
  13423. weight: math.unit(150, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/ilisha-devya/front.svg",
  13427. extra: 1053/1049,
  13428. bottom: 270/1323
  13429. }
  13430. },
  13431. back: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(150, "lb"),
  13434. name: "Back",
  13435. image: {
  13436. source: "./media/characters/ilisha-devya/back.svg",
  13437. extra: 1131/1128,
  13438. bottom: 39/1170
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Macro",
  13445. height: math.unit(500, "feet"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Megamacro",
  13450. height: math.unit(10, "miles")
  13451. },
  13452. {
  13453. name: "Gigamacro",
  13454. height: math.unit(100000, "miles")
  13455. },
  13456. {
  13457. name: "Examacro",
  13458. height: math.unit(1e9, "lightyears")
  13459. },
  13460. {
  13461. name: "Omniversal",
  13462. height: math.unit(1e33, "lightyears")
  13463. },
  13464. {
  13465. name: "Beyond Infinite",
  13466. height: math.unit(1e100, "lightyears")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13472. {
  13473. Side: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Side",
  13477. image: {
  13478. source: "./media/characters/mira/side.svg",
  13479. extra: 900 / 799,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Human Size",
  13487. height: math.unit(6, "feet")
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(100, "feet"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Megamacro",
  13496. height: math.unit(10, "miles")
  13497. },
  13498. {
  13499. name: "Gigamacro",
  13500. height: math.unit(25000, "miles")
  13501. },
  13502. {
  13503. name: "Teramacro",
  13504. height: math.unit(300, "AU")
  13505. },
  13506. {
  13507. name: "Full Size",
  13508. height: math.unit(4.5e10, "lightyears")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/holly/front.svg",
  13521. extra: 639 / 606
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Back",
  13528. image: {
  13529. source: "./media/characters/holly/back.svg",
  13530. extra: 623 / 598
  13531. }
  13532. },
  13533. frontWorking: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Front (Working)",
  13537. image: {
  13538. source: "./media/characters/holly/front-working.svg",
  13539. extra: 607 / 577,
  13540. bottom: 0.048
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(12 + 3 / 12, "feet"),
  13548. default: true
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/porter/front.svg",
  13561. extra: 1,
  13562. bottom: 0.01
  13563. }
  13564. },
  13565. frontRobes: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(150, "lb"),
  13568. name: "Front (Robes)",
  13569. image: {
  13570. source: "./media/characters/porter/front-robes.svg",
  13571. extra: 1.01,
  13572. bottom: 0.01
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(11 + 9 / 12, "feet"),
  13580. default: true
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13586. {
  13587. legendary: {
  13588. height: math.unit(6, "feet"),
  13589. weight: math.unit(150, "lb"),
  13590. name: "Legendary",
  13591. image: {
  13592. source: "./media/characters/lucy/legendary.svg",
  13593. extra: 1355 / 1100,
  13594. bottom: 0.045
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Legendary",
  13601. height: math.unit(86882 * 2, "miles"),
  13602. default: true
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/drusilla/front.svg",
  13615. extra: 678 / 635,
  13616. bottom: 0.03
  13617. }
  13618. },
  13619. back: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Back",
  13623. image: {
  13624. source: "./media/characters/drusilla/back.svg",
  13625. extra: 678 / 635,
  13626. bottom: 0.005
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(100, "feet")
  13634. },
  13635. {
  13636. name: "Canon Height",
  13637. height: math.unit(2000, "feet"),
  13638. default: true
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(180, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/renard-thatch/front.svg",
  13651. extra: 2411 / 2275,
  13652. bottom: 0.01
  13653. }
  13654. },
  13655. frontPosing: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(180, "lb"),
  13658. name: "Front (Posing)",
  13659. image: {
  13660. source: "./media/characters/renard-thatch/front-posing.svg",
  13661. extra: 2381 / 2261,
  13662. bottom: 0.01
  13663. }
  13664. },
  13665. back: {
  13666. height: math.unit(6, "feet"),
  13667. weight: math.unit(180, "lb"),
  13668. name: "Back",
  13669. image: {
  13670. source: "./media/characters/renard-thatch/back.svg",
  13671. extra: 2428 / 2288
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(3, "inches")
  13679. },
  13680. {
  13681. name: "Default",
  13682. height: math.unit(6, "feet"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(75, "feet")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(1450, "feet"),
  13696. weight: math.unit(1.21e6, "tons"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/sekvra/front.svg",
  13700. extra: 1193/1190,
  13701. bottom: 78/1271
  13702. }
  13703. },
  13704. side: {
  13705. height: math.unit(1450, "feet"),
  13706. weight: math.unit(1.21e6, "tons"),
  13707. name: "Side",
  13708. image: {
  13709. source: "./media/characters/sekvra/side.svg",
  13710. extra: 1193/1190,
  13711. bottom: 52/1245
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(1450, "feet"),
  13716. weight: math.unit(1.21e6, "tons"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/sekvra/back.svg",
  13720. extra: 1219/1216,
  13721. bottom: 21/1240
  13722. }
  13723. },
  13724. frontClothed: {
  13725. height: math.unit(1450, "feet"),
  13726. weight: math.unit(1.21e6, "tons"),
  13727. name: "Front (Clothed)",
  13728. image: {
  13729. source: "./media/characters/sekvra/front-clothed.svg",
  13730. extra: 1192/1189,
  13731. bottom: 79/1271
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Macro",
  13738. height: math.unit(1450, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Megamacro",
  13743. height: math.unit(15000, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/carmine/front.svg",
  13756. extra: 1,
  13757. bottom: 0.035
  13758. }
  13759. },
  13760. frontArmor: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front (Armor)",
  13764. image: {
  13765. source: "./media/characters/carmine/front-armor.svg",
  13766. extra: 1,
  13767. bottom: 0.035
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Large",
  13774. height: math.unit(1, "mile")
  13775. },
  13776. {
  13777. name: "Huge",
  13778. height: math.unit(40, "miles"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Colossal",
  13783. height: math.unit(2500, "miles")
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(150, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/elyssia/front.svg",
  13796. extra: 2201 / 2035,
  13797. bottom: 0.05
  13798. }
  13799. },
  13800. frontClothed: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(150, "lb"),
  13803. name: "Front (Clothed)",
  13804. image: {
  13805. source: "./media/characters/elyssia/front-clothed.svg",
  13806. extra: 2201 / 2035,
  13807. bottom: 0.05
  13808. }
  13809. },
  13810. back: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(150, "lb"),
  13813. name: "Back",
  13814. image: {
  13815. source: "./media/characters/elyssia/back.svg",
  13816. extra: 2201 / 2035,
  13817. bottom: 0.013
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Smaller",
  13824. height: math.unit(150, "feet")
  13825. },
  13826. {
  13827. name: "Standard",
  13828. height: math.unit(1400, "feet"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Distracted",
  13833. height: math.unit(15000, "feet")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(7 + 4/12, "feet"),
  13842. weight: math.unit(690, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/geno-maxwell/front.svg",
  13846. extra: 984/856,
  13847. bottom: 87/1071
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(7 + 4/12, "feet"),
  13852. weight: math.unit(690, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/geno-maxwell/back.svg",
  13856. extra: 981/854,
  13857. bottom: 57/1038
  13858. }
  13859. },
  13860. frontCostume: {
  13861. height: math.unit(7 + 4/12, "feet"),
  13862. weight: math.unit(690, "lb"),
  13863. name: "Front (Costume)",
  13864. image: {
  13865. source: "./media/characters/geno-maxwell/front-costume.svg",
  13866. extra: 984/856,
  13867. bottom: 87/1071
  13868. }
  13869. },
  13870. backcostume: {
  13871. height: math.unit(7 + 4/12, "feet"),
  13872. weight: math.unit(690, "lb"),
  13873. name: "Back (Costume)",
  13874. image: {
  13875. source: "./media/characters/geno-maxwell/back-costume.svg",
  13876. extra: 981/854,
  13877. bottom: 57/1038
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Micro",
  13884. height: math.unit(3, "inches")
  13885. },
  13886. {
  13887. name: "Normal",
  13888. height: math.unit(7 + 4 / 12, "feet"),
  13889. default: true
  13890. },
  13891. {
  13892. name: "Macro",
  13893. height: math.unit(220, "feet")
  13894. },
  13895. {
  13896. name: "Megamacro",
  13897. height: math.unit(11, "miles")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(7 + 4/12, "feet"),
  13906. weight: math.unit(750, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/regena-maxwell/front.svg",
  13910. extra: 984/856,
  13911. bottom: 87/1071
  13912. }
  13913. },
  13914. back: {
  13915. height: math.unit(7 + 4/12, "feet"),
  13916. weight: math.unit(750, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/regena-maxwell/back.svg",
  13920. extra: 981/854,
  13921. bottom: 57/1038
  13922. }
  13923. },
  13924. frontCostume: {
  13925. height: math.unit(7 + 4/12, "feet"),
  13926. weight: math.unit(750, "lb"),
  13927. name: "Front (Costume)",
  13928. image: {
  13929. source: "./media/characters/regena-maxwell/front-costume.svg",
  13930. extra: 984/856,
  13931. bottom: 87/1071
  13932. }
  13933. },
  13934. backcostume: {
  13935. height: math.unit(7 + 4/12, "feet"),
  13936. weight: math.unit(750, "lb"),
  13937. name: "Back (Costume)",
  13938. image: {
  13939. source: "./media/characters/regena-maxwell/back-costume.svg",
  13940. extra: 981/854,
  13941. bottom: 57/1038
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(7 + 4 / 12, "feet"),
  13949. default: true
  13950. },
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(220, "feet")
  13954. },
  13955. {
  13956. name: "Megamacro",
  13957. height: math.unit(11, "miles")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(6, "feet"),
  13966. weight: math.unit(150, "lb"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13970. extra: 860 / 690,
  13971. bottom: 0.03
  13972. }
  13973. },
  13974. },
  13975. [
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(1.7, "meters"),
  13979. default: true
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/quilly/front.svg",
  13992. extra: 890 / 776
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Gigamacro",
  13999. height: math.unit(404090, "miles"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(7 + 8 / 12, "feet"),
  14009. weight: math.unit(350, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/tempest/front.svg",
  14013. extra: 1175 / 1086,
  14014. bottom: 0.02
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(7 + 8 / 12, "feet"),
  14022. default: true
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14028. {
  14029. side: {
  14030. height: math.unit(4 + 5 / 12, "feet"),
  14031. weight: math.unit(80, "lb"),
  14032. name: "Side",
  14033. image: {
  14034. source: "./media/characters/rodger/side.svg",
  14035. extra: 1235 / 1118
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Micro",
  14042. height: math.unit(1, "inch")
  14043. },
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(4 + 5 / 12, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(120, "feet")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/danyel/front.svg",
  14064. extra: 1185 / 1123,
  14065. bottom: 0.05
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Shrunken",
  14072. height: math.unit(0.5, "mm")
  14073. },
  14074. {
  14075. name: "Micro",
  14076. height: math.unit(1, "mm"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Upsized",
  14081. height: math.unit(5 + 5 / 12, "feet")
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(5 + 6 / 12, "feet"),
  14090. weight: math.unit(200, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/vivian-bijoux/front.svg",
  14094. extra: 1217/1209,
  14095. bottom: 76/1293
  14096. }
  14097. },
  14098. back: {
  14099. height: math.unit(5 + 6 / 12, "feet"),
  14100. weight: math.unit(200, "lb"),
  14101. name: "Back",
  14102. image: {
  14103. source: "./media/characters/vivian-bijoux/back.svg",
  14104. extra: 1214/1208,
  14105. bottom: 51/1265
  14106. }
  14107. },
  14108. dressed: {
  14109. height: math.unit(5 + 6 / 12, "feet"),
  14110. weight: math.unit(200, "lb"),
  14111. name: "Dressed",
  14112. image: {
  14113. source: "./media/characters/vivian-bijoux/dressed.svg",
  14114. extra: 1217/1209,
  14115. bottom: 76/1293
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(5 + 6 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Bad Dream",
  14127. height: math.unit(500, "feet")
  14128. },
  14129. {
  14130. name: "Nightmare",
  14131. height: math.unit(500, "miles")
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6 + 1 / 12, "feet"),
  14140. weight: math.unit(260, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/zeta/front.svg",
  14144. extra: 1968 / 1889,
  14145. bottom: 0.06
  14146. }
  14147. },
  14148. back: {
  14149. height: math.unit(6 + 1 / 12, "feet"),
  14150. weight: math.unit(260, "lb"),
  14151. name: "Back",
  14152. image: {
  14153. source: "./media/characters/zeta/back.svg",
  14154. extra: 1944 / 1858,
  14155. bottom: 0.03
  14156. }
  14157. },
  14158. hand: {
  14159. height: math.unit(1.112, "feet"),
  14160. name: "Hand",
  14161. image: {
  14162. source: "./media/characters/zeta/hand.svg"
  14163. }
  14164. },
  14165. foot: {
  14166. height: math.unit(1.48, "feet"),
  14167. name: "Foot",
  14168. image: {
  14169. source: "./media/characters/zeta/foot.svg"
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Micro",
  14176. height: math.unit(6, "inches")
  14177. },
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(6 + 1 / 12, "feet"),
  14181. default: true
  14182. },
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(20, "feet")
  14186. },
  14187. ]
  14188. ))
  14189. characterMakers.push(() => makeCharacter(
  14190. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14191. {
  14192. front: {
  14193. height: math.unit(6, "feet"),
  14194. weight: math.unit(150, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/jamie-larsen/front.svg",
  14198. extra: 962 / 933,
  14199. bottom: 0.02
  14200. }
  14201. },
  14202. back: {
  14203. height: math.unit(6, "feet"),
  14204. weight: math.unit(150, "lb"),
  14205. name: "Back",
  14206. image: {
  14207. source: "./media/characters/jamie-larsen/back.svg",
  14208. extra: 997 / 946
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Macro",
  14215. height: math.unit(28 + 7 / 12, "feet"),
  14216. default: true
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(180, "feet")
  14221. },
  14222. {
  14223. name: "Megamacro",
  14224. height: math.unit(10, "miles")
  14225. },
  14226. {
  14227. name: "Gigamacro",
  14228. height: math.unit(200000, "miles")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(120, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/vance/front.svg",
  14241. extra: 1980 / 1890,
  14242. bottom: 0.09
  14243. }
  14244. },
  14245. back: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(120, "lb"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/vance/back.svg",
  14251. extra: 2081 / 1994,
  14252. bottom: 0.014
  14253. }
  14254. },
  14255. hand: {
  14256. height: math.unit(0.88, "feet"),
  14257. name: "Hand",
  14258. image: {
  14259. source: "./media/characters/vance/hand.svg"
  14260. }
  14261. },
  14262. foot: {
  14263. height: math.unit(0.64, "feet"),
  14264. name: "Foot",
  14265. image: {
  14266. source: "./media/characters/vance/foot.svg"
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Small",
  14273. height: math.unit(90, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(100, "meters")
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(15, "miles")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(180, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/xochitl/front.svg",
  14295. extra: 2297 / 2261,
  14296. bottom: 0.065
  14297. }
  14298. },
  14299. back: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(180, "lb"),
  14302. name: "Back",
  14303. image: {
  14304. source: "./media/characters/xochitl/back.svg",
  14305. extra: 2386 / 2354,
  14306. bottom: 0.01
  14307. }
  14308. },
  14309. foot: {
  14310. height: math.unit(6 / 5 * 1.15, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Foot",
  14313. image: {
  14314. source: "./media/characters/xochitl/foot.svg"
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(80, "feet")
  14322. },
  14323. {
  14324. name: "Macro+",
  14325. height: math.unit(400, "feet"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Gigamacro",
  14330. height: math.unit(80000, "miles")
  14331. },
  14332. {
  14333. name: "Gigamacro+",
  14334. height: math.unit(400000, "miles")
  14335. },
  14336. {
  14337. name: "Teramacro",
  14338. height: math.unit(300, "AU")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/vincent/front.svg",
  14351. extra: 1130 / 1080,
  14352. bottom: 0.055
  14353. }
  14354. },
  14355. beak: {
  14356. height: math.unit(6 * 0.1, "feet"),
  14357. name: "Beak",
  14358. image: {
  14359. source: "./media/characters/vincent/beak.svg"
  14360. }
  14361. },
  14362. hand: {
  14363. height: math.unit(6 * 0.85, "feet"),
  14364. weight: math.unit(150, "lb"),
  14365. name: "Hand",
  14366. image: {
  14367. source: "./media/characters/vincent/hand.svg"
  14368. }
  14369. },
  14370. foot: {
  14371. height: math.unit(6 * 0.19, "feet"),
  14372. weight: math.unit(150, "lb"),
  14373. name: "Foot",
  14374. image: {
  14375. source: "./media/characters/vincent/foot.svg"
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Base",
  14382. height: math.unit(6 + 5 / 12, "feet"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Macro",
  14387. height: math.unit(300, "feet")
  14388. },
  14389. {
  14390. name: "Megamacro",
  14391. height: math.unit(2, "miles")
  14392. },
  14393. {
  14394. name: "Gigamacro",
  14395. height: math.unit(1000, "miles")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(2, "meters"),
  14404. weight: math.unit(500, "kg"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/coatl/front.svg",
  14408. extra: 3948 / 3500,
  14409. bottom: 0.082
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(4, "meters")
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(100, "meters"),
  14421. default: true
  14422. },
  14423. {
  14424. name: "Macro+",
  14425. height: math.unit(300, "meters")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(3, "gigameters")
  14430. },
  14431. {
  14432. name: "Megamacro+",
  14433. height: math.unit(300, "terameters")
  14434. },
  14435. {
  14436. name: "Megamacro++",
  14437. height: math.unit(3, "lightyears")
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(50, "kg"),
  14447. name: "front",
  14448. image: {
  14449. source: "./media/characters/shiroryu/front.svg",
  14450. extra: 1990 / 1935
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Mortal Mingling",
  14457. height: math.unit(3, "meters")
  14458. },
  14459. {
  14460. name: "Kaiju-ish",
  14461. height: math.unit(250, "meters")
  14462. },
  14463. {
  14464. name: "Somewhat Godly",
  14465. height: math.unit(400, "km"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Planetary",
  14470. height: math.unit(300, "megameters")
  14471. },
  14472. {
  14473. name: "Galaxy-dwarfing",
  14474. height: math.unit(450, "kiloparsecs")
  14475. },
  14476. {
  14477. name: "Universe Eater",
  14478. height: math.unit(150, "gigaparsecs")
  14479. },
  14480. {
  14481. name: "Almost Immeasurable",
  14482. height: math.unit(1.3e266, "yottaparsecs")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(150, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/umeko/front.svg",
  14495. extra: 1,
  14496. bottom: 0.019
  14497. }
  14498. },
  14499. frontArmored: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(150, "lb"),
  14502. name: "Front (Armored)",
  14503. image: {
  14504. source: "./media/characters/umeko/front-armored.svg",
  14505. extra: 1,
  14506. bottom: 0.021
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Macro",
  14513. height: math.unit(220, "feet"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Guardian Dragon",
  14518. height: math.unit(50, "miles")
  14519. },
  14520. {
  14521. name: "Cosmic",
  14522. height: math.unit(800000, "miles")
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(150, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/cassidy/front.svg",
  14535. extra: 810/808,
  14536. bottom: 41/851
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Canon Height",
  14543. height: math.unit(120, "feet"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Macro+",
  14548. height: math.unit(400, "feet")
  14549. },
  14550. {
  14551. name: "Macro++",
  14552. height: math.unit(4000, "feet")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(3, "miles")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/isaac/front.svg",
  14569. extra: 896 / 815,
  14570. bottom: 0.11
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Human Size",
  14577. height: math.unit(8, "feet"),
  14578. default: true
  14579. },
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(400, "feet")
  14583. },
  14584. {
  14585. name: "Megamacro",
  14586. height: math.unit(50, "miles")
  14587. },
  14588. {
  14589. name: "Canon Height",
  14590. height: math.unit(200, "AU")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(72, "kg"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/sleekit/front.svg",
  14603. extra: 4693 / 4487,
  14604. bottom: 0.012
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Minimum Height",
  14611. height: math.unit(10, "meters")
  14612. },
  14613. {
  14614. name: "Smaller",
  14615. height: math.unit(25, "meters")
  14616. },
  14617. {
  14618. name: "Larger",
  14619. height: math.unit(38, "meters"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Maximum height",
  14624. height: math.unit(100, "meters")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6, "feet"),
  14633. weight: math.unit(150, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/nillia/front.svg",
  14637. extra: 2195 / 2037,
  14638. bottom: 0.005
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/nillia/back.svg",
  14647. extra: 2195 / 2037,
  14648. bottom: 0.005
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Canon Height",
  14655. height: math.unit(489, "feet"),
  14656. default: true
  14657. }
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(150, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/mesmyriza/front.svg",
  14669. extra: 2067 / 1784,
  14670. bottom: 0.035
  14671. }
  14672. },
  14673. foot: {
  14674. height: math.unit(6 / (250 / 35), "feet"),
  14675. name: "Foot",
  14676. image: {
  14677. source: "./media/characters/mesmyriza/foot.svg"
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Macro",
  14684. height: math.unit(457, "meters"),
  14685. default: true
  14686. },
  14687. {
  14688. name: "Megamacro",
  14689. height: math.unit(8, "megameters")
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(250, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/saudade/front.svg",
  14702. extra: 1172 / 1139,
  14703. bottom: 0.035
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Micro",
  14710. height: math.unit(3, "inches")
  14711. },
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(6, "feet"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(50, "feet")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(2800, "feet")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(5 + 4 / 12, "feet"),
  14732. weight: math.unit(100, "lb"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/keireer/front.svg",
  14736. extra: 716 / 666,
  14737. bottom: 0.05
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(5 + 4 / 12, "feet"),
  14745. default: true
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(6, "feet"),
  14754. weight: math.unit(90, "kg"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/mirja/front.svg",
  14758. extra: 1789 / 1683,
  14759. bottom: 0.05
  14760. }
  14761. },
  14762. frontDressed: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(90, "lb"),
  14765. name: "Front (Dressed)",
  14766. image: {
  14767. source: "./media/characters/mirja/front-dressed.svg",
  14768. extra: 1789 / 1683,
  14769. bottom: 0.05
  14770. }
  14771. },
  14772. back: {
  14773. height: math.unit(6, "feet"),
  14774. weight: math.unit(90, "lb"),
  14775. name: "Back",
  14776. image: {
  14777. source: "./media/characters/mirja/back.svg",
  14778. extra: 953 / 917,
  14779. bottom: 0.017
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "\"Incognito\"",
  14786. height: math.unit(3, "meters")
  14787. },
  14788. {
  14789. name: "Strolling Size",
  14790. height: math.unit(15, "km")
  14791. },
  14792. {
  14793. name: "Larger Strolling Size",
  14794. height: math.unit(400, "km")
  14795. },
  14796. {
  14797. name: "Preferred Size",
  14798. height: math.unit(5000, "km")
  14799. },
  14800. {
  14801. name: "True Size",
  14802. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14803. default: true
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(15, "feet"),
  14812. weight: math.unit(880, "kg"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/nightraver/front.svg",
  14816. extra: 2444 / 2160,
  14817. bottom: 0.027
  14818. }
  14819. },
  14820. back: {
  14821. height: math.unit(15, "feet"),
  14822. weight: math.unit(880, "kg"),
  14823. name: "Back",
  14824. image: {
  14825. source: "./media/characters/nightraver/back.svg",
  14826. extra: 2309 / 2180,
  14827. bottom: 0.005
  14828. }
  14829. },
  14830. sole: {
  14831. height: math.unit(2.878, "feet"),
  14832. name: "Sole",
  14833. image: {
  14834. source: "./media/characters/nightraver/sole.svg"
  14835. }
  14836. },
  14837. foot: {
  14838. height: math.unit(2.285, "feet"),
  14839. name: "Foot",
  14840. image: {
  14841. source: "./media/characters/nightraver/foot.svg"
  14842. }
  14843. },
  14844. maw: {
  14845. height: math.unit(2.67, "feet"),
  14846. name: "Maw",
  14847. image: {
  14848. source: "./media/characters/nightraver/maw.svg"
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Micro",
  14855. height: math.unit(1, "cm")
  14856. },
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(15, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Macro",
  14864. height: math.unit(300, "feet")
  14865. },
  14866. {
  14867. name: "Megamacro",
  14868. height: math.unit(300, "miles")
  14869. },
  14870. {
  14871. name: "Gigamacro",
  14872. height: math.unit(10000, "miles")
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14878. {
  14879. side: {
  14880. height: math.unit(2, "inches"),
  14881. weight: math.unit(5, "grams"),
  14882. name: "Side",
  14883. image: {
  14884. source: "./media/characters/arc/side.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Micro",
  14891. height: math.unit(2, "inches"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(1.1938, "meters"),
  14901. weight: math.unit(54, "kg"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/nebula-shahar/front.svg",
  14905. extra: 1642 / 1436,
  14906. bottom: 0.06
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Megamicro",
  14913. height: math.unit(0.3, "mm")
  14914. },
  14915. {
  14916. name: "Micro",
  14917. height: math.unit(3, "cm")
  14918. },
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(138, "cm"),
  14922. default: true
  14923. },
  14924. {
  14925. name: "Macro",
  14926. height: math.unit(30, "m")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(5.24, "feet"),
  14935. weight: math.unit(150, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/shayla/front.svg",
  14939. extra: 1512 / 1414,
  14940. bottom: 0.01
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(5.24, "feet"),
  14945. weight: math.unit(150, "lb"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/shayla/back.svg",
  14949. extra: 1512 / 1414
  14950. }
  14951. },
  14952. hand: {
  14953. height: math.unit(0.7781496062992126, "feet"),
  14954. name: "Hand",
  14955. image: {
  14956. source: "./media/characters/shayla/hand.svg"
  14957. }
  14958. },
  14959. foot: {
  14960. height: math.unit(1.4206036745406823, "feet"),
  14961. name: "Foot",
  14962. image: {
  14963. source: "./media/characters/shayla/foot.svg"
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Micro",
  14970. height: math.unit(0.32, "feet")
  14971. },
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(5.24, "feet"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Macro",
  14979. height: math.unit(492.12, "feet")
  14980. },
  14981. {
  14982. name: "Megamacro",
  14983. height: math.unit(186.41, "miles")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(2.2, "m"),
  14992. weight: math.unit(120, "kg"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/pia-jr/front.svg",
  14996. extra: 1000 / 970,
  14997. bottom: 0.035
  14998. }
  14999. },
  15000. hand: {
  15001. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15002. name: "Hand",
  15003. image: {
  15004. source: "./media/characters/pia-jr/hand.svg"
  15005. }
  15006. },
  15007. paw: {
  15008. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15009. name: "Paw",
  15010. image: {
  15011. source: "./media/characters/pia-jr/paw.svg"
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Micro",
  15018. height: math.unit(1.2, "cm")
  15019. },
  15020. {
  15021. name: "Normal",
  15022. height: math.unit(2.2, "m"),
  15023. default: true
  15024. },
  15025. {
  15026. name: "Macro",
  15027. height: math.unit(180, "m")
  15028. },
  15029. {
  15030. name: "Megamacro",
  15031. height: math.unit(420, "km")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(2, "m"),
  15040. weight: math.unit(115, "kg"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/pia-sr/front.svg",
  15044. extra: 760 / 730,
  15045. bottom: 0.015
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(2, "m"),
  15050. weight: math.unit(115, "kg"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/pia-sr/back.svg",
  15054. extra: 760 / 730,
  15055. bottom: 0.01
  15056. }
  15057. },
  15058. hand: {
  15059. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15060. name: "Hand",
  15061. image: {
  15062. source: "./media/characters/pia-sr/hand.svg"
  15063. }
  15064. },
  15065. foot: {
  15066. height: math.unit(1.83, "feet"),
  15067. name: "Foot",
  15068. image: {
  15069. source: "./media/characters/pia-sr/foot.svg"
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Micro",
  15076. height: math.unit(88, "mm")
  15077. },
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(2, "m"),
  15081. default: true
  15082. },
  15083. {
  15084. name: "Macro",
  15085. height: math.unit(200, "m")
  15086. },
  15087. {
  15088. name: "Megamacro",
  15089. height: math.unit(420, "km")
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(8 + 2 / 12, "feet"),
  15098. weight: math.unit(300, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/kibibyte/front.svg",
  15102. extra: 2221 / 2098,
  15103. bottom: 0.04
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(8 + 2 / 12, "feet"),
  15111. default: true
  15112. },
  15113. {
  15114. name: "Socialable Macro",
  15115. height: math.unit(50, "feet")
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(300, "feet")
  15120. },
  15121. {
  15122. name: "Megamacro",
  15123. height: math.unit(500, "miles")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/felix/front.svg",
  15136. extra: 762 / 722,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. frontClothed: {
  15141. height: math.unit(6, "feet"),
  15142. weight: math.unit(150, "lb"),
  15143. name: "Front (Clothed)",
  15144. image: {
  15145. source: "./media/characters/felix/front-clothed.svg",
  15146. extra: 762 / 722,
  15147. bottom: 0.02
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(6 + 8 / 12, "feet"),
  15155. default: true
  15156. },
  15157. {
  15158. name: "Macro",
  15159. height: math.unit(2600, "feet")
  15160. },
  15161. {
  15162. name: "Megamacro",
  15163. height: math.unit(450, "miles")
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(6 + 1 / 12, "feet"),
  15172. weight: math.unit(250, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/tobo/front.svg",
  15176. extra: 608 / 586,
  15177. bottom: 0.023
  15178. }
  15179. },
  15180. back: {
  15181. height: math.unit(6 + 1 / 12, "feet"),
  15182. weight: math.unit(250, "lb"),
  15183. name: "Back",
  15184. image: {
  15185. source: "./media/characters/tobo/back.svg",
  15186. extra: 608 / 586
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Nano",
  15193. height: math.unit(2, "nm")
  15194. },
  15195. {
  15196. name: "Megamicro",
  15197. height: math.unit(0.1, "mm")
  15198. },
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(1, "inch"),
  15202. default: true
  15203. },
  15204. {
  15205. name: "Human-sized",
  15206. height: math.unit(6 + 1 / 12, "feet")
  15207. },
  15208. {
  15209. name: "Macro",
  15210. height: math.unit(250, "feet")
  15211. },
  15212. {
  15213. name: "Megamacro",
  15214. height: math.unit(75, "miles")
  15215. },
  15216. {
  15217. name: "Texas-sized",
  15218. height: math.unit(750, "miles")
  15219. },
  15220. {
  15221. name: "Teramacro",
  15222. height: math.unit(50000, "miles")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(269, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/danny-kapowsky/front.svg",
  15235. extra: 766 / 736,
  15236. bottom: 0.044
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(269, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/danny-kapowsky/back.svg",
  15245. extra: 797 / 760,
  15246. bottom: 0.025
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Macro",
  15253. height: math.unit(150, "feet"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Macro+",
  15258. height: math.unit(200, "feet")
  15259. },
  15260. {
  15261. name: "Macro++",
  15262. height: math.unit(300, "feet")
  15263. },
  15264. {
  15265. name: "Macro+++",
  15266. height: math.unit(400, "feet")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15272. {
  15273. side: {
  15274. height: math.unit(6, "feet"),
  15275. weight: math.unit(170, "lb"),
  15276. name: "Side",
  15277. image: {
  15278. source: "./media/characters/finn/side.svg",
  15279. extra: 1953 / 1807,
  15280. bottom: 0.057
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Megamacro",
  15287. height: math.unit(14445, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5 + 6 / 12, "feet"),
  15297. weight: math.unit(125, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/roy/front.svg",
  15301. extra: 1,
  15302. bottom: 0.11
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Micro",
  15309. height: math.unit(3, "inches"),
  15310. default: true
  15311. },
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 6 / 12, "feet")
  15315. },
  15316. {
  15317. name: "Lesser Macro",
  15318. height: math.unit(60, "feet")
  15319. },
  15320. {
  15321. name: "Greater Macro",
  15322. height: math.unit(120, "feet")
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(6, "feet"),
  15331. weight: math.unit(100, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/aevsivs/front.svg",
  15335. extra: 1,
  15336. bottom: 0.03
  15337. }
  15338. },
  15339. back: {
  15340. height: math.unit(6, "feet"),
  15341. weight: math.unit(100, "lb"),
  15342. name: "Back",
  15343. image: {
  15344. source: "./media/characters/aevsivs/back.svg"
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Micro",
  15351. height: math.unit(2, "inches"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(5, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(5 + 7 / 12, "feet"),
  15365. weight: math.unit(159, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/hildegard/front.svg",
  15369. extra: 289 / 269,
  15370. bottom: 7.63 / 297.8
  15371. }
  15372. },
  15373. back: {
  15374. height: math.unit(5 + 7 / 12, "feet"),
  15375. weight: math.unit(159, "lb"),
  15376. name: "Back",
  15377. image: {
  15378. source: "./media/characters/hildegard/back.svg",
  15379. extra: 280 / 260,
  15380. bottom: 2.3 / 282
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(5 + 7 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15394. {
  15395. bernard: {
  15396. height: math.unit(2 + 7 / 12, "feet"),
  15397. weight: math.unit(66, "lb"),
  15398. name: "Bernard",
  15399. rename: true,
  15400. image: {
  15401. source: "./media/characters/bernard-wilder/bernard.svg",
  15402. extra: 192 / 128,
  15403. bottom: 0.05
  15404. }
  15405. },
  15406. wilder: {
  15407. height: math.unit(5 + 8 / 12, "feet"),
  15408. weight: math.unit(143, "lb"),
  15409. name: "Wilder",
  15410. rename: true,
  15411. image: {
  15412. source: "./media/characters/bernard-wilder/wilder.svg",
  15413. extra: 361 / 312,
  15414. bottom: 0.02
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(2 + 7 / 12, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15428. {
  15429. anthro: {
  15430. height: math.unit(6 + 1 / 12, "feet"),
  15431. weight: math.unit(155, "lb"),
  15432. name: "Anthro",
  15433. image: {
  15434. source: "./media/characters/hearth/anthro.svg",
  15435. extra: 1178/1136,
  15436. bottom: 28/1206
  15437. }
  15438. },
  15439. feral: {
  15440. height: math.unit(3.78, "feet"),
  15441. weight: math.unit(35, "kg"),
  15442. name: "Feral",
  15443. image: {
  15444. source: "./media/characters/hearth/feral.svg",
  15445. extra: 153 / 135,
  15446. bottom: 0.03
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(6 + 1 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(182, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/ingrid/front.svg",
  15467. extra: 294 / 268,
  15468. bottom: 0.027
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(6, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15482. {
  15483. eevee: {
  15484. height: math.unit(2 + 10 / 12, "feet"),
  15485. weight: math.unit(86, "lb"),
  15486. name: "Malgam",
  15487. image: {
  15488. source: "./media/characters/malgam/eevee.svg",
  15489. extra: 952/784,
  15490. bottom: 38/990
  15491. }
  15492. },
  15493. sylveon: {
  15494. height: math.unit(4, "feet"),
  15495. weight: math.unit(101, "lb"),
  15496. name: "Future Malgam",
  15497. rename: true,
  15498. image: {
  15499. source: "./media/characters/malgam/sylveon.svg",
  15500. extra: 371 / 325,
  15501. bottom: 0.015
  15502. }
  15503. },
  15504. gigantamax: {
  15505. height: math.unit(50, "feet"),
  15506. name: "Gigantamax Malgam",
  15507. rename: true,
  15508. image: {
  15509. source: "./media/characters/malgam/gigantamax.svg"
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(2 + 10 / 12, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(5 + 11 / 12, "feet"),
  15526. weight: math.unit(188, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/fleur/front.svg",
  15530. extra: 309 / 283,
  15531. bottom: 0.007
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(5 + 11 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(5 + 4 / 12, "feet"),
  15548. weight: math.unit(122, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/jude/front.svg",
  15552. extra: 288 / 273,
  15553. bottom: 0.03
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(5 + 4 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(5 + 11 / 12, "feet"),
  15570. weight: math.unit(190, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/seara/front.svg",
  15574. extra: 1,
  15575. bottom: 0.05
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(16 + 5 / 12, "feet"),
  15592. weight: math.unit(524, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/caspian/front.svg",
  15596. extra: 1,
  15597. bottom: 0.04
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(16 + 5 / 12, "feet"),
  15605. default: true
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(5 + 7 / 12, "feet"),
  15614. weight: math.unit(170, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/mika/front.svg",
  15618. extra: 1,
  15619. bottom: 0.016
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(5 + 7 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6 + 2 / 12, "feet"),
  15636. weight: math.unit(268, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/sol/front.svg",
  15640. extra: 247 / 231,
  15641. bottom: 0.05
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6 + 2 / 12, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15655. {
  15656. buizel: {
  15657. height: math.unit(2 + 5 / 12, "feet"),
  15658. weight: math.unit(87, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/umiko/buizel.svg",
  15662. extra: 172 / 157,
  15663. bottom: 0.01
  15664. },
  15665. form: "buizel",
  15666. default: true
  15667. },
  15668. floatzel: {
  15669. height: math.unit(5 + 9 / 12, "feet"),
  15670. weight: math.unit(250, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/umiko/floatzel.svg",
  15674. extra: 1076/1006,
  15675. bottom: 15/1091
  15676. },
  15677. form: "floatzel",
  15678. default: true
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(2 + 5 / 12, "feet"),
  15685. form: "buizel",
  15686. default: true
  15687. },
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(5 + 9 / 12, "feet"),
  15691. form: "floatzel",
  15692. default: true
  15693. },
  15694. ],
  15695. {
  15696. "buizel": {
  15697. name: "Buizel"
  15698. },
  15699. "floatzel": {
  15700. name: "Floatzel",
  15701. default: true
  15702. }
  15703. }
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6 + 2 / 12, "feet"),
  15710. weight: math.unit(146, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/iliac/front.svg",
  15714. extra: 389 / 365,
  15715. bottom: 0.035
  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: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(170, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/topaz/front.svg",
  15736. extra: 317 / 303,
  15737. bottom: 0.055
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(6, "feet"),
  15745. default: true
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(5 + 11 / 12, "feet"),
  15754. weight: math.unit(144, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/gabriel/front.svg",
  15758. extra: 285 / 262,
  15759. bottom: 0.004
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(5 + 11 / 12, "feet"),
  15767. default: true
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15773. {
  15774. side: {
  15775. height: math.unit(6 + 5 / 12, "feet"),
  15776. weight: math.unit(300, "lb"),
  15777. name: "Side",
  15778. image: {
  15779. source: "./media/characters/tempest-suicune/side.svg",
  15780. extra: 195 / 154,
  15781. bottom: 0.04
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(6 + 5 / 12, "feet"),
  15789. default: true
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15795. {
  15796. front: {
  15797. height: math.unit(7 + 2 / 12, "feet"),
  15798. weight: math.unit(322, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/vulcan/front.svg",
  15802. extra: 154 / 147,
  15803. bottom: 0.04
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Normal",
  15810. height: math.unit(7 + 2 / 12, "feet"),
  15811. default: true
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(5 + 10 / 12, "feet"),
  15820. weight: math.unit(264, "lb"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/gault/front.svg",
  15824. extra: 161 / 140,
  15825. bottom: 0.028
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(5 + 10 / 12, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/shard/front.svg",
  15846. extra: 273 / 238,
  15847. bottom: 0.02
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(3 + 6 / 12, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(5 + 11 / 12, "feet"),
  15864. weight: math.unit(146, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/ashe/front.svg",
  15868. extra: 400 / 373,
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 11 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 5 / 12, "feet"),
  15886. weight: math.unit(135, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/beatrix/front.svg",
  15890. extra: 392 / 379,
  15891. bottom: 0.01
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(6, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(6 + 2/12, "feet"),
  15908. weight: math.unit(135, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/ignatius/front.svg",
  15912. extra: 1380/1259,
  15913. bottom: 27/1407
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(6 + 2/12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 2 / 12, "feet"),
  15930. weight: math.unit(138, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/mei-li/front.svg",
  15934. extra: 237 / 229,
  15935. bottom: 0.03
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(6 + 2 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(2 + 4 / 12, "feet"),
  15952. weight: math.unit(62, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/puru/front.svg",
  15956. extra: 206 / 149,
  15957. bottom: 0.06
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(2 + 4 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15971. {
  15972. anthro: {
  15973. height: math.unit(5 + 8/12, "feet"),
  15974. weight: math.unit(200, "lb"),
  15975. energyNeed: math.unit(2000, "kcal"),
  15976. name: "Anthro",
  15977. image: {
  15978. source: "./media/characters/kee/anthro.svg",
  15979. extra: 3251/3184,
  15980. bottom: 250/3501
  15981. }
  15982. },
  15983. taur: {
  15984. height: math.unit(11, "feet"),
  15985. weight: math.unit(500, "lb"),
  15986. energyNeed: math.unit(5000, "kcal"),
  15987. name: "Taur",
  15988. image: {
  15989. source: "./media/characters/kee/taur.svg",
  15990. extra: 1362/1320,
  15991. bottom: 83/1445
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(5 + 8/12, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Macro",
  16003. height: math.unit(35, "feet")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16009. {
  16010. anthro: {
  16011. height: math.unit(7, "feet"),
  16012. weight: math.unit(190, "lb"),
  16013. name: "Anthro",
  16014. image: {
  16015. source: "./media/characters/cobalt-dracha/anthro.svg",
  16016. extra: 231 / 225,
  16017. bottom: 0.04
  16018. }
  16019. },
  16020. feral: {
  16021. height: math.unit(9 + 7 / 12, "feet"),
  16022. weight: math.unit(294, "lb"),
  16023. name: "Feral",
  16024. image: {
  16025. source: "./media/characters/cobalt-dracha/feral.svg",
  16026. extra: 692 / 633,
  16027. bottom: 0.05
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(7, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16041. {
  16042. fallen: {
  16043. height: math.unit(11 + 8 / 12, "feet"),
  16044. weight: math.unit(485, "lb"),
  16045. name: "Java (Fallen)",
  16046. rename: true,
  16047. image: {
  16048. source: "./media/characters/java/fallen.svg",
  16049. extra: 226 / 208,
  16050. bottom: 0.005
  16051. }
  16052. },
  16053. godkin: {
  16054. height: math.unit(10 + 6 / 12, "feet"),
  16055. weight: math.unit(328, "lb"),
  16056. name: "Java (Godkin)",
  16057. rename: true,
  16058. image: {
  16059. source: "./media/characters/java/godkin.svg",
  16060. extra: 1104/1068,
  16061. bottom: 36/1140
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(11 + 8 / 12, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(5 + 9 / 12, "feet"),
  16078. weight: math.unit(170, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/purna/front.svg",
  16082. extra: 239 / 229,
  16083. bottom: 0.01
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(5 + 9 / 12, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(5 + 9 / 12, "feet"),
  16100. weight: math.unit(142, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/kuva/front.svg",
  16104. extra: 281 / 271,
  16105. bottom: 0.006
  16106. }
  16107. },
  16108. },
  16109. [
  16110. {
  16111. name: "Normal",
  16112. height: math.unit(5 + 9 / 12, "feet"),
  16113. default: true
  16114. },
  16115. ]
  16116. ))
  16117. characterMakers.push(() => makeCharacter(
  16118. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16119. {
  16120. anthro: {
  16121. height: math.unit(9 + 2 / 12, "feet"),
  16122. weight: math.unit(270, "lb"),
  16123. name: "Anthro",
  16124. image: {
  16125. source: "./media/characters/embra/anthro.svg",
  16126. extra: 200 / 187,
  16127. bottom: 0.02
  16128. }
  16129. },
  16130. feral: {
  16131. height: math.unit(18 + 8 / 12, "feet"),
  16132. weight: math.unit(576, "lb"),
  16133. name: "Feral",
  16134. image: {
  16135. source: "./media/characters/embra/feral.svg",
  16136. extra: 152 / 137,
  16137. bottom: 0.037
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(9 + 2 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16151. {
  16152. anthro: {
  16153. height: math.unit(10 + 9 / 12, "feet"),
  16154. weight: math.unit(224, "lb"),
  16155. name: "Anthro",
  16156. image: {
  16157. source: "./media/characters/grottos/anthro.svg",
  16158. extra: 350 / 332,
  16159. bottom: 0.045
  16160. }
  16161. },
  16162. feral: {
  16163. height: math.unit(20 + 7 / 12, "feet"),
  16164. weight: math.unit(629, "lb"),
  16165. name: "Feral",
  16166. image: {
  16167. source: "./media/characters/grottos/feral.svg",
  16168. extra: 207 / 190,
  16169. bottom: 0.05
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(10 + 9 / 12, "feet"),
  16177. default: true
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16183. {
  16184. anthro: {
  16185. height: math.unit(9 + 6 / 12, "feet"),
  16186. weight: math.unit(298, "lb"),
  16187. name: "Anthro",
  16188. image: {
  16189. source: "./media/characters/frifna/anthro.svg",
  16190. extra: 282 / 269,
  16191. bottom: 0.015
  16192. }
  16193. },
  16194. feral: {
  16195. height: math.unit(16 + 2 / 12, "feet"),
  16196. weight: math.unit(624, "lb"),
  16197. name: "Feral",
  16198. image: {
  16199. source: "./media/characters/frifna/feral.svg"
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(9 + 6 / 12, "feet"),
  16207. default: true
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16213. {
  16214. front: {
  16215. height: math.unit(6 + 2 / 12, "feet"),
  16216. weight: math.unit(168, "lb"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/elise/front.svg",
  16220. extra: 276 / 271
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(6 + 2 / 12, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 10 / 12, "feet"),
  16237. weight: math.unit(210, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/glade/front.svg",
  16241. extra: 258 / 247,
  16242. bottom: 0.008
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(5 + 10 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(5 + 10 / 12, "feet"),
  16259. weight: math.unit(129, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/rina/front.svg",
  16263. extra: 266 / 255,
  16264. bottom: 0.005
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(5 + 10 / 12, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(6 + 1 / 12, "feet"),
  16281. weight: math.unit(192, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/veronica/front.svg",
  16285. extra: 319 / 309,
  16286. bottom: 0.005
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(6 + 1 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(9 + 3 / 12, "feet"),
  16303. weight: math.unit(1100, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/braxton/front.svg",
  16307. extra: 1057 / 984,
  16308. bottom: 0.05
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Normal",
  16315. height: math.unit(9 + 3 / 12, "feet")
  16316. },
  16317. {
  16318. name: "Giant",
  16319. height: math.unit(300, "feet"),
  16320. default: true
  16321. },
  16322. {
  16323. name: "Macro",
  16324. height: math.unit(700, "feet")
  16325. },
  16326. {
  16327. name: "Megamacro",
  16328. height: math.unit(6000, "feet")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6 + 7 / 12, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/blue-feyonics/front.svg",
  16341. extra: 1403 / 1306,
  16342. bottom: 0.047
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(6 + 7 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(1.8, "meters"),
  16359. weight: math.unit(60, "kg"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/maxwell/front.svg",
  16363. extra: 2060 / 1873
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Micro",
  16370. height: math.unit(1, "mm")
  16371. },
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(1.8, "meter"),
  16375. default: true
  16376. },
  16377. {
  16378. name: "Macro",
  16379. height: math.unit(30, "meters")
  16380. },
  16381. {
  16382. name: "Megamacro",
  16383. height: math.unit(10, "km")
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(6, "feet"),
  16392. weight: math.unit(150, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/jack/front.svg",
  16396. extra: 1754 / 1640,
  16397. bottom: 0.01
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(80000, "feet"),
  16405. default: true
  16406. },
  16407. {
  16408. name: "Max size",
  16409. height: math.unit(10, "lightyears")
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16415. {
  16416. urban: {
  16417. height: math.unit(5, "feet"),
  16418. weight: math.unit(240, "lb"),
  16419. name: "Urban",
  16420. image: {
  16421. source: "./media/characters/cafat/urban.svg",
  16422. extra: 1223/1126,
  16423. bottom: 205/1428
  16424. }
  16425. },
  16426. summer: {
  16427. height: math.unit(5, "feet"),
  16428. weight: math.unit(240, "lb"),
  16429. name: "Summer",
  16430. image: {
  16431. source: "./media/characters/cafat/summer.svg",
  16432. extra: 1223/1126,
  16433. bottom: 205/1428
  16434. }
  16435. },
  16436. winter: {
  16437. height: math.unit(5, "feet"),
  16438. weight: math.unit(240, "lb"),
  16439. name: "Winter",
  16440. image: {
  16441. source: "./media/characters/cafat/winter.svg",
  16442. extra: 1223/1126,
  16443. bottom: 205/1428
  16444. }
  16445. },
  16446. lingerie: {
  16447. height: math.unit(5, "feet"),
  16448. weight: math.unit(240, "lb"),
  16449. name: "Lingerie",
  16450. image: {
  16451. source: "./media/characters/cafat/lingerie.svg",
  16452. extra: 1223/1126,
  16453. bottom: 205/1428
  16454. }
  16455. },
  16456. upright: {
  16457. height: math.unit(6.3, "feet"),
  16458. weight: math.unit(240, "lb"),
  16459. name: "Upright",
  16460. image: {
  16461. source: "./media/characters/cafat/upright.svg",
  16462. bottom: 0.01
  16463. }
  16464. },
  16465. uprightFull: {
  16466. height: math.unit(6.3, "feet"),
  16467. weight: math.unit(240, "lb"),
  16468. name: "Upright (Full)",
  16469. image: {
  16470. source: "./media/characters/cafat/upright-full.svg",
  16471. bottom: 0.01
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Small",
  16478. height: math.unit(5, "feet"),
  16479. default: true
  16480. },
  16481. {
  16482. name: "Large",
  16483. height: math.unit(13, "feet")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(150, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/verin-raharra/front.svg",
  16496. extra: 5019 / 4835,
  16497. bottom: 0.023
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(7 + 5 / 12, "feet"),
  16505. default: true
  16506. },
  16507. {
  16508. name: "Upsized",
  16509. height: math.unit(20, "feet")
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(7, "feet"),
  16518. weight: math.unit(230, "lb"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/nakata/front.svg",
  16522. extra: 1.005,
  16523. bottom: 0.01
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(7, "feet"),
  16531. default: true
  16532. },
  16533. {
  16534. name: "Big",
  16535. height: math.unit(14, "feet")
  16536. },
  16537. {
  16538. name: "Macro",
  16539. height: math.unit(400, "feet")
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(4.91, "feet"),
  16548. weight: math.unit(100, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/lily/front.svg",
  16552. extra: 1585 / 1415,
  16553. bottom: 0.02
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(4.91, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16567. {
  16568. laying: {
  16569. height: math.unit(4 + 4 / 12, "feet"),
  16570. weight: math.unit(600, "lb"),
  16571. name: "Laying",
  16572. image: {
  16573. source: "./media/characters/sheila/laying.svg",
  16574. extra: 1333 / 1265,
  16575. bottom: 0.16
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(4 + 4 / 12, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6, "feet"),
  16592. weight: math.unit(190, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/sax/front.svg",
  16596. extra: 1187 / 973,
  16597. bottom: 0.042
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Micro",
  16604. height: math.unit(4, "inches"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(6, "feet"),
  16614. weight: math.unit(150, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/pandora/front.svg",
  16618. extra: 2720 / 2556,
  16619. bottom: 0.015
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(6, "feet"),
  16624. weight: math.unit(150, "lb"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/pandora/back.svg",
  16628. extra: 2720 / 2556,
  16629. bottom: 0.01
  16630. }
  16631. },
  16632. beans: {
  16633. height: math.unit(6 / 8, "feet"),
  16634. name: "Beans",
  16635. image: {
  16636. source: "./media/characters/pandora/beans.svg"
  16637. }
  16638. },
  16639. collar: {
  16640. height: math.unit(0.31, "feet"),
  16641. name: "Collar",
  16642. image: {
  16643. source: "./media/characters/pandora/collar.svg"
  16644. }
  16645. },
  16646. skirt: {
  16647. height: math.unit(6, "feet"),
  16648. weight: math.unit(150, "lb"),
  16649. name: "Skirt",
  16650. image: {
  16651. source: "./media/characters/pandora/skirt.svg",
  16652. extra: 1622 / 1525,
  16653. bottom: 0.015
  16654. }
  16655. },
  16656. hoodie: {
  16657. height: math.unit(6, "feet"),
  16658. weight: math.unit(150, "lb"),
  16659. name: "Hoodie",
  16660. image: {
  16661. source: "./media/characters/pandora/hoodie.svg",
  16662. extra: 1622 / 1525,
  16663. bottom: 0.015
  16664. }
  16665. },
  16666. casual: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Casual",
  16670. image: {
  16671. source: "./media/characters/pandora/casual.svg",
  16672. extra: 1622 / 1525,
  16673. bottom: 0.015
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(6, "feet")
  16681. },
  16682. {
  16683. name: "Big Steppy",
  16684. height: math.unit(1, "km"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Galactic Steppy",
  16689. height: math.unit(2, "gigameters")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16695. {
  16696. side: {
  16697. height: math.unit(10, "feet"),
  16698. weight: math.unit(800, "kg"),
  16699. name: "Side",
  16700. image: {
  16701. source: "./media/characters/venio-darcony/side.svg",
  16702. extra: 1373 / 1003,
  16703. bottom: 0.037
  16704. }
  16705. },
  16706. front: {
  16707. height: math.unit(19, "feet"),
  16708. weight: math.unit(800, "kg"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/venio-darcony/front.svg"
  16712. }
  16713. },
  16714. back: {
  16715. height: math.unit(19, "feet"),
  16716. weight: math.unit(800, "kg"),
  16717. name: "Back",
  16718. image: {
  16719. source: "./media/characters/venio-darcony/back.svg"
  16720. }
  16721. },
  16722. sideNsfw: {
  16723. height: math.unit(10, "feet"),
  16724. weight: math.unit(800, "kg"),
  16725. name: "Side (NSFW)",
  16726. image: {
  16727. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16728. extra: 1373 / 1003,
  16729. bottom: 0.037
  16730. }
  16731. },
  16732. frontNsfw: {
  16733. height: math.unit(19, "feet"),
  16734. weight: math.unit(800, "kg"),
  16735. name: "Front (NSFW)",
  16736. image: {
  16737. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16738. }
  16739. },
  16740. backNsfw: {
  16741. height: math.unit(19, "feet"),
  16742. weight: math.unit(800, "kg"),
  16743. name: "Back (NSFW)",
  16744. image: {
  16745. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16746. }
  16747. },
  16748. sideArmored: {
  16749. height: math.unit(10, "feet"),
  16750. weight: math.unit(800, "kg"),
  16751. name: "Side (Armored)",
  16752. image: {
  16753. source: "./media/characters/venio-darcony/side-armored.svg",
  16754. extra: 1373 / 1003,
  16755. bottom: 0.037
  16756. }
  16757. },
  16758. frontArmored: {
  16759. height: math.unit(19, "feet"),
  16760. weight: math.unit(900, "kg"),
  16761. name: "Front (Armored)",
  16762. image: {
  16763. source: "./media/characters/venio-darcony/front-armored.svg"
  16764. }
  16765. },
  16766. backArmored: {
  16767. height: math.unit(19, "feet"),
  16768. weight: math.unit(900, "kg"),
  16769. name: "Back (Armored)",
  16770. image: {
  16771. source: "./media/characters/venio-darcony/back-armored.svg"
  16772. }
  16773. },
  16774. sword: {
  16775. height: math.unit(10, "feet"),
  16776. weight: math.unit(50, "lb"),
  16777. name: "Sword",
  16778. image: {
  16779. source: "./media/characters/venio-darcony/sword.svg"
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(10, "feet")
  16787. },
  16788. {
  16789. name: "Macro",
  16790. height: math.unit(130, "feet"),
  16791. default: true
  16792. },
  16793. {
  16794. name: "Macro+",
  16795. height: math.unit(240, "feet")
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(6, "feet"),
  16804. weight: math.unit(150, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/veski/front.svg",
  16808. extra: 1299 / 1225,
  16809. bottom: 0.04
  16810. }
  16811. },
  16812. back: {
  16813. height: math.unit(6, "feet"),
  16814. weight: math.unit(150, "lb"),
  16815. name: "Back",
  16816. image: {
  16817. source: "./media/characters/veski/back.svg",
  16818. extra: 1299 / 1225,
  16819. bottom: 0.008
  16820. }
  16821. },
  16822. maw: {
  16823. height: math.unit(1.5 * 1.21, "feet"),
  16824. name: "Maw",
  16825. image: {
  16826. source: "./media/characters/veski/maw.svg"
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(2, "km"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16840. {
  16841. front: {
  16842. height: math.unit(5 + 7 / 12, "feet"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/isabelle/front.svg",
  16846. extra: 2130 / 1976,
  16847. bottom: 0.05
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Supermicro",
  16854. height: math.unit(10, "micrometers")
  16855. },
  16856. {
  16857. name: "Micro",
  16858. height: math.unit(1, "inch")
  16859. },
  16860. {
  16861. name: "Tiny",
  16862. height: math.unit(5, "inches")
  16863. },
  16864. {
  16865. name: "Standard",
  16866. height: math.unit(5 + 7 / 12, "inches")
  16867. },
  16868. {
  16869. name: "Macro",
  16870. height: math.unit(80, "meters"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Megamacro",
  16875. height: math.unit(250, "meters")
  16876. },
  16877. {
  16878. name: "Gigamacro",
  16879. height: math.unit(5, "km")
  16880. },
  16881. {
  16882. name: "Cosmic",
  16883. height: math.unit(2.5e6, "miles")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(150, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/hanzo/front.svg",
  16896. extra: 374 / 344,
  16897. bottom: 0.02
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(8, "feet"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(7, "feet"),
  16914. weight: math.unit(130, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/anna/front.svg",
  16918. extra: 169 / 145,
  16919. bottom: 0.06
  16920. }
  16921. },
  16922. full: {
  16923. height: math.unit(4.96, "feet"),
  16924. weight: math.unit(220, "lb"),
  16925. name: "Full",
  16926. image: {
  16927. source: "./media/characters/anna/full.svg",
  16928. extra: 138 / 114,
  16929. bottom: 0.15
  16930. }
  16931. },
  16932. tongue: {
  16933. height: math.unit(2.53, "feet"),
  16934. name: "Tongue",
  16935. image: {
  16936. source: "./media/characters/anna/tongue.svg"
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(7, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(7, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/ian-corvid/front.svg",
  16957. extra: 150 / 142,
  16958. bottom: 0.02
  16959. }
  16960. },
  16961. back: {
  16962. height: math.unit(7, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Back",
  16965. image: {
  16966. source: "./media/characters/ian-corvid/back.svg",
  16967. extra: 150 / 143,
  16968. bottom: 0.01
  16969. }
  16970. },
  16971. stomping: {
  16972. height: math.unit(7, "feet"),
  16973. weight: math.unit(150, "lb"),
  16974. name: "Stomping",
  16975. image: {
  16976. source: "./media/characters/ian-corvid/stomping.svg",
  16977. extra: 76 / 72
  16978. }
  16979. },
  16980. sitting: {
  16981. height: math.unit(7 / 1.8, "feet"),
  16982. weight: math.unit(150, "lb"),
  16983. name: "Sitting",
  16984. image: {
  16985. source: "./media/characters/ian-corvid/sitting.svg",
  16986. extra: 1400 / 1269,
  16987. bottom: 0.15
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Tiny Microw",
  16994. height: math.unit(1, "inch")
  16995. },
  16996. {
  16997. name: "Microw",
  16998. height: math.unit(6, "inches")
  16999. },
  17000. {
  17001. name: "Crow",
  17002. height: math.unit(7 + 1 / 12, "feet"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Macrow",
  17007. height: math.unit(176, "feet")
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 7 / 12, "feet"),
  17016. weight: math.unit(147, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/natalie-kellon/front.svg",
  17020. extra: 1214 / 1141,
  17021. bottom: 0.02
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Micro",
  17028. height: math.unit(1 / 16, "inch")
  17029. },
  17030. {
  17031. name: "Tiny",
  17032. height: math.unit(4, "inches")
  17033. },
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(5 + 7 / 12, "feet"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "Amazon",
  17041. height: math.unit(12, "feet")
  17042. },
  17043. {
  17044. name: "Giantess",
  17045. height: math.unit(160, "meters")
  17046. },
  17047. {
  17048. name: "Titaness",
  17049. height: math.unit(800, "meters")
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(6, "feet"),
  17058. weight: math.unit(150, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/alluria/front.svg",
  17062. extra: 806 / 738,
  17063. bottom: 0.01
  17064. }
  17065. },
  17066. side: {
  17067. height: math.unit(6, "feet"),
  17068. weight: math.unit(150, "lb"),
  17069. name: "Side",
  17070. image: {
  17071. source: "./media/characters/alluria/side.svg",
  17072. extra: 800 / 750,
  17073. }
  17074. },
  17075. back: {
  17076. height: math.unit(6, "feet"),
  17077. weight: math.unit(150, "lb"),
  17078. name: "Back",
  17079. image: {
  17080. source: "./media/characters/alluria/back.svg",
  17081. extra: 806 / 738,
  17082. }
  17083. },
  17084. frontMaid: {
  17085. height: math.unit(6, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front (Maid)",
  17088. image: {
  17089. source: "./media/characters/alluria/front-maid.svg",
  17090. extra: 806 / 738,
  17091. bottom: 0.01
  17092. }
  17093. },
  17094. sideMaid: {
  17095. height: math.unit(6, "feet"),
  17096. weight: math.unit(150, "lb"),
  17097. name: "Side (Maid)",
  17098. image: {
  17099. source: "./media/characters/alluria/side-maid.svg",
  17100. extra: 800 / 750,
  17101. bottom: 0.005
  17102. }
  17103. },
  17104. backMaid: {
  17105. height: math.unit(6, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Back (Maid)",
  17108. image: {
  17109. source: "./media/characters/alluria/back-maid.svg",
  17110. extra: 806 / 738,
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Micro",
  17117. height: math.unit(6, "inches"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(150, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/kyle/front.svg",
  17131. extra: 1069 / 962,
  17132. bottom: 77.228 / 1727.45
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Macro",
  17139. height: math.unit(150, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(6, "feet"),
  17149. weight: math.unit(300, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/duncan/front.svg",
  17153. extra: 1650 / 1482,
  17154. bottom: 0.05
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Macro",
  17161. height: math.unit(100, "feet"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(5 + 4 / 12, "feet"),
  17171. weight: math.unit(220, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/memory/front.svg",
  17175. extra: 3641 / 3545,
  17176. bottom: 0.03
  17177. }
  17178. },
  17179. back: {
  17180. height: math.unit(5 + 4 / 12, "feet"),
  17181. weight: math.unit(220, "lb"),
  17182. name: "Back",
  17183. image: {
  17184. source: "./media/characters/memory/back.svg",
  17185. extra: 3641 / 3545,
  17186. bottom: 0.025
  17187. }
  17188. },
  17189. frontSkirt: {
  17190. height: math.unit(5 + 4 / 12, "feet"),
  17191. weight: math.unit(220, "lb"),
  17192. name: "Front (Skirt)",
  17193. image: {
  17194. source: "./media/characters/memory/front-skirt.svg",
  17195. extra: 3641 / 3545,
  17196. bottom: 0.03
  17197. }
  17198. },
  17199. frontDress: {
  17200. height: math.unit(5 + 4 / 12, "feet"),
  17201. weight: math.unit(220, "lb"),
  17202. name: "Front (Dress)",
  17203. image: {
  17204. source: "./media/characters/memory/front-dress.svg",
  17205. extra: 3641 / 3545,
  17206. bottom: 0.03
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Micro",
  17213. height: math.unit(6, "inches"),
  17214. default: true
  17215. },
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(5 + 4 / 12, "feet")
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(4 + 11 / 12, "feet"),
  17227. weight: math.unit(100, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/luno/front.svg",
  17231. extra: 1535 / 1487,
  17232. bottom: 0.03
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Micro",
  17239. height: math.unit(3, "inches")
  17240. },
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(4 + 11 / 12, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(300, "feet")
  17249. },
  17250. {
  17251. name: "Megamacro",
  17252. height: math.unit(700, "miles")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6 + 2 / 12, "feet"),
  17261. weight: math.unit(170, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/jamesy/front.svg",
  17265. extra: 440 / 382,
  17266. bottom: 0.005
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Micro",
  17273. height: math.unit(3, "inches")
  17274. },
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(6 + 2 / 12, "feet"),
  17278. default: true
  17279. },
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(300, "feet")
  17283. },
  17284. {
  17285. name: "Megamacro",
  17286. height: math.unit(700, "miles")
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(160, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/mark/front.svg",
  17299. extra: 3300 / 3100,
  17300. bottom: 136.42 / 3440.47
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Macro",
  17307. height: math.unit(120, "meters")
  17308. },
  17309. {
  17310. name: "Bigger Macro",
  17311. height: math.unit(350, "meters")
  17312. },
  17313. {
  17314. name: "Megamacro",
  17315. height: math.unit(8, "km"),
  17316. default: true
  17317. },
  17318. {
  17319. name: "Continental",
  17320. height: math.unit(4550, "km")
  17321. },
  17322. {
  17323. name: "Planetary",
  17324. height: math.unit(65000, "km")
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(6, "feet"),
  17333. weight: math.unit(400, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/mac/front.svg",
  17337. extra: 1048 / 987.7,
  17338. bottom: 60 / 1107.6,
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Macro",
  17345. height: math.unit(500, "feet"),
  17346. default: true
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(5 + 2 / 12, "feet"),
  17355. weight: math.unit(190, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/bari/front.svg",
  17359. extra: 3156 / 2880,
  17360. bottom: 0.03
  17361. }
  17362. },
  17363. back: {
  17364. height: math.unit(5 + 2 / 12, "feet"),
  17365. weight: math.unit(190, "lb"),
  17366. name: "Back",
  17367. image: {
  17368. source: "./media/characters/bari/back.svg",
  17369. extra: 3260 / 2834,
  17370. bottom: 0.025
  17371. }
  17372. },
  17373. frontPlush: {
  17374. height: math.unit(5 + 2 / 12, "feet"),
  17375. weight: math.unit(190, "lb"),
  17376. name: "Front (Plush)",
  17377. image: {
  17378. source: "./media/characters/bari/front-plush.svg",
  17379. extra: 1112 / 1061,
  17380. bottom: 0.002
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Micro",
  17387. height: math.unit(3, "inches")
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(5 + 2 / 12, "feet"),
  17392. default: true
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(20, "feet")
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(6 + 1 / 12, "feet"),
  17405. weight: math.unit(275, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/hunter-misha-raven/front.svg"
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Mortal",
  17415. height: math.unit(6 + 1 / 12, "feet")
  17416. },
  17417. {
  17418. name: "Divine",
  17419. height: math.unit(1.12134e34, "parsecs"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6 + 3 / 12, "feet"),
  17429. weight: math.unit(220, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/max-calore/front.svg",
  17433. extra: 1700 / 1648,
  17434. bottom: 0.01
  17435. }
  17436. },
  17437. back: {
  17438. height: math.unit(6 + 3 / 12, "feet"),
  17439. weight: math.unit(220, "lb"),
  17440. name: "Back",
  17441. image: {
  17442. source: "./media/characters/max-calore/back.svg",
  17443. extra: 1700 / 1648,
  17444. bottom: 0.01
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(6 + 3 / 12, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17458. {
  17459. side: {
  17460. height: math.unit(2 + 8 / 12, "feet"),
  17461. weight: math.unit(99, "lb"),
  17462. name: "Side",
  17463. image: {
  17464. source: "./media/characters/aspen/side.svg",
  17465. extra: 152 / 138,
  17466. bottom: 0.032
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(2 + 8 / 12, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17480. {
  17481. side: {
  17482. height: math.unit(3 + 2 / 12, "feet"),
  17483. weight: math.unit(224, "lb"),
  17484. name: "Side",
  17485. image: {
  17486. source: "./media/characters/sheila-feral-wolf/side.svg",
  17487. extra: 179 / 166,
  17488. bottom: 0.03
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(3 + 2 / 12, "feet"),
  17496. default: true
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17502. {
  17503. side: {
  17504. height: math.unit(1 + 9 / 12, "feet"),
  17505. weight: math.unit(38, "lb"),
  17506. name: "Side",
  17507. image: {
  17508. source: "./media/characters/michelle/side.svg",
  17509. extra: 147 / 136.7,
  17510. bottom: 0.03
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(1 + 9 / 12, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(1.54, "feet"),
  17527. weight: math.unit(50, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/nino/front.svg"
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(1.54, "feet"),
  17538. default: true
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(1.49, "feet"),
  17547. weight: math.unit(45, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/viola/front.svg"
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(1.49, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(6 + 5 / 12, "feet"),
  17567. weight: math.unit(580, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/atlas/front.svg",
  17571. extra: 298.5 / 290,
  17572. bottom: 0.015
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(6 + 5 / 12, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17586. {
  17587. side: {
  17588. height: math.unit(15.6, "inches"),
  17589. weight: math.unit(10, "lb"),
  17590. name: "Side",
  17591. image: {
  17592. source: "./media/characters/davy/side.svg",
  17593. extra: 200 / 170,
  17594. bottom: 0.01
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(15.6, "inches"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17608. {
  17609. side: {
  17610. height: math.unit(4 + 8 / 12, "feet"),
  17611. weight: math.unit(166, "lb"),
  17612. name: "Side",
  17613. image: {
  17614. source: "./media/characters/fiona/side.svg",
  17615. extra: 232 / 220,
  17616. bottom: 0.03
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(4 + 8 / 12, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17630. {
  17631. front: {
  17632. height: math.unit(26, "inches"),
  17633. weight: math.unit(35, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/lyla/front.svg",
  17637. bottom: 0.1
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(3, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17651. {
  17652. side: {
  17653. height: math.unit(1.8, "feet"),
  17654. weight: math.unit(44, "lb"),
  17655. name: "Side",
  17656. image: {
  17657. source: "./media/characters/perseus/side.svg",
  17658. bottom: 0.21
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(1.8, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17672. {
  17673. side: {
  17674. height: math.unit(4 + 2 / 12, "feet"),
  17675. weight: math.unit(20, "lb"),
  17676. name: "Side",
  17677. image: {
  17678. source: "./media/characters/remus/side.svg"
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(4 + 2 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(4 + 11 / 12, "feet"),
  17695. weight: math.unit(114, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/raf/front.svg",
  17699. extra: 1504/1339,
  17700. bottom: 26/1530
  17701. }
  17702. },
  17703. side: {
  17704. height: math.unit(4 + 11 / 12, "feet"),
  17705. weight: math.unit(114, "lb"),
  17706. name: "Side",
  17707. image: {
  17708. source: "./media/characters/raf/side.svg",
  17709. extra: 1466/1316,
  17710. bottom: 29/1495
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Micro",
  17717. height: math.unit(2, "inches")
  17718. },
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(4 + 11 / 12, "feet"),
  17722. default: true
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(70, "feet")
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(1.5, "meters"),
  17735. weight: math.unit(68, "kg"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/liam-einarr/front.svg",
  17739. extra: 2822 / 2666
  17740. }
  17741. },
  17742. back: {
  17743. height: math.unit(1.5, "meters"),
  17744. weight: math.unit(68, "kg"),
  17745. name: "Back",
  17746. image: {
  17747. source: "./media/characters/liam-einarr/back.svg",
  17748. extra: 2822 / 2666,
  17749. bottom: 0.015
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(1.5, "meters"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Macro",
  17761. height: math.unit(150, "meters")
  17762. },
  17763. {
  17764. name: "Megamacro",
  17765. height: math.unit(35, "km")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(75, "kg"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/linda/front.svg",
  17778. extra: 930 / 874,
  17779. bottom: 0.004
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(6, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17793. {
  17794. front: {
  17795. height: math.unit(6 + 8 / 12, "feet"),
  17796. weight: math.unit(220, "lb"),
  17797. name: "Front",
  17798. image: {
  17799. source: "./media/characters/caylex/front.svg",
  17800. extra: 821 / 772,
  17801. bottom: 0.07
  17802. }
  17803. },
  17804. back: {
  17805. height: math.unit(6 + 8 / 12, "feet"),
  17806. weight: math.unit(220, "lb"),
  17807. name: "Back",
  17808. image: {
  17809. source: "./media/characters/caylex/back.svg",
  17810. extra: 821 / 772,
  17811. bottom: 0.022
  17812. }
  17813. },
  17814. hand: {
  17815. height: math.unit(1.25, "feet"),
  17816. name: "Hand",
  17817. image: {
  17818. source: "./media/characters/caylex/hand.svg"
  17819. }
  17820. },
  17821. foot: {
  17822. height: math.unit(1.6, "feet"),
  17823. name: "Foot",
  17824. image: {
  17825. source: "./media/characters/caylex/foot.svg"
  17826. }
  17827. },
  17828. armored: {
  17829. height: math.unit(6 + 8 / 12, "feet"),
  17830. weight: math.unit(250, "lb"),
  17831. name: "Armored",
  17832. image: {
  17833. source: "./media/characters/caylex/armored.svg",
  17834. extra: 1420 / 1310,
  17835. bottom: 0.045
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(6 + 8 / 12, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Normal+",
  17847. height: math.unit(12, "feet")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(7 + 6 / 12, "feet"),
  17856. weight: math.unit(288, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/alana/front.svg",
  17860. extra: 679 / 653,
  17861. bottom: 22.5 / 701
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(7 + 6 / 12, "feet")
  17869. },
  17870. {
  17871. name: "Large",
  17872. height: math.unit(50, "feet")
  17873. },
  17874. {
  17875. name: "Macro",
  17876. height: math.unit(100, "feet"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Macro+",
  17881. height: math.unit(200, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6 + 1 / 12, "feet"),
  17890. weight: math.unit(210, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/hasani/front.svg",
  17894. extra: 244 / 232,
  17895. bottom: 0.01
  17896. }
  17897. },
  17898. back: {
  17899. height: math.unit(6 + 1 / 12, "feet"),
  17900. weight: math.unit(210, "lb"),
  17901. name: "Back",
  17902. image: {
  17903. source: "./media/characters/hasani/back.svg",
  17904. extra: 244 / 232,
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(6 + 1 / 12, "feet")
  17913. },
  17914. {
  17915. name: "Macro",
  17916. height: math.unit(175, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(1.82, "meters"),
  17926. weight: math.unit(140, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/nita/front.svg",
  17930. extra: 2473 / 2363,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(1.82, "m")
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(300, "m")
  17943. },
  17944. {
  17945. name: "Mistake Canon",
  17946. height: math.unit(0.5, "miles"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Big Mistake",
  17951. height: math.unit(13, "miles")
  17952. },
  17953. {
  17954. name: "Playing God",
  17955. height: math.unit(2450, "miles")
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17961. {
  17962. front: {
  17963. height: math.unit(4, "feet"),
  17964. weight: math.unit(120, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/shiriko/front.svg",
  17968. extra: 970/934,
  17969. bottom: 5/975
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(4, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(6, "feet"),
  17986. name: "front",
  17987. image: {
  17988. source: "./media/characters/deja/front.svg",
  17989. extra: 926 / 840,
  17990. bottom: 0.07
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Planck Length",
  17997. height: math.unit(1.6e-35, "meters")
  17998. },
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(30.48, "meters"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Universal",
  18006. height: math.unit(8.8e26, "meters")
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18012. {
  18013. side: {
  18014. height: math.unit(8, "feet"),
  18015. weight: math.unit(6300, "lb"),
  18016. name: "Side",
  18017. image: {
  18018. source: "./media/characters/anima/side.svg",
  18019. bottom: 0.035
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(8, "feet"),
  18027. default: true
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18033. {
  18034. front: {
  18035. height: math.unit(8, "feet"),
  18036. weight: math.unit(350, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/bianca/front.svg",
  18040. extra: 234 / 225,
  18041. bottom: 0.03
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(8, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(6, "feet"),
  18058. weight: math.unit(150, "lb"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/adinia/front.svg",
  18062. extra: 1845 / 1672,
  18063. bottom: 0.02
  18064. }
  18065. },
  18066. back: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(150, "lb"),
  18069. name: "Back",
  18070. image: {
  18071. source: "./media/characters/adinia/back.svg",
  18072. extra: 1845 / 1672,
  18073. bottom: 0.002
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(11 + 5 / 12, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(3, "meters"),
  18090. weight: math.unit(200, "kg"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/lykasa/front.svg",
  18094. extra: 1076 / 976,
  18095. bottom: 0.06
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(3, "meters")
  18103. },
  18104. {
  18105. name: "Kaiju",
  18106. height: math.unit(120, "meters"),
  18107. default: true
  18108. },
  18109. {
  18110. name: "Mega Kaiju",
  18111. height: math.unit(240, "km")
  18112. },
  18113. {
  18114. name: "Giga Kaiju",
  18115. height: math.unit(400, "megameters")
  18116. },
  18117. {
  18118. name: "Tera Kaiju",
  18119. height: math.unit(800, "gigameters")
  18120. },
  18121. {
  18122. name: "Kaiju Dragon Goddess",
  18123. height: math.unit(26, "zettaparsecs")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18129. {
  18130. side: {
  18131. height: math.unit(283 / 124 * 6, "feet"),
  18132. weight: math.unit(35000, "lb"),
  18133. name: "Side",
  18134. image: {
  18135. source: "./media/characters/malfaren/side.svg",
  18136. extra: 1310/529,
  18137. bottom: 24/1334
  18138. }
  18139. },
  18140. front: {
  18141. height: math.unit(22.36, "feet"),
  18142. weight: math.unit(35000, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/malfaren/front.svg",
  18146. extra: 1237/1115,
  18147. bottom: 32/1269
  18148. }
  18149. },
  18150. maw: {
  18151. height: math.unit(6.9, "feet"),
  18152. name: "Maw",
  18153. image: {
  18154. source: "./media/characters/malfaren/maw.svg"
  18155. }
  18156. },
  18157. dick: {
  18158. height: math.unit(6.19, "feet"),
  18159. name: "Dick",
  18160. image: {
  18161. source: "./media/characters/malfaren/dick.svg"
  18162. }
  18163. },
  18164. eye: {
  18165. height: math.unit(0.69, "feet"),
  18166. name: "Eye",
  18167. image: {
  18168. source: "./media/characters/malfaren/eye.svg"
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Big",
  18175. height: math.unit(283 / 162 * 6, "feet"),
  18176. },
  18177. {
  18178. name: "Bigger",
  18179. height: math.unit(283 / 124 * 6, "feet")
  18180. },
  18181. {
  18182. name: "Massive",
  18183. height: math.unit(283 / 92 * 6, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "👀💦",
  18188. height: math.unit(283 / 73 * 6, "feet"),
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(1.7, "m"),
  18197. weight: math.unit(70, "kg"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/kernel/front.svg",
  18201. extra: 222 / 210,
  18202. bottom: 0.007
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Nano",
  18209. height: math.unit(17, "micrometers")
  18210. },
  18211. {
  18212. name: "Micro",
  18213. height: math.unit(1.7, "mm")
  18214. },
  18215. {
  18216. name: "Small",
  18217. height: math.unit(1.7, "cm")
  18218. },
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(1.7, "m"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(1.75, "meters"),
  18231. weight: math.unit(65, "kg"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/jayne-folest/front.svg",
  18235. extra: 2115 / 2007,
  18236. bottom: 0.02
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(1.75, "meters"),
  18241. weight: math.unit(65, "kg"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/jayne-folest/back.svg",
  18245. extra: 2115 / 2007,
  18246. bottom: 0.005
  18247. }
  18248. },
  18249. frontClothed: {
  18250. height: math.unit(1.75, "meters"),
  18251. weight: math.unit(65, "kg"),
  18252. name: "Front (Clothed)",
  18253. image: {
  18254. source: "./media/characters/jayne-folest/front-clothed.svg",
  18255. extra: 2115 / 2007,
  18256. bottom: 0.035
  18257. }
  18258. },
  18259. hand: {
  18260. height: math.unit(1 / 1.260, "feet"),
  18261. name: "Hand",
  18262. image: {
  18263. source: "./media/characters/jayne-folest/hand.svg"
  18264. }
  18265. },
  18266. foot: {
  18267. height: math.unit(1 / 0.918, "feet"),
  18268. name: "Foot",
  18269. image: {
  18270. source: "./media/characters/jayne-folest/foot.svg"
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(4, "cm")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(1.75, "meters")
  18282. },
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(47.5, "meters"),
  18286. default: true
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(180, "cm"),
  18295. weight: math.unit(70, "kg"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/algier/front.svg",
  18299. extra: 596 / 572,
  18300. bottom: 0.04
  18301. }
  18302. },
  18303. back: {
  18304. height: math.unit(180, "cm"),
  18305. weight: math.unit(70, "kg"),
  18306. name: "Back",
  18307. image: {
  18308. source: "./media/characters/algier/back.svg",
  18309. extra: 596 / 572,
  18310. bottom: 0.025
  18311. }
  18312. },
  18313. frontdressed: {
  18314. height: math.unit(180, "cm"),
  18315. weight: math.unit(150, "kg"),
  18316. name: "Front-dressed",
  18317. image: {
  18318. source: "./media/characters/algier/front-dressed.svg",
  18319. extra: 596 / 572,
  18320. bottom: 0.038
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Micro",
  18327. height: math.unit(5, "cm")
  18328. },
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(180, "cm"),
  18332. default: true
  18333. },
  18334. {
  18335. name: "Macro",
  18336. height: math.unit(64, "m")
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18342. {
  18343. upright: {
  18344. height: math.unit(7, "feet"),
  18345. weight: math.unit(300, "lb"),
  18346. name: "Upright",
  18347. image: {
  18348. source: "./media/characters/pretzel/upright.svg",
  18349. extra: 534 / 522,
  18350. bottom: 0.065
  18351. }
  18352. },
  18353. sprawling: {
  18354. height: math.unit(3.75, "feet"),
  18355. weight: math.unit(300, "lb"),
  18356. name: "Sprawling",
  18357. image: {
  18358. source: "./media/characters/pretzel/sprawling.svg",
  18359. extra: 314 / 281,
  18360. bottom: 0.1
  18361. }
  18362. },
  18363. tongue: {
  18364. height: math.unit(2, "feet"),
  18365. name: "Tongue",
  18366. image: {
  18367. source: "./media/characters/pretzel/tongue.svg"
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(7, "feet"),
  18375. default: true
  18376. },
  18377. {
  18378. name: "Oversized",
  18379. height: math.unit(15, "feet")
  18380. },
  18381. {
  18382. name: "Huge",
  18383. height: math.unit(30, "feet")
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(250, "feet")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18393. {
  18394. sideFront: {
  18395. height: math.unit(5 + 2 / 12, "feet"),
  18396. weight: math.unit(120, "lb"),
  18397. name: "Front Side",
  18398. image: {
  18399. source: "./media/characters/roxi/side-front.svg",
  18400. extra: 2924 / 2717,
  18401. bottom: 0.08
  18402. }
  18403. },
  18404. sideBack: {
  18405. height: math.unit(5 + 2 / 12, "feet"),
  18406. weight: math.unit(120, "lb"),
  18407. name: "Back Side",
  18408. image: {
  18409. source: "./media/characters/roxi/side-back.svg",
  18410. extra: 2904 / 2693,
  18411. bottom: 0.06
  18412. }
  18413. },
  18414. front: {
  18415. height: math.unit(5 + 2 / 12, "feet"),
  18416. weight: math.unit(120, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/roxi/front.svg",
  18420. extra: 2028 / 1907,
  18421. bottom: 0.01
  18422. }
  18423. },
  18424. frontAlt: {
  18425. height: math.unit(5 + 2 / 12, "feet"),
  18426. weight: math.unit(120, "lb"),
  18427. name: "Front (Alt)",
  18428. image: {
  18429. source: "./media/characters/roxi/front-alt.svg",
  18430. extra: 1828 / 1798,
  18431. bottom: 0.01
  18432. }
  18433. },
  18434. sitting: {
  18435. height: math.unit(2.8, "feet"),
  18436. weight: math.unit(120, "lb"),
  18437. name: "Sitting",
  18438. image: {
  18439. source: "./media/characters/roxi/sitting.svg",
  18440. extra: 2660 / 2462,
  18441. bottom: 0.1
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. default: true
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18455. {
  18456. side: {
  18457. height: math.unit(55, "feet"),
  18458. weight: math.unit(153, "tons"),
  18459. name: "Side",
  18460. image: {
  18461. source: "./media/characters/shadow/side.svg",
  18462. extra: 701 / 628,
  18463. bottom: 0.02
  18464. }
  18465. },
  18466. flying: {
  18467. height: math.unit(145, "feet"),
  18468. weight: math.unit(153, "tons"),
  18469. name: "Flying",
  18470. image: {
  18471. source: "./media/characters/shadow/flying.svg"
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(55, "feet"),
  18479. default: true
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(200, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/marcie/front.svg",
  18492. extra: 960 / 876,
  18493. bottom: 58 / 1017.87
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Macro",
  18500. height: math.unit(1, "mile"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(7, "feet"),
  18510. weight: math.unit(200, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/kachina/front.svg",
  18514. extra: 1290.68 / 1119,
  18515. bottom: 36.5 / 1327.18
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(7, "feet"),
  18523. default: true
  18524. },
  18525. ]
  18526. ))
  18527. characterMakers.push(() => makeCharacter(
  18528. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18529. {
  18530. looking: {
  18531. height: math.unit(2, "meters"),
  18532. weight: math.unit(300, "kg"),
  18533. name: "Looking",
  18534. image: {
  18535. source: "./media/characters/kash/looking.svg",
  18536. extra: 474 / 344,
  18537. bottom: 0.03
  18538. }
  18539. },
  18540. side: {
  18541. height: math.unit(2, "meters"),
  18542. weight: math.unit(300, "kg"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/kash/side.svg",
  18546. extra: 302 / 251,
  18547. bottom: 0.03
  18548. }
  18549. },
  18550. front: {
  18551. height: math.unit(2, "meters"),
  18552. weight: math.unit(300, "kg"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/kash/front.svg",
  18556. extra: 495 / 360,
  18557. bottom: 0.015
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(2, "meters"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Big",
  18569. height: math.unit(3, "meters")
  18570. },
  18571. {
  18572. name: "Large",
  18573. height: math.unit(5, "meters")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18579. {
  18580. feeding: {
  18581. height: math.unit(6.7, "feet"),
  18582. weight: math.unit(350, "lb"),
  18583. name: "Feeding",
  18584. image: {
  18585. source: "./media/characters/lalim/feeding.svg",
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(6.7, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(9.5, "feet"),
  18602. weight: math.unit(600, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/de'vout/front.svg",
  18606. extra: 1443 / 1328,
  18607. bottom: 0.025
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(9.5, "feet"),
  18612. weight: math.unit(600, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/de'vout/back.svg",
  18616. extra: 1443 / 1328
  18617. }
  18618. },
  18619. frontDressed: {
  18620. height: math.unit(9.5, "feet"),
  18621. weight: math.unit(600, "lb"),
  18622. name: "Front (Dressed",
  18623. image: {
  18624. source: "./media/characters/de'vout/front-dressed.svg",
  18625. extra: 1443 / 1328,
  18626. bottom: 0.025
  18627. }
  18628. },
  18629. backDressed: {
  18630. height: math.unit(9.5, "feet"),
  18631. weight: math.unit(600, "lb"),
  18632. name: "Back (Dressed",
  18633. image: {
  18634. source: "./media/characters/de'vout/back-dressed.svg",
  18635. extra: 1443 / 1328
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(9.5, "feet"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(8, "feet"),
  18652. weight: math.unit(225, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/talana/front.svg",
  18656. extra: 1410 / 1300,
  18657. bottom: 0.015
  18658. }
  18659. },
  18660. frontDressed: {
  18661. height: math.unit(8, "feet"),
  18662. weight: math.unit(225, "lb"),
  18663. name: "Front (Dressed",
  18664. image: {
  18665. source: "./media/characters/talana/front-dressed.svg",
  18666. extra: 1410 / 1300,
  18667. bottom: 0.015
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(8, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18681. {
  18682. side: {
  18683. height: math.unit(7.2, "feet"),
  18684. weight: math.unit(150, "lb"),
  18685. name: "Side",
  18686. image: {
  18687. source: "./media/characters/xeauvok/side.svg",
  18688. extra: 1975 / 1523,
  18689. bottom: 0.07
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(7.2, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18703. {
  18704. side: {
  18705. height: math.unit(10, "feet"),
  18706. weight: math.unit(900, "kg"),
  18707. name: "Side",
  18708. image: {
  18709. source: "./media/characters/zara/side.svg",
  18710. extra: 504 / 498
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(10, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18724. {
  18725. side: {
  18726. height: math.unit(6, "feet"),
  18727. weight: math.unit(150, "lb"),
  18728. name: "Side",
  18729. image: {
  18730. source: "./media/characters/richard-dragon/side.svg",
  18731. extra: 845 / 340,
  18732. bottom: 0.017
  18733. }
  18734. },
  18735. maw: {
  18736. height: math.unit(2.97, "feet"),
  18737. name: "Maw",
  18738. image: {
  18739. source: "./media/characters/richard-dragon/maw.svg"
  18740. }
  18741. },
  18742. },
  18743. [
  18744. ]
  18745. ))
  18746. characterMakers.push(() => makeCharacter(
  18747. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18748. {
  18749. front: {
  18750. height: math.unit(4, "feet"),
  18751. weight: math.unit(100, "lb"),
  18752. name: "Front",
  18753. image: {
  18754. source: "./media/characters/richard-smeargle/front.svg",
  18755. extra: 2952 / 2820,
  18756. bottom: 0.028
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(4, "feet"),
  18764. default: true
  18765. },
  18766. {
  18767. name: "Dynamax",
  18768. height: math.unit(20, "meters")
  18769. },
  18770. ]
  18771. ))
  18772. characterMakers.push(() => makeCharacter(
  18773. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18774. {
  18775. front: {
  18776. height: math.unit(6, "feet"),
  18777. weight: math.unit(110, "lb"),
  18778. name: "Front",
  18779. image: {
  18780. source: "./media/characters/klay/front.svg",
  18781. extra: 962 / 883,
  18782. bottom: 0.04
  18783. }
  18784. },
  18785. back: {
  18786. height: math.unit(6, "feet"),
  18787. weight: math.unit(110, "lb"),
  18788. name: "Back",
  18789. image: {
  18790. source: "./media/characters/klay/back.svg",
  18791. extra: 962 / 883
  18792. }
  18793. },
  18794. beans: {
  18795. height: math.unit(1.15, "feet"),
  18796. name: "Beans",
  18797. image: {
  18798. source: "./media/characters/klay/beans.svg"
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Micro",
  18805. height: math.unit(6, "inches")
  18806. },
  18807. {
  18808. name: "Mini",
  18809. height: math.unit(3, "feet")
  18810. },
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(6, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Big",
  18818. height: math.unit(25, "feet")
  18819. },
  18820. {
  18821. name: "Macro",
  18822. height: math.unit(100, "feet")
  18823. },
  18824. {
  18825. name: "Megamacro",
  18826. height: math.unit(400, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(6, "feet"),
  18835. weight: math.unit(160, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/marcus/front.svg",
  18839. extra: 734 / 676,
  18840. bottom: 0.03
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Little",
  18847. height: math.unit(6, "feet")
  18848. },
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(110, "feet"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Macro",
  18856. height: math.unit(250, "feet")
  18857. },
  18858. {
  18859. name: "Megamacro",
  18860. height: math.unit(1000, "feet")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(7, "feet"),
  18869. weight: math.unit(275, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/claude-delroute/front.svg",
  18873. extra: 902/827,
  18874. bottom: 26/928
  18875. }
  18876. },
  18877. side: {
  18878. height: math.unit(7, "feet"),
  18879. weight: math.unit(275, "lb"),
  18880. name: "Side",
  18881. image: {
  18882. source: "./media/characters/claude-delroute/side.svg",
  18883. extra: 908/853,
  18884. bottom: 16/924
  18885. }
  18886. },
  18887. back: {
  18888. height: math.unit(7, "feet"),
  18889. weight: math.unit(275, "lb"),
  18890. name: "Back",
  18891. image: {
  18892. source: "./media/characters/claude-delroute/back.svg",
  18893. extra: 911/829,
  18894. bottom: 18/929
  18895. }
  18896. },
  18897. maw: {
  18898. height: math.unit(0.6407, "meters"),
  18899. name: "Maw",
  18900. image: {
  18901. source: "./media/characters/claude-delroute/maw.svg"
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(7, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Lorge",
  18913. height: math.unit(20, "feet")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(8 + 4 / 12, "feet"),
  18922. weight: math.unit(600, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/dragonien/front.svg",
  18926. extra: 100 / 94,
  18927. bottom: 3.3 / 103.3445
  18928. }
  18929. },
  18930. back: {
  18931. height: math.unit(8 + 4 / 12, "feet"),
  18932. weight: math.unit(600, "lb"),
  18933. name: "Back",
  18934. image: {
  18935. source: "./media/characters/dragonien/back.svg",
  18936. extra: 776 / 746,
  18937. bottom: 6.4 / 782.0616
  18938. }
  18939. },
  18940. foot: {
  18941. height: math.unit(1.54, "feet"),
  18942. name: "Foot",
  18943. image: {
  18944. source: "./media/characters/dragonien/foot.svg",
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(8 + 4 / 12, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(200, "feet")
  18957. },
  18958. {
  18959. name: "Megamacro",
  18960. height: math.unit(1, "mile")
  18961. },
  18962. {
  18963. name: "Gigamacro",
  18964. height: math.unit(1000, "miles")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(5 + 2 / 12, "feet"),
  18973. weight: math.unit(110, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/desta/front.svg",
  18977. extra: 767 / 726,
  18978. bottom: 11.7 / 779
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(5 + 2 / 12, "feet"),
  18983. weight: math.unit(110, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/desta/back.svg",
  18987. extra: 777 / 728,
  18988. bottom: 6 / 784
  18989. }
  18990. },
  18991. frontAlt: {
  18992. height: math.unit(5 + 2 / 12, "feet"),
  18993. weight: math.unit(110, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/desta/front-alt.svg",
  18997. extra: 1482 / 1417
  18998. }
  18999. },
  19000. side: {
  19001. height: math.unit(5 + 2 / 12, "feet"),
  19002. weight: math.unit(110, "lb"),
  19003. name: "Side",
  19004. image: {
  19005. source: "./media/characters/desta/side.svg",
  19006. extra: 2579 / 2491,
  19007. bottom: 0.053
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Micro",
  19014. height: math.unit(6, "inches")
  19015. },
  19016. {
  19017. name: "Normal",
  19018. height: math.unit(5 + 2 / 12, "feet"),
  19019. default: true
  19020. },
  19021. {
  19022. name: "Macro",
  19023. height: math.unit(62, "feet")
  19024. },
  19025. {
  19026. name: "Megamacro",
  19027. height: math.unit(1800, "feet")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(10, "feet"),
  19036. weight: math.unit(700, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/storm-alystar/front.svg",
  19040. extra: 2112 / 1898,
  19041. bottom: 0.034
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Micro",
  19048. height: math.unit(3.5, "inches")
  19049. },
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(10, "feet"),
  19053. default: true
  19054. },
  19055. {
  19056. name: "Macro",
  19057. height: math.unit(400, "feet")
  19058. },
  19059. {
  19060. name: "Deific",
  19061. height: math.unit(60, "miles")
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19067. {
  19068. front: {
  19069. height: math.unit(2.35, "meters"),
  19070. weight: math.unit(119, "kg"),
  19071. name: "Front",
  19072. image: {
  19073. source: "./media/characters/ilia/front.svg",
  19074. extra: 1285 / 1255,
  19075. bottom: 0.06
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(2.35, "meters")
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(140, "meters"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "Megamacro",
  19091. height: math.unit(100, "miles")
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(6 + 5 / 12, "feet"),
  19100. weight: math.unit(190, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/kingdead/front.svg",
  19104. extra: 1228 / 1177
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Micro",
  19111. height: math.unit(7, "inches")
  19112. },
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 5 / 12, "feet")
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(150, "feet"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Megamacro",
  19124. height: math.unit(200, "miles")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(8, "feet"),
  19133. weight: math.unit(600, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/kyrehx/front.svg",
  19137. extra: 1195 / 1095,
  19138. bottom: 0.034
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Micro",
  19145. height: math.unit(2, "inches")
  19146. },
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(8, "feet"),
  19150. default: true
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(255, "feet")
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19163. weight: math.unit(184, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/xang/front.svg",
  19167. extra: 845 / 755
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19175. default: true
  19176. },
  19177. {
  19178. name: "Macro",
  19179. height: math.unit(0.935 * 146, "feet")
  19180. },
  19181. {
  19182. name: "Megamacro",
  19183. height: math.unit(0.935 * 3, "miles")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19189. {
  19190. frontDressed: {
  19191. height: math.unit(5 + 7 / 12, "feet"),
  19192. weight: math.unit(140, "lb"),
  19193. name: "Front (Dressed)",
  19194. image: {
  19195. source: "./media/characters/doc-weardno/front-dressed.svg",
  19196. extra: 263 / 234
  19197. }
  19198. },
  19199. backDressed: {
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. weight: math.unit(140, "lb"),
  19202. name: "Back (Dressed)",
  19203. image: {
  19204. source: "./media/characters/doc-weardno/back-dressed.svg",
  19205. extra: 266 / 238
  19206. }
  19207. },
  19208. front: {
  19209. height: math.unit(5 + 7 / 12, "feet"),
  19210. weight: math.unit(140, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/doc-weardno/front.svg",
  19214. extra: 254 / 233
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Micro",
  19221. height: math.unit(3, "inches")
  19222. },
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(5 + 7 / 12, "feet"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(25, "feet")
  19231. },
  19232. {
  19233. name: "Megamacro",
  19234. height: math.unit(2, "miles")
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(6 + 2 / 12, "feet"),
  19243. weight: math.unit(153, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/seth-whilst/front.svg",
  19247. bottom: 0.07
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Micro",
  19254. height: math.unit(5, "inches")
  19255. },
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(6 + 2 / 12, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(3, "inches"),
  19268. weight: math.unit(8, "grams"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/pocket-jabari/front.svg",
  19272. extra: 1024 / 974,
  19273. bottom: 0.039
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Minimicro",
  19280. height: math.unit(8, "mm")
  19281. },
  19282. {
  19283. name: "Micro",
  19284. height: math.unit(3, "inches"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(3, "feet")
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19295. {
  19296. frontDressed: {
  19297. height: math.unit(15, "feet"),
  19298. weight: math.unit(3280, "lb"),
  19299. name: "Front (Dressed)",
  19300. image: {
  19301. source: "./media/characters/sapphy/front-dressed.svg",
  19302. extra: 1951/1654,
  19303. bottom: 194/2145
  19304. },
  19305. form: "anthro",
  19306. default: true
  19307. },
  19308. backDressed: {
  19309. height: math.unit(15, "feet"),
  19310. weight: math.unit(3280, "lb"),
  19311. name: "Back (Dressed)",
  19312. image: {
  19313. source: "./media/characters/sapphy/back-dressed.svg",
  19314. extra: 2058/1918,
  19315. bottom: 125/2183
  19316. },
  19317. form: "anthro"
  19318. },
  19319. frontNude: {
  19320. height: math.unit(15, "feet"),
  19321. weight: math.unit(3280, "lb"),
  19322. name: "Front (Nude)",
  19323. image: {
  19324. source: "./media/characters/sapphy/front-nude.svg",
  19325. extra: 1951/1654,
  19326. bottom: 194/2145
  19327. },
  19328. form: "anthro"
  19329. },
  19330. backNude: {
  19331. height: math.unit(15, "feet"),
  19332. weight: math.unit(3280, "lb"),
  19333. name: "Back (Nude)",
  19334. image: {
  19335. source: "./media/characters/sapphy/back-nude.svg",
  19336. extra: 2058/1918,
  19337. bottom: 125/2183
  19338. },
  19339. form: "anthro"
  19340. },
  19341. full: {
  19342. height: math.unit(15, "feet"),
  19343. weight: math.unit(3280, "lb"),
  19344. name: "Full",
  19345. image: {
  19346. source: "./media/characters/sapphy/full.svg",
  19347. extra: 1396/1317,
  19348. bottom: 44/1440
  19349. },
  19350. form: "anthro"
  19351. },
  19352. dick: {
  19353. height: math.unit(3.8, "feet"),
  19354. name: "Dick",
  19355. image: {
  19356. source: "./media/characters/sapphy/dick.svg"
  19357. },
  19358. form: "anthro"
  19359. },
  19360. feral: {
  19361. height: math.unit(35, "feet"),
  19362. weight: math.unit(160, "tons"),
  19363. name: "Feral",
  19364. image: {
  19365. source: "./media/characters/sapphy/feral.svg",
  19366. extra: 1050/573,
  19367. bottom: 60/1110
  19368. },
  19369. form: "feral",
  19370. default: true
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(15, "feet"),
  19377. form: "anthro"
  19378. },
  19379. {
  19380. name: "Casual Macro",
  19381. height: math.unit(120, "feet"),
  19382. form: "anthro"
  19383. },
  19384. {
  19385. name: "Macro",
  19386. height: math.unit(2150, "feet"),
  19387. default: true,
  19388. form: "anthro"
  19389. },
  19390. {
  19391. name: "Megamacro",
  19392. height: math.unit(8, "miles"),
  19393. form: "anthro"
  19394. },
  19395. {
  19396. name: "Galaxy Mom",
  19397. height: math.unit(6, "megalightyears"),
  19398. form: "anthro"
  19399. },
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(35, "feet"),
  19403. form: "feral",
  19404. default: true
  19405. },
  19406. {
  19407. name: "Macro",
  19408. height: math.unit(300, "feet"),
  19409. form: "feral"
  19410. },
  19411. {
  19412. name: "Galaxy Mom",
  19413. height: math.unit(10, "megalightyears"),
  19414. form: "feral"
  19415. },
  19416. ],
  19417. {
  19418. "anthro": {
  19419. name: "Anthro",
  19420. default: true
  19421. },
  19422. "feral": {
  19423. name: "Feral"
  19424. }
  19425. }
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(6, "feet"),
  19432. weight: math.unit(170, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/kiro/front.svg",
  19436. extra: 1064 / 1012,
  19437. bottom: 0.052
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Micro",
  19444. height: math.unit(6, "inches")
  19445. },
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(6, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(72, "feet")
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. weight: math.unit(175, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/irishfox/front.svg",
  19466. extra: 1912 / 1680,
  19467. bottom: 0.02
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Nano",
  19474. height: math.unit(1, "mm")
  19475. },
  19476. {
  19477. name: "Micro",
  19478. height: math.unit(2, "inches")
  19479. },
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(5 + 9 / 12, "feet"),
  19483. default: true
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(45, "feet")
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(6 + 1 / 12, "feet"),
  19496. weight: math.unit(75, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/aronai-sieyes/front.svg",
  19500. extra: 1532/1450,
  19501. bottom: 42/1574
  19502. }
  19503. },
  19504. side: {
  19505. height: math.unit(6 + 1 / 12, "feet"),
  19506. weight: math.unit(75, "lb"),
  19507. name: "Side",
  19508. image: {
  19509. source: "./media/characters/aronai-sieyes/side.svg",
  19510. extra: 1422/1365,
  19511. bottom: 148/1570
  19512. }
  19513. },
  19514. back: {
  19515. height: math.unit(6 + 1 / 12, "feet"),
  19516. weight: math.unit(75, "lb"),
  19517. name: "Back",
  19518. image: {
  19519. source: "./media/characters/aronai-sieyes/back.svg",
  19520. extra: 1526/1464,
  19521. bottom: 51/1577
  19522. }
  19523. },
  19524. dressed: {
  19525. height: math.unit(6 + 1 / 12, "feet"),
  19526. weight: math.unit(75, "lb"),
  19527. name: "Dressed",
  19528. image: {
  19529. source: "./media/characters/aronai-sieyes/dressed.svg",
  19530. extra: 1559/1483,
  19531. bottom: 39/1598
  19532. }
  19533. },
  19534. slit: {
  19535. height: math.unit(1.3, "feet"),
  19536. name: "Slit",
  19537. image: {
  19538. source: "./media/characters/aronai-sieyes/slit.svg"
  19539. }
  19540. },
  19541. slitSpread: {
  19542. height: math.unit(0.9, "feet"),
  19543. name: "Slit (Spread)",
  19544. image: {
  19545. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19546. }
  19547. },
  19548. rump: {
  19549. height: math.unit(1.3, "feet"),
  19550. name: "Rump",
  19551. image: {
  19552. source: "./media/characters/aronai-sieyes/rump.svg"
  19553. }
  19554. },
  19555. maw: {
  19556. height: math.unit(1.25, "feet"),
  19557. name: "Maw",
  19558. image: {
  19559. source: "./media/characters/aronai-sieyes/maw.svg"
  19560. }
  19561. },
  19562. feral: {
  19563. height: math.unit(18, "feet"),
  19564. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19565. name: "Feral",
  19566. image: {
  19567. source: "./media/characters/aronai-sieyes/feral.svg",
  19568. extra: 1530 / 1240,
  19569. bottom: 0.035
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Micro",
  19576. height: math.unit(2, "inches")
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(6 + 1 / 12, "feet"),
  19581. default: true
  19582. }
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(12, "feet"),
  19590. weight: math.unit(410, "kg"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/xuna/front.svg",
  19594. extra: 2184 / 1980
  19595. }
  19596. },
  19597. side: {
  19598. height: math.unit(12, "feet"),
  19599. weight: math.unit(410, "kg"),
  19600. name: "Side",
  19601. image: {
  19602. source: "./media/characters/xuna/side.svg",
  19603. extra: 2184 / 1980
  19604. }
  19605. },
  19606. back: {
  19607. height: math.unit(12, "feet"),
  19608. weight: math.unit(410, "kg"),
  19609. name: "Back",
  19610. image: {
  19611. source: "./media/characters/xuna/back.svg",
  19612. extra: 2184 / 1980
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Nano glow",
  19619. height: math.unit(10, "nm")
  19620. },
  19621. {
  19622. name: "Micro floof",
  19623. height: math.unit(0.3, "m")
  19624. },
  19625. {
  19626. name: "Huggable softy boi",
  19627. height: math.unit(3.6576, "m"),
  19628. default: true
  19629. },
  19630. {
  19631. name: "Admirable floof",
  19632. height: math.unit(80, "meters")
  19633. },
  19634. {
  19635. name: "Gentle macro",
  19636. height: math.unit(300, "meters")
  19637. },
  19638. {
  19639. name: "Very careful floof",
  19640. height: math.unit(3200, "meters")
  19641. },
  19642. {
  19643. name: "The mega floof",
  19644. height: math.unit(36000, "meters")
  19645. },
  19646. {
  19647. name: "Giga-fur-Wicker",
  19648. height: math.unit(4800000, "meters")
  19649. },
  19650. {
  19651. name: "Licky world",
  19652. height: math.unit(20000000, "meters")
  19653. },
  19654. {
  19655. name: "Floofy cyan sun",
  19656. height: math.unit(1500000000, "meters")
  19657. },
  19658. {
  19659. name: "Milky Wicker",
  19660. height: math.unit(1000000000000000000000, "meters")
  19661. },
  19662. {
  19663. name: "The observing Wicker",
  19664. height: math.unit(999999999999999999999999999, "meters")
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19670. {
  19671. front: {
  19672. height: math.unit(5 + 9 / 12, "feet"),
  19673. weight: math.unit(150, "lb"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/arokha-sieyes/front.svg",
  19677. extra: 1425 / 1284,
  19678. bottom: 0.05
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(5 + 9 / 12, "feet")
  19686. },
  19687. {
  19688. name: "Macro",
  19689. height: math.unit(30, "meters"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(6, "feet"),
  19699. weight: math.unit(180, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/arokh-sieyes/front.svg",
  19703. extra: 1830 / 1769,
  19704. bottom: 0.01
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(6, "feet")
  19712. },
  19713. {
  19714. name: "Macro",
  19715. height: math.unit(30, "meters"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19722. {
  19723. side: {
  19724. height: math.unit(13 + 1 / 12, "feet"),
  19725. weight: math.unit(8.5, "tonnes"),
  19726. name: "Side",
  19727. image: {
  19728. source: "./media/characters/goldeneye/side.svg",
  19729. extra: 1182 / 778,
  19730. bottom: 0.067
  19731. }
  19732. },
  19733. paw: {
  19734. height: math.unit(3.4, "feet"),
  19735. name: "Paw",
  19736. image: {
  19737. source: "./media/characters/goldeneye/paw.svg"
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(13 + 1 / 12, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19751. {
  19752. front: {
  19753. height: math.unit(6 + 1 / 12, "feet"),
  19754. weight: math.unit(210, "lb"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/leonardo-lycheborne/front.svg",
  19758. extra: 776/723,
  19759. bottom: 34/810
  19760. }
  19761. },
  19762. side: {
  19763. height: math.unit(6 + 1 / 12, "feet"),
  19764. weight: math.unit(210, "lb"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/leonardo-lycheborne/side.svg",
  19768. extra: 780/728,
  19769. bottom: 12/792
  19770. }
  19771. },
  19772. back: {
  19773. height: math.unit(6 + 1 / 12, "feet"),
  19774. weight: math.unit(210, "lb"),
  19775. name: "Back",
  19776. image: {
  19777. source: "./media/characters/leonardo-lycheborne/back.svg",
  19778. extra: 775/721,
  19779. bottom: 17/792
  19780. }
  19781. },
  19782. hand: {
  19783. height: math.unit(1.08, "feet"),
  19784. name: "Hand",
  19785. image: {
  19786. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19787. }
  19788. },
  19789. foot: {
  19790. height: math.unit(1.32, "feet"),
  19791. name: "Foot",
  19792. image: {
  19793. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19794. }
  19795. },
  19796. maw: {
  19797. height: math.unit(1, "feet"),
  19798. name: "Maw",
  19799. image: {
  19800. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19801. }
  19802. },
  19803. were: {
  19804. height: math.unit(20, "feet"),
  19805. weight: math.unit(7800, "lb"),
  19806. name: "Were",
  19807. image: {
  19808. source: "./media/characters/leonardo-lycheborne/were.svg",
  19809. extra: 1224/1165,
  19810. bottom: 72/1296
  19811. }
  19812. },
  19813. feral: {
  19814. height: math.unit(7.5, "feet"),
  19815. weight: math.unit(600, "lb"),
  19816. name: "Feral",
  19817. image: {
  19818. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19819. extra: 797/702,
  19820. bottom: 139/936
  19821. }
  19822. },
  19823. taur: {
  19824. height: math.unit(11, "feet"),
  19825. weight: math.unit(3300, "lb"),
  19826. name: "Taur",
  19827. image: {
  19828. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19829. extra: 1271/1197,
  19830. bottom: 47/1318
  19831. }
  19832. },
  19833. barghest: {
  19834. height: math.unit(11, "feet"),
  19835. weight: math.unit(1300, "lb"),
  19836. name: "Barghest",
  19837. image: {
  19838. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19839. extra: 1291/1204,
  19840. bottom: 37/1328
  19841. }
  19842. },
  19843. dick: {
  19844. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19845. name: "Dick",
  19846. image: {
  19847. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19848. }
  19849. },
  19850. dickWere: {
  19851. height: math.unit((20) / 3.8, "feet"),
  19852. name: "Dick (Were)",
  19853. image: {
  19854. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(6 + 1 / 12, "feet"),
  19862. default: true
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19868. {
  19869. front: {
  19870. height: math.unit(10, "feet"),
  19871. weight: math.unit(350, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/jet/front.svg",
  19875. extra: 2050 / 1980,
  19876. bottom: 0.013
  19877. }
  19878. },
  19879. back: {
  19880. height: math.unit(10, "feet"),
  19881. weight: math.unit(350, "lb"),
  19882. name: "Back",
  19883. image: {
  19884. source: "./media/characters/jet/back.svg",
  19885. extra: 2050 / 1980,
  19886. bottom: 0.013
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Micro",
  19893. height: math.unit(6, "inches")
  19894. },
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(10, "feet"),
  19898. default: true
  19899. },
  19900. {
  19901. name: "Macro",
  19902. height: math.unit(100, "feet")
  19903. },
  19904. ]
  19905. ))
  19906. characterMakers.push(() => makeCharacter(
  19907. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19908. {
  19909. front: {
  19910. height: math.unit(15, "feet"),
  19911. weight: math.unit(2800, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/tanarath/front.svg",
  19915. extra: 2392 / 2220,
  19916. bottom: 0.03
  19917. }
  19918. },
  19919. back: {
  19920. height: math.unit(15, "feet"),
  19921. weight: math.unit(2800, "lb"),
  19922. name: "Back",
  19923. image: {
  19924. source: "./media/characters/tanarath/back.svg",
  19925. extra: 2392 / 2220,
  19926. bottom: 0.03
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(15, "feet"),
  19934. default: true
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(7 + 1 / 12, "feet"),
  19943. weight: math.unit(175, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/patty-cattybatty/front.svg",
  19947. extra: 908 / 874,
  19948. bottom: 0.025
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Micro",
  19955. height: math.unit(1, "inch")
  19956. },
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(7 + 1 / 12, "feet")
  19960. },
  19961. {
  19962. name: "Mini Macro",
  19963. height: math.unit(155, "feet")
  19964. },
  19965. {
  19966. name: "Macro",
  19967. height: math.unit(1077, "feet")
  19968. },
  19969. {
  19970. name: "Mega Macro",
  19971. height: math.unit(47650, "feet"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Giga Macro",
  19976. height: math.unit(440, "miles")
  19977. },
  19978. {
  19979. name: "Tera Macro",
  19980. height: math.unit(8700, "miles")
  19981. },
  19982. {
  19983. name: "Planetary Macro",
  19984. height: math.unit(32700, "miles")
  19985. },
  19986. {
  19987. name: "Solar Macro",
  19988. height: math.unit(550000, "miles")
  19989. },
  19990. {
  19991. name: "Celestial Macro",
  19992. height: math.unit(2.5, "AU")
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19998. {
  19999. front: {
  20000. height: math.unit(4 + 5 / 12, "feet"),
  20001. weight: math.unit(90, "lb"),
  20002. name: "Front",
  20003. image: {
  20004. source: "./media/characters/cappu/front.svg",
  20005. extra: 1247 / 1152,
  20006. bottom: 0.012
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(4 + 5 / 12, "feet"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20020. {
  20021. frontDressed: {
  20022. height: math.unit(70, "cm"),
  20023. weight: math.unit(6, "kg"),
  20024. name: "Front (Dressed)",
  20025. image: {
  20026. source: "./media/characters/sebi/front-dressed.svg",
  20027. extra: 713.5 / 686.5,
  20028. bottom: 0.003
  20029. }
  20030. },
  20031. front: {
  20032. height: math.unit(70, "cm"),
  20033. weight: math.unit(5, "kg"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/sebi/front.svg",
  20037. extra: 713.5 / 686.5,
  20038. bottom: 0.003
  20039. }
  20040. }
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(70, "cm"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Macro",
  20050. height: math.unit(8, "meters")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(6, "feet"),
  20059. weight: math.unit(150, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/typhek/front.svg",
  20063. extra: 1948 / 1929,
  20064. bottom: 0.025
  20065. }
  20066. },
  20067. side: {
  20068. height: math.unit(6, "feet"),
  20069. weight: math.unit(150, "lb"),
  20070. name: "Side",
  20071. image: {
  20072. source: "./media/characters/typhek/side.svg",
  20073. extra: 2034 / 2010,
  20074. bottom: 0.003
  20075. }
  20076. },
  20077. back: {
  20078. height: math.unit(6, "feet"),
  20079. weight: math.unit(150, "lb"),
  20080. name: "Back",
  20081. image: {
  20082. source: "./media/characters/typhek/back.svg",
  20083. extra: 2005 / 1978,
  20084. bottom: 0.004
  20085. }
  20086. },
  20087. palm: {
  20088. height: math.unit(1.2, "feet"),
  20089. name: "Palm",
  20090. image: {
  20091. source: "./media/characters/typhek/palm.svg"
  20092. }
  20093. },
  20094. fist: {
  20095. height: math.unit(1.1, "feet"),
  20096. name: "Fist",
  20097. image: {
  20098. source: "./media/characters/typhek/fist.svg"
  20099. }
  20100. },
  20101. foot: {
  20102. height: math.unit(1.57, "feet"),
  20103. name: "Foot",
  20104. image: {
  20105. source: "./media/characters/typhek/foot.svg"
  20106. }
  20107. },
  20108. sole: {
  20109. height: math.unit(2.05, "feet"),
  20110. name: "Sole",
  20111. image: {
  20112. source: "./media/characters/typhek/sole.svg"
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Macro",
  20119. height: math.unit(40, "stories"),
  20120. default: true
  20121. },
  20122. {
  20123. name: "Megamacro",
  20124. height: math.unit(1, "mile")
  20125. },
  20126. {
  20127. name: "Gigamacro",
  20128. height: math.unit(4000, "solarradii")
  20129. },
  20130. {
  20131. name: "Universal",
  20132. height: math.unit(1.1, "universes")
  20133. }
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20138. {
  20139. side: {
  20140. height: math.unit(5 + 7 / 12, "feet"),
  20141. weight: math.unit(150, "lb"),
  20142. name: "Side",
  20143. image: {
  20144. source: "./media/characters/kassy/side.svg",
  20145. extra: 1280 / 1225,
  20146. bottom: 0.002
  20147. }
  20148. },
  20149. front: {
  20150. height: math.unit(5 + 7 / 12, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/kassy/front.svg",
  20155. extra: 1280 / 1225,
  20156. bottom: 0.025
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(5 + 7 / 12, "feet"),
  20161. weight: math.unit(150, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/kassy/back.svg",
  20165. extra: 1280 / 1225,
  20166. bottom: 0.002
  20167. }
  20168. },
  20169. foot: {
  20170. height: math.unit(1.266, "feet"),
  20171. name: "Foot",
  20172. image: {
  20173. source: "./media/characters/kassy/foot.svg"
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(5 + 7 / 12, "feet")
  20181. },
  20182. {
  20183. name: "Macro",
  20184. height: math.unit(137, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Megamacro",
  20189. height: math.unit(1, "mile")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6 + 1 / 12, "feet"),
  20198. weight: math.unit(200, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/neil/front.svg",
  20202. extra: 1326 / 1250,
  20203. bottom: 0.023
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(6 + 1 / 12, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(200, "feet")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(5 + 9 / 12, "feet"),
  20224. weight: math.unit(190, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/atticus/front.svg",
  20228. extra: 2934 / 2785,
  20229. bottom: 0.025
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(5 + 9 / 12, "feet"),
  20237. default: true
  20238. },
  20239. {
  20240. name: "Macro",
  20241. height: math.unit(180, "feet")
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20247. {
  20248. side: {
  20249. height: math.unit(9, "feet"),
  20250. weight: math.unit(650, "lb"),
  20251. name: "Side",
  20252. image: {
  20253. source: "./media/characters/milo/side.svg",
  20254. extra: 2644 / 2310,
  20255. bottom: 0.032
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(9, "feet"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Macro",
  20267. height: math.unit(300, "feet")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20273. {
  20274. side: {
  20275. height: math.unit(8, "meters"),
  20276. weight: math.unit(90000, "kg"),
  20277. name: "Side",
  20278. image: {
  20279. source: "./media/characters/ijzer/side.svg",
  20280. extra: 2756 / 1600,
  20281. bottom: 0.01
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Small",
  20288. height: math.unit(3, "meters")
  20289. },
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(8, "meters"),
  20293. default: true
  20294. },
  20295. {
  20296. name: "Normal+",
  20297. height: math.unit(10, "meters")
  20298. },
  20299. {
  20300. name: "Bigger",
  20301. height: math.unit(24, "meters")
  20302. },
  20303. {
  20304. name: "Huge",
  20305. height: math.unit(80, "meters")
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(6 + 2 / 12, "feet"),
  20314. weight: math.unit(153, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/luca-cervicum/front.svg",
  20318. extra: 370 / 327,
  20319. bottom: 0.015
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(6 + 2 / 12, "feet"),
  20324. weight: math.unit(153, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/luca-cervicum/back.svg",
  20328. extra: 367 / 333,
  20329. bottom: 0.005
  20330. }
  20331. },
  20332. frontGear: {
  20333. height: math.unit(6 + 2 / 12, "feet"),
  20334. weight: math.unit(173, "lb"),
  20335. name: "Front (Gear)",
  20336. image: {
  20337. source: "./media/characters/luca-cervicum/front-gear.svg",
  20338. extra: 377 / 333,
  20339. bottom: 0.006
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(6 + 2 / 12, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(6 + 1 / 12, "feet"),
  20356. weight: math.unit(304, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/oliver/front.svg",
  20360. extra: 157 / 143,
  20361. bottom: 0.08
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(6 + 1 / 12, "feet"),
  20369. default: true
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20375. {
  20376. front: {
  20377. height: math.unit(5 + 7 / 12, "feet"),
  20378. weight: math.unit(140, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/shane/front.svg",
  20382. extra: 304 / 289,
  20383. bottom: 0.005
  20384. }
  20385. },
  20386. },
  20387. [
  20388. {
  20389. name: "Normal",
  20390. height: math.unit(5 + 7 / 12, "feet"),
  20391. default: true
  20392. },
  20393. ]
  20394. ))
  20395. characterMakers.push(() => makeCharacter(
  20396. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20397. {
  20398. front: {
  20399. height: math.unit(5 + 9 / 12, "feet"),
  20400. weight: math.unit(178, "lb"),
  20401. name: "Front",
  20402. image: {
  20403. source: "./media/characters/shin/front.svg",
  20404. extra: 159 / 151,
  20405. bottom: 0.015
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(5 + 9 / 12, "feet"),
  20413. default: true
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20419. {
  20420. front: {
  20421. height: math.unit(5 + 10 / 12, "feet"),
  20422. weight: math.unit(168, "lb"),
  20423. name: "Front",
  20424. image: {
  20425. source: "./media/characters/xerxes/front.svg",
  20426. extra: 282 / 260,
  20427. bottom: 0.045
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(5 + 10 / 12, "feet"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20441. {
  20442. front: {
  20443. height: math.unit(6 + 7 / 12, "feet"),
  20444. weight: math.unit(208, "lb"),
  20445. name: "Front",
  20446. image: {
  20447. source: "./media/characters/chaska/front.svg",
  20448. extra: 332 / 319,
  20449. bottom: 0.015
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(6 + 7 / 12, "feet"),
  20457. default: true
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20463. {
  20464. front: {
  20465. height: math.unit(5 + 8 / 12, "feet"),
  20466. weight: math.unit(208, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/enuk/front.svg",
  20470. extra: 437 / 406,
  20471. bottom: 0.02
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(5 + 8 / 12, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(5 + 10 / 12, "feet"),
  20488. weight: math.unit(252, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/bruun/front.svg",
  20492. extra: 197 / 187,
  20493. bottom: 0.012
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(5 + 10 / 12, "feet"),
  20501. default: true
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(6 + 10 / 12, "feet"),
  20510. weight: math.unit(255, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/alexeev/front.svg",
  20514. extra: 213 / 200,
  20515. bottom: 0.05
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(6 + 10 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(2 + 8 / 12, "feet"),
  20532. weight: math.unit(22, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/evelyn/front.svg",
  20536. extra: 208 / 180
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(2 + 8 / 12, "feet"),
  20544. default: true
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(5 + 9 / 12, "feet"),
  20553. weight: math.unit(139, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/inca/front.svg",
  20557. extra: 294 / 291,
  20558. bottom: 0.03
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(5 + 9 / 12, "feet"),
  20566. default: true
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(6 + 3 / 12, "feet"),
  20575. weight: math.unit(185, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/mera/front.svg",
  20579. extra: 291 / 277,
  20580. bottom: 0.03
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(6 + 3 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(6 + 7 / 12, "feet"),
  20597. weight: math.unit(160, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/ceres/front.svg",
  20601. extra: 1023 / 950,
  20602. bottom: 0.027
  20603. }
  20604. },
  20605. back: {
  20606. height: math.unit(6 + 7 / 12, "feet"),
  20607. weight: math.unit(160, "lb"),
  20608. name: "Back",
  20609. image: {
  20610. source: "./media/characters/ceres/back.svg",
  20611. extra: 1023 / 950
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(6 + 7 / 12, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(5 + 10 / 12, "feet"),
  20628. weight: math.unit(150, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/kris/front.svg",
  20632. extra: 885 / 803,
  20633. bottom: 0.03
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(5 + 10 / 12, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(7, "feet"),
  20650. weight: math.unit(120, "kg"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/taluthus/front.svg",
  20654. extra: 903 / 833,
  20655. bottom: 0.015
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(7, "feet"),
  20663. default: true
  20664. },
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(300, "feet")
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20673. {
  20674. front: {
  20675. height: math.unit(5 + 9 / 12, "feet"),
  20676. weight: math.unit(145, "lb"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/dawn/front.svg",
  20680. extra: 2094 / 2016,
  20681. bottom: 0.025
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 9 / 12, "feet"),
  20686. weight: math.unit(160, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/dawn/back.svg",
  20690. extra: 2112 / 2080,
  20691. bottom: 0.005
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(6 + 7 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20705. {
  20706. anthro: {
  20707. height: math.unit(8 + 3 / 12, "feet"),
  20708. weight: math.unit(450, "lb"),
  20709. name: "Anthro",
  20710. image: {
  20711. source: "./media/characters/arador/anthro.svg",
  20712. extra: 1835 / 1718,
  20713. bottom: 0.025
  20714. }
  20715. },
  20716. feral: {
  20717. height: math.unit(4, "feet"),
  20718. weight: math.unit(200, "lb"),
  20719. name: "Feral",
  20720. image: {
  20721. source: "./media/characters/arador/feral.svg",
  20722. extra: 1683 / 1514,
  20723. bottom: 0.07
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Normal",
  20730. height: math.unit(8 + 3 / 12, "feet")
  20731. },
  20732. {
  20733. name: "Macro",
  20734. height: math.unit(82.5, "feet"),
  20735. default: true
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20741. {
  20742. front: {
  20743. height: math.unit(5 + 10 / 12, "feet"),
  20744. weight: math.unit(125, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/dharsi/front.svg",
  20748. extra: 716 / 630,
  20749. bottom: 0.035
  20750. }
  20751. },
  20752. },
  20753. [
  20754. {
  20755. name: "Nano",
  20756. height: math.unit(100, "nm")
  20757. },
  20758. {
  20759. name: "Micro",
  20760. height: math.unit(2, "inches")
  20761. },
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(5 + 10 / 12, "feet"),
  20765. default: true
  20766. },
  20767. {
  20768. name: "Macro",
  20769. height: math.unit(1000, "feet")
  20770. },
  20771. {
  20772. name: "Megamacro",
  20773. height: math.unit(10, "miles")
  20774. },
  20775. {
  20776. name: "Gigamacro",
  20777. height: math.unit(3000, "miles")
  20778. },
  20779. {
  20780. name: "Teramacro",
  20781. height: math.unit(500000, "miles")
  20782. },
  20783. {
  20784. name: "Teramacro+",
  20785. height: math.unit(30, "galaxies")
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(6, "feet"),
  20794. weight: math.unit(150, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/deathy/front.svg",
  20798. extra: 1552 / 1463,
  20799. bottom: 0.025
  20800. }
  20801. },
  20802. side: {
  20803. height: math.unit(6, "feet"),
  20804. weight: math.unit(150, "lb"),
  20805. name: "Side",
  20806. image: {
  20807. source: "./media/characters/deathy/side.svg",
  20808. extra: 1604 / 1455,
  20809. bottom: 0.025
  20810. }
  20811. },
  20812. back: {
  20813. height: math.unit(6, "feet"),
  20814. weight: math.unit(150, "lb"),
  20815. name: "Back",
  20816. image: {
  20817. source: "./media/characters/deathy/back.svg",
  20818. extra: 1580 / 1463,
  20819. bottom: 0.005
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Micro",
  20826. height: math.unit(5, "millimeters")
  20827. },
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(6 + 5 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20837. {
  20838. front: {
  20839. height: math.unit(16, "feet"),
  20840. weight: math.unit(4000, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/juniper/front.svg",
  20844. bottom: 0.04
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(16, "feet"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20858. {
  20859. front: {
  20860. height: math.unit(6, "feet"),
  20861. weight: math.unit(150, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/hipster/front.svg",
  20865. extra: 1312 / 1209,
  20866. bottom: 0.025
  20867. }
  20868. },
  20869. back: {
  20870. height: math.unit(6, "feet"),
  20871. weight: math.unit(150, "lb"),
  20872. name: "Back",
  20873. image: {
  20874. source: "./media/characters/hipster/back.svg",
  20875. extra: 1281 / 1196,
  20876. bottom: 0.01
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Micro",
  20883. height: math.unit(1, "mm")
  20884. },
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(4, "inches"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(500, "feet")
  20893. },
  20894. {
  20895. name: "Megamacro",
  20896. height: math.unit(1000, "miles")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(6, "feet"),
  20905. weight: math.unit(150, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/tendirmuldr/front.svg",
  20909. extra: 1878 / 1772,
  20910. bottom: 0.015
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Megamacro",
  20917. height: math.unit(1500, "miles"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20924. {
  20925. front: {
  20926. height: math.unit(14, "feet"),
  20927. weight: math.unit(12000, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/mort/front.svg",
  20931. extra: 365 / 318,
  20932. bottom: 0.01
  20933. }
  20934. },
  20935. side: {
  20936. height: math.unit(14, "feet"),
  20937. weight: math.unit(12000, "lb"),
  20938. name: "Side",
  20939. image: {
  20940. source: "./media/characters/mort/side.svg",
  20941. extra: 365 / 318,
  20942. bottom: 0.052
  20943. },
  20944. default: true
  20945. },
  20946. back: {
  20947. height: math.unit(14, "feet"),
  20948. weight: math.unit(12000, "lb"),
  20949. name: "Back",
  20950. image: {
  20951. source: "./media/characters/mort/back.svg",
  20952. extra: 371 / 332,
  20953. bottom: 0.18
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(14, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20967. {
  20968. front: {
  20969. height: math.unit(8, "feet"),
  20970. weight: math.unit(1, "ton"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/lycoa/front.svg",
  20974. extra: 1836/1728,
  20975. bottom: 81/1917
  20976. }
  20977. },
  20978. back: {
  20979. height: math.unit(8, "feet"),
  20980. weight: math.unit(1, "ton"),
  20981. name: "Back",
  20982. image: {
  20983. source: "./media/characters/lycoa/back.svg",
  20984. extra: 1785/1720,
  20985. bottom: 91/1876
  20986. }
  20987. },
  20988. head: {
  20989. height: math.unit(1.6243, "feet"),
  20990. name: "Head",
  20991. image: {
  20992. source: "./media/characters/lycoa/head.svg",
  20993. extra: 1011/782,
  20994. bottom: 0/1011
  20995. }
  20996. },
  20997. tailmaw: {
  20998. height: math.unit(1.9, "feet"),
  20999. name: "Tailmaw",
  21000. image: {
  21001. source: "./media/characters/lycoa/tailmaw.svg"
  21002. }
  21003. },
  21004. tentacles: {
  21005. height: math.unit(2.1, "feet"),
  21006. name: "Tentacles",
  21007. image: {
  21008. source: "./media/characters/lycoa/tentacles.svg"
  21009. }
  21010. },
  21011. dick: {
  21012. height: math.unit(1.73, "feet"),
  21013. name: "Dick",
  21014. image: {
  21015. source: "./media/characters/lycoa/dick.svg"
  21016. }
  21017. },
  21018. },
  21019. [
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(8, "feet"),
  21023. default: true
  21024. },
  21025. {
  21026. name: "Macro",
  21027. height: math.unit(30, "feet")
  21028. },
  21029. ]
  21030. ))
  21031. characterMakers.push(() => makeCharacter(
  21032. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21033. {
  21034. front: {
  21035. height: math.unit(4 + 2 / 12, "feet"),
  21036. weight: math.unit(70, "lb"),
  21037. name: "Front",
  21038. image: {
  21039. source: "./media/characters/naldara/front.svg",
  21040. extra: 1664/1387,
  21041. bottom: 81/1745
  21042. },
  21043. form: "anthro",
  21044. default: true
  21045. },
  21046. naga: {
  21047. height: math.unit(20, "feet"),
  21048. weight: math.unit(15000, "kg"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/naldara/naga.svg",
  21052. extra: 1590/1396,
  21053. bottom: 285/1875
  21054. },
  21055. form: "naga",
  21056. default: true
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(4 + 2 / 12, "feet"),
  21063. form: "anthro",
  21064. default: true
  21065. },
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(20, "feet"),
  21069. form: "naga",
  21070. default: true
  21071. },
  21072. ],
  21073. {
  21074. "anthro": {
  21075. name: "Anthro",
  21076. default: true
  21077. },
  21078. "naga": {
  21079. name: "Naga"
  21080. }
  21081. }
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(13 + 7 / 12, "feet"),
  21088. weight: math.unit(1500, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/briar/front.svg",
  21092. extra: 1223/1157,
  21093. bottom: 123/1346
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(13 + 7 / 12, "feet"),
  21101. default: true
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21107. {
  21108. side: {
  21109. height: math.unit(16, "feet"),
  21110. weight: math.unit(500, "lb"),
  21111. name: "Side",
  21112. image: {
  21113. source: "./media/characters/vanguard/side.svg",
  21114. extra: 1022/914,
  21115. bottom: 30/1052
  21116. }
  21117. },
  21118. sideAlt: {
  21119. height: math.unit(10, "feet"),
  21120. weight: math.unit(500, "lb"),
  21121. name: "Side (Alt)",
  21122. image: {
  21123. source: "./media/characters/vanguard/side-alt.svg",
  21124. extra: 502 / 425,
  21125. bottom: 0.087
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(17.71, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(7.5, "feet"),
  21142. weight: math.unit(2, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/artemis/work-safe-front.svg",
  21146. extra: 1192 / 1075,
  21147. bottom: 0.07
  21148. },
  21149. form: "work-safe",
  21150. default: true
  21151. },
  21152. frontNsfw: {
  21153. height: math.unit(7.5, "feet"),
  21154. weight: math.unit(2, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/artemis/calibrating-front.svg",
  21158. extra: 1192 / 1075,
  21159. bottom: 0.07
  21160. },
  21161. form: "calibrating",
  21162. default: true
  21163. },
  21164. frontNsfwer: {
  21165. height: math.unit(7.5, "feet"),
  21166. weight: math.unit(2, "lb"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/artemis/oversize-load-front.svg",
  21170. extra: 1192 / 1075,
  21171. bottom: 0.07
  21172. },
  21173. form: "oversize-load",
  21174. default: true
  21175. },
  21176. side: {
  21177. height: math.unit(7.5, "feet"),
  21178. weight: math.unit(2, "lb"),
  21179. name: "Side",
  21180. image: {
  21181. source: "./media/characters/artemis/work-safe-side.svg",
  21182. extra: 1192 / 1075,
  21183. bottom: 0.07
  21184. },
  21185. form: "work-safe"
  21186. },
  21187. sideNsfw: {
  21188. height: math.unit(7.5, "feet"),
  21189. weight: math.unit(2, "lb"),
  21190. name: "Side",
  21191. image: {
  21192. source: "./media/characters/artemis/calibrating-side.svg",
  21193. extra: 1192 / 1075,
  21194. bottom: 0.07
  21195. },
  21196. form: "calibrating"
  21197. },
  21198. sideNsfwer: {
  21199. height: math.unit(7.5, "feet"),
  21200. weight: math.unit(2, "lb"),
  21201. name: "Side",
  21202. image: {
  21203. source: "./media/characters/artemis/oversize-load-side.svg",
  21204. extra: 1192 / 1075,
  21205. bottom: 0.07
  21206. },
  21207. form: "oversize-load"
  21208. },
  21209. maw: {
  21210. height: math.unit(1.1, "feet"),
  21211. name: "Maw",
  21212. image: {
  21213. source: "./media/characters/artemis/maw.svg"
  21214. },
  21215. form: "work-safe"
  21216. },
  21217. stomach: {
  21218. height: math.unit(0.95, "feet"),
  21219. name: "Stomach",
  21220. image: {
  21221. source: "./media/characters/artemis/stomach.svg"
  21222. },
  21223. form: "work-safe"
  21224. },
  21225. dickCanine: {
  21226. height: math.unit(1, "feet"),
  21227. name: "Dick (Canine)",
  21228. image: {
  21229. source: "./media/characters/artemis/dick-canine.svg"
  21230. },
  21231. form: "calibrating"
  21232. },
  21233. dickEquine: {
  21234. height: math.unit(0.85, "feet"),
  21235. name: "Dick (Equine)",
  21236. image: {
  21237. source: "./media/characters/artemis/dick-equine.svg"
  21238. },
  21239. form: "calibrating"
  21240. },
  21241. dickExotic: {
  21242. height: math.unit(0.85, "feet"),
  21243. name: "Dick (Exotic)",
  21244. image: {
  21245. source: "./media/characters/artemis/dick-exotic.svg"
  21246. },
  21247. form: "calibrating"
  21248. },
  21249. dickCanineBigger: {
  21250. height: math.unit(1 * 1.33, "feet"),
  21251. name: "Dick (Canine)",
  21252. image: {
  21253. source: "./media/characters/artemis/dick-canine.svg"
  21254. },
  21255. form: "oversize-load"
  21256. },
  21257. dickEquineBigger: {
  21258. height: math.unit(0.85 * 1.33, "feet"),
  21259. name: "Dick (Equine)",
  21260. image: {
  21261. source: "./media/characters/artemis/dick-equine.svg"
  21262. },
  21263. form: "oversize-load"
  21264. },
  21265. dickExoticBigger: {
  21266. height: math.unit(0.85 * 1.33, "feet"),
  21267. name: "Dick (Exotic)",
  21268. image: {
  21269. source: "./media/characters/artemis/dick-exotic.svg"
  21270. },
  21271. form: "oversize-load"
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(7.5, "feet"),
  21278. form: "work-safe",
  21279. default: true
  21280. },
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(7.5, "feet"),
  21284. form: "calibrating",
  21285. default: true
  21286. },
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(7.5, "feet"),
  21290. form: "oversize-load",
  21291. default: true
  21292. },
  21293. {
  21294. name: "Enlarged",
  21295. height: math.unit(12, "feet"),
  21296. form: "work-safe",
  21297. },
  21298. {
  21299. name: "Enlarged",
  21300. height: math.unit(12, "feet"),
  21301. form: "calibrating",
  21302. },
  21303. {
  21304. name: "Enlarged",
  21305. height: math.unit(12, "feet"),
  21306. form: "oversize-load",
  21307. },
  21308. ],
  21309. {
  21310. "work-safe": {
  21311. name: "Work-Safe",
  21312. default: true
  21313. },
  21314. "calibrating": {
  21315. name: "Calibrating"
  21316. },
  21317. "oversize-load": {
  21318. name: "Oversize Load"
  21319. }
  21320. }
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(5 + 3 / 12, "feet"),
  21327. weight: math.unit(160, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/kira/front.svg",
  21331. extra: 906 / 786,
  21332. bottom: 0.01
  21333. }
  21334. },
  21335. back: {
  21336. height: math.unit(5 + 3 / 12, "feet"),
  21337. weight: math.unit(160, "lb"),
  21338. name: "Back",
  21339. image: {
  21340. source: "./media/characters/kira/back.svg",
  21341. extra: 882 / 757,
  21342. bottom: 0.005
  21343. }
  21344. },
  21345. frontDressed: {
  21346. height: math.unit(5 + 3 / 12, "feet"),
  21347. weight: math.unit(160, "lb"),
  21348. name: "Front (Dressed)",
  21349. image: {
  21350. source: "./media/characters/kira/front-dressed.svg",
  21351. extra: 906 / 786,
  21352. bottom: 0.01
  21353. }
  21354. },
  21355. beans: {
  21356. height: math.unit(0.92, "feet"),
  21357. name: "Beans",
  21358. image: {
  21359. source: "./media/characters/kira/beans.svg"
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(5 + 3 / 12, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(5 + 4 / 12, "feet"),
  21376. weight: math.unit(145, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/scramble/front.svg",
  21380. extra: 763 / 727,
  21381. bottom: 0.05
  21382. }
  21383. },
  21384. back: {
  21385. height: math.unit(5 + 4 / 12, "feet"),
  21386. weight: math.unit(145, "lb"),
  21387. name: "Back",
  21388. image: {
  21389. source: "./media/characters/scramble/back.svg",
  21390. extra: 826 / 737,
  21391. bottom: 0.002
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(5 + 4 / 12, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21405. {
  21406. side: {
  21407. height: math.unit(6 + 2 / 12, "feet"),
  21408. weight: math.unit(190, "lb"),
  21409. name: "Side",
  21410. image: {
  21411. source: "./media/characters/biscuit/side.svg",
  21412. extra: 858 / 791,
  21413. bottom: 0.044
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(6 + 2 / 12, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(5 + 2 / 12, "feet"),
  21430. weight: math.unit(120, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/poffin/front.svg",
  21434. extra: 786 / 680,
  21435. bottom: 0.005
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 2 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(6 + 3 / 12, "feet"),
  21452. weight: math.unit(519, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/dhari/front.svg",
  21456. extra: 1048 / 946,
  21457. bottom: 0.015
  21458. }
  21459. },
  21460. back: {
  21461. height: math.unit(6 + 3 / 12, "feet"),
  21462. weight: math.unit(519, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/dhari/back.svg",
  21466. extra: 1048 / 931,
  21467. bottom: 0.005
  21468. }
  21469. },
  21470. frontDressed: {
  21471. height: math.unit(6 + 3 / 12, "feet"),
  21472. weight: math.unit(519, "lb"),
  21473. name: "Front (Dressed)",
  21474. image: {
  21475. source: "./media/characters/dhari/front-dressed.svg",
  21476. extra: 1713 / 1546,
  21477. bottom: 0.02
  21478. }
  21479. },
  21480. backDressed: {
  21481. height: math.unit(6 + 3 / 12, "feet"),
  21482. weight: math.unit(519, "lb"),
  21483. name: "Back (Dressed)",
  21484. image: {
  21485. source: "./media/characters/dhari/back-dressed.svg",
  21486. extra: 1699 / 1537,
  21487. bottom: 0.01
  21488. }
  21489. },
  21490. maw: {
  21491. height: math.unit(0.95, "feet"),
  21492. name: "Maw",
  21493. image: {
  21494. source: "./media/characters/dhari/maw.svg"
  21495. }
  21496. },
  21497. wereFront: {
  21498. height: math.unit(12 + 8 / 12, "feet"),
  21499. weight: math.unit(4000, "lb"),
  21500. name: "Front (Were)",
  21501. image: {
  21502. source: "./media/characters/dhari/were-front.svg",
  21503. extra: 1065 / 969,
  21504. bottom: 0.015
  21505. }
  21506. },
  21507. wereBack: {
  21508. height: math.unit(12 + 8 / 12, "feet"),
  21509. weight: math.unit(4000, "lb"),
  21510. name: "Back (Were)",
  21511. image: {
  21512. source: "./media/characters/dhari/were-back.svg",
  21513. extra: 1065 / 969,
  21514. bottom: 0.012
  21515. }
  21516. },
  21517. wereMaw: {
  21518. height: math.unit(0.625, "meters"),
  21519. name: "Maw (Were)",
  21520. image: {
  21521. source: "./media/characters/dhari/were-maw.svg"
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(6 + 3 / 12, "feet"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21535. {
  21536. anthro: {
  21537. height: math.unit(5 + 7 / 12, "feet"),
  21538. weight: math.unit(175, "lb"),
  21539. name: "Anthro",
  21540. image: {
  21541. source: "./media/characters/rena-dyne/anthro.svg",
  21542. extra: 1849 / 1785,
  21543. bottom: 0.005
  21544. }
  21545. },
  21546. taur: {
  21547. height: math.unit(15 + 6 / 12, "feet"),
  21548. weight: math.unit(8000, "lb"),
  21549. name: "Taur",
  21550. image: {
  21551. source: "./media/characters/rena-dyne/taur.svg",
  21552. extra: 2315 / 2234,
  21553. bottom: 0.033
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(5 + 7 / 12, "feet"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21567. {
  21568. front: {
  21569. height: math.unit(8, "feet"),
  21570. weight: math.unit(600, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/weremeep/front.svg",
  21574. extra: 967 / 862,
  21575. bottom: 0.01
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(8, "feet"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Lorg",
  21587. height: math.unit(12, "feet")
  21588. },
  21589. {
  21590. name: "Oh Lawd She Comin'",
  21591. height: math.unit(20, "feet")
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21597. {
  21598. front: {
  21599. height: math.unit(4, "feet"),
  21600. weight: math.unit(90, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/reza/front.svg",
  21604. extra: 1183 / 1111,
  21605. bottom: 0.017
  21606. }
  21607. },
  21608. back: {
  21609. height: math.unit(4, "feet"),
  21610. weight: math.unit(90, "lb"),
  21611. name: "Back",
  21612. image: {
  21613. source: "./media/characters/reza/back.svg",
  21614. extra: 1183 / 1111,
  21615. bottom: 0.01
  21616. }
  21617. },
  21618. drake: {
  21619. height: math.unit(30, "feet"),
  21620. weight: math.unit(246960, "lb"),
  21621. name: "Drake",
  21622. image: {
  21623. source: "./media/characters/reza/drake.svg",
  21624. extra: 2350 / 2024,
  21625. bottom: 60.7 / 2403
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(4, "feet"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21639. {
  21640. side: {
  21641. height: math.unit(15, "feet"),
  21642. weight: math.unit(14, "tons"),
  21643. name: "Side",
  21644. image: {
  21645. source: "./media/characters/athea/side.svg",
  21646. extra: 960 / 540,
  21647. bottom: 0.003
  21648. }
  21649. },
  21650. sitting: {
  21651. height: math.unit(6 * 2.85, "feet"),
  21652. weight: math.unit(14, "tons"),
  21653. name: "Sitting",
  21654. image: {
  21655. source: "./media/characters/athea/sitting.svg",
  21656. extra: 621 / 581,
  21657. bottom: 0.075
  21658. }
  21659. },
  21660. maw: {
  21661. height: math.unit(7.59498031496063, "feet"),
  21662. name: "Maw",
  21663. image: {
  21664. source: "./media/characters/athea/maw.svg"
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Lap Cat",
  21671. height: math.unit(2.5, "feet")
  21672. },
  21673. {
  21674. name: "Minimacro",
  21675. height: math.unit(15, "feet"),
  21676. default: true
  21677. },
  21678. {
  21679. name: "Macro",
  21680. height: math.unit(120, "feet")
  21681. },
  21682. {
  21683. name: "Macro+",
  21684. height: math.unit(640, "feet")
  21685. },
  21686. {
  21687. name: "Colossus",
  21688. height: math.unit(2.2, "miles")
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(8 + 8 / 12, "feet"),
  21697. weight: math.unit(130, "kg"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/seroko/front.svg",
  21701. extra: 1385 / 1280,
  21702. bottom: 0.025
  21703. }
  21704. },
  21705. back: {
  21706. height: math.unit(8 + 8 / 12, "feet"),
  21707. weight: math.unit(130, "kg"),
  21708. name: "Back",
  21709. image: {
  21710. source: "./media/characters/seroko/back.svg",
  21711. extra: 1369 / 1238,
  21712. bottom: 0.018
  21713. }
  21714. },
  21715. frontDressed: {
  21716. height: math.unit(8 + 8 / 12, "feet"),
  21717. weight: math.unit(130, "kg"),
  21718. name: "Front (Dressed)",
  21719. image: {
  21720. source: "./media/characters/seroko/front-dressed.svg",
  21721. extra: 1366 / 1275,
  21722. bottom: 0.03
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(8 + 8 / 12, "feet"),
  21730. default: true
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(5.5, "feet"),
  21739. weight: math.unit(160, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/quatzi/front.svg",
  21743. extra: 2346 / 2242,
  21744. bottom: 0.015
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(5.5, "feet"),
  21752. default: true
  21753. },
  21754. {
  21755. name: "Big",
  21756. height: math.unit(7.7, "feet")
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 11 / 12, "feet"),
  21765. weight: math.unit(180, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/sen/front.svg",
  21769. extra: 1321 / 1254,
  21770. bottom: 0.015
  21771. }
  21772. },
  21773. side: {
  21774. height: math.unit(5 + 11 / 12, "feet"),
  21775. weight: math.unit(180, "lb"),
  21776. name: "Side",
  21777. image: {
  21778. source: "./media/characters/sen/side.svg",
  21779. extra: 1321 / 1254,
  21780. bottom: 0.007
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(5 + 11 / 12, "feet"),
  21785. weight: math.unit(180, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/sen/back.svg",
  21789. extra: 1321 / 1254
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(5 + 11 / 12, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(166.6, "cm"),
  21806. weight: math.unit(66.6, "kg"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/fruity/front.svg",
  21810. extra: 1510 / 1386,
  21811. bottom: 0.04
  21812. }
  21813. },
  21814. back: {
  21815. height: math.unit(166.6, "cm"),
  21816. weight: math.unit(66.6, "lb"),
  21817. name: "Back",
  21818. image: {
  21819. source: "./media/characters/fruity/back.svg",
  21820. extra: 1563 / 1435,
  21821. bottom: 0.005
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(166.6, "cm"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Demonic",
  21833. height: math.unit(166.6, "feet")
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21839. {
  21840. side: {
  21841. height: math.unit(10, "feet"),
  21842. weight: math.unit(500, "lb"),
  21843. name: "Side",
  21844. image: {
  21845. source: "./media/characters/zost/side.svg",
  21846. extra: 2870/2533,
  21847. bottom: 252/3122
  21848. }
  21849. },
  21850. mawFront: {
  21851. height: math.unit(1.08, "meters"),
  21852. name: "Maw (Front)",
  21853. image: {
  21854. source: "./media/characters/zost/maw-front.svg"
  21855. }
  21856. },
  21857. mawSide: {
  21858. height: math.unit(2.66, "feet"),
  21859. name: "Maw (Side)",
  21860. image: {
  21861. source: "./media/characters/zost/maw-side.svg"
  21862. }
  21863. },
  21864. wingspan: {
  21865. height: math.unit(7.4, "feet"),
  21866. name: "Wingspan",
  21867. image: {
  21868. source: "./media/characters/zost/wingspan.svg"
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(10, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(5 + 4 / 12, "feet"),
  21885. weight: math.unit(120, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/luci/front.svg",
  21889. extra: 1985 / 1884,
  21890. bottom: 0.04
  21891. }
  21892. },
  21893. back: {
  21894. height: math.unit(5 + 4 / 12, "feet"),
  21895. weight: math.unit(120, "lb"),
  21896. name: "Back",
  21897. image: {
  21898. source: "./media/characters/luci/back.svg",
  21899. extra: 1892 / 1791,
  21900. bottom: 0.002
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(5 + 4 / 12, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(1500, "feet"),
  21917. weight: math.unit(3.8e6, "tons"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/2th/front.svg",
  21921. extra: 3489 / 3350,
  21922. bottom: 0.1
  21923. }
  21924. },
  21925. foot: {
  21926. height: math.unit(461, "feet"),
  21927. name: "Foot",
  21928. image: {
  21929. source: "./media/characters/2th/foot.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "\"Micro\"",
  21936. height: math.unit(15 + 7 / 12, "feet")
  21937. },
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(1500, "feet"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(5000, "feet")
  21946. },
  21947. {
  21948. name: "Megamacro",
  21949. height: math.unit(15, "miles")
  21950. },
  21951. {
  21952. name: "Gigamacro",
  21953. height: math.unit(4000, "miles")
  21954. },
  21955. {
  21956. name: "Galactic",
  21957. height: math.unit(50, "AU")
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(5 + 6 / 12, "feet"),
  21966. weight: math.unit(220, "lb"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/amethyst/front.svg",
  21970. extra: 2078 / 2040,
  21971. bottom: 0.045
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(5 + 6 / 12, "feet"),
  21976. weight: math.unit(220, "lb"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/amethyst/back.svg",
  21980. extra: 2021 / 1989,
  21981. bottom: 0.02
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(5 + 6 / 12, "feet"),
  21989. default: true
  21990. },
  21991. ]
  21992. ))
  21993. characterMakers.push(() => makeCharacter(
  21994. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21995. {
  21996. front: {
  21997. height: math.unit(4 + 11 / 12, "feet"),
  21998. weight: math.unit(120, "lb"),
  21999. name: "Front",
  22000. image: {
  22001. source: "./media/characters/yumi-akiyama/front.svg",
  22002. extra: 1327 / 1235,
  22003. bottom: 0.02
  22004. }
  22005. },
  22006. back: {
  22007. height: math.unit(4 + 11 / 12, "feet"),
  22008. weight: math.unit(120, "lb"),
  22009. name: "Back",
  22010. image: {
  22011. source: "./media/characters/yumi-akiyama/back.svg",
  22012. extra: 1287 / 1245,
  22013. bottom: 0.002
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Galactic",
  22020. height: math.unit(50, "galaxies"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Universal",
  22025. height: math.unit(100, "universes")
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(8, "feet"),
  22034. weight: math.unit(500, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/rifter-yrmori/front.svg",
  22038. extra: 1180 / 1125,
  22039. bottom: 0.02
  22040. }
  22041. },
  22042. back: {
  22043. height: math.unit(8, "feet"),
  22044. weight: math.unit(500, "lb"),
  22045. name: "Back",
  22046. image: {
  22047. source: "./media/characters/rifter-yrmori/back.svg",
  22048. extra: 1190 / 1145,
  22049. bottom: 0.001
  22050. }
  22051. },
  22052. wings: {
  22053. height: math.unit(7.75, "feet"),
  22054. weight: math.unit(500, "lb"),
  22055. name: "Wings",
  22056. image: {
  22057. source: "./media/characters/rifter-yrmori/wings.svg",
  22058. extra: 1357 / 1285
  22059. }
  22060. },
  22061. maw: {
  22062. height: math.unit(0.8, "feet"),
  22063. name: "Maw",
  22064. image: {
  22065. source: "./media/characters/rifter-yrmori/maw.svg"
  22066. }
  22067. },
  22068. mawfront: {
  22069. height: math.unit(1.45, "feet"),
  22070. name: "Maw (Front)",
  22071. image: {
  22072. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(8, "feet"),
  22080. default: true
  22081. },
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(42, "meters")
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22090. {
  22091. were: {
  22092. height: math.unit(25 + 6 / 12, "feet"),
  22093. weight: math.unit(10000, "lb"),
  22094. name: "Were",
  22095. image: {
  22096. source: "./media/characters/tahajin/were.svg",
  22097. extra: 801 / 770,
  22098. bottom: 0.042
  22099. }
  22100. },
  22101. aquatic: {
  22102. height: math.unit(6 + 4 / 12, "feet"),
  22103. weight: math.unit(160, "lb"),
  22104. name: "Aquatic",
  22105. image: {
  22106. source: "./media/characters/tahajin/aquatic.svg",
  22107. extra: 572 / 542,
  22108. bottom: 0.04
  22109. }
  22110. },
  22111. chow: {
  22112. height: math.unit(8 + 11 / 12, "feet"),
  22113. weight: math.unit(450, "lb"),
  22114. name: "Chow",
  22115. image: {
  22116. source: "./media/characters/tahajin/chow.svg",
  22117. extra: 660 / 640,
  22118. bottom: 0.015
  22119. }
  22120. },
  22121. demiNaga: {
  22122. height: math.unit(6 + 8 / 12, "feet"),
  22123. weight: math.unit(300, "lb"),
  22124. name: "Demi Naga",
  22125. image: {
  22126. source: "./media/characters/tahajin/demi-naga.svg",
  22127. extra: 643 / 615,
  22128. bottom: 0.1
  22129. }
  22130. },
  22131. data: {
  22132. height: math.unit(5, "inches"),
  22133. weight: math.unit(0.1, "lb"),
  22134. name: "Data",
  22135. image: {
  22136. source: "./media/characters/tahajin/data.svg"
  22137. }
  22138. },
  22139. fluu: {
  22140. height: math.unit(5 + 7 / 12, "feet"),
  22141. weight: math.unit(140, "lb"),
  22142. name: "Fluu",
  22143. image: {
  22144. source: "./media/characters/tahajin/fluu.svg",
  22145. extra: 628 / 592,
  22146. bottom: 0.02
  22147. }
  22148. },
  22149. starWarrior: {
  22150. height: math.unit(4 + 5 / 12, "feet"),
  22151. weight: math.unit(50, "lb"),
  22152. name: "Star Warrior",
  22153. image: {
  22154. source: "./media/characters/tahajin/star-warrior.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(25 + 6 / 12, "feet"),
  22162. default: true
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(8, "feet"),
  22171. weight: math.unit(350, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/gabira/front.svg",
  22175. extra: 608 / 580,
  22176. bottom: 0.03
  22177. }
  22178. },
  22179. back: {
  22180. height: math.unit(8, "feet"),
  22181. weight: math.unit(350, "lb"),
  22182. name: "Back",
  22183. image: {
  22184. source: "./media/characters/gabira/back.svg",
  22185. extra: 608 / 580,
  22186. bottom: 0.03
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(8, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(5 + 3 / 12, "feet"),
  22203. weight: math.unit(137, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/sasha-katraine/front.svg",
  22207. extra: 1745/1694,
  22208. bottom: 37/1782
  22209. }
  22210. },
  22211. back: {
  22212. height: math.unit(5 + 3 / 12, "feet"),
  22213. weight: math.unit(137, "lb"),
  22214. name: "Back",
  22215. image: {
  22216. source: "./media/characters/sasha-katraine/back.svg",
  22217. extra: 1776/1699,
  22218. bottom: 26/1802
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Micro",
  22225. height: math.unit(5, "inches")
  22226. },
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(5 + 3 / 12, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22236. {
  22237. side: {
  22238. height: math.unit(4, "inches"),
  22239. weight: math.unit(200, "grams"),
  22240. name: "Side",
  22241. image: {
  22242. source: "./media/characters/der/side.svg",
  22243. extra: 719 / 400,
  22244. bottom: 30.6 / 749.9187
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Micro",
  22251. height: math.unit(4, "inches"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22258. {
  22259. side: {
  22260. height: math.unit(30, "meters"),
  22261. weight: math.unit(700, "tonnes"),
  22262. name: "Side",
  22263. image: {
  22264. source: "./media/characters/fixerdragon/side.svg",
  22265. extra: (1293.0514 - 116.03) / 1106.86,
  22266. bottom: 116.03 / 1293.0514
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Planck",
  22273. height: math.unit(1.6e-35, "meters")
  22274. },
  22275. {
  22276. name: "Micro",
  22277. height: math.unit(0.4, "meters")
  22278. },
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(30, "meters"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Megamacro",
  22286. height: math.unit(1.2, "megameters")
  22287. },
  22288. {
  22289. name: "Teramacro",
  22290. height: math.unit(130, "terameters")
  22291. },
  22292. {
  22293. name: "Yottamacro",
  22294. height: math.unit(6200, "yottameters")
  22295. },
  22296. ]
  22297. ));
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(8, "feet"),
  22303. weight: math.unit(250, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/kite/front.svg",
  22307. extra: 2796 / 2659,
  22308. bottom: 0.002
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(8, "feet"),
  22316. default: true
  22317. },
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(360, "feet")
  22321. },
  22322. {
  22323. name: "Megamacro",
  22324. height: math.unit(1500, "feet")
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22330. {
  22331. front: {
  22332. height: math.unit(5 + 11/12, "feet"),
  22333. weight: math.unit(170, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/poojawa-vynar/front.svg",
  22337. extra: 1735/1585,
  22338. bottom: 96/1831
  22339. }
  22340. },
  22341. back: {
  22342. height: math.unit(5 + 11/12, "feet"),
  22343. weight: math.unit(170, "lb"),
  22344. name: "Back",
  22345. image: {
  22346. source: "./media/characters/poojawa-vynar/back.svg",
  22347. extra: 1749/1607,
  22348. bottom: 28/1777
  22349. }
  22350. },
  22351. male: {
  22352. height: math.unit(5 + 11/12, "feet"),
  22353. weight: math.unit(170, "lb"),
  22354. name: "Male",
  22355. image: {
  22356. source: "./media/characters/poojawa-vynar/male.svg",
  22357. extra: 1855/1713,
  22358. bottom: 63/1918
  22359. }
  22360. },
  22361. taur: {
  22362. height: math.unit(5 + 11/12, "feet"),
  22363. weight: math.unit(170, "lb"),
  22364. name: "Taur",
  22365. image: {
  22366. source: "./media/characters/poojawa-vynar/taur.svg",
  22367. extra: 1151/1059,
  22368. bottom: 356/1507
  22369. }
  22370. },
  22371. frontDressed: {
  22372. height: math.unit(5 + 11/12, "feet"),
  22373. weight: math.unit(170, "lb"),
  22374. name: "Front (Dressed)",
  22375. image: {
  22376. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22377. extra: 1735/1585,
  22378. bottom: 96/1831
  22379. }
  22380. },
  22381. backDressed: {
  22382. height: math.unit(5 + 11/12, "feet"),
  22383. weight: math.unit(170, "lb"),
  22384. name: "Back (Dressed)",
  22385. image: {
  22386. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22387. extra: 1749/1607,
  22388. bottom: 28/1777
  22389. }
  22390. },
  22391. maleDressed: {
  22392. height: math.unit(5 + 11/12, "feet"),
  22393. weight: math.unit(170, "lb"),
  22394. name: "Male (Dressed)",
  22395. image: {
  22396. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22397. extra: 1855/1713,
  22398. bottom: 63/1918
  22399. }
  22400. },
  22401. taurDressed: {
  22402. height: math.unit(5 + 11/12, "feet"),
  22403. weight: math.unit(170, "lb"),
  22404. name: "Taur (Dressed)",
  22405. image: {
  22406. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22407. extra: 1151/1059,
  22408. bottom: 356/1507
  22409. }
  22410. },
  22411. maw: {
  22412. height: math.unit(1.46, "feet"),
  22413. name: "Maw",
  22414. image: {
  22415. source: "./media/characters/poojawa-vynar/maw.svg"
  22416. }
  22417. },
  22418. head: {
  22419. height: math.unit(2.34, "feet"),
  22420. name: "Head",
  22421. image: {
  22422. source: "./media/characters/poojawa-vynar/head.svg"
  22423. }
  22424. },
  22425. paw: {
  22426. height: math.unit(1.61, "feet"),
  22427. name: "Paw",
  22428. image: {
  22429. source: "./media/characters/poojawa-vynar/paw.svg"
  22430. }
  22431. },
  22432. pawToering: {
  22433. height: math.unit(1.72, "feet"),
  22434. name: "Paw (Toering)",
  22435. image: {
  22436. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22437. }
  22438. },
  22439. toering: {
  22440. height: math.unit(2.9, "inches"),
  22441. name: "Toering",
  22442. image: {
  22443. source: "./media/characters/poojawa-vynar/toering.svg"
  22444. }
  22445. },
  22446. shaft: {
  22447. height: math.unit(0.625, "feet"),
  22448. name: "Shaft",
  22449. image: {
  22450. source: "./media/characters/poojawa-vynar/shaft.svg"
  22451. }
  22452. },
  22453. spade: {
  22454. height: math.unit(0.42, "feet"),
  22455. name: "Spade",
  22456. image: {
  22457. source: "./media/characters/poojawa-vynar/spade.svg"
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Shortstack",
  22464. height: math.unit(4, "feet")
  22465. },
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 11 / 12, "feet"),
  22469. default: true
  22470. },
  22471. {
  22472. name: "Tauric",
  22473. height: math.unit(4, "meters")
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(293, "meters"),
  22482. weight: math.unit(70400, "tons"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/violette/front.svg",
  22486. extra: 1227 / 1180,
  22487. bottom: 0.005
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(293, "meters"),
  22492. weight: math.unit(70400, "tons"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/violette/back.svg",
  22496. extra: 1227 / 1180,
  22497. bottom: 0.005
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Macro",
  22504. height: math.unit(293, "meters"),
  22505. default: true
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(1050, "feet"),
  22514. weight: math.unit(200000, "tons"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/alessandra/front.svg",
  22518. extra: 960 / 912,
  22519. bottom: 0.06
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(1050, "feet")
  22527. },
  22528. {
  22529. name: "Macro+",
  22530. height: math.unit(900, "meters"),
  22531. default: true
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(5, "feet"),
  22540. weight: math.unit(187, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/person/front.svg",
  22544. extra: 3087 / 2945,
  22545. bottom: 91 / 3181
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Micro",
  22552. height: math.unit(3, "inches")
  22553. },
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5, "feet"),
  22557. default: true
  22558. },
  22559. {
  22560. name: "Macro",
  22561. height: math.unit(90, "feet")
  22562. },
  22563. {
  22564. name: "Max Size",
  22565. height: math.unit(280, "feet")
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(4.5, "meters"),
  22574. weight: math.unit(3200, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/ty/front.svg",
  22578. extra: 1038 / 960,
  22579. bottom: 31.156 / 1068
  22580. }
  22581. },
  22582. back: {
  22583. height: math.unit(4.5, "meters"),
  22584. weight: math.unit(3200, "lb"),
  22585. name: "Back",
  22586. image: {
  22587. source: "./media/characters/ty/back.svg",
  22588. extra: 1044 / 966,
  22589. bottom: 7.48 / 1049
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Normal",
  22596. height: math.unit(4.5, "meters"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22603. {
  22604. front: {
  22605. height: math.unit(5 + 4 / 12, "feet"),
  22606. weight: math.unit(115, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/rocky/front.svg",
  22610. extra: 1012 / 975,
  22611. bottom: 54 / 1066
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5 + 4 / 12, "feet"),
  22619. default: true
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22625. {
  22626. upright: {
  22627. height: math.unit(6, "meters"),
  22628. weight: math.unit(4000, "kg"),
  22629. name: "Upright",
  22630. image: {
  22631. source: "./media/characters/ruin/upright.svg",
  22632. extra: 668 / 661,
  22633. bottom: 42 / 799.8396
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(6, "meters"),
  22641. default: true
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22647. {
  22648. front: {
  22649. height: math.unit(5, "feet"),
  22650. weight: math.unit(106, "lb"),
  22651. name: "Front",
  22652. image: {
  22653. source: "./media/characters/robin/front.svg",
  22654. extra: 862 / 799,
  22655. bottom: 42.4 / 914.8856
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(5, "feet"),
  22663. default: true
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22669. {
  22670. side: {
  22671. height: math.unit(3, "feet"),
  22672. weight: math.unit(225, "lb"),
  22673. name: "Side",
  22674. image: {
  22675. source: "./media/characters/saian/side.svg",
  22676. extra: 566 / 356,
  22677. bottom: 79.7 / 643
  22678. }
  22679. },
  22680. maw: {
  22681. height: math.unit(2.85, "feet"),
  22682. name: "Maw",
  22683. image: {
  22684. source: "./media/characters/saian/maw.svg"
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(3, "feet"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22698. {
  22699. side: {
  22700. height: math.unit(8, "feet"),
  22701. weight: math.unit(300, "lb"),
  22702. name: "Side",
  22703. image: {
  22704. source: "./media/characters/equus-silvermane/side.svg",
  22705. extra: 2176 / 2050,
  22706. bottom: 65.7 / 2245
  22707. }
  22708. },
  22709. front: {
  22710. height: math.unit(8, "feet"),
  22711. weight: math.unit(300, "lb"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/equus-silvermane/front.svg",
  22715. extra: 4633 / 4400,
  22716. bottom: 71.3 / 4706.915
  22717. }
  22718. },
  22719. sideStepping: {
  22720. height: math.unit(8, "feet"),
  22721. weight: math.unit(300, "lb"),
  22722. name: "Side (Stepping)",
  22723. image: {
  22724. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22725. extra: 1968 / 1860,
  22726. bottom: 16.4 / 1989
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(8, "feet")
  22734. },
  22735. {
  22736. name: "Minimacro",
  22737. height: math.unit(75, "feet"),
  22738. default: true
  22739. },
  22740. {
  22741. name: "Macro",
  22742. height: math.unit(150, "feet")
  22743. },
  22744. {
  22745. name: "Macro+",
  22746. height: math.unit(1000, "feet")
  22747. },
  22748. {
  22749. name: "Megamacro",
  22750. height: math.unit(1, "mile")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22756. {
  22757. side: {
  22758. height: math.unit(20, "feet"),
  22759. weight: math.unit(30000, "kg"),
  22760. name: "Side",
  22761. image: {
  22762. source: "./media/characters/windar/side.svg",
  22763. extra: 1491 / 1248,
  22764. bottom: 82.56 / 1568
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(20, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22778. {
  22779. side: {
  22780. height: math.unit(15.66, "feet"),
  22781. weight: math.unit(150, "lb"),
  22782. name: "Side",
  22783. image: {
  22784. source: "./media/characters/melody/side.svg",
  22785. extra: 1097 / 944,
  22786. bottom: 11.8 / 1109
  22787. }
  22788. },
  22789. sideOutfit: {
  22790. height: math.unit(15.66, "feet"),
  22791. weight: math.unit(150, "lb"),
  22792. name: "Side (Outfit)",
  22793. image: {
  22794. source: "./media/characters/melody/side-outfit.svg",
  22795. extra: 1097 / 944,
  22796. bottom: 11.8 / 1109
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(15.66, "feet"),
  22804. default: true
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22810. {
  22811. front: {
  22812. height: math.unit(8, "feet"),
  22813. weight: math.unit(325, "lb"),
  22814. name: "Front",
  22815. image: {
  22816. source: "./media/characters/windera/front.svg",
  22817. extra: 3180 / 2845,
  22818. bottom: 178 / 3365
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(8, "feet"),
  22826. default: true
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22832. {
  22833. front: {
  22834. height: math.unit(28.75, "feet"),
  22835. weight: math.unit(2000, "kg"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/sonear/front.svg",
  22839. extra: 1041.1 / 964.9,
  22840. bottom: 53.7 / 1096.6
  22841. }
  22842. },
  22843. },
  22844. [
  22845. {
  22846. name: "Normal",
  22847. height: math.unit(28.75, "feet"),
  22848. default: true
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22854. {
  22855. side: {
  22856. height: math.unit(25.5, "feet"),
  22857. weight: math.unit(23000, "kg"),
  22858. name: "Side",
  22859. image: {
  22860. source: "./media/characters/kanara/side.svg"
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Normal",
  22867. height: math.unit(25.5, "feet"),
  22868. default: true
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22874. {
  22875. side: {
  22876. height: math.unit(10, "feet"),
  22877. weight: math.unit(1000, "kg"),
  22878. name: "Side",
  22879. image: {
  22880. source: "./media/characters/ereus/side.svg",
  22881. extra: 1157 / 959,
  22882. bottom: 153 / 1312.5
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Normal",
  22889. height: math.unit(10, "feet"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22896. {
  22897. side: {
  22898. height: math.unit(4.5, "feet"),
  22899. weight: math.unit(500, "lb"),
  22900. name: "Side",
  22901. image: {
  22902. source: "./media/characters/e-ter/side.svg",
  22903. extra: 1550 / 1248,
  22904. bottom: 146 / 1694
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(4.5, "feet"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22918. {
  22919. side: {
  22920. height: math.unit(9.7, "feet"),
  22921. weight: math.unit(4000, "kg"),
  22922. name: "Side",
  22923. image: {
  22924. source: "./media/characters/yamie/side.svg"
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(9.7, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(50, "feet"),
  22941. weight: math.unit(50000, "kg"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/anders/front.svg",
  22945. extra: 570 / 539,
  22946. bottom: 14.7 / 586.7
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Large",
  22953. height: math.unit(50, "feet")
  22954. },
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(2000, "feet"),
  22958. default: true
  22959. },
  22960. {
  22961. name: "Megamacro",
  22962. height: math.unit(12, "miles")
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(7 + 2 / 12, "feet"),
  22971. weight: math.unit(300, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/reban/front.svg",
  22975. extra: 1287/1212,
  22976. bottom: 148/1435
  22977. }
  22978. },
  22979. head: {
  22980. height: math.unit(1.95, "feet"),
  22981. name: "Head",
  22982. image: {
  22983. source: "./media/characters/reban/head.svg"
  22984. }
  22985. },
  22986. maw: {
  22987. height: math.unit(0.95, "feet"),
  22988. name: "Maw",
  22989. image: {
  22990. source: "./media/characters/reban/maw.svg"
  22991. }
  22992. },
  22993. foot: {
  22994. height: math.unit(1.65, "feet"),
  22995. name: "Foot",
  22996. image: {
  22997. source: "./media/characters/reban/foot.svg"
  22998. }
  22999. },
  23000. dick: {
  23001. height: math.unit(7 / 5, "feet"),
  23002. name: "Dick",
  23003. image: {
  23004. source: "./media/characters/reban/dick.svg"
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Natural Height",
  23011. height: math.unit(7 + 2 / 12, "feet")
  23012. },
  23013. {
  23014. name: "Macro",
  23015. height: math.unit(500, "feet"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Canon Height",
  23020. height: math.unit(50, "AU")
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(6, "feet"),
  23029. weight: math.unit(150, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/terrance-keayes/front.svg",
  23033. extra: 1.005,
  23034. bottom: 151 / 1615
  23035. }
  23036. },
  23037. side: {
  23038. height: math.unit(6, "feet"),
  23039. weight: math.unit(150, "lb"),
  23040. name: "Side",
  23041. image: {
  23042. source: "./media/characters/terrance-keayes/side.svg",
  23043. extra: 1.005,
  23044. bottom: 129.4 / 1544
  23045. }
  23046. },
  23047. back: {
  23048. height: math.unit(6, "feet"),
  23049. weight: math.unit(150, "lb"),
  23050. name: "Back",
  23051. image: {
  23052. source: "./media/characters/terrance-keayes/back.svg",
  23053. extra: 1.005,
  23054. bottom: 58.4 / 1557.3
  23055. }
  23056. },
  23057. dick: {
  23058. height: math.unit(6 * 0.208, "feet"),
  23059. name: "Dick",
  23060. image: {
  23061. source: "./media/characters/terrance-keayes/dick.svg"
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Canon Height",
  23068. height: math.unit(35, "miles"),
  23069. default: true
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23075. {
  23076. front: {
  23077. height: math.unit(6, "feet"),
  23078. weight: math.unit(150, "lb"),
  23079. name: "Front",
  23080. image: {
  23081. source: "./media/characters/ofelia/front.svg",
  23082. extra: 1130/1117,
  23083. bottom: 91/1221
  23084. }
  23085. },
  23086. back: {
  23087. height: math.unit(6, "feet"),
  23088. weight: math.unit(150, "lb"),
  23089. name: "Back",
  23090. image: {
  23091. source: "./media/characters/ofelia/back.svg",
  23092. extra: 1172/1159,
  23093. bottom: 28/1200
  23094. }
  23095. },
  23096. maw: {
  23097. height: math.unit(1, "feet"),
  23098. name: "Maw",
  23099. image: {
  23100. source: "./media/characters/ofelia/maw.svg"
  23101. }
  23102. },
  23103. foot: {
  23104. height: math.unit(1.949, "feet"),
  23105. name: "Foot",
  23106. image: {
  23107. source: "./media/characters/ofelia/foot.svg"
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Canon Height",
  23114. height: math.unit(2000, "miles"),
  23115. default: true
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(6, "feet"),
  23124. weight: math.unit(150, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/samuel/front.svg",
  23128. extra: 265 / 258,
  23129. bottom: 2 / 266.1566
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Macro",
  23136. height: math.unit(100, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Full Size",
  23141. height: math.unit(1000, "miles")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23147. {
  23148. front: {
  23149. height: math.unit(6, "feet"),
  23150. weight: math.unit(300, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/beishir-kiel/front.svg",
  23154. extra: 569 / 547,
  23155. bottom: 41.9 / 609
  23156. }
  23157. },
  23158. maw: {
  23159. height: math.unit(6 * 0.202, "feet"),
  23160. name: "Maw",
  23161. image: {
  23162. source: "./media/characters/beishir-kiel/maw.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(300, "feet"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(5 + 7/12, "feet"),
  23179. weight: math.unit(120, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/logan-grey/front.svg",
  23183. extra: 1836/1738,
  23184. bottom: 108/1944
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(5 + 7/12, "feet"),
  23189. weight: math.unit(120, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/logan-grey/back.svg",
  23193. extra: 1880/1794,
  23194. bottom: 24/1904
  23195. }
  23196. },
  23197. frontSfw: {
  23198. height: math.unit(5 + 7/12, "feet"),
  23199. weight: math.unit(120, "lb"),
  23200. name: "Front (SFW)",
  23201. image: {
  23202. source: "./media/characters/logan-grey/front-sfw.svg",
  23203. extra: 1836/1738,
  23204. bottom: 108/1944
  23205. }
  23206. },
  23207. backSfw: {
  23208. height: math.unit(5 + 7/12, "feet"),
  23209. weight: math.unit(120, "lb"),
  23210. name: "Back (SFW)",
  23211. image: {
  23212. source: "./media/characters/logan-grey/back-sfw.svg",
  23213. extra: 1880/1794,
  23214. bottom: 24/1904
  23215. }
  23216. },
  23217. hands: {
  23218. height: math.unit(0.84, "feet"),
  23219. name: "Hands",
  23220. image: {
  23221. source: "./media/characters/logan-grey/hands.svg"
  23222. }
  23223. },
  23224. paws: {
  23225. height: math.unit(0.72, "feet"),
  23226. name: "Paws",
  23227. image: {
  23228. source: "./media/characters/logan-grey/paws.svg"
  23229. }
  23230. },
  23231. cock: {
  23232. height: math.unit(1.45, "feet"),
  23233. name: "Cock",
  23234. image: {
  23235. source: "./media/characters/logan-grey/cock.svg"
  23236. }
  23237. },
  23238. cockAlt: {
  23239. height: math.unit(1.437, "feet"),
  23240. name: "Cock (alt)",
  23241. image: {
  23242. source: "./media/characters/logan-grey/cock-alt.svg"
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(5 + 8 / 12, "feet")
  23250. },
  23251. {
  23252. name: "The 500 Foot Femboy",
  23253. height: math.unit(500, "feet"),
  23254. default: true
  23255. },
  23256. {
  23257. name: "Megmacro",
  23258. height: math.unit(20, "miles")
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23264. {
  23265. front: {
  23266. height: math.unit(8 + 2 / 12, "feet"),
  23267. weight: math.unit(275, "lb"),
  23268. name: "Front",
  23269. image: {
  23270. source: "./media/characters/draganta/front.svg",
  23271. extra: 1177 / 1135,
  23272. bottom: 33.46 / 1212.1
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(8 + 6 / 12, "feet"),
  23280. default: true
  23281. },
  23282. {
  23283. name: "Macro",
  23284. height: math.unit(150, "feet")
  23285. },
  23286. {
  23287. name: "Megamacro",
  23288. height: math.unit(1000, "miles")
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(1.72, "m"),
  23297. weight: math.unit(80, "lb"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/voski/front.svg",
  23301. extra: 2076.22 / 2022.4,
  23302. bottom: 102.7 / 2177.3866
  23303. }
  23304. },
  23305. frontFlaccid: {
  23306. height: math.unit(1.72, "m"),
  23307. weight: math.unit(80, "lb"),
  23308. name: "Front (Flaccid)",
  23309. image: {
  23310. source: "./media/characters/voski/front-flaccid.svg",
  23311. extra: 2076.22 / 2022.4,
  23312. bottom: 102.7 / 2177.3866
  23313. }
  23314. },
  23315. frontErect: {
  23316. height: math.unit(1.72, "m"),
  23317. weight: math.unit(80, "lb"),
  23318. name: "Front (Erect)",
  23319. image: {
  23320. source: "./media/characters/voski/front-erect.svg",
  23321. extra: 2076.22 / 2022.4,
  23322. bottom: 102.7 / 2177.3866
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(1.72, "m"),
  23327. weight: math.unit(80, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/voski/back.svg",
  23331. extra: 2104 / 2051,
  23332. bottom: 10.45 / 2113.63
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(1.72, "m")
  23340. },
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(55, "m"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Macro+",
  23348. height: math.unit(300, "m")
  23349. },
  23350. {
  23351. name: "Macro++",
  23352. height: math.unit(700, "m")
  23353. },
  23354. {
  23355. name: "Macro+++",
  23356. height: math.unit(4500, "m")
  23357. },
  23358. {
  23359. name: "Macro++++",
  23360. height: math.unit(45, "km")
  23361. },
  23362. {
  23363. name: "Macro+++++",
  23364. height: math.unit(1220, "km")
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(2.3, "m"),
  23373. weight: math.unit(304, "kg"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/icowom-lee/front.svg",
  23377. extra: 985 / 955,
  23378. bottom: 25.4 / 1012
  23379. }
  23380. },
  23381. fronttentacles: {
  23382. height: math.unit(2.3, "m"),
  23383. weight: math.unit(304, "kg"),
  23384. name: "Front-tentacles",
  23385. image: {
  23386. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23387. extra: 985 / 955,
  23388. bottom: 25.4 / 1012
  23389. }
  23390. },
  23391. back: {
  23392. height: math.unit(2.3, "m"),
  23393. weight: math.unit(304, "kg"),
  23394. name: "Back",
  23395. image: {
  23396. source: "./media/characters/icowom-lee/back.svg",
  23397. extra: 975 / 954,
  23398. bottom: 9.5 / 985
  23399. }
  23400. },
  23401. backtentacles: {
  23402. height: math.unit(2.3, "m"),
  23403. weight: math.unit(304, "kg"),
  23404. name: "Back-tentacles",
  23405. image: {
  23406. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23407. extra: 975 / 954,
  23408. bottom: 9.5 / 985
  23409. }
  23410. },
  23411. frontDressed: {
  23412. height: math.unit(2.3, "m"),
  23413. weight: math.unit(304, "kg"),
  23414. name: "Front (Dressed)",
  23415. image: {
  23416. source: "./media/characters/icowom-lee/front-dressed.svg",
  23417. extra: 3076 / 2933,
  23418. bottom: 51.4 / 3125.1889
  23419. }
  23420. },
  23421. rump: {
  23422. height: math.unit(0.776, "meters"),
  23423. name: "Rump",
  23424. image: {
  23425. source: "./media/characters/icowom-lee/rump.svg"
  23426. }
  23427. },
  23428. genitals: {
  23429. height: math.unit(0.78, "meters"),
  23430. name: "Genitals",
  23431. image: {
  23432. source: "./media/characters/icowom-lee/genitals.svg"
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Normal",
  23439. height: math.unit(2.3, "meters"),
  23440. default: true
  23441. },
  23442. {
  23443. name: "Macro",
  23444. height: math.unit(94, "meters"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(22, "meters"),
  23454. weight: math.unit(21000, "kg"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/shock-diamond/front.svg",
  23458. extra: 2204 / 2053,
  23459. bottom: 65 / 2239.47
  23460. }
  23461. },
  23462. frontNude: {
  23463. height: math.unit(22, "meters"),
  23464. weight: math.unit(21000, "kg"),
  23465. name: "Front (Nude)",
  23466. image: {
  23467. source: "./media/characters/shock-diamond/front-nude.svg",
  23468. extra: 2514 / 2285,
  23469. bottom: 13 / 2527.56
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(3, "meters")
  23477. },
  23478. {
  23479. name: "Macro",
  23480. height: math.unit(22, "meters"),
  23481. default: true
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(5 + 4 / 12, "feet"),
  23490. weight: math.unit(120, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/rory/front.svg",
  23494. extra: 1318/1241,
  23495. bottom: 42/1360
  23496. }
  23497. },
  23498. back: {
  23499. height: math.unit(5 + 4 / 12, "feet"),
  23500. weight: math.unit(120, "lb"),
  23501. name: "Back",
  23502. image: {
  23503. source: "./media/characters/rory/back.svg",
  23504. extra: 1318/1241,
  23505. bottom: 42/1360
  23506. }
  23507. },
  23508. butt: {
  23509. height: math.unit(1.74, "feet"),
  23510. name: "Butt",
  23511. image: {
  23512. source: "./media/characters/rory/butt.svg"
  23513. }
  23514. },
  23515. dick: {
  23516. height: math.unit(1.02, "feet"),
  23517. name: "Dick",
  23518. image: {
  23519. source: "./media/characters/rory/dick.svg"
  23520. }
  23521. },
  23522. paws: {
  23523. height: math.unit(1, "feet"),
  23524. name: "Paws",
  23525. image: {
  23526. source: "./media/characters/rory/paws.svg"
  23527. }
  23528. },
  23529. frontAlt: {
  23530. height: math.unit(5 + 4 / 12, "feet"),
  23531. weight: math.unit(120, "lb"),
  23532. name: "Front (Alt)",
  23533. image: {
  23534. source: "./media/characters/rory/front-alt.svg",
  23535. extra: 589 / 556,
  23536. bottom: 45.7 / 635.76
  23537. }
  23538. },
  23539. frontAltNude: {
  23540. height: math.unit(5 + 4 / 12, "feet"),
  23541. weight: math.unit(120, "lb"),
  23542. name: "Front (Alt, Nude)",
  23543. image: {
  23544. source: "./media/characters/rory/front-alt-nude.svg",
  23545. extra: 589 / 556,
  23546. bottom: 45.7 / 635.76
  23547. }
  23548. },
  23549. side: {
  23550. height: math.unit(5 + 4 / 12, "feet"),
  23551. weight: math.unit(120, "lb"),
  23552. name: "Side",
  23553. image: {
  23554. source: "./media/characters/rory/side.svg",
  23555. extra: 597 / 564,
  23556. bottom: 55 / 653
  23557. }
  23558. },
  23559. backAlt: {
  23560. height: math.unit(5 + 4 / 12, "feet"),
  23561. weight: math.unit(120, "lb"),
  23562. name: "Back (Alt)",
  23563. image: {
  23564. source: "./media/characters/rory/back-alt.svg",
  23565. extra: 620 / 585,
  23566. bottom: 8.86 / 630.43
  23567. }
  23568. },
  23569. dickAlt: {
  23570. height: math.unit(0.86, "feet"),
  23571. name: "Dick (Alt)",
  23572. image: {
  23573. source: "./media/characters/rory/dick-alt.svg"
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(5 + 4 / 12, "feet"),
  23581. default: true
  23582. },
  23583. {
  23584. name: "Macro",
  23585. height: math.unit(100, "feet")
  23586. },
  23587. {
  23588. name: "Macro+",
  23589. height: math.unit(140, "feet")
  23590. },
  23591. {
  23592. name: "Macro++",
  23593. height: math.unit(300, "feet")
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(5 + 9 / 12, "feet"),
  23602. weight: math.unit(190, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/sprisk/front.svg",
  23606. extra: 1225 / 1180,
  23607. bottom: 42.7 / 1266.4
  23608. }
  23609. },
  23610. frontNsfw: {
  23611. height: math.unit(5 + 9 / 12, "feet"),
  23612. weight: math.unit(190, "lb"),
  23613. name: "Front (NSFW)",
  23614. image: {
  23615. source: "./media/characters/sprisk/front-nsfw.svg",
  23616. extra: 1225 / 1180,
  23617. bottom: 42.7 / 1266.4
  23618. }
  23619. },
  23620. back: {
  23621. height: math.unit(5 + 9 / 12, "feet"),
  23622. weight: math.unit(190, "lb"),
  23623. name: "Back",
  23624. image: {
  23625. source: "./media/characters/sprisk/back.svg",
  23626. extra: 1247 / 1200,
  23627. bottom: 5.6 / 1253.04
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Tiny",
  23634. height: math.unit(2, "inches")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(5 + 9 / 12, "feet"),
  23639. default: true
  23640. },
  23641. {
  23642. name: "Mini Macro",
  23643. height: math.unit(18, "feet")
  23644. },
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(100, "feet")
  23648. },
  23649. {
  23650. name: "MACRO",
  23651. height: math.unit(50, "miles")
  23652. },
  23653. {
  23654. name: "M A C R O",
  23655. height: math.unit(300, "miles")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23661. {
  23662. side: {
  23663. height: math.unit(15.6, "meters"),
  23664. weight: math.unit(700000, "kg"),
  23665. name: "Side",
  23666. image: {
  23667. source: "./media/characters/bunsen/side.svg",
  23668. extra: 1644 / 358
  23669. }
  23670. },
  23671. foot: {
  23672. height: math.unit(1.611 * 1644 / 358, "meter"),
  23673. name: "Foot",
  23674. image: {
  23675. source: "./media/characters/bunsen/foot.svg"
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Small",
  23682. height: math.unit(10, "feet")
  23683. },
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(15.6, "meters"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(4 + 11 / 12, "feet"),
  23696. weight: math.unit(140, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/sesh/front.svg",
  23700. extra: 3420 / 3231,
  23701. bottom: 72 / 3949.5
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(4 + 11 / 12, "feet")
  23709. },
  23710. {
  23711. name: "Grown",
  23712. height: math.unit(15, "feet"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(1500, "feet")
  23718. },
  23719. {
  23720. name: "Megamacro",
  23721. height: math.unit(30, "miles")
  23722. },
  23723. {
  23724. name: "Continental",
  23725. height: math.unit(3000, "miles")
  23726. },
  23727. {
  23728. name: "Gravity Mass",
  23729. height: math.unit(300000, "miles")
  23730. },
  23731. {
  23732. name: "Planet Buster",
  23733. height: math.unit(30000000, "miles")
  23734. },
  23735. {
  23736. name: "Big",
  23737. height: math.unit(3000000000, "miles")
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(9, "feet"),
  23746. weight: math.unit(350, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/pepper/front.svg",
  23750. extra: 1448 / 1312,
  23751. bottom: 9.4 / 1457.88
  23752. }
  23753. },
  23754. back: {
  23755. height: math.unit(9, "feet"),
  23756. weight: math.unit(350, "lb"),
  23757. name: "Back",
  23758. image: {
  23759. source: "./media/characters/pepper/back.svg",
  23760. extra: 1423 / 1300,
  23761. bottom: 4.6 / 1429
  23762. }
  23763. },
  23764. maw: {
  23765. height: math.unit(0.932, "feet"),
  23766. name: "Maw",
  23767. image: {
  23768. source: "./media/characters/pepper/maw.svg"
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(9, "feet"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(6, "feet"),
  23785. weight: math.unit(150, "lb"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/maelstrom/front.svg",
  23789. extra: 2100 / 1883,
  23790. bottom: 94 / 2196.7
  23791. }
  23792. },
  23793. },
  23794. [
  23795. {
  23796. name: "Less Kaiju",
  23797. height: math.unit(200, "feet")
  23798. },
  23799. {
  23800. name: "Kaiju",
  23801. height: math.unit(400, "feet"),
  23802. default: true
  23803. },
  23804. {
  23805. name: "Kaiju-er",
  23806. height: math.unit(600, "feet")
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23812. {
  23813. front: {
  23814. height: math.unit(6 + 5 / 12, "feet"),
  23815. weight: math.unit(180, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/lexir/front.svg",
  23819. extra: 180 / 172,
  23820. bottom: 12 / 192
  23821. }
  23822. },
  23823. back: {
  23824. height: math.unit(6 + 5 / 12, "feet"),
  23825. weight: math.unit(180, "lb"),
  23826. name: "Back",
  23827. image: {
  23828. source: "./media/characters/lexir/back.svg",
  23829. extra: 1273/1201,
  23830. bottom: 39/1312
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Very Smal",
  23837. height: math.unit(1, "nm")
  23838. },
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(6 + 5 / 12, "feet"),
  23842. default: true
  23843. },
  23844. {
  23845. name: "Macro",
  23846. height: math.unit(1, "mile")
  23847. },
  23848. {
  23849. name: "Megamacro",
  23850. height: math.unit(50, "miles")
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(1.5, "meters"),
  23859. weight: math.unit(100, "lb"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/maksio/front.svg",
  23863. extra: 1549 / 1531,
  23864. bottom: 123.7 / 1674.5429
  23865. }
  23866. },
  23867. back: {
  23868. height: math.unit(1.5, "meters"),
  23869. weight: math.unit(100, "lb"),
  23870. name: "Back",
  23871. image: {
  23872. source: "./media/characters/maksio/back.svg",
  23873. extra: 1541 / 1509,
  23874. bottom: 97 / 1639
  23875. }
  23876. },
  23877. hand: {
  23878. height: math.unit(0.621, "feet"),
  23879. name: "Hand",
  23880. image: {
  23881. source: "./media/characters/maksio/hand.svg"
  23882. }
  23883. },
  23884. foot: {
  23885. height: math.unit(1.611, "feet"),
  23886. name: "Foot",
  23887. image: {
  23888. source: "./media/characters/maksio/foot.svg"
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Shrunken",
  23895. height: math.unit(10, "cm")
  23896. },
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(150, "cm"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(100, "feet"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/erza-bear/front.svg",
  23912. extra: 2449 / 2390,
  23913. bottom: 46 / 2494
  23914. }
  23915. },
  23916. back: {
  23917. height: math.unit(100, "feet"),
  23918. name: "Back",
  23919. image: {
  23920. source: "./media/characters/erza-bear/back.svg",
  23921. extra: 2489 / 2430,
  23922. bottom: 85.4 / 2480
  23923. }
  23924. },
  23925. tail: {
  23926. height: math.unit(42, "feet"),
  23927. name: "Tail",
  23928. image: {
  23929. source: "./media/characters/erza-bear/tail.svg"
  23930. }
  23931. },
  23932. tongue: {
  23933. height: math.unit(8, "feet"),
  23934. name: "Tongue",
  23935. image: {
  23936. source: "./media/characters/erza-bear/tongue.svg"
  23937. }
  23938. },
  23939. dick: {
  23940. height: math.unit(10.5, "feet"),
  23941. name: "Dick",
  23942. image: {
  23943. source: "./media/characters/erza-bear/dick.svg"
  23944. }
  23945. },
  23946. dickVertical: {
  23947. height: math.unit(16.9, "feet"),
  23948. name: "Dick (Vertical)",
  23949. image: {
  23950. source: "./media/characters/erza-bear/dick-vertical.svg"
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Macro",
  23957. height: math.unit(100, "feet"),
  23958. default: true
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23964. {
  23965. front: {
  23966. height: math.unit(172, "cm"),
  23967. weight: math.unit(73, "kg"),
  23968. name: "Front",
  23969. image: {
  23970. source: "./media/characters/violet-flor/front.svg",
  23971. extra: 1530 / 1442,
  23972. bottom: 61.9 / 1588.8
  23973. }
  23974. },
  23975. back: {
  23976. height: math.unit(180, "cm"),
  23977. weight: math.unit(73, "kg"),
  23978. name: "Back",
  23979. image: {
  23980. source: "./media/characters/violet-flor/back.svg",
  23981. extra: 1692 / 1630,
  23982. bottom: 20 / 1712
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(172, "cm"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(6, "feet"),
  23999. weight: math.unit(220, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/lynn-rhea/front.svg",
  24003. extra: 310 / 273
  24004. }
  24005. },
  24006. back: {
  24007. height: math.unit(6, "feet"),
  24008. weight: math.unit(220, "lb"),
  24009. name: "Back",
  24010. image: {
  24011. source: "./media/characters/lynn-rhea/back.svg",
  24012. extra: 310 / 273
  24013. }
  24014. },
  24015. dicks: {
  24016. height: math.unit(0.9, "feet"),
  24017. name: "Dicks",
  24018. image: {
  24019. source: "./media/characters/lynn-rhea/dicks.svg"
  24020. }
  24021. },
  24022. slit: {
  24023. height: math.unit(0.4, "feet"),
  24024. name: "Slit",
  24025. image: {
  24026. source: "./media/characters/lynn-rhea/slit.svg"
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Micro",
  24033. height: math.unit(1, "inch")
  24034. },
  24035. {
  24036. name: "Macro",
  24037. height: math.unit(60, "feet"),
  24038. default: true
  24039. },
  24040. {
  24041. name: "Megamacro",
  24042. height: math.unit(2, "miles")
  24043. },
  24044. {
  24045. name: "Gigamacro",
  24046. height: math.unit(3, "earths")
  24047. },
  24048. {
  24049. name: "Galactic",
  24050. height: math.unit(0.8, "galaxies")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24056. {
  24057. front: {
  24058. height: math.unit(1600, "feet"),
  24059. weight: math.unit(85758785169, "kg"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/valathos/front.svg",
  24063. extra: 1451 / 1339
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(1600, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(7 + 5 / 12, "feet"),
  24080. weight: math.unit(300, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/azula/front.svg",
  24084. extra: 3208 / 2880,
  24085. bottom: 80.2 / 3277
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(7 + 5 / 12, "feet"),
  24090. weight: math.unit(300, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/azula/back.svg",
  24094. extra: 3169 / 2822,
  24095. bottom: 150.6 / 3321
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Normal",
  24102. height: math.unit(7 + 5 / 12, "feet"),
  24103. default: true
  24104. },
  24105. {
  24106. name: "Big",
  24107. height: math.unit(20, "feet")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(5 + 1 / 12, "feet"),
  24116. weight: math.unit(110, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/rupert/front.svg",
  24120. extra: 1549 / 1495,
  24121. bottom: 54.2 / 1604.4
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Normal",
  24128. height: math.unit(5 + 1 / 12, "feet"),
  24129. default: true
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24135. {
  24136. front: {
  24137. height: math.unit(8 + 4 / 12, "feet"),
  24138. weight: math.unit(350, "lb"),
  24139. name: "Front",
  24140. image: {
  24141. source: "./media/characters/sheera-castellar/front.svg",
  24142. extra: 1957 / 1894,
  24143. bottom: 26.97 / 1975.017
  24144. }
  24145. },
  24146. side: {
  24147. height: math.unit(8 + 4 / 12, "feet"),
  24148. weight: math.unit(350, "lb"),
  24149. name: "Side",
  24150. image: {
  24151. source: "./media/characters/sheera-castellar/side.svg",
  24152. extra: 1957 / 1894
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(8 + 4 / 12, "feet"),
  24157. weight: math.unit(350, "lb"),
  24158. name: "Back",
  24159. image: {
  24160. source: "./media/characters/sheera-castellar/back.svg",
  24161. extra: 1957 / 1894
  24162. }
  24163. },
  24164. angled: {
  24165. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24166. weight: math.unit(350, "lb"),
  24167. name: "Angled",
  24168. image: {
  24169. source: "./media/characters/sheera-castellar/angled.svg",
  24170. extra: 1807 / 1707,
  24171. bottom: 68 / 1875
  24172. }
  24173. },
  24174. genitals: {
  24175. height: math.unit(2.2, "feet"),
  24176. name: "Genitals",
  24177. image: {
  24178. source: "./media/characters/sheera-castellar/genitals.svg"
  24179. }
  24180. },
  24181. taur: {
  24182. height: math.unit(10 + 6/12, "feet"),
  24183. name: "Taur",
  24184. image: {
  24185. source: "./media/characters/sheera-castellar/taur.svg",
  24186. extra: 2017/1909,
  24187. bottom: 185/2202
  24188. }
  24189. },
  24190. },
  24191. [
  24192. {
  24193. name: "Normal",
  24194. height: math.unit(8 + 4 / 12, "feet")
  24195. },
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(150, "feet"),
  24199. default: true
  24200. },
  24201. {
  24202. name: "Macro+",
  24203. height: math.unit(800, "feet")
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24209. {
  24210. front: {
  24211. height: math.unit(6, "feet"),
  24212. weight: math.unit(150, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/jaipur/front.svg",
  24216. extra: 3860 / 3731,
  24217. bottom: 287 / 4140
  24218. }
  24219. },
  24220. back: {
  24221. height: math.unit(6, "feet"),
  24222. weight: math.unit(150, "lb"),
  24223. name: "Back",
  24224. image: {
  24225. source: "./media/characters/jaipur/back.svg",
  24226. extra: 1637/1561,
  24227. bottom: 154/1791
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Normal",
  24234. height: math.unit(1.85, "meters"),
  24235. default: true
  24236. },
  24237. {
  24238. name: "Macro",
  24239. height: math.unit(150, "meters")
  24240. },
  24241. {
  24242. name: "Macro+",
  24243. height: math.unit(0.5, "miles")
  24244. },
  24245. {
  24246. name: "Macro++",
  24247. height: math.unit(2.5, "miles")
  24248. },
  24249. {
  24250. name: "Macro+++",
  24251. height: math.unit(12, "miles")
  24252. },
  24253. {
  24254. name: "Macro++++",
  24255. height: math.unit(120, "miles")
  24256. },
  24257. {
  24258. name: "Macro+++++",
  24259. height: math.unit(1200, "miles")
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(6, "feet"),
  24268. weight: math.unit(150, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/sheila-wolf/front.svg",
  24272. extra: 1931 / 1808,
  24273. bottom: 29.5 / 1960
  24274. }
  24275. },
  24276. dick: {
  24277. height: math.unit(1.464, "feet"),
  24278. name: "Dick",
  24279. image: {
  24280. source: "./media/characters/sheila-wolf/dick.svg"
  24281. }
  24282. },
  24283. muzzle: {
  24284. height: math.unit(0.513, "feet"),
  24285. name: "Muzzle",
  24286. image: {
  24287. source: "./media/characters/sheila-wolf/muzzle.svg"
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Macro",
  24294. height: math.unit(70, "feet"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(32, "meters"),
  24304. weight: math.unit(300000, "kg"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/almor/front.svg",
  24308. extra: 1408 / 1322,
  24309. bottom: 94.6 / 1506.5
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Macro",
  24316. height: math.unit(32, "meters"),
  24317. default: true
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(7, "feet"),
  24326. weight: math.unit(200, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/silver/front.svg",
  24330. extra: 472.1 / 450.5,
  24331. bottom: 26.5 / 499.424
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Normal",
  24338. height: math.unit(7, "feet"),
  24339. default: true
  24340. },
  24341. {
  24342. name: "Macro",
  24343. height: math.unit(800, "feet")
  24344. },
  24345. {
  24346. name: "Megamacro",
  24347. height: math.unit(250, "miles")
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24353. {
  24354. front: {
  24355. height: math.unit(6, "feet"),
  24356. weight: math.unit(150, "lb"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/pliskin/front.svg",
  24360. extra: 1469 / 1359,
  24361. bottom: 70 / 1540
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Micro",
  24368. height: math.unit(3, "inches")
  24369. },
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(5 + 11 / 12, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(120, "feet")
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(6, "feet"),
  24386. weight: math.unit(150, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/sammy/front.svg",
  24390. extra: 1193 / 1089,
  24391. bottom: 30.5 / 1226
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(1700, "feet"),
  24399. default: true
  24400. },
  24401. {
  24402. name: "Examacro",
  24403. height: math.unit(2.5e9, "lightyears")
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(21, "meters"),
  24412. weight: math.unit(12, "tonnes"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/kuru/front.svg",
  24416. extra: 4301 / 3785,
  24417. bottom: 371.3 / 4691
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Macro",
  24424. height: math.unit(21, "meters"),
  24425. default: true
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24431. {
  24432. front: {
  24433. height: math.unit(23, "meters"),
  24434. weight: math.unit(12.2, "tonnes"),
  24435. name: "Front",
  24436. image: {
  24437. source: "./media/characters/rakka/front.svg",
  24438. extra: 4670 / 4169,
  24439. bottom: 301 / 4968.7
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(23, "meters"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(6, "feet"),
  24456. weight: math.unit(150, "lb"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/rhys-feline/front.svg",
  24460. extra: 2488 / 2308,
  24461. bottom: 35.67 / 2519.19
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Really Small",
  24468. height: math.unit(1, "nm")
  24469. },
  24470. {
  24471. name: "Micro",
  24472. height: math.unit(4, "inches")
  24473. },
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(4 + 10 / 12, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(100, "feet")
  24482. },
  24483. {
  24484. name: "Megamacto",
  24485. height: math.unit(50, "miles")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24491. {
  24492. side: {
  24493. height: math.unit(30, "feet"),
  24494. weight: math.unit(35000, "kg"),
  24495. name: "Side",
  24496. image: {
  24497. source: "./media/characters/alydar/side.svg",
  24498. extra: 234 / 222,
  24499. bottom: 6.5 / 241
  24500. }
  24501. },
  24502. front: {
  24503. height: math.unit(30, "feet"),
  24504. weight: math.unit(35000, "kg"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/alydar/front.svg",
  24508. extra: 223.37 / 210.2,
  24509. bottom: 22.3 / 246.76
  24510. }
  24511. },
  24512. top: {
  24513. height: math.unit(64.54, "feet"),
  24514. weight: math.unit(35000, "kg"),
  24515. name: "Top",
  24516. image: {
  24517. source: "./media/characters/alydar/top.svg"
  24518. }
  24519. },
  24520. anthro: {
  24521. height: math.unit(30, "feet"),
  24522. weight: math.unit(9000, "kg"),
  24523. name: "Anthro",
  24524. image: {
  24525. source: "./media/characters/alydar/anthro.svg",
  24526. extra: 432 / 421,
  24527. bottom: 7.18 / 440
  24528. }
  24529. },
  24530. maw: {
  24531. height: math.unit(11.693, "feet"),
  24532. name: "Maw",
  24533. image: {
  24534. source: "./media/characters/alydar/maw.svg"
  24535. }
  24536. },
  24537. head: {
  24538. height: math.unit(11.693, "feet"),
  24539. name: "Head",
  24540. image: {
  24541. source: "./media/characters/alydar/head.svg"
  24542. }
  24543. },
  24544. headAlt: {
  24545. height: math.unit(12.861, "feet"),
  24546. name: "Head (Alt)",
  24547. image: {
  24548. source: "./media/characters/alydar/head-alt.svg"
  24549. }
  24550. },
  24551. wing: {
  24552. height: math.unit(20.712, "feet"),
  24553. name: "Wing",
  24554. image: {
  24555. source: "./media/characters/alydar/wing.svg"
  24556. }
  24557. },
  24558. wingFeather: {
  24559. height: math.unit(9.662, "feet"),
  24560. name: "Wing Feather",
  24561. image: {
  24562. source: "./media/characters/alydar/wing-feather.svg"
  24563. }
  24564. },
  24565. countourFeather: {
  24566. height: math.unit(4.154, "feet"),
  24567. name: "Contour Feather",
  24568. image: {
  24569. source: "./media/characters/alydar/contour-feather.svg"
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Diplomatic",
  24576. height: math.unit(13, "feet"),
  24577. default: true
  24578. },
  24579. {
  24580. name: "Small",
  24581. height: math.unit(30, "feet")
  24582. },
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(95, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Large",
  24590. height: math.unit(285, "feet")
  24591. },
  24592. {
  24593. name: "Incomprehensible",
  24594. height: math.unit(450, "megameters")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24600. {
  24601. side: {
  24602. height: math.unit(11, "feet"),
  24603. weight: math.unit(1750, "kg"),
  24604. name: "Side",
  24605. image: {
  24606. source: "./media/characters/selicia/side.svg",
  24607. extra: 440 / 396,
  24608. bottom: 24.8 / 465.979
  24609. }
  24610. },
  24611. maw: {
  24612. height: math.unit(4.665, "feet"),
  24613. name: "Maw",
  24614. image: {
  24615. source: "./media/characters/selicia/maw.svg"
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(11, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24629. {
  24630. side: {
  24631. height: math.unit(2 + 6 / 12, "feet"),
  24632. weight: math.unit(30, "lb"),
  24633. name: "Side",
  24634. image: {
  24635. source: "./media/characters/layla/side.svg",
  24636. extra: 244 / 188,
  24637. bottom: 18.2 / 262.1
  24638. }
  24639. },
  24640. back: {
  24641. height: math.unit(2 + 6 / 12, "feet"),
  24642. weight: math.unit(30, "lb"),
  24643. name: "Back",
  24644. image: {
  24645. source: "./media/characters/layla/back.svg",
  24646. extra: 308 / 241.5,
  24647. bottom: 8.9 / 316.8
  24648. }
  24649. },
  24650. cumming: {
  24651. height: math.unit(2 + 6 / 12, "feet"),
  24652. weight: math.unit(30, "lb"),
  24653. name: "Cumming",
  24654. image: {
  24655. source: "./media/characters/layla/cumming.svg",
  24656. extra: 342 / 279,
  24657. bottom: 595 / 938
  24658. }
  24659. },
  24660. dickFlaccid: {
  24661. height: math.unit(2.595, "feet"),
  24662. name: "Flaccid Genitals",
  24663. image: {
  24664. source: "./media/characters/layla/dick-flaccid.svg"
  24665. }
  24666. },
  24667. dickErect: {
  24668. height: math.unit(2.359, "feet"),
  24669. name: "Erect Genitals",
  24670. image: {
  24671. source: "./media/characters/layla/dick-erect.svg"
  24672. }
  24673. },
  24674. dragon: {
  24675. height: math.unit(40, "feet"),
  24676. name: "Dragon",
  24677. image: {
  24678. source: "./media/characters/layla/dragon.svg",
  24679. extra: 610/535,
  24680. bottom: 367/977
  24681. }
  24682. },
  24683. taur: {
  24684. height: math.unit(30, "feet"),
  24685. name: "Taur",
  24686. image: {
  24687. source: "./media/characters/layla/taur.svg",
  24688. extra: 1268/1199,
  24689. bottom: 112/1380
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Micro",
  24696. height: math.unit(1, "inch")
  24697. },
  24698. {
  24699. name: "Small",
  24700. height: math.unit(1, "foot")
  24701. },
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(2 + 6 / 12, "feet"),
  24705. default: true
  24706. },
  24707. {
  24708. name: "Macro",
  24709. height: math.unit(200, "feet")
  24710. },
  24711. {
  24712. name: "Megamacro",
  24713. height: math.unit(1000, "miles")
  24714. },
  24715. {
  24716. name: "Planetary",
  24717. height: math.unit(8000, "miles")
  24718. },
  24719. {
  24720. name: "True Layla",
  24721. height: math.unit(200000 * 7, "multiverses")
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24727. {
  24728. back: {
  24729. height: math.unit(10.5, "feet"),
  24730. weight: math.unit(800, "lb"),
  24731. name: "Back",
  24732. image: {
  24733. source: "./media/characters/knox/back.svg",
  24734. extra: 1486 / 1089,
  24735. bottom: 107 / 1601.4
  24736. }
  24737. },
  24738. side: {
  24739. height: math.unit(10.5, "feet"),
  24740. weight: math.unit(800, "lb"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/knox/side.svg",
  24744. extra: 244 / 218,
  24745. bottom: 14 / 260
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Compact",
  24752. height: math.unit(10.5, "feet"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Dynamax",
  24757. height: math.unit(210, "feet")
  24758. },
  24759. {
  24760. name: "Full Macro",
  24761. height: math.unit(850, "feet")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(28, "feet"),
  24770. weight: math.unit(10500, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/kayda/front.svg",
  24774. extra: 1536 / 1428,
  24775. bottom: 68.7 / 1603
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(28, "feet"),
  24780. weight: math.unit(10500, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/kayda/back.svg",
  24784. extra: 1557 / 1464,
  24785. bottom: 39.5 / 1597.49
  24786. }
  24787. },
  24788. dick: {
  24789. height: math.unit(3.858, "feet"),
  24790. name: "Dick",
  24791. image: {
  24792. source: "./media/characters/kayda/dick.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(28, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(10 + 11 / 12, "feet"),
  24809. weight: math.unit(1400, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/brian/front.svg",
  24813. extra: 737 / 692,
  24814. bottom: 55.4 / 785
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(10 + 11 / 12, "feet"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(5 + 8 / 12, "feet"),
  24831. weight: math.unit(140, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/khemri/front.svg",
  24835. extra: 4780 / 4059,
  24836. bottom: 80.1 / 4859.25
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Micro",
  24843. height: math.unit(6, "inches")
  24844. },
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(5 + 8 / 12, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24854. {
  24855. front: {
  24856. height: math.unit(13, "feet"),
  24857. weight: math.unit(1700, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/felix-braveheart/front.svg",
  24861. extra: 1222 / 1157,
  24862. bottom: 53.2 / 1280
  24863. }
  24864. },
  24865. back: {
  24866. height: math.unit(13, "feet"),
  24867. weight: math.unit(1700, "lb"),
  24868. name: "Back",
  24869. image: {
  24870. source: "./media/characters/felix-braveheart/back.svg",
  24871. extra: 1277 / 1203,
  24872. bottom: 50.2 / 1327
  24873. }
  24874. },
  24875. feral: {
  24876. height: math.unit(6, "feet"),
  24877. weight: math.unit(400, "lb"),
  24878. name: "Feral",
  24879. image: {
  24880. source: "./media/characters/felix-braveheart/feral.svg",
  24881. extra: 682 / 625,
  24882. bottom: 6.9 / 688
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(13, "feet"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24896. {
  24897. side: {
  24898. height: math.unit(5 + 11 / 12, "feet"),
  24899. weight: math.unit(1400, "lb"),
  24900. name: "Side",
  24901. image: {
  24902. source: "./media/characters/shadow-blade/side.svg",
  24903. extra: 1726 / 1267,
  24904. bottom: 58.4 / 1785
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(5 + 11 / 12, "feet"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(1 + 6 / 12, "feet"),
  24921. weight: math.unit(25, "lb"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/karla-halldor/front.svg",
  24925. extra: 1459 / 1383,
  24926. bottom: 12 / 1472
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(1 + 6 / 12, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(6 + 2 / 12, "feet"),
  24943. weight: math.unit(160, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/ariam/front.svg",
  24947. extra: 1073/976,
  24948. bottom: 52/1125
  24949. }
  24950. },
  24951. back: {
  24952. height: math.unit(6 + 2/12, "feet"),
  24953. weight: math.unit(160, "lb"),
  24954. name: "Back",
  24955. image: {
  24956. source: "./media/characters/ariam/back.svg",
  24957. extra: 1103/1023,
  24958. bottom: 9/1112
  24959. }
  24960. },
  24961. dressed: {
  24962. height: math.unit(6 + 2/12, "feet"),
  24963. weight: math.unit(160, "lb"),
  24964. name: "Dressed",
  24965. image: {
  24966. source: "./media/characters/ariam/dressed.svg",
  24967. extra: 1099/1009,
  24968. bottom: 25/1124
  24969. }
  24970. },
  24971. squatting: {
  24972. height: math.unit(4.1, "feet"),
  24973. weight: math.unit(160, "lb"),
  24974. name: "Squatting",
  24975. image: {
  24976. source: "./media/characters/ariam/squatting.svg",
  24977. extra: 2617 / 2112,
  24978. bottom: 61.2 / 2681,
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(6 + 2 / 12, "feet"),
  24986. default: true
  24987. },
  24988. {
  24989. name: "Normal+",
  24990. height: math.unit(4, "meters")
  24991. },
  24992. {
  24993. name: "Macro",
  24994. height: math.unit(50, "meters")
  24995. },
  24996. {
  24997. name: "Macro+",
  24998. height: math.unit(100, "meters")
  24999. },
  25000. {
  25001. name: "Megamacro",
  25002. height: math.unit(20, "km")
  25003. },
  25004. {
  25005. name: "Caretaker",
  25006. height: math.unit(444, "megameters")
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25012. {
  25013. front: {
  25014. height: math.unit(1.67, "meters"),
  25015. weight: math.unit(140, "lb"),
  25016. name: "Front",
  25017. image: {
  25018. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25019. extra: 438 / 410,
  25020. bottom: 0.75 / 439
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Shrunken",
  25027. height: math.unit(7.6, "cm")
  25028. },
  25029. {
  25030. name: "Human Scale",
  25031. height: math.unit(1.67, "meters")
  25032. },
  25033. {
  25034. name: "Wolxi Scale",
  25035. height: math.unit(36.7, "meters"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(1.73, "meters"),
  25045. weight: math.unit(240, "lb"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/izue-two-mothers/front.svg",
  25049. extra: 469 / 437,
  25050. bottom: 1.24 / 470.6
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Shrunken",
  25057. height: math.unit(7.86, "cm")
  25058. },
  25059. {
  25060. name: "Human Scale",
  25061. height: math.unit(1.73, "meters")
  25062. },
  25063. {
  25064. name: "Wolxi Scale",
  25065. height: math.unit(38, "meters"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(1.55, "meters"),
  25075. weight: math.unit(120, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/teeku-love-shack/front.svg",
  25079. extra: 387 / 362,
  25080. bottom: 1.51 / 388
  25081. }
  25082. },
  25083. },
  25084. [
  25085. {
  25086. name: "Shrunken",
  25087. height: math.unit(7, "cm")
  25088. },
  25089. {
  25090. name: "Human Scale",
  25091. height: math.unit(1.55, "meters")
  25092. },
  25093. {
  25094. name: "Wolxi Scale",
  25095. height: math.unit(34.1, "meters"),
  25096. default: true
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(1.83, "meters"),
  25105. weight: math.unit(135, "lb"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/dejma-the-red/front.svg",
  25109. extra: 480 / 458,
  25110. bottom: 1.8 / 482
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Shrunken",
  25117. height: math.unit(8.3, "cm")
  25118. },
  25119. {
  25120. name: "Human Scale",
  25121. height: math.unit(1.83, "meters")
  25122. },
  25123. {
  25124. name: "Wolxi Scale",
  25125. height: math.unit(40, "meters"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(1.78, "meters"),
  25135. weight: math.unit(65, "kg"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/aki/front.svg",
  25139. extra: 452 / 415
  25140. }
  25141. },
  25142. frontNsfw: {
  25143. height: math.unit(1.78, "meters"),
  25144. weight: math.unit(65, "kg"),
  25145. name: "Front (NSFW)",
  25146. image: {
  25147. source: "./media/characters/aki/front-nsfw.svg",
  25148. extra: 452 / 415
  25149. }
  25150. },
  25151. back: {
  25152. height: math.unit(1.78, "meters"),
  25153. weight: math.unit(65, "kg"),
  25154. name: "Back",
  25155. image: {
  25156. source: "./media/characters/aki/back.svg",
  25157. extra: 452 / 415
  25158. }
  25159. },
  25160. rump: {
  25161. height: math.unit(2.05, "feet"),
  25162. name: "Rump",
  25163. image: {
  25164. source: "./media/characters/aki/rump.svg"
  25165. }
  25166. },
  25167. dick: {
  25168. height: math.unit(0.95, "feet"),
  25169. name: "Dick",
  25170. image: {
  25171. source: "./media/characters/aki/dick.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Micro",
  25178. height: math.unit(15, "cm")
  25179. },
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(178, "cm"),
  25183. default: true
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(214, "m")
  25188. },
  25189. {
  25190. name: "Macro+",
  25191. height: math.unit(534, "m")
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25197. {
  25198. front: {
  25199. height: math.unit(5 + 5 / 12, "feet"),
  25200. weight: math.unit(120, "lb"),
  25201. name: "Front",
  25202. image: {
  25203. source: "./media/characters/ari/front.svg",
  25204. extra: 1550/1471,
  25205. bottom: 39/1589
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(5 + 5 / 12, "feet")
  25213. },
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(100, "feet"),
  25217. default: true
  25218. },
  25219. {
  25220. name: "Megamacro",
  25221. height: math.unit(100, "miles")
  25222. },
  25223. {
  25224. name: "Gigamacro",
  25225. height: math.unit(80000, "miles")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25231. {
  25232. side: {
  25233. height: math.unit(9, "feet"),
  25234. weight: math.unit(400, "kg"),
  25235. name: "Side",
  25236. image: {
  25237. source: "./media/characters/bolt/side.svg",
  25238. extra: 1126 / 896,
  25239. bottom: 60 / 1187.3,
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Micro",
  25246. height: math.unit(5, "inches")
  25247. },
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(9, "feet"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(700, "feet")
  25256. },
  25257. {
  25258. name: "Max Size",
  25259. height: math.unit(1.52e22, "yottameters")
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25265. {
  25266. front: {
  25267. height: math.unit(4.3, "meters"),
  25268. weight: math.unit(3, "tons"),
  25269. name: "Front",
  25270. image: {
  25271. source: "./media/characters/draekon-sylviar/front.svg",
  25272. extra: 2072/1512,
  25273. bottom: 74/2146
  25274. }
  25275. },
  25276. back: {
  25277. height: math.unit(4.3, "meters"),
  25278. weight: math.unit(3, "tons"),
  25279. name: "Back",
  25280. image: {
  25281. source: "./media/characters/draekon-sylviar/back.svg",
  25282. extra: 1639/1483,
  25283. bottom: 41/1680
  25284. }
  25285. },
  25286. feral: {
  25287. height: math.unit(1.15, "meters"),
  25288. weight: math.unit(3, "tons"),
  25289. name: "Feral",
  25290. image: {
  25291. source: "./media/characters/draekon-sylviar/feral.svg",
  25292. extra: 1033/395,
  25293. bottom: 130/1163
  25294. }
  25295. },
  25296. maw: {
  25297. height: math.unit(1.3, "meters"),
  25298. name: "Maw",
  25299. image: {
  25300. source: "./media/characters/draekon-sylviar/maw.svg"
  25301. }
  25302. },
  25303. mawSeparated: {
  25304. height: math.unit(1.53, "meters"),
  25305. name: "Separated Maw",
  25306. image: {
  25307. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25308. }
  25309. },
  25310. tail: {
  25311. height: math.unit(1.15, "meters"),
  25312. name: "Tail",
  25313. image: {
  25314. source: "./media/characters/draekon-sylviar/tail.svg"
  25315. }
  25316. },
  25317. tailDick: {
  25318. height: math.unit(1.15, "meters"),
  25319. name: "Tail (Dick)",
  25320. image: {
  25321. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25322. }
  25323. },
  25324. tailDickSeparated: {
  25325. height: math.unit(1.19, "meters"),
  25326. name: "Tail (Separated Dick)",
  25327. image: {
  25328. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25329. }
  25330. },
  25331. slit: {
  25332. height: math.unit(1, "meters"),
  25333. name: "Slit",
  25334. image: {
  25335. source: "./media/characters/draekon-sylviar/slit.svg"
  25336. }
  25337. },
  25338. dick: {
  25339. height: math.unit(1.15, "meters"),
  25340. name: "Dick",
  25341. image: {
  25342. source: "./media/characters/draekon-sylviar/dick.svg"
  25343. }
  25344. },
  25345. dickSeparated: {
  25346. height: math.unit(1.1, "meters"),
  25347. name: "Separated Dick",
  25348. image: {
  25349. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25350. }
  25351. },
  25352. sheath: {
  25353. height: math.unit(1.15, "meters"),
  25354. name: "Sheath",
  25355. image: {
  25356. source: "./media/characters/draekon-sylviar/sheath.svg"
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Small",
  25363. height: math.unit(4.53 / 2, "meters"),
  25364. default: true
  25365. },
  25366. {
  25367. name: "Normal",
  25368. height: math.unit(4.53, "meters"),
  25369. default: true
  25370. },
  25371. {
  25372. name: "Large",
  25373. height: math.unit(4.53 * 2, "meters"),
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(6 + 2 / 12, "feet"),
  25382. weight: math.unit(180, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/brawler/front.svg",
  25386. extra: 3301 / 3027,
  25387. bottom: 138 / 3439
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(6 + 2 / 12, "feet"),
  25395. default: true
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25401. {
  25402. front: {
  25403. height: math.unit(11, "feet"),
  25404. weight: math.unit(1000, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/alex/front.svg",
  25408. bottom: 44.5 / 620
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Micro",
  25415. height: math.unit(5, "inches")
  25416. },
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(11, "feet"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(9.5e9, "feet")
  25425. },
  25426. {
  25427. name: "Max Size",
  25428. height: math.unit(1.4e283, "yottameters")
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25434. {
  25435. female: {
  25436. height: math.unit(29.9, "m"),
  25437. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25438. name: "Female",
  25439. image: {
  25440. source: "./media/characters/zenari/female.svg",
  25441. extra: 3281.6 / 3217,
  25442. bottom: 72.2 / 3353
  25443. }
  25444. },
  25445. male: {
  25446. height: math.unit(27.7, "m"),
  25447. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25448. name: "Male",
  25449. image: {
  25450. source: "./media/characters/zenari/male.svg",
  25451. extra: 3008 / 2991,
  25452. bottom: 54.6 / 3069
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Macro",
  25459. height: math.unit(29.7, "meters"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25466. {
  25467. female: {
  25468. height: math.unit(23.8, "m"),
  25469. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25470. name: "Female",
  25471. image: {
  25472. source: "./media/characters/mactarian/female.svg",
  25473. extra: 2662 / 2569,
  25474. bottom: 73 / 2736
  25475. }
  25476. },
  25477. male: {
  25478. height: math.unit(23.8, "m"),
  25479. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25480. name: "Male",
  25481. image: {
  25482. source: "./media/characters/mactarian/male.svg",
  25483. extra: 2673 / 2600,
  25484. bottom: 76 / 2750
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Macro",
  25491. height: math.unit(23.8, "meters"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25498. {
  25499. female: {
  25500. height: math.unit(19.3, "m"),
  25501. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25502. name: "Female",
  25503. image: {
  25504. source: "./media/characters/umok/female.svg",
  25505. extra: 2186 / 2078,
  25506. bottom: 87 / 2277
  25507. }
  25508. },
  25509. male: {
  25510. height: math.unit(19.5, "m"),
  25511. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25512. name: "Male",
  25513. image: {
  25514. source: "./media/characters/umok/male.svg",
  25515. extra: 2233 / 2140,
  25516. bottom: 24.4 / 2258
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Macro",
  25523. height: math.unit(19.3, "meters"),
  25524. default: true
  25525. },
  25526. ]
  25527. ))
  25528. characterMakers.push(() => makeCharacter(
  25529. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25530. {
  25531. female: {
  25532. height: math.unit(26.15, "m"),
  25533. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25534. name: "Female",
  25535. image: {
  25536. source: "./media/characters/joraxian/female.svg",
  25537. extra: 2912 / 2824,
  25538. bottom: 36 / 2956
  25539. }
  25540. },
  25541. male: {
  25542. height: math.unit(25.4, "m"),
  25543. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25544. name: "Male",
  25545. image: {
  25546. source: "./media/characters/joraxian/male.svg",
  25547. extra: 2877 / 2721,
  25548. bottom: 82 / 2967
  25549. }
  25550. },
  25551. },
  25552. [
  25553. {
  25554. name: "Macro",
  25555. height: math.unit(26.15, "meters"),
  25556. default: true
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25562. {
  25563. female: {
  25564. height: math.unit(21.6, "m"),
  25565. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25566. name: "Female",
  25567. image: {
  25568. source: "./media/characters/sthara/female.svg",
  25569. extra: 2516 / 2347,
  25570. bottom: 21.5 / 2537
  25571. }
  25572. },
  25573. male: {
  25574. height: math.unit(24, "m"),
  25575. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25576. name: "Male",
  25577. image: {
  25578. source: "./media/characters/sthara/male.svg",
  25579. extra: 2732 / 2607,
  25580. bottom: 23 / 2732
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Macro",
  25587. height: math.unit(21.6, "meters"),
  25588. default: true
  25589. },
  25590. ]
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25594. {
  25595. front: {
  25596. height: math.unit(6 + 4 / 12, "feet"),
  25597. weight: math.unit(175, "lb"),
  25598. name: "Front",
  25599. image: {
  25600. source: "./media/characters/luka-bryzant/front.svg",
  25601. extra: 311 / 289,
  25602. bottom: 4 / 315
  25603. }
  25604. },
  25605. back: {
  25606. height: math.unit(6 + 4 / 12, "feet"),
  25607. weight: math.unit(175, "lb"),
  25608. name: "Back",
  25609. image: {
  25610. source: "./media/characters/luka-bryzant/back.svg",
  25611. extra: 311 / 289,
  25612. bottom: 3.8 / 313.7
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Micro",
  25619. height: math.unit(10, "inches")
  25620. },
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(6 + 4 / 12, "feet"),
  25624. default: true
  25625. },
  25626. {
  25627. name: "Large",
  25628. height: math.unit(12, "feet")
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(5 + 7 / 12, "feet"),
  25637. weight: math.unit(185, "lb"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/aman-aquila/front.svg",
  25641. extra: 1013 / 976,
  25642. bottom: 45.6 / 1057
  25643. }
  25644. },
  25645. side: {
  25646. height: math.unit(5 + 7 / 12, "feet"),
  25647. weight: math.unit(185, "lb"),
  25648. name: "Side",
  25649. image: {
  25650. source: "./media/characters/aman-aquila/side.svg",
  25651. extra: 1054 / 1011,
  25652. bottom: 15 / 1070
  25653. }
  25654. },
  25655. back: {
  25656. height: math.unit(5 + 7 / 12, "feet"),
  25657. weight: math.unit(185, "lb"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/aman-aquila/back.svg",
  25661. extra: 1026 / 970,
  25662. bottom: 12 / 1039
  25663. }
  25664. },
  25665. head: {
  25666. height: math.unit(1.211, "feet"),
  25667. name: "Head",
  25668. image: {
  25669. source: "./media/characters/aman-aquila/head.svg",
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Minimicro",
  25676. height: math.unit(0.057, "inches")
  25677. },
  25678. {
  25679. name: "Micro",
  25680. height: math.unit(7, "inches")
  25681. },
  25682. {
  25683. name: "Mini",
  25684. height: math.unit(3 + 7 / 12, "feet")
  25685. },
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(5 + 7 / 12, "feet"),
  25689. default: true
  25690. },
  25691. {
  25692. name: "Macro",
  25693. height: math.unit(157 + 7 / 12, "feet")
  25694. },
  25695. {
  25696. name: "Megamacro",
  25697. height: math.unit(1557 + 7 / 12, "feet")
  25698. },
  25699. {
  25700. name: "Gigamacro",
  25701. height: math.unit(15557 + 7 / 12, "feet")
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(3 + 2 / 12, "inches"),
  25710. weight: math.unit(0.3, "ounces"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/hiphae/front.svg",
  25714. extra: 1931 / 1683,
  25715. bottom: 24 / 1955
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(3 + 1 / 2, "inches"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(5 + 10 / 12, "feet"),
  25732. weight: math.unit(165, "lb"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/nicky/front.svg",
  25736. extra: 3144 / 2886,
  25737. bottom: 45.6 / 3192
  25738. }
  25739. },
  25740. back: {
  25741. height: math.unit(5 + 10 / 12, "feet"),
  25742. weight: math.unit(165, "lb"),
  25743. name: "Back",
  25744. image: {
  25745. source: "./media/characters/nicky/back.svg",
  25746. extra: 3055 / 2804,
  25747. bottom: 28.4 / 3087
  25748. }
  25749. },
  25750. frontclothed: {
  25751. height: math.unit(5 + 10 / 12, "feet"),
  25752. weight: math.unit(165, "lb"),
  25753. name: "Front-clothed",
  25754. image: {
  25755. source: "./media/characters/nicky/front-clothed.svg",
  25756. extra: 3184.9 / 2926.9,
  25757. bottom: 86.5 / 3239.9
  25758. }
  25759. },
  25760. foot: {
  25761. height: math.unit(1.16, "feet"),
  25762. name: "Foot",
  25763. image: {
  25764. source: "./media/characters/nicky/foot.svg"
  25765. }
  25766. },
  25767. feet: {
  25768. height: math.unit(1.34, "feet"),
  25769. name: "Feet",
  25770. image: {
  25771. source: "./media/characters/nicky/feet.svg"
  25772. }
  25773. },
  25774. maw: {
  25775. height: math.unit(0.9, "feet"),
  25776. name: "Maw",
  25777. image: {
  25778. source: "./media/characters/nicky/maw.svg"
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(5 + 10 / 12, "feet"),
  25786. default: true
  25787. },
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(60, "feet")
  25791. },
  25792. {
  25793. name: "Megamacro",
  25794. height: math.unit(1, "mile")
  25795. },
  25796. ]
  25797. ))
  25798. characterMakers.push(() => makeCharacter(
  25799. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25800. {
  25801. side: {
  25802. height: math.unit(10, "feet"),
  25803. weight: math.unit(600, "lb"),
  25804. name: "Side",
  25805. image: {
  25806. source: "./media/characters/blair/side.svg",
  25807. bottom: 16.6 / 475,
  25808. extra: 458 / 431
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Micro",
  25815. height: math.unit(8, "inches")
  25816. },
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(10, "feet"),
  25820. default: true
  25821. },
  25822. {
  25823. name: "Macro",
  25824. height: math.unit(180, "feet")
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(5 + 4 / 12, "feet"),
  25833. weight: math.unit(125, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/fisher/front.svg",
  25837. extra: 444 / 390,
  25838. bottom: 2 / 444.8
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Micro",
  25845. height: math.unit(4, "inches")
  25846. },
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(5 + 4 / 12, "feet"),
  25850. default: true
  25851. },
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(100, "feet")
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(6.71, "feet"),
  25863. weight: math.unit(200, "lb"),
  25864. capacity: math.unit(1000000, "people"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/gliss/front.svg",
  25868. extra: 2347 / 2231,
  25869. bottom: 113 / 2462
  25870. }
  25871. },
  25872. hammerspaceSize: {
  25873. height: math.unit(6.71 * 717, "feet"),
  25874. weight: math.unit(200, "lb"),
  25875. capacity: math.unit(1000000, "people"),
  25876. name: "Hammerspace Size",
  25877. image: {
  25878. source: "./media/characters/gliss/front.svg",
  25879. extra: 2347 / 2231,
  25880. bottom: 113 / 2462
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(6.71, "feet"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25894. {
  25895. side: {
  25896. height: math.unit(1.44, "m"),
  25897. weight: math.unit(80, "kg"),
  25898. name: "Side",
  25899. image: {
  25900. source: "./media/characters/dune-anderson/side.svg",
  25901. bottom: 49 / 1426
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Wolf-sized",
  25908. height: math.unit(1.44, "meters")
  25909. },
  25910. {
  25911. name: "Normal",
  25912. height: math.unit(5.05, "meters"),
  25913. default: true
  25914. },
  25915. {
  25916. name: "Big",
  25917. height: math.unit(14.4, "meters")
  25918. },
  25919. {
  25920. name: "Huge",
  25921. height: math.unit(144, "meters")
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(7, "feet"),
  25930. weight: math.unit(425, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/hind/front.svg",
  25934. extra: 2091 / 1860,
  25935. bottom: 129 / 2220
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(7, "feet"),
  25940. weight: math.unit(425, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/hind/back.svg",
  25944. extra: 2091 / 1860,
  25945. bottom: 24.6 / 2309
  25946. }
  25947. },
  25948. tail: {
  25949. height: math.unit(2.8, "feet"),
  25950. name: "Tail",
  25951. image: {
  25952. source: "./media/characters/hind/tail.svg"
  25953. }
  25954. },
  25955. head: {
  25956. height: math.unit(2.55, "feet"),
  25957. name: "Head",
  25958. image: {
  25959. source: "./media/characters/hind/head.svg"
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "XS",
  25966. height: math.unit(0.7, "feet")
  25967. },
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(7, "feet"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "XL",
  25975. height: math.unit(70, "feet")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(2.1, "meters"),
  25984. weight: math.unit(150, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/tharquench-sizestealer/front.svg",
  25988. extra: 1605/1470,
  25989. bottom: 36/1641
  25990. }
  25991. },
  25992. frontAlt: {
  25993. height: math.unit(2.1, "meters"),
  25994. weight: math.unit(150, "lb"),
  25995. name: "Front (Alt)",
  25996. image: {
  25997. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25998. extra: 2318 / 2063,
  25999. bottom: 93.4 / 2410
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Nano",
  26006. height: math.unit(1, "mm")
  26007. },
  26008. {
  26009. name: "Micro",
  26010. height: math.unit(1, "cm")
  26011. },
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(2.1, "meters"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(7 + 5 / 12, "feet"),
  26024. weight: math.unit(357, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/solex-draconov/front.svg",
  26028. extra: 1993 / 1865,
  26029. bottom: 117 / 2111
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Natural Height",
  26036. height: math.unit(7 + 5 / 12, "feet"),
  26037. default: true
  26038. },
  26039. {
  26040. name: "Macro",
  26041. height: math.unit(350, "feet")
  26042. },
  26043. {
  26044. name: "Macro+",
  26045. height: math.unit(1000, "feet")
  26046. },
  26047. {
  26048. name: "Megamacro",
  26049. height: math.unit(20, "km")
  26050. },
  26051. {
  26052. name: "Megamacro+",
  26053. height: math.unit(1000, "km")
  26054. },
  26055. {
  26056. name: "Gigamacro",
  26057. height: math.unit(2.5, "Gm")
  26058. },
  26059. {
  26060. name: "Teramacro",
  26061. height: math.unit(15, "Tm")
  26062. },
  26063. {
  26064. name: "Galactic",
  26065. height: math.unit(30, "Zm")
  26066. },
  26067. {
  26068. name: "Universal",
  26069. height: math.unit(21000, "Ym")
  26070. },
  26071. {
  26072. name: "Omniversal",
  26073. height: math.unit(9.861e50, "Ym")
  26074. },
  26075. {
  26076. name: "Existential",
  26077. height: math.unit(1e300, "meters")
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26083. {
  26084. side: {
  26085. height: math.unit(25, "feet"),
  26086. weight: math.unit(90000, "lb"),
  26087. name: "Side",
  26088. image: {
  26089. source: "./media/characters/mandarax/side.svg",
  26090. extra: 614 / 332,
  26091. bottom: 55 / 630
  26092. }
  26093. },
  26094. lounging: {
  26095. height: math.unit(15.4, "feet"),
  26096. weight: math.unit(90000, "lb"),
  26097. name: "Lounging",
  26098. image: {
  26099. source: "./media/characters/mandarax/lounging.svg",
  26100. extra: 817/609,
  26101. bottom: 685/1502
  26102. }
  26103. },
  26104. head: {
  26105. height: math.unit(11.4, "feet"),
  26106. name: "Head",
  26107. image: {
  26108. source: "./media/characters/mandarax/head.svg"
  26109. }
  26110. },
  26111. belly: {
  26112. height: math.unit(33, "feet"),
  26113. name: "Belly",
  26114. capacity: math.unit(500, "people"),
  26115. image: {
  26116. source: "./media/characters/mandarax/belly.svg"
  26117. }
  26118. },
  26119. dick: {
  26120. height: math.unit(8.46, "feet"),
  26121. name: "Dick",
  26122. image: {
  26123. source: "./media/characters/mandarax/dick.svg"
  26124. }
  26125. },
  26126. top: {
  26127. height: math.unit(28, "meters"),
  26128. name: "Top",
  26129. image: {
  26130. source: "./media/characters/mandarax/top.svg"
  26131. }
  26132. },
  26133. },
  26134. [
  26135. {
  26136. name: "Normal",
  26137. height: math.unit(25, "feet"),
  26138. default: true
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(5, "feet"),
  26147. weight: math.unit(90, "lb"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/pixil/front.svg",
  26151. extra: 2000 / 1618,
  26152. bottom: 12.3 / 2011
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Normal",
  26159. height: math.unit(5, "feet"),
  26160. default: true
  26161. },
  26162. {
  26163. name: "Megamacro",
  26164. height: math.unit(10, "miles"),
  26165. },
  26166. ]
  26167. ))
  26168. characterMakers.push(() => makeCharacter(
  26169. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26170. {
  26171. front: {
  26172. height: math.unit(7 + 2 / 12, "feet"),
  26173. weight: math.unit(200, "lb"),
  26174. name: "Front",
  26175. image: {
  26176. source: "./media/characters/angel/front.svg",
  26177. extra: 1830 / 1737,
  26178. bottom: 22.6 / 1854,
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(7 + 2 / 12, "feet"),
  26186. default: true
  26187. },
  26188. {
  26189. name: "Macro",
  26190. height: math.unit(1000, "feet")
  26191. },
  26192. {
  26193. name: "Megamacro",
  26194. height: math.unit(2, "miles")
  26195. },
  26196. {
  26197. name: "Gigamacro",
  26198. height: math.unit(20, "earths")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(5, "feet"),
  26207. weight: math.unit(180, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/mekana/front.svg",
  26211. extra: 1671 / 1605,
  26212. bottom: 3.5 / 1691
  26213. }
  26214. },
  26215. side: {
  26216. height: math.unit(5, "feet"),
  26217. weight: math.unit(180, "lb"),
  26218. name: "Side",
  26219. image: {
  26220. source: "./media/characters/mekana/side.svg",
  26221. extra: 1671 / 1605,
  26222. bottom: 3.5 / 1691
  26223. }
  26224. },
  26225. back: {
  26226. height: math.unit(5, "feet"),
  26227. weight: math.unit(180, "lb"),
  26228. name: "Back",
  26229. image: {
  26230. source: "./media/characters/mekana/back.svg",
  26231. extra: 1671 / 1605,
  26232. bottom: 3.5 / 1691
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(5, "feet"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(4 + 6 / 12, "feet"),
  26249. weight: math.unit(80, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/pixie/front.svg",
  26253. extra: 1924 / 1825,
  26254. bottom: 22.4 / 1946
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(4 + 6 / 12, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(40, "feet")
  26267. },
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(2.1, "meters"),
  26275. weight: math.unit(200, "lb"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/the-lascivious/front.svg",
  26279. extra: 1 / 0.893,
  26280. bottom: 3.5 / 573.7
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Human Scale",
  26287. height: math.unit(2.1, "meters")
  26288. },
  26289. {
  26290. name: "Wolxi Scale",
  26291. height: math.unit(46.2, "m"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Boinker of Buildings",
  26296. height: math.unit(10, "km")
  26297. },
  26298. {
  26299. name: "Shagger of Skyscrapers",
  26300. height: math.unit(40, "km")
  26301. },
  26302. {
  26303. name: "Banger of Boroughs",
  26304. height: math.unit(4000, "km")
  26305. },
  26306. {
  26307. name: "Screwer of States",
  26308. height: math.unit(100000, "km")
  26309. },
  26310. {
  26311. name: "Pounder of Planets",
  26312. height: math.unit(2000000, "km")
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(6, "feet"),
  26321. weight: math.unit(150, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/aj/front.svg",
  26325. extra: 2039 / 1562,
  26326. bottom: 40 / 2079
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(11 + 6 / 12, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Megamacro",
  26338. height: math.unit(60, "megameters")
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26344. {
  26345. side: {
  26346. height: math.unit(31 + 8 / 12, "feet"),
  26347. weight: math.unit(75000, "kg"),
  26348. name: "Side",
  26349. image: {
  26350. source: "./media/characters/koros/side.svg",
  26351. extra: 1442 / 1297,
  26352. bottom: 122.7 / 1562
  26353. }
  26354. },
  26355. dicksKingsCrown: {
  26356. height: math.unit(6, "feet"),
  26357. name: "Dicks (King's Crown)",
  26358. image: {
  26359. source: "./media/characters/koros/dicks-kings-crown.svg"
  26360. }
  26361. },
  26362. dicksTailSet: {
  26363. height: math.unit(3, "feet"),
  26364. name: "Dicks (Tail Set)",
  26365. image: {
  26366. source: "./media/characters/koros/dicks-tail-set.svg"
  26367. }
  26368. },
  26369. dickCumming: {
  26370. height: math.unit(7.98, "feet"),
  26371. name: "Dick (Cumming)",
  26372. image: {
  26373. source: "./media/characters/koros/dick-cumming.svg"
  26374. }
  26375. },
  26376. dicksBack: {
  26377. height: math.unit(5.9, "feet"),
  26378. name: "Dicks (Back)",
  26379. image: {
  26380. source: "./media/characters/koros/dicks-back.svg"
  26381. }
  26382. },
  26383. dicksFront: {
  26384. height: math.unit(3.72, "feet"),
  26385. name: "Dicks (Front)",
  26386. image: {
  26387. source: "./media/characters/koros/dicks-front.svg"
  26388. }
  26389. },
  26390. dicksPeeking: {
  26391. height: math.unit(3.0, "feet"),
  26392. name: "Dicks (Peeking)",
  26393. image: {
  26394. source: "./media/characters/koros/dicks-peeking.svg"
  26395. }
  26396. },
  26397. eye: {
  26398. height: math.unit(1.7, "feet"),
  26399. name: "Eye",
  26400. image: {
  26401. source: "./media/characters/koros/eye.svg"
  26402. }
  26403. },
  26404. headFront: {
  26405. height: math.unit(11.69, "feet"),
  26406. name: "Head (Front)",
  26407. image: {
  26408. source: "./media/characters/koros/head-front.svg"
  26409. }
  26410. },
  26411. headSide: {
  26412. height: math.unit(14, "feet"),
  26413. name: "Head (Side)",
  26414. image: {
  26415. source: "./media/characters/koros/head-side.svg"
  26416. }
  26417. },
  26418. leg: {
  26419. height: math.unit(17, "feet"),
  26420. name: "Leg",
  26421. image: {
  26422. source: "./media/characters/koros/leg.svg"
  26423. }
  26424. },
  26425. mawSide: {
  26426. height: math.unit(12.8, "feet"),
  26427. name: "Maw (Side)",
  26428. image: {
  26429. source: "./media/characters/koros/maw-side.svg"
  26430. }
  26431. },
  26432. mawSpitting: {
  26433. height: math.unit(17, "feet"),
  26434. name: "Maw (Spitting)",
  26435. image: {
  26436. source: "./media/characters/koros/maw-spitting.svg"
  26437. }
  26438. },
  26439. slit: {
  26440. height: math.unit(2.8, "feet"),
  26441. name: "Slit",
  26442. image: {
  26443. source: "./media/characters/koros/slit.svg"
  26444. }
  26445. },
  26446. stomach: {
  26447. height: math.unit(6.8, "feet"),
  26448. capacity: math.unit(20, "people"),
  26449. name: "Stomach",
  26450. image: {
  26451. source: "./media/characters/koros/stomach.svg"
  26452. }
  26453. },
  26454. wingspanBottom: {
  26455. height: math.unit(114, "feet"),
  26456. name: "Wingspan (Bottom)",
  26457. image: {
  26458. source: "./media/characters/koros/wingspan-bottom.svg"
  26459. }
  26460. },
  26461. wingspanTop: {
  26462. height: math.unit(104, "feet"),
  26463. name: "Wingspan (Top)",
  26464. image: {
  26465. source: "./media/characters/koros/wingspan-top.svg"
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Normal",
  26472. height: math.unit(31 + 8 / 12, "feet"),
  26473. default: true
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(18 + 5 / 12, "feet"),
  26482. weight: math.unit(3750, "kg"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/vexx/front.svg",
  26486. extra: 426 / 396,
  26487. bottom: 31.5 / 458
  26488. }
  26489. },
  26490. maw: {
  26491. height: math.unit(6, "feet"),
  26492. name: "Maw",
  26493. image: {
  26494. source: "./media/characters/vexx/maw.svg"
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(18 + 5 / 12, "feet"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(17 + 6 / 12, "feet"),
  26511. weight: math.unit(150, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/baadra/front.svg",
  26515. extra: 1694/1553,
  26516. bottom: 179/1873
  26517. }
  26518. },
  26519. frontAlt: {
  26520. height: math.unit(17 + 6 / 12, "feet"),
  26521. weight: math.unit(150, "lb"),
  26522. name: "Front (Alt)",
  26523. image: {
  26524. source: "./media/characters/baadra/front-alt.svg",
  26525. extra: 3137 / 2890,
  26526. bottom: 168.4 / 3305
  26527. }
  26528. },
  26529. back: {
  26530. height: math.unit(17 + 6 / 12, "feet"),
  26531. weight: math.unit(150, "lb"),
  26532. name: "Back",
  26533. image: {
  26534. source: "./media/characters/baadra/back.svg",
  26535. extra: 3142 / 2890,
  26536. bottom: 220 / 3371
  26537. }
  26538. },
  26539. head: {
  26540. height: math.unit(5.45, "feet"),
  26541. name: "Head",
  26542. image: {
  26543. source: "./media/characters/baadra/head.svg"
  26544. }
  26545. },
  26546. headAngry: {
  26547. height: math.unit(4.95, "feet"),
  26548. name: "Head (Angry)",
  26549. image: {
  26550. source: "./media/characters/baadra/head-angry.svg"
  26551. }
  26552. },
  26553. headOpen: {
  26554. height: math.unit(6, "feet"),
  26555. name: "Head (Open)",
  26556. image: {
  26557. source: "./media/characters/baadra/head-open.svg"
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(17 + 6 / 12, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(7 + 3 / 12, "feet"),
  26574. weight: math.unit(180, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/juri/front.svg",
  26578. extra: 1401 / 1237,
  26579. bottom: 18.5 / 1418
  26580. }
  26581. },
  26582. side: {
  26583. height: math.unit(7 + 3 / 12, "feet"),
  26584. weight: math.unit(180, "lb"),
  26585. name: "Side",
  26586. image: {
  26587. source: "./media/characters/juri/side.svg",
  26588. extra: 1424 / 1242,
  26589. bottom: 18.5 / 1447
  26590. }
  26591. },
  26592. sitting: {
  26593. height: math.unit(6, "feet"),
  26594. weight: math.unit(180, "lb"),
  26595. name: "Sitting",
  26596. image: {
  26597. source: "./media/characters/juri/sitting.svg",
  26598. extra: 1270 / 1143,
  26599. bottom: 100 / 1343
  26600. }
  26601. },
  26602. back: {
  26603. height: math.unit(7 + 3 / 12, "feet"),
  26604. weight: math.unit(180, "lb"),
  26605. name: "Back",
  26606. image: {
  26607. source: "./media/characters/juri/back.svg",
  26608. extra: 1377 / 1240,
  26609. bottom: 23.7 / 1405
  26610. }
  26611. },
  26612. maw: {
  26613. height: math.unit(2.8, "feet"),
  26614. name: "Maw",
  26615. image: {
  26616. source: "./media/characters/juri/maw.svg"
  26617. }
  26618. },
  26619. stomach: {
  26620. height: math.unit(0.89, "feet"),
  26621. capacity: math.unit(4, "liters"),
  26622. name: "Stomach",
  26623. image: {
  26624. source: "./media/characters/juri/stomach.svg"
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(7 + 3 / 12, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26638. {
  26639. fox: {
  26640. height: math.unit(5 + 6 / 12, "feet"),
  26641. weight: math.unit(140, "lb"),
  26642. name: "Fox",
  26643. image: {
  26644. source: "./media/characters/maxene-sita/fox.svg",
  26645. extra: 146 / 138,
  26646. bottom: 2.1 / 148.19
  26647. }
  26648. },
  26649. foxLaying: {
  26650. height: math.unit(1.70, "feet"),
  26651. weight: math.unit(140, "lb"),
  26652. name: "Fox (Laying)",
  26653. image: {
  26654. source: "./media/characters/maxene-sita/fox-laying.svg",
  26655. extra: 910 / 572,
  26656. bottom: 71 / 981
  26657. }
  26658. },
  26659. kitsune: {
  26660. height: math.unit(10, "feet"),
  26661. weight: math.unit(800, "lb"),
  26662. name: "Kitsune",
  26663. image: {
  26664. source: "./media/characters/maxene-sita/kitsune.svg",
  26665. extra: 185 / 176,
  26666. bottom: 4.7 / 189.9
  26667. }
  26668. },
  26669. hellhound: {
  26670. height: math.unit(10, "feet"),
  26671. weight: math.unit(700, "lb"),
  26672. name: "Hellhound",
  26673. image: {
  26674. source: "./media/characters/maxene-sita/hellhound.svg",
  26675. extra: 1600 / 1545,
  26676. bottom: 81 / 1681
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Normal",
  26683. height: math.unit(5 + 6 / 12, "feet"),
  26684. default: true
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26690. {
  26691. front: {
  26692. height: math.unit(3 + 4 / 12, "feet"),
  26693. weight: math.unit(70, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/maia/front.svg",
  26697. extra: 227 / 219.5,
  26698. bottom: 40 / 267
  26699. }
  26700. },
  26701. back: {
  26702. height: math.unit(3 + 4 / 12, "feet"),
  26703. weight: math.unit(70, "lb"),
  26704. name: "Back",
  26705. image: {
  26706. source: "./media/characters/maia/back.svg",
  26707. extra: 237 / 225
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(3 + 4 / 12, "feet"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(5 + 10 / 12, "feet"),
  26724. weight: math.unit(197, "lb"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/jabaro/front.svg",
  26728. extra: 225 / 216,
  26729. bottom: 5.06 / 230
  26730. }
  26731. },
  26732. back: {
  26733. height: math.unit(5 + 10 / 12, "feet"),
  26734. weight: math.unit(197, "lb"),
  26735. name: "Back",
  26736. image: {
  26737. source: "./media/characters/jabaro/back.svg",
  26738. extra: 225 / 219,
  26739. bottom: 1.9 / 227
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(5 + 10 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 8 / 12, "feet"),
  26756. weight: math.unit(139, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/risa/front.svg",
  26760. extra: 270 / 260,
  26761. bottom: 11.2 / 282
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 8 / 12, "feet"),
  26766. weight: math.unit(139, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/risa/back.svg",
  26770. extra: 264 / 255,
  26771. bottom: 4 / 268
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(5 + 8 / 12, "feet"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(2 + 11 / 12, "feet"),
  26788. weight: math.unit(30, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/weatley/front.svg",
  26792. bottom: 10.7 / 414,
  26793. extra: 403.5 / 362
  26794. }
  26795. },
  26796. back: {
  26797. height: math.unit(2 + 11 / 12, "feet"),
  26798. weight: math.unit(30, "lb"),
  26799. name: "Back",
  26800. image: {
  26801. source: "./media/characters/weatley/back.svg",
  26802. bottom: 10.7 / 414,
  26803. extra: 403.5 / 362
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(2 + 11 / 12, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(5 + 2 / 12, "feet"),
  26820. weight: math.unit(50, "kg"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/mercury-crescent/front.svg",
  26824. extra: 1088 / 1033,
  26825. bottom: 18.9 / 1109
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(5 + 2 / 12, "feet"),
  26833. default: true
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(2, "feet"),
  26842. weight: math.unit(15, "kg"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/diamond-jones/front.svg",
  26846. extra: 727/723,
  26847. bottom: 46/773
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(2, "feet"),
  26855. default: true
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(3, "feet"),
  26864. weight: math.unit(30, "kg"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/sweet-bit/front.svg",
  26868. extra: 675 / 567,
  26869. bottom: 27.7 / 703
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(3, "feet"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26883. {
  26884. side: {
  26885. height: math.unit(9.178, "feet"),
  26886. weight: math.unit(500, "lb"),
  26887. name: "Side",
  26888. image: {
  26889. source: "./media/characters/umbrazen/side.svg",
  26890. extra: 1730 / 1473,
  26891. bottom: 34.6 / 1765
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(9.178, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(10, "feet"),
  26908. weight: math.unit(750, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/arlist/front.svg",
  26912. extra: 961 / 778,
  26913. bottom: 6.2 / 986
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(10, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(5 + 1 / 12, "feet"),
  26930. weight: math.unit(110, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/aradel/front.svg",
  26934. extra: 324 / 303,
  26935. bottom: 3.6 / 329.4
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(5 + 1 / 12, "feet"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26949. {
  26950. dressed: {
  26951. height: math.unit(3 + 8 / 12, "feet"),
  26952. weight: math.unit(50, "lb"),
  26953. name: "Dressed",
  26954. image: {
  26955. source: "./media/characters/serryn/dressed.svg",
  26956. extra: 1792 / 1656,
  26957. bottom: 43.5 / 1840
  26958. }
  26959. },
  26960. nude: {
  26961. height: math.unit(3 + 8 / 12, "feet"),
  26962. weight: math.unit(50, "lb"),
  26963. name: "Nude",
  26964. image: {
  26965. source: "./media/characters/serryn/nude.svg",
  26966. extra: 1792 / 1656,
  26967. bottom: 43.5 / 1840
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(3 + 8 / 12, "feet"),
  26975. default: true
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(7 + 10 / 12, "feet"),
  26984. weight: math.unit(255, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/xavier-thyme/front.svg",
  26988. extra: 3733 / 3642,
  26989. bottom: 131 / 3869
  26990. }
  26991. },
  26992. frontRaven: {
  26993. height: math.unit(7 + 10 / 12, "feet"),
  26994. weight: math.unit(255, "lb"),
  26995. name: "Front (Raven)",
  26996. image: {
  26997. source: "./media/characters/xavier-thyme/front-raven.svg",
  26998. extra: 4385 / 3642,
  26999. bottom: 131 / 4517
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Normal",
  27006. height: math.unit(7 + 10 / 12, "feet"),
  27007. default: true
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27013. {
  27014. front: {
  27015. height: math.unit(1.6, "m"),
  27016. weight: math.unit(50, "kg"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/kiki/front.svg",
  27020. extra: 4682 / 3610,
  27021. bottom: 115 / 4777
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(1.6, "meters"),
  27029. default: true
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(50, "m"),
  27038. weight: math.unit(500, "tonnes"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/ryoko/front.svg",
  27042. extra: 4632 / 3926,
  27043. bottom: 193 / 4823
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(50, "meters"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(30, "m"),
  27060. weight: math.unit(22, "tonnes"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/elio/front.svg",
  27064. extra: 4582 / 3720,
  27065. bottom: 236 / 4828
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(30, "meters"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(6 + 3 / 12, "feet"),
  27082. weight: math.unit(120, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/azura/front.svg",
  27086. extra: 1149 / 1135,
  27087. bottom: 45 / 1194
  27088. }
  27089. },
  27090. frontClothed: {
  27091. height: math.unit(6 + 3 / 12, "feet"),
  27092. weight: math.unit(120, "lb"),
  27093. name: "Front (Clothed)",
  27094. image: {
  27095. source: "./media/characters/azura/front-clothed.svg",
  27096. extra: 1149 / 1135,
  27097. bottom: 45 / 1194
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(6 + 3 / 12, "feet"),
  27105. default: true
  27106. },
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(20 + 6 / 12, "feet")
  27110. },
  27111. {
  27112. name: "Megamacro",
  27113. height: math.unit(12, "miles")
  27114. },
  27115. {
  27116. name: "Gigamacro",
  27117. height: math.unit(10000, "miles")
  27118. },
  27119. {
  27120. name: "Teramacro",
  27121. height: math.unit(900000, "miles")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(12, "feet"),
  27130. weight: math.unit(1, "ton"),
  27131. capacity: math.unit(660000, "gallons"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/zeus/front.svg",
  27135. extra: 5005 / 4717,
  27136. bottom: 363 / 5388
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(12, "feet")
  27144. },
  27145. {
  27146. name: "Preferred Size",
  27147. height: math.unit(0.5, "miles"),
  27148. default: true
  27149. },
  27150. {
  27151. name: "Giga Horse",
  27152. height: math.unit(300, "miles")
  27153. },
  27154. {
  27155. name: "Riding Planets",
  27156. height: math.unit(30, "megameters")
  27157. },
  27158. {
  27159. name: "Cosmic Giant",
  27160. height: math.unit(3, "zettameters")
  27161. },
  27162. {
  27163. name: "Breeding God",
  27164. height: math.unit(9.92e22, "yottameters")
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27170. {
  27171. side: {
  27172. height: math.unit(9, "feet"),
  27173. weight: math.unit(1500, "kg"),
  27174. name: "Side",
  27175. image: {
  27176. source: "./media/characters/fang/side.svg",
  27177. extra: 924 / 866,
  27178. bottom: 47.5 / 972.3
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(9, "feet"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(75 + 6 / 12, "feet")
  27191. },
  27192. {
  27193. name: "Teramacro",
  27194. height: math.unit(50000, "miles")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(10, "feet"),
  27203. weight: math.unit(2, "tons"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/rekhit/front.svg",
  27207. extra: 2796 / 2590,
  27208. bottom: 225 / 3022
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(10, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(500, "feet")
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(7 + 6.451 / 12, "feet"),
  27229. weight: math.unit(310, "lb"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/dahlia-verrick/front.svg",
  27233. extra: 1488 / 1365,
  27234. bottom: 6.2 / 1495
  27235. }
  27236. },
  27237. back: {
  27238. height: math.unit(7 + 6.451 / 12, "feet"),
  27239. weight: math.unit(310, "lb"),
  27240. name: "Back",
  27241. image: {
  27242. source: "./media/characters/dahlia-verrick/back.svg",
  27243. extra: 1472 / 1351,
  27244. bottom: 5.28 / 1477
  27245. }
  27246. },
  27247. frontBusiness: {
  27248. height: math.unit(7 + 6.451 / 12, "feet"),
  27249. weight: math.unit(200, "lb"),
  27250. name: "Front (Business)",
  27251. image: {
  27252. source: "./media/characters/dahlia-verrick/front-business.svg",
  27253. extra: 1478 / 1381,
  27254. bottom: 5.5 / 1484
  27255. }
  27256. },
  27257. frontCasual: {
  27258. height: math.unit(7 + 6.451 / 12, "feet"),
  27259. weight: math.unit(200, "lb"),
  27260. name: "Front (Casual)",
  27261. image: {
  27262. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27263. extra: 1478 / 1381,
  27264. bottom: 5.5 / 1484
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Travel-Sized",
  27271. height: math.unit(7.45, "inches")
  27272. },
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(7 + 6.451 / 12, "feet"),
  27276. default: true
  27277. },
  27278. {
  27279. name: "Hitting the Town",
  27280. height: math.unit(37 + 8 / 12, "feet")
  27281. },
  27282. {
  27283. name: "Stomp in the Suburbs",
  27284. height: math.unit(964 + 9.728 / 12, "feet")
  27285. },
  27286. {
  27287. name: "Sit on the City",
  27288. height: math.unit(61747 + 10.592 / 12, "feet")
  27289. },
  27290. {
  27291. name: "Glomp the Globe",
  27292. height: math.unit(252919327 + 4.832 / 12, "feet")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(6 + 4 / 12, "feet"),
  27301. weight: math.unit(320, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/balina-mahigan/front.svg",
  27305. extra: 447 / 428,
  27306. bottom: 18 / 466
  27307. }
  27308. },
  27309. back: {
  27310. height: math.unit(6 + 4 / 12, "feet"),
  27311. weight: math.unit(320, "lb"),
  27312. name: "Back",
  27313. image: {
  27314. source: "./media/characters/balina-mahigan/back.svg",
  27315. extra: 445 / 428,
  27316. bottom: 4.07 / 448
  27317. }
  27318. },
  27319. arm: {
  27320. height: math.unit(1.88, "feet"),
  27321. name: "Arm",
  27322. image: {
  27323. source: "./media/characters/balina-mahigan/arm.svg"
  27324. }
  27325. },
  27326. backPort: {
  27327. height: math.unit(0.685, "feet"),
  27328. name: "Back Port",
  27329. image: {
  27330. source: "./media/characters/balina-mahigan/back-port.svg"
  27331. }
  27332. },
  27333. hoofpaw: {
  27334. height: math.unit(1.41, "feet"),
  27335. name: "Hoofpaw",
  27336. image: {
  27337. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27338. }
  27339. },
  27340. leftHandBack: {
  27341. height: math.unit(0.938, "feet"),
  27342. name: "Left Hand (Back)",
  27343. image: {
  27344. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27345. }
  27346. },
  27347. leftHandFront: {
  27348. height: math.unit(0.938, "feet"),
  27349. name: "Left Hand (Front)",
  27350. image: {
  27351. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27352. }
  27353. },
  27354. rightHandBack: {
  27355. height: math.unit(0.95, "feet"),
  27356. name: "Right Hand (Back)",
  27357. image: {
  27358. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27359. }
  27360. },
  27361. rightHandFront: {
  27362. height: math.unit(0.95, "feet"),
  27363. name: "Right Hand (Front)",
  27364. image: {
  27365. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Normal",
  27372. height: math.unit(6 + 4 / 12, "feet"),
  27373. default: true
  27374. },
  27375. ]
  27376. ))
  27377. characterMakers.push(() => makeCharacter(
  27378. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27379. {
  27380. front: {
  27381. height: math.unit(6, "feet"),
  27382. weight: math.unit(320, "lb"),
  27383. name: "Front",
  27384. image: {
  27385. source: "./media/characters/balina-mejeri/front.svg",
  27386. extra: 517 / 488,
  27387. bottom: 44.2 / 561
  27388. }
  27389. },
  27390. },
  27391. [
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(6 + 4 / 12, "feet")
  27395. },
  27396. {
  27397. name: "Business",
  27398. height: math.unit(155, "feet"),
  27399. default: true
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27405. {
  27406. kneeling: {
  27407. height: math.unit(6 + 4 / 12, "feet"),
  27408. weight: math.unit(300 * 20, "lb"),
  27409. name: "Kneeling",
  27410. image: {
  27411. source: "./media/characters/balbarian/kneeling.svg",
  27412. extra: 922 / 862,
  27413. bottom: 42.4 / 965
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(6 + 4 / 12, "feet")
  27421. },
  27422. {
  27423. name: "Treasured",
  27424. height: math.unit(18 + 9 / 12, "feet"),
  27425. default: true
  27426. },
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(900, "feet")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(6 + 4 / 12, "feet"),
  27438. weight: math.unit(325, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/balina-amarini/front.svg",
  27442. extra: 415 / 403,
  27443. bottom: 19 / 433.4
  27444. }
  27445. },
  27446. back: {
  27447. height: math.unit(6 + 4 / 12, "feet"),
  27448. weight: math.unit(325, "lb"),
  27449. name: "Back",
  27450. image: {
  27451. source: "./media/characters/balina-amarini/back.svg",
  27452. extra: 415 / 403,
  27453. bottom: 13.5 / 432
  27454. }
  27455. },
  27456. overdrive: {
  27457. height: math.unit(6 + 4 / 12, "feet"),
  27458. weight: math.unit(400, "lb"),
  27459. name: "Overdrive",
  27460. image: {
  27461. source: "./media/characters/balina-amarini/overdrive.svg",
  27462. extra: 269 / 259,
  27463. bottom: 12 / 282
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Boom",
  27470. height: math.unit(9 + 10 / 12, "feet"),
  27471. default: true
  27472. },
  27473. {
  27474. name: "Macro",
  27475. height: math.unit(280, "feet")
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27481. {
  27482. goddess: {
  27483. height: math.unit(600, "feet"),
  27484. weight: math.unit(2000000, "tons"),
  27485. name: "Goddess",
  27486. image: {
  27487. source: "./media/characters/lady-kubwa/goddess.svg",
  27488. extra: 1240.5 / 1223,
  27489. bottom: 22 / 1263
  27490. }
  27491. },
  27492. goddesser: {
  27493. height: math.unit(900, "feet"),
  27494. weight: math.unit(20000000, "lb"),
  27495. name: "Goddess-er",
  27496. image: {
  27497. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27498. extra: 899 / 888,
  27499. bottom: 12.6 / 912
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(600, "feet"),
  27507. default: true
  27508. },
  27509. {
  27510. name: "Megamacro",
  27511. height: math.unit(250, "miles")
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(7 + 7 / 12, "feet"),
  27520. weight: math.unit(250, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/tala-grovehorn/front.svg",
  27524. extra: 2636 / 2525,
  27525. bottom: 147 / 2781
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(7 + 7 / 12, "feet"),
  27530. weight: math.unit(250, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/tala-grovehorn/back.svg",
  27534. extra: 2635 / 2539,
  27535. bottom: 100 / 2732.8
  27536. }
  27537. },
  27538. mouth: {
  27539. height: math.unit(1.15, "feet"),
  27540. name: "Mouth",
  27541. image: {
  27542. source: "./media/characters/tala-grovehorn/mouth.svg"
  27543. }
  27544. },
  27545. dick: {
  27546. height: math.unit(2.36, "feet"),
  27547. name: "Dick",
  27548. image: {
  27549. source: "./media/characters/tala-grovehorn/dick.svg"
  27550. }
  27551. },
  27552. slit: {
  27553. height: math.unit(0.61, "feet"),
  27554. name: "Slit",
  27555. image: {
  27556. source: "./media/characters/tala-grovehorn/slit.svg"
  27557. }
  27558. },
  27559. },
  27560. [
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27565. {
  27566. front: {
  27567. height: math.unit(7 + 7 / 12, "feet"),
  27568. weight: math.unit(225, "lb"),
  27569. name: "Front",
  27570. image: {
  27571. source: "./media/characters/epona/front.svg",
  27572. extra: 2445 / 2290,
  27573. bottom: 251 / 2696
  27574. }
  27575. },
  27576. back: {
  27577. height: math.unit(7 + 7 / 12, "feet"),
  27578. weight: math.unit(225, "lb"),
  27579. name: "Back",
  27580. image: {
  27581. source: "./media/characters/epona/back.svg",
  27582. extra: 2546 / 2408,
  27583. bottom: 44 / 2589
  27584. }
  27585. },
  27586. genitals: {
  27587. height: math.unit(1.5, "feet"),
  27588. name: "Genitals",
  27589. image: {
  27590. source: "./media/characters/epona/genitals.svg"
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(7 + 7 / 12, "feet"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(7, "feet"),
  27607. weight: math.unit(518, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/avia-bloodbourn/front.svg",
  27611. extra: 1466 / 1350,
  27612. bottom: 65 / 1527
  27613. }
  27614. },
  27615. },
  27616. [
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(9.35, "feet"),
  27624. weight: math.unit(600, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/amera/front.svg",
  27628. extra: 891 / 818,
  27629. bottom: 30 / 922.7
  27630. }
  27631. },
  27632. back: {
  27633. height: math.unit(9.35, "feet"),
  27634. weight: math.unit(600, "lb"),
  27635. name: "Back",
  27636. image: {
  27637. source: "./media/characters/amera/back.svg",
  27638. extra: 876 / 824,
  27639. bottom: 6.8 / 884
  27640. }
  27641. },
  27642. dick: {
  27643. height: math.unit(2.14, "feet"),
  27644. name: "Dick",
  27645. image: {
  27646. source: "./media/characters/amera/dick.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(9.35, "feet"),
  27654. default: true
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27660. {
  27661. kneeling: {
  27662. height: math.unit(3 + 4 / 12, "feet"),
  27663. weight: math.unit(90, "lb"),
  27664. name: "Kneeling",
  27665. image: {
  27666. source: "./media/characters/rosewen/kneeling.svg",
  27667. extra: 1835 / 1571,
  27668. bottom: 27.7 / 1862
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(3 + 4 / 12, "feet"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(5 + 10 / 12, "feet"),
  27685. weight: math.unit(200, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/sabah/front.svg",
  27689. extra: 849 / 763,
  27690. bottom: 33.9 / 881
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(5 + 10 / 12, "feet"),
  27698. default: true
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27704. {
  27705. front: {
  27706. height: math.unit(3 + 5 / 12, "feet"),
  27707. weight: math.unit(40, "kg"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/purple-flame/front.svg",
  27711. extra: 1577 / 1412,
  27712. bottom: 97 / 1694
  27713. }
  27714. },
  27715. frontDressed: {
  27716. height: math.unit(3 + 5 / 12, "feet"),
  27717. weight: math.unit(40, "kg"),
  27718. name: "Front (Dressed)",
  27719. image: {
  27720. source: "./media/characters/purple-flame/front-dressed.svg",
  27721. extra: 1577 / 1412,
  27722. bottom: 97 / 1694
  27723. }
  27724. },
  27725. headphones: {
  27726. height: math.unit(0.85, "feet"),
  27727. name: "Headphones",
  27728. image: {
  27729. source: "./media/characters/purple-flame/headphones.svg"
  27730. }
  27731. },
  27732. },
  27733. [
  27734. {
  27735. name: "Really Small",
  27736. height: math.unit(5, "cm")
  27737. },
  27738. {
  27739. name: "Micro",
  27740. height: math.unit(1 + 5 / 12, "feet")
  27741. },
  27742. {
  27743. name: "Normal",
  27744. height: math.unit(3 + 5 / 12, "feet"),
  27745. default: true
  27746. },
  27747. {
  27748. name: "Minimacro",
  27749. height: math.unit(125, "feet")
  27750. },
  27751. {
  27752. name: "Macro",
  27753. height: math.unit(0.5, "miles")
  27754. },
  27755. {
  27756. name: "Megamacro",
  27757. height: math.unit(50, "miles")
  27758. },
  27759. {
  27760. name: "Gigantic",
  27761. height: math.unit(750, "miles")
  27762. },
  27763. {
  27764. name: "Planetary",
  27765. height: math.unit(15000, "miles")
  27766. },
  27767. ]
  27768. ))
  27769. characterMakers.push(() => makeCharacter(
  27770. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27771. {
  27772. front: {
  27773. height: math.unit(14, "feet"),
  27774. weight: math.unit(959, "lb"),
  27775. name: "Front",
  27776. image: {
  27777. source: "./media/characters/arsenal/front.svg",
  27778. extra: 2357 / 2157,
  27779. bottom: 93 / 2458
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Normal",
  27786. height: math.unit(14, "feet"),
  27787. default: true
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27793. {
  27794. front: {
  27795. height: math.unit(6, "feet"),
  27796. weight: math.unit(150, "lb"),
  27797. name: "Front",
  27798. image: {
  27799. source: "./media/characters/adira/front.svg",
  27800. extra: 1078 / 1029,
  27801. bottom: 87 / 1166
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Micro",
  27808. height: math.unit(4, "inches"),
  27809. default: true
  27810. },
  27811. {
  27812. name: "Macro",
  27813. height: math.unit(50, "feet")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27819. {
  27820. front: {
  27821. height: math.unit(16, "feet"),
  27822. weight: math.unit(1000, "lb"),
  27823. name: "Front",
  27824. image: {
  27825. source: "./media/characters/grim/front.svg",
  27826. extra: 622 / 614,
  27827. bottom: 18.1 / 642
  27828. }
  27829. },
  27830. back: {
  27831. height: math.unit(16, "feet"),
  27832. weight: math.unit(1000, "lb"),
  27833. name: "Back",
  27834. image: {
  27835. source: "./media/characters/grim/back.svg",
  27836. extra: 610.6 / 602,
  27837. bottom: 40.8 / 652
  27838. }
  27839. },
  27840. hunched: {
  27841. height: math.unit(9.75, "feet"),
  27842. weight: math.unit(1000, "lb"),
  27843. name: "Hunched",
  27844. image: {
  27845. source: "./media/characters/grim/hunched.svg",
  27846. extra: 304 / 297,
  27847. bottom: 35.4 / 394
  27848. }
  27849. },
  27850. },
  27851. [
  27852. {
  27853. name: "Normal",
  27854. height: math.unit(16, "feet"),
  27855. default: true
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27861. {
  27862. front: {
  27863. height: math.unit(2.3, "meters"),
  27864. weight: math.unit(300, "lb"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/sinja/front-sfw.svg",
  27868. extra: 1393 / 1294,
  27869. bottom: 70 / 1463
  27870. }
  27871. },
  27872. frontNsfw: {
  27873. height: math.unit(2.3, "meters"),
  27874. weight: math.unit(300, "lb"),
  27875. name: "Front (NSFW)",
  27876. image: {
  27877. source: "./media/characters/sinja/front-nsfw.svg",
  27878. extra: 1393 / 1294,
  27879. bottom: 70 / 1463
  27880. }
  27881. },
  27882. back: {
  27883. height: math.unit(2.3, "meters"),
  27884. weight: math.unit(300, "lb"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/sinja/back.svg",
  27888. extra: 1393 / 1294,
  27889. bottom: 70 / 1463
  27890. }
  27891. },
  27892. head: {
  27893. height: math.unit(1.771, "feet"),
  27894. name: "Head",
  27895. image: {
  27896. source: "./media/characters/sinja/head.svg"
  27897. }
  27898. },
  27899. slit: {
  27900. height: math.unit(0.8, "feet"),
  27901. name: "Slit",
  27902. image: {
  27903. source: "./media/characters/sinja/slit.svg"
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(2.3, "meters")
  27911. },
  27912. {
  27913. name: "Macro",
  27914. height: math.unit(91, "meters"),
  27915. default: true
  27916. },
  27917. {
  27918. name: "Megamacro",
  27919. height: math.unit(91440, "meters")
  27920. },
  27921. {
  27922. name: "Gigamacro",
  27923. height: math.unit(60960000, "meters")
  27924. },
  27925. {
  27926. name: "Teramacro",
  27927. height: math.unit(9144000000, "meters")
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27933. {
  27934. front: {
  27935. height: math.unit(1.7, "meters"),
  27936. weight: math.unit(130, "lb"),
  27937. name: "Front",
  27938. image: {
  27939. source: "./media/characters/kyu/front.svg",
  27940. extra: 415 / 395,
  27941. bottom: 5 / 420
  27942. }
  27943. },
  27944. head: {
  27945. height: math.unit(1.75, "feet"),
  27946. name: "Head",
  27947. image: {
  27948. source: "./media/characters/kyu/head.svg"
  27949. }
  27950. },
  27951. foot: {
  27952. height: math.unit(0.81, "feet"),
  27953. name: "Foot",
  27954. image: {
  27955. source: "./media/characters/kyu/foot.svg"
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(1.7, "meters")
  27963. },
  27964. {
  27965. name: "Macro",
  27966. height: math.unit(131, "feet"),
  27967. default: true
  27968. },
  27969. {
  27970. name: "Megamacro",
  27971. height: math.unit(91440, "meters")
  27972. },
  27973. {
  27974. name: "Gigamacro",
  27975. height: math.unit(60960000, "meters")
  27976. },
  27977. {
  27978. name: "Teramacro",
  27979. height: math.unit(9144000000, "meters")
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(7 + 1 / 12, "feet"),
  27988. weight: math.unit(250, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/joey/front.svg",
  27992. extra: 1791 / 1537,
  27993. bottom: 28 / 1816
  27994. }
  27995. },
  27996. },
  27997. [
  27998. {
  27999. name: "Micro",
  28000. height: math.unit(3, "inches")
  28001. },
  28002. {
  28003. name: "Normal",
  28004. height: math.unit(7 + 1 / 12, "feet"),
  28005. default: true
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(165, "cm"),
  28014. weight: math.unit(140, "lb"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/sam-evans/front.svg",
  28018. extra: 3417 / 3230,
  28019. bottom: 41.3 / 3417
  28020. }
  28021. },
  28022. frontSixTails: {
  28023. height: math.unit(165, "cm"),
  28024. weight: math.unit(140, "lb"),
  28025. name: "Front-six-tails",
  28026. image: {
  28027. source: "./media/characters/sam-evans/front-six-tails.svg",
  28028. extra: 3417 / 3230,
  28029. bottom: 41.3 / 3417
  28030. }
  28031. },
  28032. back: {
  28033. height: math.unit(165, "cm"),
  28034. weight: math.unit(140, "lb"),
  28035. name: "Back",
  28036. image: {
  28037. source: "./media/characters/sam-evans/back.svg",
  28038. extra: 3227 / 3032,
  28039. bottom: 6.8 / 3234
  28040. }
  28041. },
  28042. face: {
  28043. height: math.unit(0.68, "feet"),
  28044. name: "Face",
  28045. image: {
  28046. source: "./media/characters/sam-evans/face.svg"
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(165, "cm"),
  28054. default: true
  28055. },
  28056. {
  28057. name: "Macro",
  28058. height: math.unit(100, "meters")
  28059. },
  28060. {
  28061. name: "Macro+",
  28062. height: math.unit(800, "meters")
  28063. },
  28064. {
  28065. name: "Macro++",
  28066. height: math.unit(3, "km")
  28067. },
  28068. {
  28069. name: "Macro+++",
  28070. height: math.unit(30, "km")
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(10, "feet"),
  28079. weight: math.unit(750, "lb"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/juliet-a/front.svg",
  28083. extra: 1766 / 1720,
  28084. bottom: 43 / 1809
  28085. }
  28086. },
  28087. back: {
  28088. height: math.unit(10, "feet"),
  28089. weight: math.unit(750, "lb"),
  28090. name: "Back",
  28091. image: {
  28092. source: "./media/characters/juliet-a/back.svg",
  28093. extra: 1781 / 1734,
  28094. bottom: 35 / 1810,
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(10, "feet"),
  28102. default: true
  28103. },
  28104. {
  28105. name: "Dragon Form",
  28106. height: math.unit(250, "feet")
  28107. },
  28108. {
  28109. name: "Macro",
  28110. height: math.unit(1000, "feet")
  28111. },
  28112. {
  28113. name: "Megamacro",
  28114. height: math.unit(10000, "feet")
  28115. }
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28120. {
  28121. regular: {
  28122. height: math.unit(7 + 3 / 12, "feet"),
  28123. weight: math.unit(260, "lb"),
  28124. name: "Regular",
  28125. image: {
  28126. source: "./media/characters/wild/regular.svg",
  28127. extra: 97.45 / 92,
  28128. bottom: 6.8 / 104.3
  28129. }
  28130. },
  28131. biggums: {
  28132. height: math.unit(8 + 6 / 12, "feet"),
  28133. weight: math.unit(425, "lb"),
  28134. name: "Biggums",
  28135. image: {
  28136. source: "./media/characters/wild/biggums.svg",
  28137. extra: 97.45 / 92,
  28138. bottom: 7.5 / 132.34
  28139. }
  28140. },
  28141. mawRegular: {
  28142. height: math.unit(1.24, "feet"),
  28143. name: "Maw (Regular)",
  28144. image: {
  28145. source: "./media/characters/wild/maw.svg"
  28146. }
  28147. },
  28148. mawBiggums: {
  28149. height: math.unit(1.47, "feet"),
  28150. name: "Maw (Biggums)",
  28151. image: {
  28152. source: "./media/characters/wild/maw.svg"
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(7 + 3 / 12, "feet"),
  28160. default: true
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28166. {
  28167. front: {
  28168. height: math.unit(2.5, "meters"),
  28169. weight: math.unit(200, "kg"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/vidar/front.svg",
  28173. extra: 2994 / 2795,
  28174. bottom: 56 / 3061
  28175. }
  28176. },
  28177. back: {
  28178. height: math.unit(2.5, "meters"),
  28179. weight: math.unit(200, "kg"),
  28180. name: "Back",
  28181. image: {
  28182. source: "./media/characters/vidar/back.svg",
  28183. extra: 3131 / 2928,
  28184. bottom: 13.5 / 3141.5
  28185. }
  28186. },
  28187. feral: {
  28188. height: math.unit(2.5, "meters"),
  28189. weight: math.unit(2000, "kg"),
  28190. name: "Feral",
  28191. image: {
  28192. source: "./media/characters/vidar/feral.svg",
  28193. extra: 2790 / 1765,
  28194. bottom: 6 / 2796
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(2.5, "meters"),
  28202. default: true
  28203. },
  28204. {
  28205. name: "Macro",
  28206. height: math.unit(100, "meters")
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(5 + 9 / 12, "feet"),
  28215. weight: math.unit(120, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/ash/front.svg",
  28219. extra: 2189 / 1961,
  28220. bottom: 5.2 / 2194
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(5 + 9 / 12, "feet"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(9, "feet"),
  28237. weight: math.unit(10000, "lb"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/gygabite/front.svg",
  28241. bottom: 31.7 / 537.8,
  28242. extra: 505 / 370
  28243. }
  28244. },
  28245. },
  28246. [
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(9, "feet"),
  28250. default: true
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28256. {
  28257. front: {
  28258. height: math.unit(12, "feet"),
  28259. weight: math.unit(35000, "lb"),
  28260. name: "Front",
  28261. image: {
  28262. source: "./media/characters/p0tat0/front.svg",
  28263. extra: 1065 / 921,
  28264. bottom: 55.7 / 1121.25
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Normal",
  28271. height: math.unit(12, "feet"),
  28272. default: true
  28273. },
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28278. {
  28279. side: {
  28280. height: math.unit(6.5, "feet"),
  28281. weight: math.unit(800, "lb"),
  28282. name: "Side",
  28283. image: {
  28284. source: "./media/characters/dusk/side.svg",
  28285. extra: 615 / 373,
  28286. bottom: 53 / 664
  28287. }
  28288. },
  28289. sitting: {
  28290. height: math.unit(7, "feet"),
  28291. weight: math.unit(800, "lb"),
  28292. name: "Sitting",
  28293. image: {
  28294. source: "./media/characters/dusk/sitting.svg",
  28295. extra: 753 / 425,
  28296. bottom: 33 / 774
  28297. }
  28298. },
  28299. head: {
  28300. height: math.unit(6.1, "feet"),
  28301. name: "Head",
  28302. image: {
  28303. source: "./media/characters/dusk/head.svg"
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(7, "feet"),
  28311. default: true
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28317. {
  28318. front: {
  28319. height: math.unit(15, "feet"),
  28320. weight: math.unit(7000, "lb"),
  28321. name: "Front",
  28322. image: {
  28323. source: "./media/characters/jay-direwolf/front.svg",
  28324. extra: 1810 / 1732,
  28325. bottom: 66 / 1892
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(15, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(4 + 9 / 12, "feet"),
  28342. weight: math.unit(130, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/anchovie/front.svg",
  28346. extra: 382 / 350,
  28347. bottom: 25 / 409
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(4 + 9 / 12, "feet"),
  28352. weight: math.unit(130, "lb"),
  28353. name: "Back",
  28354. image: {
  28355. source: "./media/characters/anchovie/back.svg",
  28356. extra: 385 / 352,
  28357. bottom: 16.6 / 402
  28358. }
  28359. },
  28360. frontDressed: {
  28361. height: math.unit(4 + 9 / 12, "feet"),
  28362. weight: math.unit(130, "lb"),
  28363. name: "Front (Dressed)",
  28364. image: {
  28365. source: "./media/characters/anchovie/front-dressed.svg",
  28366. extra: 382 / 350,
  28367. bottom: 25 / 409
  28368. }
  28369. },
  28370. backDressed: {
  28371. height: math.unit(4 + 9 / 12, "feet"),
  28372. weight: math.unit(130, "lb"),
  28373. name: "Back (Dressed)",
  28374. image: {
  28375. source: "./media/characters/anchovie/back-dressed.svg",
  28376. extra: 385 / 352,
  28377. bottom: 16.6 / 402
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Micro",
  28384. height: math.unit(6.4, "inches")
  28385. },
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(4 + 9 / 12, "feet"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(2, "meters"),
  28398. weight: math.unit(180, "lb"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/acidrenamon/front.svg",
  28402. extra: 987 / 890,
  28403. bottom: 22.8 / 1009
  28404. }
  28405. },
  28406. back: {
  28407. height: math.unit(2, "meters"),
  28408. weight: math.unit(180, "lb"),
  28409. name: "Back",
  28410. image: {
  28411. source: "./media/characters/acidrenamon/back.svg",
  28412. extra: 983 / 891,
  28413. bottom: 8.4 / 992
  28414. }
  28415. },
  28416. head: {
  28417. height: math.unit(1.92, "feet"),
  28418. name: "Head",
  28419. image: {
  28420. source: "./media/characters/acidrenamon/head.svg"
  28421. }
  28422. },
  28423. rump: {
  28424. height: math.unit(1.72, "feet"),
  28425. name: "Rump",
  28426. image: {
  28427. source: "./media/characters/acidrenamon/rump.svg"
  28428. }
  28429. },
  28430. tail: {
  28431. height: math.unit(4.2, "feet"),
  28432. name: "Tail",
  28433. image: {
  28434. source: "./media/characters/acidrenamon/tail.svg"
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(2, "meters"),
  28442. default: true
  28443. },
  28444. {
  28445. name: "Minimacro",
  28446. height: math.unit(7, "meters")
  28447. },
  28448. {
  28449. name: "Macro",
  28450. height: math.unit(200, "meters")
  28451. },
  28452. {
  28453. name: "Gigamacro",
  28454. height: math.unit(0.2, "earths")
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(152, "feet"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/kenzie-lee/front.svg",
  28466. extra: 1869/1774,
  28467. bottom: 128/1997
  28468. }
  28469. },
  28470. side: {
  28471. height: math.unit(86, "feet"),
  28472. name: "Side",
  28473. image: {
  28474. source: "./media/characters/kenzie-lee/side.svg",
  28475. extra: 930/815,
  28476. bottom: 177/1107
  28477. }
  28478. },
  28479. paw: {
  28480. height: math.unit(15, "feet"),
  28481. name: "Paw",
  28482. image: {
  28483. source: "./media/characters/kenzie-lee/paw.svg"
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Micro",
  28490. height: math.unit(1.5, "inches")
  28491. },
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(152, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Megamacro",
  28499. height: math.unit(7, "miles")
  28500. },
  28501. {
  28502. name: "Gigamacro",
  28503. height: math.unit(8000, "miles")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28509. {
  28510. side: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Side",
  28514. image: {
  28515. source: "./media/characters/withers/side.svg",
  28516. extra: 1830 / 1728,
  28517. bottom: 96 / 1927
  28518. }
  28519. },
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/withers/front.svg",
  28526. extra: 1514 / 1438,
  28527. bottom: 118 / 1632
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(168, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Megamacro",
  28539. height: math.unit(15, "miles")
  28540. }
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(6 + 7 / 12, "feet"),
  28548. weight: math.unit(250, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/nemoskii/front.svg",
  28552. extra: 2270 / 1734,
  28553. bottom: 86 / 2354
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(6 + 7 / 12, "feet"),
  28558. weight: math.unit(250, "lb"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/nemoskii/back.svg",
  28562. extra: 1845 / 1788,
  28563. bottom: 10.5 / 1852
  28564. }
  28565. },
  28566. head: {
  28567. height: math.unit(1.31, "feet"),
  28568. name: "Head",
  28569. image: {
  28570. source: "./media/characters/nemoskii/head.svg"
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Micro",
  28577. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28578. },
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(6 + 7 / 12, "feet"),
  28582. default: true
  28583. },
  28584. {
  28585. name: "Macro",
  28586. height: math.unit((6 + 7 / 12) * 150, "feet")
  28587. },
  28588. {
  28589. name: "Macro+",
  28590. height: math.unit((6 + 7 / 12) * 500, "feet")
  28591. },
  28592. {
  28593. name: "Megamacro",
  28594. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28595. },
  28596. ]
  28597. ))
  28598. characterMakers.push(() => makeCharacter(
  28599. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28600. {
  28601. front: {
  28602. height: math.unit(1, "mile"),
  28603. weight: math.unit(265261.9, "lb"),
  28604. name: "Front",
  28605. image: {
  28606. source: "./media/characters/shui/front.svg",
  28607. extra: 1633 / 1564,
  28608. bottom: 91.5 / 1726
  28609. }
  28610. },
  28611. },
  28612. [
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(1, "mile"),
  28616. default: true
  28617. },
  28618. ]
  28619. ))
  28620. characterMakers.push(() => makeCharacter(
  28621. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28622. {
  28623. front: {
  28624. height: math.unit(12 + 6 / 12, "feet"),
  28625. weight: math.unit(1342, "lb"),
  28626. name: "Front",
  28627. image: {
  28628. source: "./media/characters/arokh-takakura/front.svg",
  28629. extra: 1089 / 1043,
  28630. bottom: 77.4 / 1176.7
  28631. }
  28632. },
  28633. back: {
  28634. height: math.unit(12 + 6 / 12, "feet"),
  28635. weight: math.unit(1342, "lb"),
  28636. name: "Back",
  28637. image: {
  28638. source: "./media/characters/arokh-takakura/back.svg",
  28639. extra: 1046 / 1019,
  28640. bottom: 102 / 1150
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Big",
  28647. height: math.unit(12 + 6 / 12, "feet"),
  28648. default: true
  28649. },
  28650. ]
  28651. ))
  28652. characterMakers.push(() => makeCharacter(
  28653. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28654. {
  28655. front: {
  28656. height: math.unit(5 + 6 / 12, "feet"),
  28657. weight: math.unit(150, "lb"),
  28658. name: "Front",
  28659. image: {
  28660. source: "./media/characters/theo/front.svg",
  28661. extra: 1184 / 1131,
  28662. bottom: 7.4 / 1191
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Micro",
  28669. height: math.unit(5, "inches")
  28670. },
  28671. {
  28672. name: "Normal",
  28673. height: math.unit(5 + 6 / 12, "feet"),
  28674. default: true
  28675. },
  28676. ]
  28677. ))
  28678. characterMakers.push(() => makeCharacter(
  28679. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28680. {
  28681. front: {
  28682. height: math.unit(5 + 9 / 12, "feet"),
  28683. weight: math.unit(130, "lb"),
  28684. name: "Front",
  28685. image: {
  28686. source: "./media/characters/cecelia-swift/front.svg",
  28687. extra: 502 / 484,
  28688. bottom: 23 / 523
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(5 + 9 / 12, "feet"),
  28693. weight: math.unit(130, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/cecelia-swift/back.svg",
  28697. extra: 499 / 485,
  28698. bottom: 12 / 511
  28699. }
  28700. },
  28701. head: {
  28702. height: math.unit(0.90, "feet"),
  28703. name: "Head",
  28704. image: {
  28705. source: "./media/characters/cecelia-swift/head.svg"
  28706. }
  28707. },
  28708. rump: {
  28709. height: math.unit(1.75, "feet"),
  28710. name: "Rump",
  28711. image: {
  28712. source: "./media/characters/cecelia-swift/rump.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(5 + 9 / 12, "feet"),
  28720. default: true
  28721. },
  28722. {
  28723. name: "Big",
  28724. height: math.unit(50, "feet")
  28725. },
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(100, "feet")
  28729. },
  28730. {
  28731. name: "Macro+",
  28732. height: math.unit(500, "feet")
  28733. },
  28734. {
  28735. name: "Macro++",
  28736. height: math.unit(1000, "feet")
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(6, "feet"),
  28745. weight: math.unit(150, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/kaunan/front.svg",
  28749. extra: 2890 / 2523,
  28750. bottom: 49 / 2939
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Macro",
  28757. height: math.unit(150, "feet"),
  28758. default: true
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(175, "cm"),
  28767. weight: math.unit(60, "kg"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/fei/front.svg",
  28771. extra: 1873/1723,
  28772. bottom: 53/1926
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Mortal",
  28779. height: math.unit(175, "cm")
  28780. },
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(3500, "m"),
  28784. default: true
  28785. },
  28786. {
  28787. name: "Stroll",
  28788. height: math.unit(17.5, "km")
  28789. },
  28790. {
  28791. name: "Showoff",
  28792. height: math.unit(175, "km")
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(7, "feet"),
  28801. weight: math.unit(1000, "kg"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/edrax/front.svg",
  28805. extra: 2838 / 2550,
  28806. bottom: 130 / 2968
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Small",
  28813. height: math.unit(7, "feet")
  28814. },
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(1500, "meters")
  28818. },
  28819. {
  28820. name: "Mega",
  28821. height: math.unit(12000000, "km"),
  28822. default: true
  28823. },
  28824. {
  28825. name: "Megamacro",
  28826. height: math.unit(10600000, "lightyears")
  28827. },
  28828. {
  28829. name: "Hypermacro",
  28830. height: math.unit(256, "yottameters")
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(10, "feet"),
  28839. weight: math.unit(750, "lb"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/clove/front.svg",
  28843. extra: 1918/1751,
  28844. bottom: 52/1970
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(10, "feet"),
  28849. weight: math.unit(750, "lb"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/clove/back.svg",
  28853. extra: 1912/1747,
  28854. bottom: 50/1962
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Normal",
  28861. height: math.unit(10, "feet"),
  28862. default: true
  28863. },
  28864. ]
  28865. ))
  28866. characterMakers.push(() => makeCharacter(
  28867. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28868. {
  28869. front: {
  28870. height: math.unit(4, "feet"),
  28871. weight: math.unit(50, "lb"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/alex-rabbit/front.svg",
  28875. extra: 507 / 458,
  28876. bottom: 18.5 / 527
  28877. }
  28878. },
  28879. back: {
  28880. height: math.unit(4, "feet"),
  28881. weight: math.unit(50, "lb"),
  28882. name: "Back",
  28883. image: {
  28884. source: "./media/characters/alex-rabbit/back.svg",
  28885. extra: 502 / 460,
  28886. bottom: 18.9 / 521
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(4, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(1 + 3 / 12, "feet"),
  28903. weight: math.unit(80, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/zander-rose/front.svg",
  28907. extra: 916 / 797,
  28908. bottom: 17 / 933
  28909. }
  28910. },
  28911. back: {
  28912. height: math.unit(1 + 3 / 12, "feet"),
  28913. weight: math.unit(80, "lb"),
  28914. name: "Back",
  28915. image: {
  28916. source: "./media/characters/zander-rose/back.svg",
  28917. extra: 903 / 779,
  28918. bottom: 31 / 934
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Normal",
  28925. height: math.unit(1 + 3 / 12, "feet"),
  28926. default: true
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28932. {
  28933. anthro: {
  28934. height: math.unit(6, "feet"),
  28935. weight: math.unit(150, "lb"),
  28936. name: "Anthro",
  28937. image: {
  28938. source: "./media/characters/razz/anthro.svg",
  28939. extra: 1437 / 1343,
  28940. bottom: 48 / 1485
  28941. }
  28942. },
  28943. feral: {
  28944. height: math.unit(6, "feet"),
  28945. weight: math.unit(150, "lb"),
  28946. name: "Feral",
  28947. image: {
  28948. source: "./media/characters/razz/feral.svg",
  28949. extra: 2569 / 1385,
  28950. bottom: 95 / 2664
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Normal",
  28957. height: math.unit(6, "feet"),
  28958. default: true
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28964. {
  28965. front: {
  28966. height: math.unit(9 + 4 / 12, "feet"),
  28967. weight: math.unit(500, "lb"),
  28968. name: "Front",
  28969. image: {
  28970. source: "./media/characters/morrigan/front.svg",
  28971. extra: 2707 / 2579,
  28972. bottom: 156 / 2863
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(9 + 4 / 12, "feet"),
  28980. default: true
  28981. },
  28982. ]
  28983. ))
  28984. characterMakers.push(() => makeCharacter(
  28985. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28986. {
  28987. front: {
  28988. height: math.unit(5, "stories"),
  28989. weight: math.unit(4000, "lb"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/jenene/front.svg",
  28993. extra: 1780 / 1710,
  28994. bottom: 57 / 1837
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(5, "stories"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29008. {
  29009. taurSfw: {
  29010. height: math.unit(10, "meters"),
  29011. weight: math.unit(17500, "kg"),
  29012. name: "Taur",
  29013. image: {
  29014. source: "./media/characters/faey/taur-sfw.svg",
  29015. extra: 1200 / 968,
  29016. bottom: 41 / 1241
  29017. }
  29018. },
  29019. chestmaw: {
  29020. height: math.unit(2.01, "meters"),
  29021. name: "Chestmaw",
  29022. image: {
  29023. source: "./media/characters/faey/chestmaw.svg"
  29024. }
  29025. },
  29026. foot: {
  29027. height: math.unit(2.43, "meters"),
  29028. name: "Foot",
  29029. image: {
  29030. source: "./media/characters/faey/foot.svg"
  29031. }
  29032. },
  29033. jaws: {
  29034. height: math.unit(1.66, "meters"),
  29035. name: "Jaws",
  29036. image: {
  29037. source: "./media/characters/faey/jaws.svg"
  29038. }
  29039. },
  29040. tongues: {
  29041. height: math.unit(2.01, "meters"),
  29042. name: "Tongues",
  29043. image: {
  29044. source: "./media/characters/faey/tongues.svg"
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Small",
  29051. height: math.unit(10, "meters"),
  29052. default: true
  29053. },
  29054. {
  29055. name: "Big",
  29056. height: math.unit(500000, "km")
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(7, "feet"),
  29065. weight: math.unit(275, "lb"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/roku/front.svg",
  29069. extra: 903 / 878,
  29070. bottom: 37 / 940
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(7, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(500, "feet")
  29083. },
  29084. {
  29085. name: "Megamacro",
  29086. height: math.unit(200, "miles")
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(6 + 2 / 12, "feet"),
  29095. weight: math.unit(150, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/lira/front.svg",
  29099. extra: 1727 / 1605,
  29100. bottom: 26 / 1753
  29101. }
  29102. },
  29103. back: {
  29104. height: math.unit(6 + 2 / 12, "feet"),
  29105. weight: math.unit(150, "lb"),
  29106. name: "Back",
  29107. image: {
  29108. source: "./media/characters/lira/back.svg",
  29109. extra: 1713/1621,
  29110. bottom: 20/1733
  29111. }
  29112. },
  29113. hand: {
  29114. height: math.unit(0.75, "feet"),
  29115. name: "Hand",
  29116. image: {
  29117. source: "./media/characters/lira/hand.svg"
  29118. }
  29119. },
  29120. maw: {
  29121. height: math.unit(0.65, "feet"),
  29122. name: "Maw",
  29123. image: {
  29124. source: "./media/characters/lira/maw.svg"
  29125. }
  29126. },
  29127. pawDigi: {
  29128. height: math.unit(1.6, "feet"),
  29129. name: "Paw Digi",
  29130. image: {
  29131. source: "./media/characters/lira/paw-digi.svg"
  29132. }
  29133. },
  29134. pawPlanti: {
  29135. height: math.unit(1.4, "feet"),
  29136. name: "Paw Planti",
  29137. image: {
  29138. source: "./media/characters/lira/paw-planti.svg"
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(6 + 2 / 12, "feet"),
  29146. default: true
  29147. },
  29148. {
  29149. name: "Macro",
  29150. height: math.unit(100, "feet")
  29151. },
  29152. {
  29153. name: "Macro²",
  29154. height: math.unit(1600, "feet")
  29155. },
  29156. {
  29157. name: "Planetary",
  29158. height: math.unit(20, "earths")
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(6, "feet"),
  29167. weight: math.unit(150, "lb"),
  29168. name: "Front",
  29169. image: {
  29170. source: "./media/characters/hadjet/front.svg",
  29171. extra: 1480 / 1346,
  29172. bottom: 26 / 1506
  29173. }
  29174. },
  29175. frontNsfw: {
  29176. height: math.unit(6, "feet"),
  29177. weight: math.unit(150, "lb"),
  29178. name: "Front (NSFW)",
  29179. image: {
  29180. source: "./media/characters/hadjet/front-nsfw.svg",
  29181. extra: 1440 / 1358,
  29182. bottom: 52 / 1492
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Macro",
  29189. height: math.unit(10, "stories"),
  29190. default: true
  29191. },
  29192. {
  29193. name: "Megamacro",
  29194. height: math.unit(1.5, "miles")
  29195. },
  29196. {
  29197. name: "Megamacro+",
  29198. height: math.unit(5, "miles")
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29204. {
  29205. side: {
  29206. height: math.unit(106, "feet"),
  29207. weight: math.unit(500, "tonnes"),
  29208. name: "Side",
  29209. image: {
  29210. source: "./media/characters/kodran/side.svg",
  29211. extra: 553 / 480,
  29212. bottom: 33 / 586
  29213. }
  29214. },
  29215. front: {
  29216. height: math.unit(132, "feet"),
  29217. weight: math.unit(500, "tonnes"),
  29218. name: "Front",
  29219. image: {
  29220. source: "./media/characters/kodran/front.svg",
  29221. extra: 667 / 643,
  29222. bottom: 42 / 709
  29223. }
  29224. },
  29225. flying: {
  29226. height: math.unit(350, "feet"),
  29227. weight: math.unit(500, "tonnes"),
  29228. name: "Flying",
  29229. image: {
  29230. source: "./media/characters/kodran/flying.svg"
  29231. }
  29232. },
  29233. foot: {
  29234. height: math.unit(33, "feet"),
  29235. name: "Foot",
  29236. image: {
  29237. source: "./media/characters/kodran/foot.svg"
  29238. }
  29239. },
  29240. footFront: {
  29241. height: math.unit(19, "feet"),
  29242. name: "Foot (Front)",
  29243. image: {
  29244. source: "./media/characters/kodran/foot-front.svg",
  29245. extra: 261 / 261,
  29246. bottom: 91 / 352
  29247. }
  29248. },
  29249. headFront: {
  29250. height: math.unit(53, "feet"),
  29251. name: "Head (Front)",
  29252. image: {
  29253. source: "./media/characters/kodran/head-front.svg"
  29254. }
  29255. },
  29256. headSide: {
  29257. height: math.unit(65, "feet"),
  29258. name: "Head (Side)",
  29259. image: {
  29260. source: "./media/characters/kodran/head-side.svg"
  29261. }
  29262. },
  29263. throat: {
  29264. height: math.unit(79, "feet"),
  29265. name: "Throat",
  29266. image: {
  29267. source: "./media/characters/kodran/throat.svg"
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Large",
  29274. height: math.unit(106, "feet"),
  29275. default: true
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29281. {
  29282. side: {
  29283. height: math.unit(11, "feet"),
  29284. weight: math.unit(150, "lb"),
  29285. name: "Side",
  29286. image: {
  29287. source: "./media/characters/pyxaron/side.svg",
  29288. extra: 305 / 195,
  29289. bottom: 17 / 322
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(11, "feet"),
  29297. default: true
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(6, "feet"),
  29306. weight: math.unit(150, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/meep/front.svg",
  29310. extra: 88 / 80,
  29311. bottom: 6 / 94
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Fun Sized",
  29318. height: math.unit(2, "inches"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Friend Sized",
  29323. height: math.unit(8, "inches")
  29324. },
  29325. ]
  29326. ))
  29327. characterMakers.push(() => makeCharacter(
  29328. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29329. {
  29330. front: {
  29331. height: math.unit(15, "feet"),
  29332. weight: math.unit(2500, "lb"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/holly-rabbit/front.svg",
  29336. extra: 1433 / 1233,
  29337. bottom: 125 / 1558
  29338. }
  29339. },
  29340. dick: {
  29341. height: math.unit(4.6, "feet"),
  29342. name: "Dick",
  29343. image: {
  29344. source: "./media/characters/holly-rabbit/dick.svg"
  29345. }
  29346. },
  29347. },
  29348. [
  29349. {
  29350. name: "Normal",
  29351. height: math.unit(15, "feet"),
  29352. default: true
  29353. },
  29354. {
  29355. name: "Macro",
  29356. height: math.unit(250, "feet")
  29357. },
  29358. {
  29359. name: "Macro+",
  29360. height: math.unit(2500, "feet")
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29366. {
  29367. front: {
  29368. height: math.unit(3.02, "meters"),
  29369. weight: math.unit(500, "kg"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/drena/front.svg",
  29373. extra: 282 / 243,
  29374. bottom: 8 / 290
  29375. }
  29376. },
  29377. side: {
  29378. height: math.unit(3.02, "meters"),
  29379. weight: math.unit(500, "kg"),
  29380. name: "Side",
  29381. image: {
  29382. source: "./media/characters/drena/side.svg",
  29383. extra: 280 / 245,
  29384. bottom: 10 / 290
  29385. }
  29386. },
  29387. back: {
  29388. height: math.unit(3.02, "meters"),
  29389. weight: math.unit(500, "kg"),
  29390. name: "Back",
  29391. image: {
  29392. source: "./media/characters/drena/back.svg",
  29393. extra: 278 / 243,
  29394. bottom: 2 / 280
  29395. }
  29396. },
  29397. foot: {
  29398. height: math.unit(0.75, "meters"),
  29399. name: "Foot",
  29400. image: {
  29401. source: "./media/characters/drena/foot.svg"
  29402. }
  29403. },
  29404. maw: {
  29405. height: math.unit(0.82, "meters"),
  29406. name: "Maw",
  29407. image: {
  29408. source: "./media/characters/drena/maw.svg"
  29409. }
  29410. },
  29411. eating: {
  29412. height: math.unit(0.75, "meters"),
  29413. name: "Eating",
  29414. image: {
  29415. source: "./media/characters/drena/eating.svg"
  29416. }
  29417. },
  29418. rump: {
  29419. height: math.unit(0.93, "meters"),
  29420. name: "Rump",
  29421. image: {
  29422. source: "./media/characters/drena/rump.svg"
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(3.02, "meters"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(6 + 4 / 12, "feet"),
  29439. weight: math.unit(250, "lb"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/remmyzilla/front.svg",
  29443. extra: 4033 / 3588,
  29444. bottom: 123 / 4156
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(6 + 4 / 12, "feet"),
  29449. weight: math.unit(250, "lb"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/remmyzilla/back.svg",
  29453. extra: 2687 / 2555,
  29454. bottom: 48 / 2735
  29455. }
  29456. },
  29457. paw: {
  29458. height: math.unit(1.73, "feet"),
  29459. name: "Paw",
  29460. image: {
  29461. source: "./media/characters/remmyzilla/paw.svg"
  29462. }
  29463. },
  29464. maw: {
  29465. height: math.unit(1.73, "feet"),
  29466. name: "Maw",
  29467. image: {
  29468. source: "./media/characters/remmyzilla/maw.svg"
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(6 + 4 / 12, "feet")
  29476. },
  29477. {
  29478. name: "Minimacro",
  29479. height: math.unit(12 + 8 / 12, "feet")
  29480. },
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(640, "feet"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Megamacro",
  29488. height: math.unit(6400, "feet")
  29489. },
  29490. {
  29491. name: "Gigamacro",
  29492. height: math.unit(64000, "miles")
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29498. {
  29499. front: {
  29500. height: math.unit(2.5, "meters"),
  29501. weight: math.unit(300, "lb"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/lawrence/front.svg",
  29505. extra: 357 / 335,
  29506. bottom: 30 / 387
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(2.5, "meters"),
  29511. weight: math.unit(300, "lb"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/lawrence/back.svg",
  29515. extra: 357 / 338,
  29516. bottom: 16 / 373
  29517. }
  29518. },
  29519. head: {
  29520. height: math.unit(0.9, "meter"),
  29521. name: "Head",
  29522. image: {
  29523. source: "./media/characters/lawrence/head.svg"
  29524. }
  29525. },
  29526. maw: {
  29527. height: math.unit(0.7, "meter"),
  29528. name: "Maw",
  29529. image: {
  29530. source: "./media/characters/lawrence/maw.svg"
  29531. }
  29532. },
  29533. footBottom: {
  29534. height: math.unit(0.5, "meter"),
  29535. name: "Foot (Bottom)",
  29536. image: {
  29537. source: "./media/characters/lawrence/foot-bottom.svg"
  29538. }
  29539. },
  29540. footTop: {
  29541. height: math.unit(0.5, "meter"),
  29542. name: "Foot (Top)",
  29543. image: {
  29544. source: "./media/characters/lawrence/foot-top.svg"
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(2.5, "meters"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(95, "meters")
  29557. },
  29558. {
  29559. name: "Megamacro",
  29560. height: math.unit(150, "km")
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29566. {
  29567. front: {
  29568. height: math.unit(4.2, "meters"),
  29569. name: "Front",
  29570. image: {
  29571. source: "./media/characters/sydney/front.svg",
  29572. extra: 1323 / 1277,
  29573. bottom: 111 / 1434
  29574. }
  29575. },
  29576. },
  29577. [
  29578. {
  29579. name: "Normal",
  29580. height: math.unit(4.2, "meters"),
  29581. default: true
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29587. {
  29588. back: {
  29589. height: math.unit(201, "feet"),
  29590. name: "Back",
  29591. image: {
  29592. source: "./media/characters/jessica/back.svg",
  29593. extra: 273 / 259,
  29594. bottom: 7 / 280
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(201, "feet"),
  29602. default: true
  29603. },
  29604. {
  29605. name: "Megamacro",
  29606. height: math.unit(8, "miles")
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29612. {
  29613. side: {
  29614. height: math.unit(5.6, "m"),
  29615. weight: math.unit(8000, "kg"),
  29616. name: "Side",
  29617. image: {
  29618. source: "./media/characters/victoria/side.svg",
  29619. extra: 1542/1229,
  29620. bottom: 124/1666
  29621. }
  29622. },
  29623. maw: {
  29624. height: math.unit(7.14, "feet"),
  29625. name: "Maw",
  29626. image: {
  29627. source: "./media/characters/victoria/maw.svg"
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(5.6, "m"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29641. {
  29642. front: {
  29643. height: math.unit(5 + 6 / 12, "feet"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/cat/front.svg",
  29647. extra: 1449/1295,
  29648. bottom: 34/1483
  29649. },
  29650. form: "cat",
  29651. default: true
  29652. },
  29653. back: {
  29654. height: math.unit(5 + 6 / 12, "feet"),
  29655. name: "Back",
  29656. image: {
  29657. source: "./media/characters/cat/back.svg",
  29658. extra: 1466/1301,
  29659. bottom: 19/1485
  29660. },
  29661. form: "cat"
  29662. },
  29663. taur: {
  29664. height: math.unit(7, "feet"),
  29665. name: "Taur",
  29666. image: {
  29667. source: "./media/characters/cat/taur.svg",
  29668. extra: 1389/1233,
  29669. bottom: 83/1472
  29670. },
  29671. form: "taur",
  29672. default: true
  29673. },
  29674. lucarioFront: {
  29675. height: math.unit(4, "feet"),
  29676. name: "Lucario (Front)",
  29677. image: {
  29678. source: "./media/characters/cat/lucario-front.svg",
  29679. extra: 1149/1019,
  29680. bottom: 84/1233
  29681. },
  29682. form: "lucario",
  29683. default: true
  29684. },
  29685. lucarioBack: {
  29686. height: math.unit(4, "feet"),
  29687. name: "Lucario (Back)",
  29688. image: {
  29689. source: "./media/characters/cat/lucario-back.svg",
  29690. extra: 1190/1059,
  29691. bottom: 33/1223
  29692. },
  29693. form: "lucario"
  29694. },
  29695. megaLucario: {
  29696. height: math.unit(4, "feet"),
  29697. name: "Mega Lucario",
  29698. image: {
  29699. source: "./media/characters/cat/mega-lucario.svg",
  29700. extra: 1515 / 1319,
  29701. bottom: 63 / 1578
  29702. },
  29703. form: "lucario"
  29704. },
  29705. nickit: {
  29706. height: math.unit(2, "feet"),
  29707. name: "Nickit",
  29708. image: {
  29709. source: "./media/characters/cat/nickit.svg",
  29710. extra: 1980 / 1585,
  29711. bottom: 102 / 2082
  29712. },
  29713. form: "nickit",
  29714. default: true
  29715. },
  29716. lopunnyFront: {
  29717. height: math.unit(5, "feet"),
  29718. name: "Lopunny (Front)",
  29719. image: {
  29720. source: "./media/characters/cat/lopunny-front.svg",
  29721. extra: 1782 / 1469,
  29722. bottom: 38 / 1820
  29723. },
  29724. form: "lopunny",
  29725. default: true
  29726. },
  29727. lopunnyBack: {
  29728. height: math.unit(5, "feet"),
  29729. name: "Lopunny (Back)",
  29730. image: {
  29731. source: "./media/characters/cat/lopunny-back.svg",
  29732. extra: 1660 / 1490,
  29733. bottom: 25 / 1685
  29734. },
  29735. form: "lopunny"
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Really small",
  29741. height: math.unit(1, "nm")
  29742. },
  29743. {
  29744. name: "Micro",
  29745. height: math.unit(5, "inches")
  29746. },
  29747. {
  29748. name: "Normal",
  29749. height: math.unit(5 + 6 / 12, "feet"),
  29750. default: true
  29751. },
  29752. {
  29753. name: "Macro",
  29754. height: math.unit(50, "feet")
  29755. },
  29756. {
  29757. name: "Macro+",
  29758. height: math.unit(150, "feet")
  29759. },
  29760. {
  29761. name: "Megamacro",
  29762. height: math.unit(100, "miles")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(63.4, "meters"),
  29771. weight: math.unit(3.28349e+6, "kilograms"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/kirina-violet/front.svg",
  29775. extra: 2812 / 2725,
  29776. bottom: 0 / 2812
  29777. }
  29778. },
  29779. back: {
  29780. height: math.unit(63.4, "meters"),
  29781. weight: math.unit(3.28349e+6, "kilograms"),
  29782. name: "Back",
  29783. image: {
  29784. source: "./media/characters/kirina-violet/back.svg",
  29785. extra: 2812 / 2725,
  29786. bottom: 0 / 2812
  29787. }
  29788. },
  29789. mouth: {
  29790. height: math.unit(4.35, "meters"),
  29791. name: "Mouth",
  29792. image: {
  29793. source: "./media/characters/kirina-violet/mouth.svg"
  29794. }
  29795. },
  29796. paw: {
  29797. height: math.unit(5.6, "meters"),
  29798. name: "Paw",
  29799. image: {
  29800. source: "./media/characters/kirina-violet/paw.svg"
  29801. }
  29802. },
  29803. tail: {
  29804. height: math.unit(18, "meters"),
  29805. name: "Tail",
  29806. image: {
  29807. source: "./media/characters/kirina-violet/tail.svg"
  29808. }
  29809. },
  29810. },
  29811. [
  29812. {
  29813. name: "Macro",
  29814. height: math.unit(63.4, "meters"),
  29815. default: true
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(75, "feet"),
  29824. name: "Front",
  29825. image: {
  29826. source: "./media/characters/cat-gigachu/front.svg",
  29827. extra: 1239/1027,
  29828. bottom: 32/1271
  29829. }
  29830. },
  29831. back: {
  29832. height: math.unit(75, "feet"),
  29833. name: "Back",
  29834. image: {
  29835. source: "./media/characters/cat-gigachu/back.svg",
  29836. extra: 1229/1030,
  29837. bottom: 9/1238
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Dynamax",
  29844. height: math.unit(75, "feet"),
  29845. default: true
  29846. },
  29847. ]
  29848. ))
  29849. characterMakers.push(() => makeCharacter(
  29850. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29851. {
  29852. front: {
  29853. height: math.unit(6, "feet"),
  29854. weight: math.unit(150, "lb"),
  29855. name: "Front",
  29856. image: {
  29857. source: "./media/characters/sfaiyan/front.svg",
  29858. extra: 999 / 978,
  29859. bottom: 5 / 1004
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Normal",
  29866. height: math.unit(1.82, "meters")
  29867. },
  29868. {
  29869. name: "Giant",
  29870. height: math.unit(2.27, "km"),
  29871. default: true
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29877. {
  29878. front: {
  29879. height: math.unit(179, "cm"),
  29880. weight: math.unit(100, "kg"),
  29881. name: "Front",
  29882. image: {
  29883. source: "./media/characters/raunehkeli/front.svg",
  29884. extra: 1934 / 1926,
  29885. bottom: 0 / 1934
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(179, "cm")
  29893. },
  29894. {
  29895. name: "Maximum",
  29896. height: math.unit(575, "meters"),
  29897. default: true
  29898. },
  29899. ]
  29900. ))
  29901. characterMakers.push(() => makeCharacter(
  29902. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29903. {
  29904. front: {
  29905. height: math.unit(6, "feet"),
  29906. weight: math.unit(150, "lb"),
  29907. name: "Front",
  29908. image: {
  29909. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29910. extra: 2625 / 2518,
  29911. bottom: 60 / 2685
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(6 + 2 / 12, "feet")
  29919. },
  29920. {
  29921. name: "Macro",
  29922. height: math.unit(1180, "feet"),
  29923. default: true
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(5 + 6 / 12, "feet"),
  29932. weight: math.unit(108, "lb"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/lilith-zott/front.svg",
  29936. extra: 2510 / 2238,
  29937. bottom: 100 / 2610
  29938. }
  29939. },
  29940. frontDressed: {
  29941. height: math.unit(5 + 6 / 12, "feet"),
  29942. weight: math.unit(108, "lb"),
  29943. name: "Front (Dressed)",
  29944. image: {
  29945. source: "./media/characters/lilith-zott/front-dressed.svg",
  29946. extra: 2510 / 2238,
  29947. bottom: 100 / 2610
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(5 + 6 / 12, "feet")
  29955. },
  29956. {
  29957. name: "Macro",
  29958. height: math.unit(1030, "feet"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29972. extra: 2567 / 2435,
  29973. bottom: 39 / 2606
  29974. }
  29975. },
  29976. frontSuper: {
  29977. height: math.unit(6, "feet"),
  29978. name: "Front (Super)",
  29979. image: {
  29980. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29981. extra: 2567 / 2435,
  29982. bottom: 39 / 2606
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(5 + 10 / 12, "feet")
  29990. },
  29991. {
  29992. name: "Macro",
  29993. height: math.unit(1100, "feet"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(100, "miles"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/sona/front.svg",
  30006. extra: 2433 / 2201,
  30007. bottom: 53 / 2486
  30008. }
  30009. },
  30010. foot: {
  30011. height: math.unit(16.1, "miles"),
  30012. name: "Foot",
  30013. image: {
  30014. source: "./media/characters/sona/foot.svg"
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Macro",
  30021. height: math.unit(100, "miles"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(6, "feet"),
  30031. weight: math.unit(150, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/bailey/front.svg",
  30035. extra: 1778 / 1724,
  30036. bottom: 30 / 1808
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Micro",
  30043. height: math.unit(4, "inches")
  30044. },
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(5 + 5 / 12, "feet"),
  30048. default: true
  30049. },
  30050. {
  30051. name: "Macro",
  30052. height: math.unit(250, "feet")
  30053. },
  30054. {
  30055. name: "Megamacro",
  30056. height: math.unit(100, "miles")
  30057. },
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(5 + 2 / 12, "feet"),
  30065. weight: math.unit(120, "lb"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/snaps/front.svg",
  30069. extra: 2370 / 2177,
  30070. bottom: 48 / 2418
  30071. }
  30072. },
  30073. back: {
  30074. height: math.unit(5 + 2 / 12, "feet"),
  30075. weight: math.unit(120, "lb"),
  30076. name: "Back",
  30077. image: {
  30078. source: "./media/characters/snaps/back.svg",
  30079. extra: 2408 / 2258,
  30080. bottom: 15 / 2423
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Micro",
  30087. height: math.unit(9, "inches")
  30088. },
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(5 + 2 / 12, "feet"),
  30092. default: true
  30093. },
  30094. {
  30095. name: "Mini Macro",
  30096. height: math.unit(10, "feet")
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(1.8, "meters"),
  30105. weight: math.unit(85, "kg"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/azteck/front.svg",
  30109. extra: 2815 / 2625,
  30110. bottom: 89 / 2904
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(1.8, "meters"),
  30115. weight: math.unit(85, "kg"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/azteck/back.svg",
  30119. extra: 2856 / 2648,
  30120. bottom: 85 / 2941
  30121. }
  30122. },
  30123. frontDressed: {
  30124. height: math.unit(1.8, "meters"),
  30125. weight: math.unit(85, "kg"),
  30126. name: "Front (Dressed)",
  30127. image: {
  30128. source: "./media/characters/azteck/front-dressed.svg",
  30129. extra: 2147 / 2003,
  30130. bottom: 68 / 2215
  30131. }
  30132. },
  30133. head: {
  30134. height: math.unit(0.47, "meters"),
  30135. weight: math.unit(85, "kg"),
  30136. name: "Head",
  30137. image: {
  30138. source: "./media/characters/azteck/head.svg"
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Bite sized",
  30145. height: math.unit(16, "cm")
  30146. },
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(1.8, "meters"),
  30150. default: true
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(6, "feet"),
  30159. weight: math.unit(150, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/pidge/front.svg",
  30163. extra: 620 / 588,
  30164. bottom: 9 / 629
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(6, "feet"),
  30169. weight: math.unit(150, "lb"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/pidge/back.svg",
  30173. extra: 620 / 588,
  30174. bottom: 9 / 629
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Macro",
  30181. height: math.unit(1, "mile"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(6, "feet"),
  30191. weight: math.unit(150, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/en/front.svg",
  30195. extra: 1697 / 1563,
  30196. bottom: 103 / 1800
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(6, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/en/back.svg",
  30205. extra: 1700 / 1570,
  30206. bottom: 51 / 1751
  30207. }
  30208. },
  30209. frontDressed: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front (Dressed)",
  30213. image: {
  30214. source: "./media/characters/en/front-dressed.svg",
  30215. extra: 1697 / 1563,
  30216. bottom: 103 / 1800
  30217. }
  30218. },
  30219. backDressed: {
  30220. height: math.unit(6, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Back (Dressed)",
  30223. image: {
  30224. source: "./media/characters/en/back-dressed.svg",
  30225. extra: 1700 / 1570,
  30226. bottom: 51 / 1751
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Macro",
  30233. height: math.unit(210, "feet"),
  30234. default: true
  30235. },
  30236. ]
  30237. ))
  30238. characterMakers.push(() => makeCharacter(
  30239. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30240. {
  30241. front: {
  30242. height: math.unit(6, "feet"),
  30243. weight: math.unit(150, "lb"),
  30244. name: "Front",
  30245. image: {
  30246. source: "./media/characters/haze-orris/front.svg",
  30247. extra: 3975 / 3525,
  30248. bottom: 137 / 4112
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Micro",
  30255. height: math.unit(150, "mm"),
  30256. default: true
  30257. },
  30258. ]
  30259. ))
  30260. characterMakers.push(() => makeCharacter(
  30261. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30262. {
  30263. front: {
  30264. height: math.unit(6, "feet"),
  30265. weight: math.unit(150, "lb"),
  30266. name: "Front",
  30267. image: {
  30268. source: "./media/characters/casselene-yaro/front.svg",
  30269. extra: 4721 / 4541,
  30270. bottom: 82 / 4803
  30271. }
  30272. },
  30273. back: {
  30274. height: math.unit(6, "feet"),
  30275. weight: math.unit(150, "lb"),
  30276. name: "Back",
  30277. image: {
  30278. source: "./media/characters/casselene-yaro/back.svg",
  30279. extra: 4569 / 4377,
  30280. bottom: 69 / 4638
  30281. }
  30282. },
  30283. frontDressed: {
  30284. height: math.unit(6, "feet"),
  30285. weight: math.unit(150, "lb"),
  30286. name: "Front-dressed",
  30287. image: {
  30288. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30289. extra: 4721 / 4541,
  30290. bottom: 82 / 4803
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Macro",
  30297. height: math.unit(190, "feet"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(6, "feet"),
  30307. weight: math.unit(150, "lb"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/myra-rue-delore/front.svg",
  30311. extra: 1340 / 1308,
  30312. bottom: 67 / 1407
  30313. }
  30314. },
  30315. back: {
  30316. height: math.unit(6, "feet"),
  30317. weight: math.unit(150, "lb"),
  30318. name: "Back",
  30319. image: {
  30320. source: "./media/characters/myra-rue-delore/back.svg",
  30321. extra: 1341 / 1310,
  30322. bottom: 40 / 1381
  30323. }
  30324. },
  30325. frontDressed: {
  30326. height: math.unit(6, "feet"),
  30327. weight: math.unit(150, "lb"),
  30328. name: "Front (Dressed)",
  30329. image: {
  30330. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30331. extra: 1340 / 1308,
  30332. bottom: 67 / 1407
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Macro",
  30339. height: math.unit(150, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(10, "feet"),
  30349. weight: math.unit(15015, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/fem!plat/front.svg",
  30353. extra: 2799 / 2604,
  30354. bottom: 149 / 2948
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(10, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(100, "feet")
  30367. },
  30368. {
  30369. name: "Megamacro",
  30370. height: math.unit(1000, "feet")
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(15 + 5 / 12, "feet"),
  30379. weight: math.unit(4600, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/neapolitan-ananassa/front.svg",
  30383. extra: 2903 / 2736,
  30384. bottom: 0 / 2903
  30385. }
  30386. },
  30387. side: {
  30388. height: math.unit(15 + 5 / 12, "feet"),
  30389. weight: math.unit(4600, "lb"),
  30390. name: "Side",
  30391. image: {
  30392. source: "./media/characters/neapolitan-ananassa/side.svg",
  30393. extra: 2925 / 2719,
  30394. bottom: 0 / 2925
  30395. }
  30396. },
  30397. back: {
  30398. height: math.unit(15 + 5 / 12, "feet"),
  30399. weight: math.unit(4600, "lb"),
  30400. name: "Back",
  30401. image: {
  30402. source: "./media/characters/neapolitan-ananassa/back.svg",
  30403. extra: 2903 / 2736,
  30404. bottom: 0 / 2903
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(15 + 5 / 12, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Post-Millenium",
  30416. height: math.unit(35 + 5 / 12, "feet")
  30417. },
  30418. {
  30419. name: "Post-Era",
  30420. height: math.unit(450 + 5 / 12, "feet")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(300, "meters"),
  30429. weight: math.unit(125000, "tonnes"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/pazuzu/front.svg",
  30433. extra: 877 / 794,
  30434. bottom: 47 / 924
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(300, "meters"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30448. {
  30449. side: {
  30450. height: math.unit(10 + 7 / 12, "feet"),
  30451. weight: math.unit(2.5, "tons"),
  30452. name: "Side",
  30453. image: {
  30454. source: "./media/characters/aasha/side.svg",
  30455. extra: 1345 / 1245,
  30456. bottom: 111 / 1456
  30457. }
  30458. },
  30459. back: {
  30460. height: math.unit(10 + 7 / 12, "feet"),
  30461. weight: math.unit(2.5, "tons"),
  30462. name: "Back",
  30463. image: {
  30464. source: "./media/characters/aasha/back.svg",
  30465. extra: 1133 / 1057,
  30466. bottom: 257 / 1390
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Normal",
  30473. height: math.unit(10 + 7 / 12, "feet"),
  30474. default: true
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6 + 3 / 12, "feet"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/nevan/front.svg",
  30486. extra: 704 / 704,
  30487. bottom: 28 / 732
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(6 + 3 / 12, "feet"),
  30492. name: "Back",
  30493. image: {
  30494. source: "./media/characters/nevan/back.svg",
  30495. extra: 714 / 714,
  30496. bottom: 21 / 735
  30497. }
  30498. },
  30499. frontFlaccid: {
  30500. height: math.unit(6 + 3 / 12, "feet"),
  30501. name: "Front (Flaccid)",
  30502. image: {
  30503. source: "./media/characters/nevan/front-flaccid.svg",
  30504. extra: 704 / 704,
  30505. bottom: 28 / 732
  30506. }
  30507. },
  30508. frontErect: {
  30509. height: math.unit(6 + 3 / 12, "feet"),
  30510. name: "Front (Erect)",
  30511. image: {
  30512. source: "./media/characters/nevan/front-erect.svg",
  30513. extra: 704 / 704,
  30514. bottom: 28 / 732
  30515. }
  30516. },
  30517. backFlaccid: {
  30518. height: math.unit(6 + 3 / 12, "feet"),
  30519. name: "Back (Flaccid)",
  30520. image: {
  30521. source: "./media/characters/nevan/back-flaccid.svg",
  30522. extra: 714 / 714,
  30523. bottom: 21 / 735
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(6 + 3 / 12, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(4, "feet"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/arhan/front.svg",
  30543. extra: 3368 / 3133,
  30544. bottom: 0 / 3368
  30545. }
  30546. },
  30547. side: {
  30548. height: math.unit(4, "feet"),
  30549. name: "Side",
  30550. image: {
  30551. source: "./media/characters/arhan/side.svg",
  30552. extra: 3347 / 3105,
  30553. bottom: 0 / 3347
  30554. }
  30555. },
  30556. tongue: {
  30557. height: math.unit(1.42, "feet"),
  30558. name: "Tongue",
  30559. image: {
  30560. source: "./media/characters/arhan/tongue.svg"
  30561. }
  30562. },
  30563. head: {
  30564. height: math.unit(0.85, "feet"),
  30565. name: "Head",
  30566. image: {
  30567. source: "./media/characters/arhan/head.svg"
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(4, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(5 + 7.5 / 12, "feet"),
  30584. weight: math.unit(120, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/digi-duncan/front.svg",
  30588. extra: 330 / 326,
  30589. bottom: 16 / 346
  30590. }
  30591. },
  30592. side: {
  30593. height: math.unit(5 + 7.5 / 12, "feet"),
  30594. weight: math.unit(120, "lb"),
  30595. name: "Side",
  30596. image: {
  30597. source: "./media/characters/digi-duncan/side.svg",
  30598. extra: 341 / 337,
  30599. bottom: 1 / 342
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(5 + 7.5 / 12, "feet"),
  30604. weight: math.unit(120, "lb"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/digi-duncan/back.svg",
  30608. extra: 330 / 326,
  30609. bottom: 12 / 342
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Speck",
  30616. height: math.unit(0.25, "mm")
  30617. },
  30618. {
  30619. name: "Micro",
  30620. height: math.unit(5, "mm")
  30621. },
  30622. {
  30623. name: "Tiny",
  30624. height: math.unit(0.5, "inches"),
  30625. default: true
  30626. },
  30627. {
  30628. name: "Human",
  30629. height: math.unit(5 + 7.5 / 12, "feet")
  30630. },
  30631. {
  30632. name: "Minigiant",
  30633. height: math.unit(8 + 5.25, "feet")
  30634. },
  30635. {
  30636. name: "Giant",
  30637. height: math.unit(2000, "feet")
  30638. },
  30639. {
  30640. name: "Mega",
  30641. height: math.unit(371.1, "miles")
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(2, "meters"),
  30650. weight: math.unit(350, "kg"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30654. extra: 898 / 838,
  30655. bottom: 9 / 907
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Micro",
  30662. height: math.unit(8, "meters")
  30663. },
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(50, "meters"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(500, "meters")
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30677. {
  30678. front: {
  30679. height: math.unit(6 + 6 / 12, "feet"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/khardesh/front.svg",
  30683. extra: 1788/1596,
  30684. bottom: 66/1854
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(6 + 6 / 12, "feet"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/khardesh/back.svg",
  30692. extra: 1781/1584,
  30693. bottom: 68/1849
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(6 + 6 / 12, "feet"),
  30701. default: true
  30702. },
  30703. {
  30704. name: "Normal+",
  30705. height: math.unit(4, "meters")
  30706. },
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(50, "meters")
  30710. },
  30711. {
  30712. name: "Macro+",
  30713. height: math.unit(100, "meters")
  30714. },
  30715. {
  30716. name: "Megamacro",
  30717. height: math.unit(20, "km")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30723. {
  30724. front: {
  30725. height: math.unit(6, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/kosho/front.svg",
  30730. extra: 1847 / 1847,
  30731. bottom: 86 / 1933
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Second-stage micro",
  30738. height: math.unit(0.5, "inches")
  30739. },
  30740. {
  30741. name: "First-stage micro",
  30742. height: math.unit(6, "inches")
  30743. },
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(6, "feet"),
  30747. default: true
  30748. },
  30749. {
  30750. name: "First-stage macro",
  30751. height: math.unit(72, "feet")
  30752. },
  30753. {
  30754. name: "Second-stage macro",
  30755. height: math.unit(864, "feet")
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30761. {
  30762. normal: {
  30763. height: math.unit(4 + 6 / 12, "feet"),
  30764. name: "Normal",
  30765. image: {
  30766. source: "./media/characters/hydra/normal.svg",
  30767. extra: 2833 / 2634,
  30768. bottom: 68 / 2901
  30769. }
  30770. },
  30771. smol: {
  30772. height: math.unit(0.705, "inches"),
  30773. name: "Smol",
  30774. image: {
  30775. source: "./media/characters/hydra/smol.svg",
  30776. extra: 2715 / 2540,
  30777. bottom: 0 / 2715
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(4 + 6 / 12, "feet"),
  30785. default: true
  30786. }
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(0.6, "cm"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/daz/front.svg",
  30797. extra: 1682 / 1164,
  30798. bottom: 42 / 1724
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(0.6, "cm"),
  30806. default: true
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(6, "feet"),
  30815. weight: math.unit(235, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/theo-pangolin/front.svg",
  30819. extra: 1996 / 1969,
  30820. bottom: 115 / 2111
  30821. }
  30822. },
  30823. back: {
  30824. height: math.unit(6, "feet"),
  30825. weight: math.unit(235, "lb"),
  30826. name: "Back",
  30827. image: {
  30828. source: "./media/characters/theo-pangolin/back.svg",
  30829. extra: 1979 / 1979,
  30830. bottom: 40 / 2019
  30831. }
  30832. },
  30833. feral: {
  30834. height: math.unit(2, "feet"),
  30835. weight: math.unit(30, "lb"),
  30836. name: "Feral",
  30837. image: {
  30838. source: "./media/characters/theo-pangolin/feral.svg",
  30839. extra: 803 / 791,
  30840. bottom: 181 / 984
  30841. }
  30842. },
  30843. footFive: {
  30844. height: math.unit(1.43, "feet"),
  30845. name: "Foot (Five Toes)",
  30846. image: {
  30847. source: "./media/characters/theo-pangolin/foot-five.svg"
  30848. }
  30849. },
  30850. footFour: {
  30851. height: math.unit(1.43, "feet"),
  30852. name: "Foot (Four Toes)",
  30853. image: {
  30854. source: "./media/characters/theo-pangolin/foot-four.svg"
  30855. }
  30856. },
  30857. handFour: {
  30858. height: math.unit(0.81, "feet"),
  30859. name: "Hand (Four Fingers)",
  30860. image: {
  30861. source: "./media/characters/theo-pangolin/hand-four.svg"
  30862. }
  30863. },
  30864. handThree: {
  30865. height: math.unit(0.81, "feet"),
  30866. name: "Hand (Three Fingers)",
  30867. image: {
  30868. source: "./media/characters/theo-pangolin/hand-three.svg"
  30869. }
  30870. },
  30871. headFront: {
  30872. height: math.unit(1.37, "feet"),
  30873. name: "Head (Front)",
  30874. image: {
  30875. source: "./media/characters/theo-pangolin/head-front.svg"
  30876. }
  30877. },
  30878. headSide: {
  30879. height: math.unit(1.43, "feet"),
  30880. name: "Head (Side)",
  30881. image: {
  30882. source: "./media/characters/theo-pangolin/head-side.svg"
  30883. }
  30884. },
  30885. tongue: {
  30886. height: math.unit(2.29, "feet"),
  30887. name: "Tongue",
  30888. image: {
  30889. source: "./media/characters/theo-pangolin/tongue.svg"
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(6, "feet")
  30897. },
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(400, "feet"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(6, "inches"),
  30910. weight: math.unit(0.036, "kg"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/renée/front.svg",
  30914. extra: 900 / 886,
  30915. bottom: 8 / 908
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Nano",
  30922. height: math.unit(1, "nm")
  30923. },
  30924. {
  30925. name: "Micro",
  30926. height: math.unit(1, "mm")
  30927. },
  30928. {
  30929. name: "Normal",
  30930. height: math.unit(6, "inches")
  30931. },
  30932. {
  30933. name: "Macro",
  30934. height: math.unit(2000, "feet"),
  30935. default: true
  30936. },
  30937. {
  30938. name: "Megamacro",
  30939. height: math.unit(2, "km")
  30940. },
  30941. {
  30942. name: "Gigamacro",
  30943. height: math.unit(2000, "km")
  30944. },
  30945. {
  30946. name: "Teramacro",
  30947. height: math.unit(250000, "km")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(4, "meters"),
  30956. weight: math.unit(150, "kg"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/caledvwlch/front.svg",
  30960. extra: 1760 / 1551,
  30961. bottom: 28 / 1788
  30962. }
  30963. },
  30964. side: {
  30965. height: math.unit(4, "meters"),
  30966. weight: math.unit(150, "kg"),
  30967. name: "Side",
  30968. image: {
  30969. source: "./media/characters/caledvwlch/side.svg",
  30970. extra: 1605 / 1536,
  30971. bottom: 31 / 1636
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(4, "meters"),
  30976. weight: math.unit(150, "kg"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/caledvwlch/back.svg",
  30980. extra: 1635 / 1565,
  30981. bottom: 27 / 1662
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "\"Incognito\"",
  30988. height: math.unit(4, "meters")
  30989. },
  30990. {
  30991. name: "Small rampage",
  30992. height: math.unit(600, "meters")
  30993. },
  30994. {
  30995. name: "Mega",
  30996. height: math.unit(30, "km")
  30997. },
  30998. {
  30999. name: "Home-size",
  31000. height: math.unit(50, "km"),
  31001. default: true
  31002. },
  31003. {
  31004. name: "Giga",
  31005. height: math.unit(300, "km")
  31006. },
  31007. {
  31008. name: "Lounging",
  31009. height: math.unit(11000, "km")
  31010. },
  31011. {
  31012. name: "Planet snacking",
  31013. height: math.unit(2000000, "km")
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(215, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/sapphire-svell/front.svg",
  31026. extra: 495 / 455,
  31027. bottom: 20 / 515
  31028. }
  31029. },
  31030. back: {
  31031. height: math.unit(6, "feet"),
  31032. weight: math.unit(216, "lb"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/sapphire-svell/back.svg",
  31036. extra: 497 / 477,
  31037. bottom: 7 / 504
  31038. }
  31039. },
  31040. maw: {
  31041. height: math.unit(1.57, "feet"),
  31042. name: "Maw",
  31043. image: {
  31044. source: "./media/characters/sapphire-svell/maw.svg"
  31045. }
  31046. },
  31047. foot: {
  31048. height: math.unit(1.07, "feet"),
  31049. name: "Foot",
  31050. image: {
  31051. source: "./media/characters/sapphire-svell/foot.svg"
  31052. }
  31053. },
  31054. toering: {
  31055. height: math.unit(1.7, "inch"),
  31056. name: "Toering",
  31057. image: {
  31058. source: "./media/characters/sapphire-svell/toering.svg"
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(300, "feet"),
  31066. default: true
  31067. },
  31068. {
  31069. name: "Augmented",
  31070. height: math.unit(1250, "feet")
  31071. },
  31072. {
  31073. name: "Unleashed",
  31074. height: math.unit(3000, "feet")
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31080. {
  31081. side: {
  31082. height: math.unit(2 + 3 / 12, "feet"),
  31083. weight: math.unit(110, "lb"),
  31084. name: "Side",
  31085. image: {
  31086. source: "./media/characters/glitch-flux/side.svg",
  31087. extra: 997 / 805,
  31088. bottom: 20 / 1017
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(2 + 3 / 12, "feet"),
  31096. default: true
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(4, "meters"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/mid/front.svg",
  31108. extra: 507 / 476,
  31109. bottom: 17 / 524
  31110. }
  31111. },
  31112. back: {
  31113. height: math.unit(4, "meters"),
  31114. name: "Back",
  31115. image: {
  31116. source: "./media/characters/mid/back.svg",
  31117. extra: 519 / 487,
  31118. bottom: 7 / 526
  31119. }
  31120. },
  31121. stuck: {
  31122. height: math.unit(2.2, "meters"),
  31123. name: "Stuck",
  31124. image: {
  31125. source: "./media/characters/mid/stuck.svg",
  31126. extra: 1951 / 1869,
  31127. bottom: 88 / 2039
  31128. }
  31129. }
  31130. },
  31131. [
  31132. {
  31133. name: "Normal",
  31134. height: math.unit(4, "meters"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Big",
  31139. height: math.unit(10, "meters")
  31140. },
  31141. {
  31142. name: "Macro",
  31143. height: math.unit(800, "meters")
  31144. },
  31145. {
  31146. name: "Megamacro",
  31147. height: math.unit(100, "km")
  31148. },
  31149. {
  31150. name: "Overgrown",
  31151. height: math.unit(1, "parsec")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(2.5, "meters"),
  31160. weight: math.unit(225, "kg"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/iris/front.svg",
  31164. extra: 3348 / 3251,
  31165. bottom: 205 / 3553
  31166. }
  31167. },
  31168. maw: {
  31169. height: math.unit(0.56, "meter"),
  31170. name: "Maw",
  31171. image: {
  31172. source: "./media/characters/iris/maw.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Mewter cat",
  31179. height: math.unit(1.2, "meters")
  31180. },
  31181. {
  31182. name: "Minimacro",
  31183. height: math.unit(2.5, "meters"),
  31184. default: true
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(180, "meters")
  31189. },
  31190. {
  31191. name: "Megamacro",
  31192. height: math.unit(2746, "meters")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(135, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/axel/front.svg",
  31205. extra: 908 / 908,
  31206. bottom: 58 / 966
  31207. }
  31208. },
  31209. side: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(135, "lb"),
  31212. name: "Side",
  31213. image: {
  31214. source: "./media/characters/axel/side.svg",
  31215. extra: 958 / 958,
  31216. bottom: 11 / 969
  31217. }
  31218. },
  31219. back: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(135, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/axel/back.svg",
  31225. extra: 887 / 887,
  31226. bottom: 34 / 921
  31227. }
  31228. },
  31229. head: {
  31230. height: math.unit(1.07, "feet"),
  31231. name: "Head",
  31232. image: {
  31233. source: "./media/characters/axel/head.svg"
  31234. }
  31235. },
  31236. beak: {
  31237. height: math.unit(1.4, "feet"),
  31238. name: "Beak",
  31239. image: {
  31240. source: "./media/characters/axel/beak.svg"
  31241. }
  31242. },
  31243. beakSide: {
  31244. height: math.unit(1.4, "feet"),
  31245. name: "Beak Side",
  31246. image: {
  31247. source: "./media/characters/axel/beak-side.svg"
  31248. }
  31249. },
  31250. sheath: {
  31251. height: math.unit(0.5, "feet"),
  31252. name: "Sheath",
  31253. image: {
  31254. source: "./media/characters/axel/sheath.svg"
  31255. }
  31256. },
  31257. dick: {
  31258. height: math.unit(0.98, "feet"),
  31259. name: "Dick",
  31260. image: {
  31261. source: "./media/characters/axel/dick.svg"
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(68, "meters"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(3.5, "meters"),
  31278. weight: math.unit(1200, "kg"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/joanna/front.svg",
  31282. extra: 1596 / 1488,
  31283. bottom: 29 / 1625
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(3.5, "meters"),
  31288. weight: math.unit(1200, "kg"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/joanna/back.svg",
  31292. extra: 1594 / 1495,
  31293. bottom: 26 / 1620
  31294. }
  31295. },
  31296. frontShorts: {
  31297. height: math.unit(3.5, "meters"),
  31298. weight: math.unit(1200, "kg"),
  31299. name: "Front (Shorts)",
  31300. image: {
  31301. source: "./media/characters/joanna/front-shorts.svg",
  31302. extra: 1596 / 1488,
  31303. bottom: 29 / 1625
  31304. }
  31305. },
  31306. frontBiker: {
  31307. height: math.unit(3.5, "meters"),
  31308. weight: math.unit(1200, "kg"),
  31309. name: "Front (Biker)",
  31310. image: {
  31311. source: "./media/characters/joanna/front-biker.svg",
  31312. extra: 1596 / 1488,
  31313. bottom: 29 / 1625
  31314. }
  31315. },
  31316. backBiker: {
  31317. height: math.unit(3.5, "meters"),
  31318. weight: math.unit(1200, "kg"),
  31319. name: "Back (Biker)",
  31320. image: {
  31321. source: "./media/characters/joanna/back-biker.svg",
  31322. extra: 1594 / 1495,
  31323. bottom: 88 / 1682
  31324. }
  31325. },
  31326. bikeLeft: {
  31327. height: math.unit(2.4, "meters"),
  31328. weight: math.unit(1600, "kg"),
  31329. name: "Bike (Left)",
  31330. image: {
  31331. source: "./media/characters/joanna/bike-left.svg",
  31332. extra: 720 / 720,
  31333. bottom: 8 / 728
  31334. }
  31335. },
  31336. bikeRight: {
  31337. height: math.unit(2.4, "meters"),
  31338. weight: math.unit(1600, "kg"),
  31339. name: "Bike (Right)",
  31340. image: {
  31341. source: "./media/characters/joanna/bike-right.svg",
  31342. extra: 720 / 720,
  31343. bottom: 8 / 728
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Incognito",
  31350. height: math.unit(3.5, "meters")
  31351. },
  31352. {
  31353. name: "Casual Big",
  31354. height: math.unit(200, "meters")
  31355. },
  31356. {
  31357. name: "Macro",
  31358. height: math.unit(600, "meters")
  31359. },
  31360. {
  31361. name: "Original",
  31362. height: math.unit(20, "km"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Giga",
  31367. height: math.unit(400, "km")
  31368. },
  31369. {
  31370. name: "Lounging",
  31371. height: math.unit(1500, "km")
  31372. },
  31373. {
  31374. name: "Planetary",
  31375. height: math.unit(200000, "km")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(6, "feet"),
  31384. weight: math.unit(150, "lb"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/hugo-sigil/front.svg",
  31388. extra: 522 / 500,
  31389. bottom: 2 / 524
  31390. }
  31391. },
  31392. back: {
  31393. height: math.unit(6, "feet"),
  31394. weight: math.unit(150, "lb"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/hugo-sigil/back.svg",
  31398. extra: 519 / 495,
  31399. bottom: 5 / 524
  31400. }
  31401. },
  31402. maw: {
  31403. height: math.unit(1.4, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/hugo-sigil/maw.svg"
  31408. }
  31409. },
  31410. feet: {
  31411. height: math.unit(1.56, "feet"),
  31412. weight: math.unit(150, "lb"),
  31413. name: "Feet",
  31414. image: {
  31415. source: "./media/characters/hugo-sigil/feet.svg",
  31416. extra: 177 / 177,
  31417. bottom: 12 / 189
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(6, "feet")
  31425. },
  31426. {
  31427. name: "Macro",
  31428. height: math.unit(200, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/peri/front.svg",
  31442. extra: 2354 / 2233,
  31443. bottom: 49 / 2403
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Really Small",
  31450. height: math.unit(1, "nm")
  31451. },
  31452. {
  31453. name: "Micro",
  31454. height: math.unit(4, "inches")
  31455. },
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(7, "inches"),
  31459. default: true
  31460. },
  31461. {
  31462. name: "Macro",
  31463. height: math.unit(400, "feet")
  31464. },
  31465. {
  31466. name: "Megamacro",
  31467. height: math.unit(100, "miles")
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31473. {
  31474. frontSlim: {
  31475. height: math.unit(7, "feet"),
  31476. name: "Front (Slim)",
  31477. image: {
  31478. source: "./media/characters/issilora/front-slim.svg",
  31479. extra: 529 / 449,
  31480. bottom: 53 / 582
  31481. }
  31482. },
  31483. sideSlim: {
  31484. height: math.unit(7, "feet"),
  31485. name: "Side (Slim)",
  31486. image: {
  31487. source: "./media/characters/issilora/side-slim.svg",
  31488. extra: 570 / 480,
  31489. bottom: 30 / 600
  31490. }
  31491. },
  31492. backSlim: {
  31493. height: math.unit(7, "feet"),
  31494. name: "Back (Slim)",
  31495. image: {
  31496. source: "./media/characters/issilora/back-slim.svg",
  31497. extra: 537 / 455,
  31498. bottom: 46 / 583
  31499. }
  31500. },
  31501. frontBuff: {
  31502. height: math.unit(7, "feet"),
  31503. name: "Front (Buff)",
  31504. image: {
  31505. source: "./media/characters/issilora/front-buff.svg",
  31506. extra: 2310 / 2035,
  31507. bottom: 335 / 2645
  31508. }
  31509. },
  31510. head: {
  31511. height: math.unit(1.94, "feet"),
  31512. name: "Head",
  31513. image: {
  31514. source: "./media/characters/issilora/head.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Minimum",
  31521. height: math.unit(7, "feet")
  31522. },
  31523. {
  31524. name: "Comfortable",
  31525. height: math.unit(17, "feet")
  31526. },
  31527. {
  31528. name: "Fun Size",
  31529. height: math.unit(47, "feet")
  31530. },
  31531. {
  31532. name: "Natural Macro",
  31533. height: math.unit(137, "feet"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Maximum Kaiju",
  31538. height: math.unit(397, "feet")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31544. {
  31545. front: {
  31546. height: math.unit(50 + 9/12, "feet"),
  31547. weight: math.unit(32.8, "tons"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/irb'iiritaahn/front.svg",
  31551. extra: 1878/1826,
  31552. bottom: 326/2204
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(50 + 9/12, "feet"),
  31557. weight: math.unit(32.8, "tons"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/irb'iiritaahn/back.svg",
  31561. extra: 2052/2018,
  31562. bottom: 152/2204
  31563. }
  31564. },
  31565. head: {
  31566. height: math.unit(12.86, "feet"),
  31567. name: "Head",
  31568. image: {
  31569. source: "./media/characters/irb'iiritaahn/head.svg"
  31570. }
  31571. },
  31572. maw: {
  31573. height: math.unit(9.66, "feet"),
  31574. name: "Maw",
  31575. image: {
  31576. source: "./media/characters/irb'iiritaahn/maw.svg"
  31577. }
  31578. },
  31579. frontDick: {
  31580. height: math.unit(8.78461, "feet"),
  31581. name: "Front Dick",
  31582. image: {
  31583. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31584. }
  31585. },
  31586. rearDick: {
  31587. height: math.unit(8.78461, "feet"),
  31588. name: "Rear Dick",
  31589. image: {
  31590. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31591. }
  31592. },
  31593. rearDickUnfolded: {
  31594. height: math.unit(8.78, "feet"),
  31595. name: "Rear Dick (Unfolded)",
  31596. image: {
  31597. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31598. }
  31599. },
  31600. wings: {
  31601. height: math.unit(43, "feet"),
  31602. name: "Wings",
  31603. image: {
  31604. source: "./media/characters/irb'iiritaahn/wings.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Macro",
  31611. height: math.unit(50 + 9/12, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(205, "cm"),
  31621. weight: math.unit(102, "kg"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/irbisgreif/front.svg",
  31625. extra: 785/706,
  31626. bottom: 13/798
  31627. }
  31628. },
  31629. back: {
  31630. height: math.unit(205, "cm"),
  31631. weight: math.unit(102, "kg"),
  31632. name: "Back",
  31633. image: {
  31634. source: "./media/characters/irbisgreif/back.svg",
  31635. extra: 713/701,
  31636. bottom: 26/739
  31637. }
  31638. },
  31639. frontDressed: {
  31640. height: math.unit(216, "cm"),
  31641. weight: math.unit(102, "kg"),
  31642. name: "Front-dressed",
  31643. image: {
  31644. source: "./media/characters/irbisgreif/front-dressed.svg",
  31645. extra: 902/776,
  31646. bottom: 14/916
  31647. }
  31648. },
  31649. sideDressed: {
  31650. height: math.unit(195, "cm"),
  31651. weight: math.unit(102, "kg"),
  31652. name: "Side-dressed",
  31653. image: {
  31654. source: "./media/characters/irbisgreif/side-dressed.svg",
  31655. extra: 788/688,
  31656. bottom: 21/809
  31657. }
  31658. },
  31659. backDressed: {
  31660. height: math.unit(216, "cm"),
  31661. weight: math.unit(102, "kg"),
  31662. name: "Back-dressed",
  31663. image: {
  31664. source: "./media/characters/irbisgreif/back-dressed.svg",
  31665. extra: 901/783,
  31666. bottom: 10/911
  31667. }
  31668. },
  31669. dick: {
  31670. height: math.unit(0.49, "feet"),
  31671. name: "Dick",
  31672. image: {
  31673. source: "./media/characters/irbisgreif/dick.svg"
  31674. }
  31675. },
  31676. wingTop: {
  31677. height: math.unit(1.93 , "feet"),
  31678. name: "Wing-top",
  31679. image: {
  31680. source: "./media/characters/irbisgreif/wing-top.svg"
  31681. }
  31682. },
  31683. wingBottom: {
  31684. height: math.unit(1.93 , "feet"),
  31685. name: "Wing-bottom",
  31686. image: {
  31687. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(216, "cm"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(6, "feet"),
  31704. weight: math.unit(150, "lb"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/pride/front.svg",
  31708. extra: 1299/1230,
  31709. bottom: 18/1317
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(7, "feet")
  31717. },
  31718. {
  31719. name: "Mini-macro",
  31720. height: math.unit(11, "feet")
  31721. },
  31722. {
  31723. name: "Macro",
  31724. height: math.unit(15, "meters"),
  31725. default: true
  31726. },
  31727. {
  31728. name: "Macro+",
  31729. height: math.unit(40, "meters")
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31735. {
  31736. front: {
  31737. height: math.unit(4 + 2 / 12, "feet"),
  31738. weight: math.unit(95, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/vaelophis-nyx/front.svg",
  31742. extra: 2532/2330,
  31743. bottom: 0/2532
  31744. }
  31745. },
  31746. back: {
  31747. height: math.unit(4 + 2 / 12, "feet"),
  31748. weight: math.unit(95, "lb"),
  31749. name: "Back",
  31750. image: {
  31751. source: "./media/characters/vaelophis-nyx/back.svg",
  31752. extra: 2484/2361,
  31753. bottom: 0/2484
  31754. }
  31755. },
  31756. feralSide: {
  31757. height: math.unit(2 + 1/12, "feet"),
  31758. weight: math.unit(20, "lb"),
  31759. name: "Feral (Side)",
  31760. image: {
  31761. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31762. extra: 1721/1581,
  31763. bottom: 70/1791
  31764. }
  31765. },
  31766. feralLazing: {
  31767. height: math.unit(1.08, "feet"),
  31768. weight: math.unit(20, "lb"),
  31769. name: "Feral (Lazing)",
  31770. image: {
  31771. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31772. extra: 822/822,
  31773. bottom: 248/1070
  31774. }
  31775. },
  31776. ear: {
  31777. height: math.unit(0.416, "feet"),
  31778. name: "Ear",
  31779. image: {
  31780. source: "./media/characters/vaelophis-nyx/ear.svg"
  31781. }
  31782. },
  31783. eye: {
  31784. height: math.unit(0.0748, "feet"),
  31785. name: "Eye",
  31786. image: {
  31787. source: "./media/characters/vaelophis-nyx/eye.svg"
  31788. }
  31789. },
  31790. mouth: {
  31791. height: math.unit(0.378, "feet"),
  31792. name: "Mouth",
  31793. image: {
  31794. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31795. }
  31796. },
  31797. spade: {
  31798. height: math.unit(0.55, "feet"),
  31799. name: "Spade",
  31800. image: {
  31801. source: "./media/characters/vaelophis-nyx/spade.svg"
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(4 + 2/12, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31815. {
  31816. front: {
  31817. height: math.unit(7, "feet"),
  31818. weight: math.unit(231, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/flux/front.svg",
  31822. extra: 919/871,
  31823. bottom: 0/919
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(7, "feet"),
  31828. weight: math.unit(231, "lb"),
  31829. name: "Back",
  31830. image: {
  31831. source: "./media/characters/flux/back.svg",
  31832. extra: 1040/992,
  31833. bottom: 0/1040
  31834. }
  31835. },
  31836. frontDressed: {
  31837. height: math.unit(7, "feet"),
  31838. weight: math.unit(231, "lb"),
  31839. name: "Front (Dressed)",
  31840. image: {
  31841. source: "./media/characters/flux/front-dressed.svg",
  31842. extra: 919/871,
  31843. bottom: 0/919
  31844. }
  31845. },
  31846. feralSide: {
  31847. height: math.unit(5, "feet"),
  31848. weight: math.unit(150, "lb"),
  31849. name: "Feral (Side)",
  31850. image: {
  31851. source: "./media/characters/flux/feral-side.svg",
  31852. extra: 598/528,
  31853. bottom: 28/626
  31854. }
  31855. },
  31856. head: {
  31857. height: math.unit(1.585, "feet"),
  31858. name: "Head",
  31859. image: {
  31860. source: "./media/characters/flux/head.svg"
  31861. }
  31862. },
  31863. headSide: {
  31864. height: math.unit(1.74, "feet"),
  31865. name: "Head (Side)",
  31866. image: {
  31867. source: "./media/characters/flux/head-side.svg"
  31868. }
  31869. },
  31870. headSideFire: {
  31871. height: math.unit(1.76, "feet"),
  31872. name: "Head (Side, Fire)",
  31873. image: {
  31874. source: "./media/characters/flux/head-side-fire.svg"
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(7, "feet"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(9, "feet"),
  31891. weight: math.unit(1012, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/ulfra-lupae/front.svg",
  31895. extra: 1083/1011,
  31896. bottom: 67/1150
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Micro",
  31903. height: math.unit(6, "inches")
  31904. },
  31905. {
  31906. name: "Socializing",
  31907. height: math.unit(6 + 5/12, "feet")
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(9, "feet"),
  31912. default: true
  31913. },
  31914. {
  31915. name: "Macro",
  31916. height: math.unit(150, "feet")
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. weight: math.unit(120, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/timber/front.svg",
  31929. extra: 2814/2705,
  31930. bottom: 181/2995
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(5 + 2/12, "feet"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(9, "feet"),
  31947. name: "Front",
  31948. image: {
  31949. source: "./media/characters/nicki/front.svg",
  31950. extra: 1240/990,
  31951. bottom: 45/1285
  31952. },
  31953. form: "anthro",
  31954. default: true
  31955. },
  31956. side: {
  31957. height: math.unit(9, "feet"),
  31958. name: "Side",
  31959. image: {
  31960. source: "./media/characters/nicki/side.svg",
  31961. extra: 1047/973,
  31962. bottom: 61/1108
  31963. },
  31964. form: "anthro"
  31965. },
  31966. back: {
  31967. height: math.unit(9, "feet"),
  31968. name: "Back",
  31969. image: {
  31970. source: "./media/characters/nicki/back.svg",
  31971. extra: 1006/965,
  31972. bottom: 39/1045
  31973. },
  31974. form: "anthro"
  31975. },
  31976. taur: {
  31977. height: math.unit(15, "feet"),
  31978. name: "Taur",
  31979. image: {
  31980. source: "./media/characters/nicki/taur.svg",
  31981. extra: 1592/1347,
  31982. bottom: 0/1592
  31983. },
  31984. form: "taur",
  31985. default: true
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(9, "feet"),
  31992. form: "anthro",
  31993. default: true
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(15, "feet"),
  31998. form: "taur",
  31999. default: true
  32000. }
  32001. ],
  32002. {
  32003. "anthro": {
  32004. name: "Anthro",
  32005. default: true
  32006. },
  32007. "taur": {
  32008. name: "Taur"
  32009. }
  32010. }
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(7 + 10/12, "feet"),
  32017. weight: math.unit(3.5, "tons"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/lee/front.svg",
  32021. extra: 1773/1615,
  32022. bottom: 86/1859
  32023. }
  32024. },
  32025. hand: {
  32026. height: math.unit(1.78, "feet"),
  32027. name: "Hand",
  32028. image: {
  32029. source: "./media/characters/lee/hand.svg"
  32030. }
  32031. },
  32032. maw: {
  32033. height: math.unit(1.18, "feet"),
  32034. name: "Maw",
  32035. image: {
  32036. source: "./media/characters/lee/maw.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(7 + 10/12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32050. {
  32051. front: {
  32052. height: math.unit(9, "feet"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/guti/front.svg",
  32056. extra: 4551/4355,
  32057. bottom: 123/4674
  32058. }
  32059. },
  32060. tongue: {
  32061. height: math.unit(1, "feet"),
  32062. name: "Tongue",
  32063. image: {
  32064. source: "./media/characters/guti/tongue.svg"
  32065. }
  32066. },
  32067. paw: {
  32068. height: math.unit(1.18, "feet"),
  32069. name: "Paw",
  32070. image: {
  32071. source: "./media/characters/guti/paw.svg"
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(9, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32085. {
  32086. side: {
  32087. height: math.unit(5, "meters"),
  32088. name: "Side",
  32089. image: {
  32090. source: "./media/characters/vesper/side.svg",
  32091. extra: 1605/1518,
  32092. bottom: 0/1605
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Small",
  32099. height: math.unit(5, "meters")
  32100. },
  32101. {
  32102. name: "Sage",
  32103. height: math.unit(100, "meters"),
  32104. default: true
  32105. },
  32106. {
  32107. name: "Fun Size",
  32108. height: math.unit(600, "meters")
  32109. },
  32110. {
  32111. name: "Goddess",
  32112. height: math.unit(20000, "km")
  32113. },
  32114. {
  32115. name: "Maximum",
  32116. height: math.unit(5, "galaxies")
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(6 + 3/12, "feet"),
  32125. weight: math.unit(190, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/gawain/front.svg",
  32129. extra: 2222/2139,
  32130. bottom: 90/2312
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(6 + 3/12, "feet"),
  32135. weight: math.unit(190, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/gawain/back.svg",
  32139. extra: 2199/2111,
  32140. bottom: 73/2272
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "Normal",
  32147. height: math.unit(6 + 3/12, "feet"),
  32148. default: true
  32149. },
  32150. ]
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32154. {
  32155. side: {
  32156. height: math.unit(3.5, "meters"),
  32157. weight: math.unit(16000, "lb"),
  32158. name: "Side",
  32159. image: {
  32160. source: "./media/characters/dascalti/side.svg",
  32161. extra: 392/273,
  32162. bottom: 47/439
  32163. }
  32164. },
  32165. breath: {
  32166. height: math.unit(7.4, "feet"),
  32167. name: "Breath",
  32168. image: {
  32169. source: "./media/characters/dascalti/breath.svg"
  32170. }
  32171. },
  32172. fed: {
  32173. height: math.unit(3.6, "meters"),
  32174. weight: math.unit(16000, "lb"),
  32175. name: "Fed",
  32176. image: {
  32177. source: "./media/characters/dascalti/fed.svg",
  32178. extra: 1419/820,
  32179. bottom: 95/1514
  32180. }
  32181. },
  32182. },
  32183. [
  32184. {
  32185. name: "Normal",
  32186. height: math.unit(3.5, "meters"),
  32187. default: true
  32188. },
  32189. ]
  32190. ))
  32191. characterMakers.push(() => makeCharacter(
  32192. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32193. {
  32194. front: {
  32195. height: math.unit(3 + 5/12, "feet"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/mauve/front.svg",
  32199. extra: 1126/1033,
  32200. bottom: 65/1191
  32201. }
  32202. },
  32203. side: {
  32204. height: math.unit(3 + 5/12, "feet"),
  32205. name: "Side",
  32206. image: {
  32207. source: "./media/characters/mauve/side.svg",
  32208. extra: 1089/1001,
  32209. bottom: 29/1118
  32210. }
  32211. },
  32212. back: {
  32213. height: math.unit(3 + 5/12, "feet"),
  32214. name: "Back",
  32215. image: {
  32216. source: "./media/characters/mauve/back.svg",
  32217. extra: 1173/1053,
  32218. bottom: 109/1282
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(3 + 5/12, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(6 + 3/12, "feet"),
  32235. weight: math.unit(430, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/carlos/front.svg",
  32239. extra: 1964/1913,
  32240. bottom: 70/2034
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Normal",
  32247. height: math.unit(6 + 3/12, "feet"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32254. {
  32255. back: {
  32256. height: math.unit(5 + 10/12, "feet"),
  32257. weight: math.unit(200, "lb"),
  32258. name: "Back",
  32259. image: {
  32260. source: "./media/characters/jax/back.svg",
  32261. extra: 764/739,
  32262. bottom: 25/789
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(5 + 10/12, "feet"),
  32270. default: true
  32271. },
  32272. ]
  32273. ))
  32274. characterMakers.push(() => makeCharacter(
  32275. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32276. {
  32277. front: {
  32278. height: math.unit(8, "feet"),
  32279. weight: math.unit(250, "lb"),
  32280. name: "Front",
  32281. image: {
  32282. source: "./media/characters/eikthynir/front.svg",
  32283. extra: 1332/1166,
  32284. bottom: 82/1414
  32285. }
  32286. },
  32287. back: {
  32288. height: math.unit(8, "feet"),
  32289. weight: math.unit(250, "lb"),
  32290. name: "Back",
  32291. image: {
  32292. source: "./media/characters/eikthynir/back.svg",
  32293. extra: 1342/1190,
  32294. bottom: 19/1361
  32295. }
  32296. },
  32297. dick: {
  32298. height: math.unit(2.35, "feet"),
  32299. name: "Dick",
  32300. image: {
  32301. source: "./media/characters/eikthynir/dick.svg"
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Normal",
  32308. height: math.unit(8, "feet"),
  32309. default: true
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(99, "meters"),
  32318. weight: math.unit(13000, "tons"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/zlmos/front.svg",
  32322. extra: 2202/1992,
  32323. bottom: 315/2517
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Macro",
  32330. height: math.unit(99, "meters"),
  32331. default: true
  32332. },
  32333. ]
  32334. ))
  32335. characterMakers.push(() => makeCharacter(
  32336. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32337. {
  32338. front: {
  32339. height: math.unit(6 + 5/12, "feet"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/purri/front.svg",
  32343. extra: 1698/1610,
  32344. bottom: 32/1730
  32345. }
  32346. },
  32347. frontAlt: {
  32348. height: math.unit(6 + 5/12, "feet"),
  32349. name: "Front (Alt)",
  32350. image: {
  32351. source: "./media/characters/purri/front-alt.svg",
  32352. extra: 450/420,
  32353. bottom: 26/476
  32354. }
  32355. },
  32356. boots: {
  32357. height: math.unit(5.5, "feet"),
  32358. name: "Boots",
  32359. image: {
  32360. source: "./media/characters/purri/boots.svg",
  32361. extra: 905/853,
  32362. bottom: 18/923
  32363. }
  32364. },
  32365. lying: {
  32366. height: math.unit(2, "feet"),
  32367. name: "Lying",
  32368. image: {
  32369. source: "./media/characters/purri/lying.svg",
  32370. extra: 940/843,
  32371. bottom: 146/1086
  32372. }
  32373. },
  32374. devious: {
  32375. height: math.unit(1.77, "feet"),
  32376. name: "Devious",
  32377. image: {
  32378. source: "./media/characters/purri/devious.svg",
  32379. extra: 1440/1155,
  32380. bottom: 147/1587
  32381. }
  32382. },
  32383. bean: {
  32384. height: math.unit(1.94, "feet"),
  32385. name: "Bean",
  32386. image: {
  32387. source: "./media/characters/purri/bean.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Micro",
  32394. height: math.unit(1, "mm")
  32395. },
  32396. {
  32397. name: "Normal",
  32398. height: math.unit(6 + 5/12, "feet"),
  32399. default: true
  32400. },
  32401. {
  32402. name: "Macro :3c",
  32403. height: math.unit(2, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(6 + 2/12, "feet"),
  32412. weight: math.unit(250, "lb"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/moonlight/front.svg",
  32416. extra: 1044/908,
  32417. bottom: 56/1100
  32418. }
  32419. },
  32420. feral: {
  32421. height: math.unit(3 + 1/12, "feet"),
  32422. weight: math.unit(50, "kg"),
  32423. name: "Feral",
  32424. image: {
  32425. source: "./media/characters/moonlight/feral.svg",
  32426. extra: 3705/2791,
  32427. bottom: 145/3850
  32428. }
  32429. },
  32430. paw: {
  32431. height: math.unit(1, "feet"),
  32432. name: "Paw",
  32433. image: {
  32434. source: "./media/characters/moonlight/paw.svg"
  32435. }
  32436. },
  32437. paws: {
  32438. height: math.unit(0.98, "feet"),
  32439. name: "Paws",
  32440. image: {
  32441. source: "./media/characters/moonlight/paws.svg",
  32442. extra: 939/939,
  32443. bottom: 50/989
  32444. }
  32445. },
  32446. mouth: {
  32447. height: math.unit(0.48, "feet"),
  32448. name: "Mouth",
  32449. image: {
  32450. source: "./media/characters/moonlight/mouth.svg"
  32451. }
  32452. },
  32453. dick: {
  32454. height: math.unit(1.46, "feet"),
  32455. name: "Dick",
  32456. image: {
  32457. source: "./media/characters/moonlight/dick.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(6 + 2/12, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Macro",
  32469. height: math.unit(300, "feet")
  32470. },
  32471. {
  32472. name: "Macro+",
  32473. height: math.unit(1, "mile")
  32474. },
  32475. {
  32476. name: "Mt. Moon",
  32477. height: math.unit(5, "miles")
  32478. },
  32479. {
  32480. name: "Megamacro",
  32481. height: math.unit(15, "miles")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32487. {
  32488. back: {
  32489. height: math.unit(6, "feet"),
  32490. weight: math.unit(150, "lb"),
  32491. name: "Back",
  32492. image: {
  32493. source: "./media/characters/sylen/back.svg",
  32494. extra: 1335/1273,
  32495. bottom: 107/1442
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(5 + 5/12, "feet")
  32503. },
  32504. {
  32505. name: "Megamacro",
  32506. height: math.unit(3, "miles"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(190, "lb"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/huttser/front.svg",
  32520. extra: 1152/1058,
  32521. bottom: 23/1175
  32522. }
  32523. },
  32524. side: {
  32525. height: math.unit(6, "feet"),
  32526. weight: math.unit(190, "lb"),
  32527. name: "Side",
  32528. image: {
  32529. source: "./media/characters/huttser/side.svg",
  32530. extra: 1174/1065,
  32531. bottom: 18/1192
  32532. }
  32533. },
  32534. back: {
  32535. height: math.unit(6, "feet"),
  32536. weight: math.unit(190, "lb"),
  32537. name: "Back",
  32538. image: {
  32539. source: "./media/characters/huttser/back.svg",
  32540. extra: 1158/1056,
  32541. bottom: 12/1170
  32542. }
  32543. },
  32544. },
  32545. [
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32550. {
  32551. side: {
  32552. height: math.unit(12 + 9/12, "feet"),
  32553. weight: math.unit(15000, "lb"),
  32554. name: "Side",
  32555. image: {
  32556. source: "./media/characters/faan/side.svg",
  32557. extra: 2747/2697,
  32558. bottom: 0/2747
  32559. }
  32560. },
  32561. front: {
  32562. height: math.unit(12 + 9/12, "feet"),
  32563. weight: math.unit(15000, "lb"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/faan/front.svg",
  32567. extra: 607/571,
  32568. bottom: 24/631
  32569. }
  32570. },
  32571. head: {
  32572. height: math.unit(2.85, "feet"),
  32573. name: "Head",
  32574. image: {
  32575. source: "./media/characters/faan/head.svg"
  32576. }
  32577. },
  32578. headAlt: {
  32579. height: math.unit(3.13, "feet"),
  32580. name: "Head-alt",
  32581. image: {
  32582. source: "./media/characters/faan/head-alt.svg"
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(12 + 9/12, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(6, "feet"),
  32599. weight: math.unit(300, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/tanio/front.svg",
  32603. extra: 711/673,
  32604. bottom: 25/736
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(6, "feet"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(3, "inches"),
  32621. name: "Front",
  32622. image: {
  32623. source: "./media/characters/noboru/front.svg",
  32624. extra: 1039/932,
  32625. bottom: 18/1057
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Micro",
  32632. height: math.unit(3, "inches"),
  32633. default: true
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32639. {
  32640. front: {
  32641. height: math.unit(1.85, "meters"),
  32642. weight: math.unit(80, "kg"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/daniel-barrett/front.svg",
  32646. extra: 355/337,
  32647. bottom: 9/364
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Pico",
  32654. height: math.unit(0.0433, "mm")
  32655. },
  32656. {
  32657. name: "Nano",
  32658. height: math.unit(1.5, "mm")
  32659. },
  32660. {
  32661. name: "Micro",
  32662. height: math.unit(5.3, "cm"),
  32663. default: true
  32664. },
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(1.85, "meters")
  32668. },
  32669. {
  32670. name: "Macro",
  32671. height: math.unit(64.7, "meters")
  32672. },
  32673. {
  32674. name: "Megamacro",
  32675. height: math.unit(2.26, "km")
  32676. },
  32677. {
  32678. name: "Gigamacro",
  32679. height: math.unit(79, "km")
  32680. },
  32681. {
  32682. name: "Teramacro",
  32683. height: math.unit(2765, "km")
  32684. },
  32685. {
  32686. name: "Petamacro",
  32687. height: math.unit(96678, "km")
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(30, "meters"),
  32696. weight: math.unit(400, "tons"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/zeel/front.svg",
  32700. extra: 2599/2599,
  32701. bottom: 226/2825
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Macro",
  32708. height: math.unit(30, "meters"),
  32709. default: true
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(6 + 7/12, "feet"),
  32718. weight: math.unit(210, "lb"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/tarn/front.svg",
  32722. extra: 3517/3220,
  32723. bottom: 91/3608
  32724. }
  32725. },
  32726. back: {
  32727. height: math.unit(6 + 7/12, "feet"),
  32728. weight: math.unit(210, "lb"),
  32729. name: "Back",
  32730. image: {
  32731. source: "./media/characters/tarn/back.svg",
  32732. extra: 3566/3241,
  32733. bottom: 34/3600
  32734. }
  32735. },
  32736. dick: {
  32737. height: math.unit(1.65, "feet"),
  32738. name: "Dick",
  32739. image: {
  32740. source: "./media/characters/tarn/dick.svg"
  32741. }
  32742. },
  32743. paw: {
  32744. height: math.unit(1.80, "feet"),
  32745. name: "Paw",
  32746. image: {
  32747. source: "./media/characters/tarn/paw.svg"
  32748. }
  32749. },
  32750. tongue: {
  32751. height: math.unit(0.97, "feet"),
  32752. name: "Tongue",
  32753. image: {
  32754. source: "./media/characters/tarn/tongue.svg"
  32755. }
  32756. },
  32757. },
  32758. [
  32759. {
  32760. name: "Micro",
  32761. height: math.unit(4, "inches")
  32762. },
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(6 + 7/12, "feet"),
  32766. default: true
  32767. },
  32768. {
  32769. name: "Macro",
  32770. height: math.unit(300, "feet")
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(5 + 7/12, "feet"),
  32779. weight: math.unit(80, "kg"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32783. extra: 3023/2865,
  32784. bottom: 33/3056
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(5 + 7/12, "feet"),
  32789. weight: math.unit(80, "kg"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32793. extra: 3020/2886,
  32794. bottom: 30/3050
  32795. }
  32796. },
  32797. dick: {
  32798. height: math.unit(0.98, "feet"),
  32799. name: "Dick",
  32800. image: {
  32801. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32802. }
  32803. },
  32804. anatomy: {
  32805. height: math.unit(2.86, "feet"),
  32806. name: "Anatomy",
  32807. image: {
  32808. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Really Small",
  32815. height: math.unit(2, "inches")
  32816. },
  32817. {
  32818. name: "Micro",
  32819. height: math.unit(5.583, "inches")
  32820. },
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(5 + 7/12, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Macro",
  32828. height: math.unit(67, "feet")
  32829. },
  32830. {
  32831. name: "Megamacro",
  32832. height: math.unit(134, "feet")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(9, "feet"),
  32841. weight: math.unit(120, "lb"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/sally/front.svg",
  32845. extra: 1506/1349,
  32846. bottom: 66/1572
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(9, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(8, "feet"),
  32863. weight: math.unit(900, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/owen/front.svg",
  32867. extra: 1761/1657,
  32868. bottom: 74/1835
  32869. }
  32870. },
  32871. side: {
  32872. height: math.unit(8, "feet"),
  32873. weight: math.unit(900, "lb"),
  32874. name: "Side",
  32875. image: {
  32876. source: "./media/characters/owen/side.svg",
  32877. extra: 1797/1734,
  32878. bottom: 30/1827
  32879. }
  32880. },
  32881. back: {
  32882. height: math.unit(8, "feet"),
  32883. weight: math.unit(900, "lb"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/owen/back.svg",
  32887. extra: 1796/1706,
  32888. bottom: 59/1855
  32889. }
  32890. },
  32891. maw: {
  32892. height: math.unit(1.76, "feet"),
  32893. name: "Maw",
  32894. image: {
  32895. source: "./media/characters/owen/maw.svg"
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(8, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32909. {
  32910. front: {
  32911. height: math.unit(4, "feet"),
  32912. weight: math.unit(400, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/ryth/front.svg",
  32916. extra: 1920/1748,
  32917. bottom: 42/1962
  32918. }
  32919. },
  32920. back: {
  32921. height: math.unit(4, "feet"),
  32922. weight: math.unit(400, "lb"),
  32923. name: "Back",
  32924. image: {
  32925. source: "./media/characters/ryth/back.svg",
  32926. extra: 1897/1690,
  32927. bottom: 89/1986
  32928. }
  32929. },
  32930. mouth: {
  32931. height: math.unit(1.39, "feet"),
  32932. name: "Mouth",
  32933. image: {
  32934. source: "./media/characters/ryth/mouth.svg"
  32935. }
  32936. },
  32937. tailmaw: {
  32938. height: math.unit(1.23, "feet"),
  32939. name: "Tailmaw",
  32940. image: {
  32941. source: "./media/characters/ryth/tailmaw.svg"
  32942. }
  32943. },
  32944. goia: {
  32945. height: math.unit(4, "meters"),
  32946. weight: math.unit(10800, "lb"),
  32947. name: "Goia",
  32948. image: {
  32949. source: "./media/characters/ryth/goia.svg",
  32950. extra: 745/640,
  32951. bottom: 107/852
  32952. }
  32953. },
  32954. goiaFront: {
  32955. height: math.unit(4, "meters"),
  32956. weight: math.unit(10800, "lb"),
  32957. name: "Goia (Front)",
  32958. image: {
  32959. source: "./media/characters/ryth/goia-front.svg",
  32960. extra: 750/586,
  32961. bottom: 114/864
  32962. }
  32963. },
  32964. goiaMaw: {
  32965. height: math.unit(5.55, "feet"),
  32966. name: "Goia Maw",
  32967. image: {
  32968. source: "./media/characters/ryth/goia-maw.svg"
  32969. }
  32970. },
  32971. goiaForepaw: {
  32972. height: math.unit(3.5, "feet"),
  32973. name: "Goia Forepaw",
  32974. image: {
  32975. source: "./media/characters/ryth/goia-forepaw.svg"
  32976. }
  32977. },
  32978. goiaHindpaw: {
  32979. height: math.unit(5.55, "feet"),
  32980. name: "Goia Hindpaw",
  32981. image: {
  32982. source: "./media/characters/ryth/goia-hindpaw.svg"
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(4, "feet"),
  32990. default: true
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(7, "feet"),
  32999. weight: math.unit(180, "lb"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/necrolance/front.svg",
  33003. extra: 1062/947,
  33004. bottom: 41/1103
  33005. }
  33006. },
  33007. back: {
  33008. height: math.unit(7, "feet"),
  33009. weight: math.unit(180, "lb"),
  33010. name: "Back",
  33011. image: {
  33012. source: "./media/characters/necrolance/back.svg",
  33013. extra: 1045/984,
  33014. bottom: 14/1059
  33015. }
  33016. },
  33017. wing: {
  33018. height: math.unit(2.67, "feet"),
  33019. name: "Wing",
  33020. image: {
  33021. source: "./media/characters/necrolance/wing.svg"
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(7, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33035. {
  33036. front: {
  33037. height: math.unit(76, "meters"),
  33038. weight: math.unit(30000, "tons"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/tyler/front.svg",
  33042. extra: 1640/1640,
  33043. bottom: 114/1754
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Macro",
  33050. height: math.unit(76, "meters"),
  33051. default: true
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(4 + 11/12, "feet"),
  33060. weight: math.unit(132, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/icey/front.svg",
  33064. extra: 2750/2550,
  33065. bottom: 33/2783
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(4 + 11/12, "feet"),
  33070. weight: math.unit(132, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/icey/back.svg",
  33074. extra: 2624/2481,
  33075. bottom: 35/2659
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(4 + 11/12, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(100, "feet"),
  33092. weight: math.unit(0, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/smile/front.svg",
  33096. extra: 2983/2912,
  33097. bottom: 162/3145
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(100, "feet"),
  33102. weight: math.unit(0, "lb"),
  33103. name: "Back",
  33104. image: {
  33105. source: "./media/characters/smile/back.svg",
  33106. extra: 3143/3031,
  33107. bottom: 91/3234
  33108. }
  33109. },
  33110. head: {
  33111. height: math.unit(26.3, "feet"),
  33112. weight: math.unit(0, "lb"),
  33113. name: "Head",
  33114. image: {
  33115. source: "./media/characters/smile/head.svg"
  33116. }
  33117. },
  33118. collar: {
  33119. height: math.unit(5.3, "feet"),
  33120. weight: math.unit(0, "lb"),
  33121. name: "Collar",
  33122. image: {
  33123. source: "./media/characters/smile/collar.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(100, "feet"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33137. {
  33138. dragon: {
  33139. height: math.unit(26, "feet"),
  33140. weight: math.unit(36, "tons"),
  33141. name: "Dragon",
  33142. image: {
  33143. source: "./media/characters/arimphae/dragon.svg",
  33144. extra: 1574/983,
  33145. bottom: 357/1931
  33146. }
  33147. },
  33148. drake: {
  33149. height: math.unit(9, "feet"),
  33150. weight: math.unit(1.5, "tons"),
  33151. name: "Drake",
  33152. image: {
  33153. source: "./media/characters/arimphae/drake.svg",
  33154. extra: 1120/925,
  33155. bottom: 435/1555
  33156. }
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Small",
  33162. height: math.unit(26*5/9, "feet")
  33163. },
  33164. {
  33165. name: "Normal",
  33166. height: math.unit(26, "feet"),
  33167. default: true
  33168. },
  33169. ]
  33170. ))
  33171. characterMakers.push(() => makeCharacter(
  33172. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33173. {
  33174. front: {
  33175. height: math.unit(8 + 9/12, "feet"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/xander/front.svg",
  33179. extra: 1237/974,
  33180. bottom: 94/1331
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(8 + 9/12, "feet"),
  33188. default: true
  33189. },
  33190. {
  33191. name: "Gaze Grabber",
  33192. height: math.unit(13 + 8/12, "feet")
  33193. },
  33194. {
  33195. name: "Jaw Dropper",
  33196. height: math.unit(27, "feet")
  33197. },
  33198. {
  33199. name: "Show Stopper",
  33200. height: math.unit(136, "feet")
  33201. },
  33202. {
  33203. name: "Superstar",
  33204. height: math.unit(1.9e6, "miles")
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33210. {
  33211. side: {
  33212. height: math.unit(2100, "feet"),
  33213. name: "Side",
  33214. image: {
  33215. source: "./media/characters/osiris/side.svg",
  33216. extra: 1105/939,
  33217. bottom: 167/1272
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(2100, "feet"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6 + 8/12, "feet"),
  33234. weight: math.unit(225, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/rhys-londe/front.svg",
  33238. extra: 2258/2141,
  33239. bottom: 188/2446
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6 + 8/12, "feet"),
  33244. weight: math.unit(225, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/rhys-londe/back.svg",
  33248. extra: 2237/2137,
  33249. bottom: 63/2300
  33250. }
  33251. },
  33252. frontNsfw: {
  33253. height: math.unit(6 + 8/12, "feet"),
  33254. weight: math.unit(225, "lb"),
  33255. name: "Front (NSFW)",
  33256. image: {
  33257. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33258. extra: 2258/2141,
  33259. bottom: 188/2446
  33260. }
  33261. },
  33262. backNsfw: {
  33263. height: math.unit(6 + 8/12, "feet"),
  33264. weight: math.unit(225, "lb"),
  33265. name: "Back (NSFW)",
  33266. image: {
  33267. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33268. extra: 2237/2137,
  33269. bottom: 63/2300
  33270. }
  33271. },
  33272. dick: {
  33273. height: math.unit(30, "inches"),
  33274. name: "Dick",
  33275. image: {
  33276. source: "./media/characters/rhys-londe/dick.svg"
  33277. }
  33278. },
  33279. maw: {
  33280. height: math.unit(1.6, "feet"),
  33281. name: "Maw",
  33282. image: {
  33283. source: "./media/characters/rhys-londe/maw.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(6 + 8/12, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(3 + 10/12, "feet"),
  33300. weight: math.unit(90, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/taivas-ensim/front.svg",
  33304. extra: 1327/1216,
  33305. bottom: 96/1423
  33306. }
  33307. },
  33308. back: {
  33309. height: math.unit(3 + 10/12, "feet"),
  33310. weight: math.unit(90, "lb"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/taivas-ensim/back.svg",
  33314. extra: 1355/1247,
  33315. bottom: 11/1366
  33316. }
  33317. },
  33318. frontNsfw: {
  33319. height: math.unit(3 + 10/12, "feet"),
  33320. weight: math.unit(90, "lb"),
  33321. name: "Front (NSFW)",
  33322. image: {
  33323. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33324. extra: 1327/1216,
  33325. bottom: 96/1423
  33326. }
  33327. },
  33328. backNsfw: {
  33329. height: math.unit(3 + 10/12, "feet"),
  33330. weight: math.unit(90, "lb"),
  33331. name: "Back (NSFW)",
  33332. image: {
  33333. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33334. extra: 1355/1247,
  33335. bottom: 11/1366
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(3 + 10/12, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(9 + 6/12, "feet"),
  33352. weight: math.unit(940, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/byliss/front.svg",
  33356. extra: 1327/1290,
  33357. bottom: 82/1409
  33358. }
  33359. },
  33360. back: {
  33361. height: math.unit(9 + 6/12, "feet"),
  33362. weight: math.unit(940, "lb"),
  33363. name: "Back",
  33364. image: {
  33365. source: "./media/characters/byliss/back.svg",
  33366. extra: 1376/1349,
  33367. bottom: 9/1385
  33368. }
  33369. },
  33370. frontNsfw: {
  33371. height: math.unit(9 + 6/12, "feet"),
  33372. weight: math.unit(940, "lb"),
  33373. name: "Front (NSFW)",
  33374. image: {
  33375. source: "./media/characters/byliss/front-nsfw.svg",
  33376. extra: 1327/1290,
  33377. bottom: 82/1409
  33378. }
  33379. },
  33380. backNsfw: {
  33381. height: math.unit(9 + 6/12, "feet"),
  33382. weight: math.unit(940, "lb"),
  33383. name: "Back (NSFW)",
  33384. image: {
  33385. source: "./media/characters/byliss/back-nsfw.svg",
  33386. extra: 1376/1349,
  33387. bottom: 9/1385
  33388. }
  33389. },
  33390. },
  33391. [
  33392. {
  33393. name: "Normal",
  33394. height: math.unit(9 + 6/12, "feet"),
  33395. default: true
  33396. },
  33397. ]
  33398. ))
  33399. characterMakers.push(() => makeCharacter(
  33400. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33401. {
  33402. front: {
  33403. height: math.unit(5 + 2/12, "feet"),
  33404. weight: math.unit(200, "lb"),
  33405. name: "Front",
  33406. image: {
  33407. source: "./media/characters/noraly/front.svg",
  33408. extra: 4985/4773,
  33409. bottom: 150/5135
  33410. }
  33411. },
  33412. full: {
  33413. height: math.unit(5 + 2/12, "feet"),
  33414. weight: math.unit(164, "lb"),
  33415. name: "Full",
  33416. image: {
  33417. source: "./media/characters/noraly/full.svg",
  33418. extra: 1114/1059,
  33419. bottom: 35/1149
  33420. }
  33421. },
  33422. fuller: {
  33423. height: math.unit(5 + 2/12, "feet"),
  33424. weight: math.unit(230, "lb"),
  33425. name: "Fuller",
  33426. image: {
  33427. source: "./media/characters/noraly/fuller.svg",
  33428. extra: 1114/1059,
  33429. bottom: 35/1149
  33430. }
  33431. },
  33432. fullest: {
  33433. height: math.unit(5 + 2/12, "feet"),
  33434. weight: math.unit(300, "lb"),
  33435. name: "Fullest",
  33436. image: {
  33437. source: "./media/characters/noraly/fullest.svg",
  33438. extra: 1114/1059,
  33439. bottom: 35/1149
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(5 + 2/12, "feet"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33453. {
  33454. front: {
  33455. height: math.unit(5 + 2/12, "feet"),
  33456. weight: math.unit(210, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/pera/front.svg",
  33460. extra: 1560/1531,
  33461. bottom: 165/1725
  33462. }
  33463. },
  33464. back: {
  33465. height: math.unit(5 + 2/12, "feet"),
  33466. weight: math.unit(210, "lb"),
  33467. name: "Back",
  33468. image: {
  33469. source: "./media/characters/pera/back.svg",
  33470. extra: 1523/1493,
  33471. bottom: 152/1675
  33472. }
  33473. },
  33474. dick: {
  33475. height: math.unit(2.4, "feet"),
  33476. name: "Dick",
  33477. image: {
  33478. source: "./media/characters/pera/dick.svg"
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 2/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(12, "feet"),
  33495. weight: math.unit(3200, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/julian/front.svg",
  33499. extra: 2962/2701,
  33500. bottom: 184/3146
  33501. }
  33502. },
  33503. maw: {
  33504. height: math.unit(5.35, "feet"),
  33505. name: "Maw",
  33506. image: {
  33507. source: "./media/characters/julian/maw.svg"
  33508. }
  33509. },
  33510. paw: {
  33511. height: math.unit(3.07, "feet"),
  33512. name: "Paw",
  33513. image: {
  33514. source: "./media/characters/julian/paw.svg"
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Default",
  33521. height: math.unit(12, "feet"),
  33522. default: true
  33523. },
  33524. {
  33525. name: "Big",
  33526. height: math.unit(50, "feet")
  33527. },
  33528. {
  33529. name: "Really Big",
  33530. height: math.unit(1, "mile")
  33531. },
  33532. {
  33533. name: "Extremely Big",
  33534. height: math.unit(100, "miles")
  33535. },
  33536. {
  33537. name: "Planet Hugger",
  33538. height: math.unit(200, "megameters")
  33539. },
  33540. {
  33541. name: "Unreasonably Big",
  33542. height: math.unit(1e300, "meters")
  33543. },
  33544. ]
  33545. ))
  33546. characterMakers.push(() => makeCharacter(
  33547. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33548. {
  33549. solgooleo: {
  33550. height: math.unit(4, "meters"),
  33551. weight: math.unit(6000*1.5, "kg"),
  33552. volume: math.unit(6000, "liters"),
  33553. name: "Solgooleo",
  33554. image: {
  33555. source: "./media/characters/pi/solgooleo.svg",
  33556. extra: 388/331,
  33557. bottom: 29/417
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(4, "meters"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(8, "feet"),
  33574. weight: math.unit(4, "tons"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/shaun/front.svg",
  33578. extra: 503/495,
  33579. bottom: 20/523
  33580. }
  33581. },
  33582. back: {
  33583. height: math.unit(8, "feet"),
  33584. weight: math.unit(4, "tons"),
  33585. name: "Back",
  33586. image: {
  33587. source: "./media/characters/shaun/back.svg",
  33588. extra: 487/480,
  33589. bottom: 20/507
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Lorg",
  33596. height: math.unit(8, "feet"),
  33597. default: true
  33598. },
  33599. ]
  33600. ))
  33601. characterMakers.push(() => makeCharacter(
  33602. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33603. {
  33604. frontAnthro: {
  33605. height: math.unit(7, "feet"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/sini/front-anthro.svg",
  33609. extra: 726/678,
  33610. bottom: 35/761
  33611. },
  33612. form: "anthro",
  33613. default: true
  33614. },
  33615. backAnthro: {
  33616. height: math.unit(7, "feet"),
  33617. name: "Back",
  33618. image: {
  33619. source: "./media/characters/sini/back-anthro.svg",
  33620. extra: 743/701,
  33621. bottom: 12/755
  33622. },
  33623. form: "anthro",
  33624. },
  33625. frontAnthroNsfw: {
  33626. height: math.unit(7, "feet"),
  33627. name: "Front (NSFW)",
  33628. image: {
  33629. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33630. extra: 726/678,
  33631. bottom: 35/761
  33632. },
  33633. form: "anthro"
  33634. },
  33635. backAnthroNsfw: {
  33636. height: math.unit(7, "feet"),
  33637. name: "Back (NSFW)",
  33638. image: {
  33639. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33640. extra: 743/701,
  33641. bottom: 12/755
  33642. },
  33643. form: "anthro",
  33644. },
  33645. mawAnthro: {
  33646. height: math.unit(2.14, "feet"),
  33647. name: "Maw",
  33648. image: {
  33649. source: "./media/characters/sini/maw-anthro.svg"
  33650. },
  33651. form: "anthro"
  33652. },
  33653. dick: {
  33654. height: math.unit(1.45, "feet"),
  33655. name: "Dick",
  33656. image: {
  33657. source: "./media/characters/sini/dick-anthro.svg"
  33658. },
  33659. form: "anthro"
  33660. },
  33661. feral: {
  33662. height: math.unit(16, "feet"),
  33663. name: "Feral",
  33664. image: {
  33665. source: "./media/characters/sini/feral.svg",
  33666. extra: 814/605,
  33667. bottom: 11/825
  33668. },
  33669. form: "feral",
  33670. default: true
  33671. },
  33672. feralNsfw: {
  33673. height: math.unit(16, "feet"),
  33674. name: "Feral (NSFW)",
  33675. image: {
  33676. source: "./media/characters/sini/feral-nsfw.svg",
  33677. extra: 814/605,
  33678. bottom: 11/825
  33679. },
  33680. form: "feral"
  33681. },
  33682. mawFeral: {
  33683. height: math.unit(5.66, "feet"),
  33684. name: "Maw",
  33685. image: {
  33686. source: "./media/characters/sini/maw-feral.svg"
  33687. },
  33688. form: "feral",
  33689. },
  33690. pawFeral: {
  33691. height: math.unit(5.17, "feet"),
  33692. name: "Paw",
  33693. image: {
  33694. source: "./media/characters/sini/paw-feral.svg"
  33695. },
  33696. form: "feral",
  33697. },
  33698. rumpFeral: {
  33699. height: math.unit(13.11, "feet"),
  33700. name: "Rump",
  33701. image: {
  33702. source: "./media/characters/sini/rump-feral.svg"
  33703. },
  33704. form: "feral",
  33705. },
  33706. dickFeral: {
  33707. height: math.unit(1, "feet"),
  33708. name: "Dick",
  33709. image: {
  33710. source: "./media/characters/sini/dick-feral.svg"
  33711. },
  33712. form: "feral",
  33713. },
  33714. eyeFeral: {
  33715. height: math.unit(1.23, "feet"),
  33716. name: "Eye",
  33717. image: {
  33718. source: "./media/characters/sini/eye-feral.svg"
  33719. },
  33720. form: "feral",
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(7, "feet"),
  33727. default: true,
  33728. form: "anthro"
  33729. },
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(16, "feet"),
  33733. default: true,
  33734. form: "feral"
  33735. },
  33736. ],
  33737. {
  33738. "anthro": {
  33739. name: "Anthro",
  33740. default: true
  33741. },
  33742. "feral": {
  33743. name: "Feral",
  33744. }
  33745. }
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33749. {
  33750. side: {
  33751. height: math.unit(13, "meters"),
  33752. weight: math.unit(9072, "kg"),
  33753. name: "Side",
  33754. image: {
  33755. source: "./media/characters/raylldo/side.svg",
  33756. extra: 403/344,
  33757. bottom: 42/445
  33758. }
  33759. },
  33760. leaping: {
  33761. height: math.unit(12.3, "meters"),
  33762. weight: math.unit(9072, "kg"),
  33763. name: "Leaping",
  33764. image: {
  33765. source: "./media/characters/raylldo/leaping.svg",
  33766. extra: 470/249,
  33767. bottom: 13/483
  33768. }
  33769. },
  33770. flying: {
  33771. height: math.unit(18, "meters"),
  33772. weight: math.unit(9072, "kg"),
  33773. name: "Flying",
  33774. image: {
  33775. source: "./media/characters/raylldo/flying.svg"
  33776. }
  33777. },
  33778. head: {
  33779. height: math.unit(5.85, "meters"),
  33780. name: "Head",
  33781. image: {
  33782. source: "./media/characters/raylldo/head.svg"
  33783. }
  33784. },
  33785. maw: {
  33786. height: math.unit(5.32, "meters"),
  33787. name: "Maw",
  33788. image: {
  33789. source: "./media/characters/raylldo/maw.svg"
  33790. }
  33791. },
  33792. eye: {
  33793. height: math.unit(0.54, "meters"),
  33794. name: "Eye",
  33795. image: {
  33796. source: "./media/characters/raylldo/eye.svg"
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(13, "meters"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33810. {
  33811. anthroFront: {
  33812. height: math.unit(9, "feet"),
  33813. weight: math.unit(600, "lb"),
  33814. name: "Anthro (Front)",
  33815. image: {
  33816. source: "./media/characters/glint/anthro-front.svg",
  33817. extra: 1097/1018,
  33818. bottom: 28/1125
  33819. }
  33820. },
  33821. anthroBack: {
  33822. height: math.unit(9, "feet"),
  33823. weight: math.unit(600, "lb"),
  33824. name: "Anthro (Back)",
  33825. image: {
  33826. source: "./media/characters/glint/anthro-back.svg",
  33827. extra: 1154/997,
  33828. bottom: 36/1190
  33829. }
  33830. },
  33831. feral: {
  33832. height: math.unit(11, "feet"),
  33833. weight: math.unit(50000, "lb"),
  33834. name: "Feral",
  33835. image: {
  33836. source: "./media/characters/glint/feral.svg",
  33837. extra: 3035/1585,
  33838. bottom: 1169/4204
  33839. }
  33840. },
  33841. dickAnthro: {
  33842. height: math.unit(0.7, "meters"),
  33843. name: "Dick (Anthro)",
  33844. image: {
  33845. source: "./media/characters/glint/dick-anthro.svg"
  33846. }
  33847. },
  33848. dickFeral: {
  33849. height: math.unit(2.65, "meters"),
  33850. name: "Dick (Feral)",
  33851. image: {
  33852. source: "./media/characters/glint/dick-feral.svg"
  33853. }
  33854. },
  33855. slitHidden: {
  33856. height: math.unit(5.85, "meters"),
  33857. name: "Slit (Hidden)",
  33858. image: {
  33859. source: "./media/characters/glint/slit-hidden.svg"
  33860. }
  33861. },
  33862. slitErect: {
  33863. height: math.unit(5.85, "meters"),
  33864. name: "Slit (Erect)",
  33865. image: {
  33866. source: "./media/characters/glint/slit-erect.svg"
  33867. }
  33868. },
  33869. mawAnthro: {
  33870. height: math.unit(0.63, "meters"),
  33871. name: "Maw (Anthro)",
  33872. image: {
  33873. source: "./media/characters/glint/maw.svg"
  33874. }
  33875. },
  33876. mawFeral: {
  33877. height: math.unit(2.89, "meters"),
  33878. name: "Maw (Feral)",
  33879. image: {
  33880. source: "./media/characters/glint/maw.svg"
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(9, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33894. {
  33895. side: {
  33896. height: math.unit(15, "feet"),
  33897. weight: math.unit(5000, "kg"),
  33898. name: "Side",
  33899. image: {
  33900. source: "./media/characters/kairne/side.svg",
  33901. extra: 979/811,
  33902. bottom: 13/992
  33903. }
  33904. },
  33905. front: {
  33906. height: math.unit(15, "feet"),
  33907. weight: math.unit(5000, "kg"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/kairne/front.svg",
  33911. extra: 908/814,
  33912. bottom: 26/934
  33913. }
  33914. },
  33915. sideNsfw: {
  33916. height: math.unit(15, "feet"),
  33917. weight: math.unit(5000, "kg"),
  33918. name: "Side (NSFW)",
  33919. image: {
  33920. source: "./media/characters/kairne/side-nsfw.svg",
  33921. extra: 979/811,
  33922. bottom: 13/992
  33923. }
  33924. },
  33925. frontNsfw: {
  33926. height: math.unit(15, "feet"),
  33927. weight: math.unit(5000, "kg"),
  33928. name: "Front (NSFW)",
  33929. image: {
  33930. source: "./media/characters/kairne/front-nsfw.svg",
  33931. extra: 908/814,
  33932. bottom: 26/934
  33933. }
  33934. },
  33935. dickCaged: {
  33936. height: math.unit(0.65, "meters"),
  33937. name: "Dick-caged",
  33938. image: {
  33939. source: "./media/characters/kairne/dick-caged.svg"
  33940. }
  33941. },
  33942. dick: {
  33943. height: math.unit(0.79, "meters"),
  33944. name: "Dick",
  33945. image: {
  33946. source: "./media/characters/kairne/dick.svg"
  33947. }
  33948. },
  33949. genitals: {
  33950. height: math.unit(1.29, "meters"),
  33951. name: "Genitals",
  33952. image: {
  33953. source: "./media/characters/kairne/genitals.svg"
  33954. }
  33955. },
  33956. maw: {
  33957. height: math.unit(1.73, "meters"),
  33958. name: "Maw",
  33959. image: {
  33960. source: "./media/characters/kairne/maw.svg"
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(15, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(5 + 8/12, "feet"),
  33977. weight: math.unit(139, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/biscuit-jackal/front.svg",
  33981. extra: 2106/1961,
  33982. bottom: 58/2164
  33983. }
  33984. },
  33985. back: {
  33986. height: math.unit(5 + 8/12, "feet"),
  33987. weight: math.unit(139, "lb"),
  33988. name: "Back",
  33989. image: {
  33990. source: "./media/characters/biscuit-jackal/back.svg",
  33991. extra: 2132/1976,
  33992. bottom: 57/2189
  33993. }
  33994. },
  33995. werejackal: {
  33996. height: math.unit(6 + 3/12, "feet"),
  33997. weight: math.unit(188, "lb"),
  33998. name: "Werejackal",
  33999. image: {
  34000. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34001. extra: 2373/2178,
  34002. bottom: 53/2426
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(5 + 8/12, "feet"),
  34010. default: true
  34011. },
  34012. ]
  34013. ))
  34014. characterMakers.push(() => makeCharacter(
  34015. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34016. {
  34017. front: {
  34018. height: math.unit(140, "cm"),
  34019. weight: math.unit(45, "kg"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/tayra-white/front.svg",
  34023. extra: 2229/2192,
  34024. bottom: 75/2304
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(140, "cm"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(4 + 5/12, "feet"),
  34041. name: "Front",
  34042. image: {
  34043. source: "./media/characters/scoop/front.svg",
  34044. extra: 1257/1136,
  34045. bottom: 69/1326
  34046. }
  34047. },
  34048. back: {
  34049. height: math.unit(4 + 5/12, "feet"),
  34050. name: "Back",
  34051. image: {
  34052. source: "./media/characters/scoop/back.svg",
  34053. extra: 1321/1152,
  34054. bottom: 32/1353
  34055. }
  34056. },
  34057. maw: {
  34058. height: math.unit(0.68, "feet"),
  34059. name: "Maw",
  34060. image: {
  34061. source: "./media/characters/scoop/maw.svg"
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Really Small",
  34068. height: math.unit(1, "mm")
  34069. },
  34070. {
  34071. name: "Micro",
  34072. height: math.unit(1, "inch")
  34073. },
  34074. {
  34075. name: "Normal",
  34076. height: math.unit(4 + 5/12, "feet"),
  34077. default: true
  34078. },
  34079. {
  34080. name: "Macro",
  34081. height: math.unit(200, "feet")
  34082. },
  34083. {
  34084. name: "Megamacro",
  34085. height: math.unit(3240, "feet")
  34086. },
  34087. {
  34088. name: "Teramacro",
  34089. height: math.unit(2500, "miles")
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(15 + 7/12, "feet"),
  34098. weight: math.unit(1150, "tons"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/saphinara/front.svg",
  34102. extra: 1837/1643,
  34103. bottom: 84/1921
  34104. },
  34105. form: "normal",
  34106. default: true
  34107. },
  34108. side: {
  34109. height: math.unit(15 + 7/12, "feet"),
  34110. weight: math.unit(1150, "tons"),
  34111. name: "Side",
  34112. image: {
  34113. source: "./media/characters/saphinara/side.svg",
  34114. extra: 605/547,
  34115. bottom: 6/611
  34116. },
  34117. form: "normal"
  34118. },
  34119. back: {
  34120. height: math.unit(15 + 7/12, "feet"),
  34121. weight: math.unit(1150, "tons"),
  34122. name: "Back",
  34123. image: {
  34124. source: "./media/characters/saphinara/back.svg",
  34125. extra: 591/531,
  34126. bottom: 13/604
  34127. },
  34128. form: "normal"
  34129. },
  34130. frontTail: {
  34131. height: math.unit(15 + 7/12, "feet"),
  34132. weight: math.unit(1150, "tons"),
  34133. name: "Front (Full Tail)",
  34134. image: {
  34135. source: "./media/characters/saphinara/front-tail.svg",
  34136. extra: 2256/1630,
  34137. bottom: 261/2517
  34138. },
  34139. form: "normal"
  34140. },
  34141. insides: {
  34142. height: math.unit(11.92, "feet"),
  34143. name: "Insides",
  34144. image: {
  34145. source: "./media/characters/saphinara/insides.svg"
  34146. },
  34147. form: "normal"
  34148. },
  34149. head: {
  34150. height: math.unit(4.17, "feet"),
  34151. name: "Head",
  34152. image: {
  34153. source: "./media/characters/saphinara/head.svg"
  34154. },
  34155. form: "normal"
  34156. },
  34157. tongue: {
  34158. height: math.unit(4.60, "feet"),
  34159. name: "Tongue",
  34160. image: {
  34161. source: "./media/characters/saphinara/tongue.svg"
  34162. },
  34163. form: "normal"
  34164. },
  34165. headEnraged: {
  34166. height: math.unit(5.55, "feet"),
  34167. name: "Head (Enraged)",
  34168. image: {
  34169. source: "./media/characters/saphinara/head-enraged.svg"
  34170. },
  34171. form: "normal"
  34172. },
  34173. wings: {
  34174. height: math.unit(11.95, "feet"),
  34175. name: "Wings",
  34176. image: {
  34177. source: "./media/characters/saphinara/wings.svg"
  34178. },
  34179. form: "normal"
  34180. },
  34181. feathers: {
  34182. height: math.unit(8.92, "feet"),
  34183. name: "Feathers",
  34184. image: {
  34185. source: "./media/characters/saphinara/feathers.svg"
  34186. },
  34187. form: "normal"
  34188. },
  34189. shackles: {
  34190. height: math.unit(2, "feet"),
  34191. name: "Shackles",
  34192. image: {
  34193. source: "./media/characters/saphinara/shackles.svg"
  34194. },
  34195. form: "normal"
  34196. },
  34197. eyes: {
  34198. height: math.unit(1.331, "feet"),
  34199. name: "Eyes",
  34200. image: {
  34201. source: "./media/characters/saphinara/eyes.svg"
  34202. },
  34203. form: "normal"
  34204. },
  34205. eyesEnraged: {
  34206. height: math.unit(1.331, "feet"),
  34207. name: "Eyes (Enraged)",
  34208. image: {
  34209. source: "./media/characters/saphinara/eyes-enraged.svg"
  34210. },
  34211. form: "normal"
  34212. },
  34213. trueFormSide: {
  34214. height: math.unit(200, "feet"),
  34215. weight: math.unit(1e7, "tons"),
  34216. name: "Side",
  34217. image: {
  34218. source: "./media/characters/saphinara/true-form-side.svg",
  34219. extra: 1399/770,
  34220. bottom: 97/1496
  34221. },
  34222. form: "true-form",
  34223. default: true
  34224. },
  34225. trueFormMaw: {
  34226. height: math.unit(71.5, "feet"),
  34227. name: "Maw",
  34228. image: {
  34229. source: "./media/characters/saphinara/true-form-maw.svg",
  34230. extra: 2302/1453,
  34231. bottom: 0/2302
  34232. },
  34233. form: "true-form"
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(15 + 7/12, "feet"),
  34240. default: true,
  34241. form: "normal"
  34242. },
  34243. {
  34244. name: "Angry",
  34245. height: math.unit(30 + 6/12, "feet"),
  34246. form: "normal"
  34247. },
  34248. {
  34249. name: "Enraged",
  34250. height: math.unit(102 + 1/12, "feet"),
  34251. form: "normal"
  34252. },
  34253. {
  34254. name: "True",
  34255. height: math.unit(200, "feet"),
  34256. default: true,
  34257. form: "true-form"
  34258. }
  34259. ],
  34260. {
  34261. "normal": {
  34262. name: "Normal",
  34263. default: true
  34264. },
  34265. "true-form": {
  34266. name: "True Form"
  34267. }
  34268. }
  34269. ))
  34270. characterMakers.push(() => makeCharacter(
  34271. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34272. {
  34273. front: {
  34274. height: math.unit(6 + 8/12, "feet"),
  34275. weight: math.unit(300, "lb"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/jrain/front.svg",
  34279. extra: 3039/2865,
  34280. bottom: 399/3438
  34281. }
  34282. },
  34283. back: {
  34284. height: math.unit(6 + 8/12, "feet"),
  34285. weight: math.unit(300, "lb"),
  34286. name: "Back",
  34287. image: {
  34288. source: "./media/characters/jrain/back.svg",
  34289. extra: 3089/2938,
  34290. bottom: 172/3261
  34291. }
  34292. },
  34293. head: {
  34294. height: math.unit(2.14, "feet"),
  34295. name: "Head",
  34296. image: {
  34297. source: "./media/characters/jrain/head.svg"
  34298. }
  34299. },
  34300. maw: {
  34301. height: math.unit(1.77, "feet"),
  34302. name: "Maw",
  34303. image: {
  34304. source: "./media/characters/jrain/maw.svg"
  34305. }
  34306. },
  34307. leftHand: {
  34308. height: math.unit(1.1, "feet"),
  34309. name: "Left Hand",
  34310. image: {
  34311. source: "./media/characters/jrain/left-hand.svg"
  34312. }
  34313. },
  34314. rightHand: {
  34315. height: math.unit(1.1, "feet"),
  34316. name: "Right Hand",
  34317. image: {
  34318. source: "./media/characters/jrain/right-hand.svg"
  34319. }
  34320. },
  34321. eye: {
  34322. height: math.unit(0.35, "feet"),
  34323. name: "Eye",
  34324. image: {
  34325. source: "./media/characters/jrain/eye.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(6 + 8/12, "feet"),
  34333. default: true
  34334. },
  34335. {
  34336. name: "Casually Large",
  34337. height: math.unit(25, "feet")
  34338. },
  34339. {
  34340. name: "Giant",
  34341. height: math.unit(100, "feet")
  34342. },
  34343. {
  34344. name: "Kaiju",
  34345. height: math.unit(300, "feet")
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34351. {
  34352. dragon: {
  34353. height: math.unit(5, "meters"),
  34354. name: "Dragon",
  34355. image: {
  34356. source: "./media/characters/sabrina/dragon.svg",
  34357. extra: 3670 / 2365,
  34358. bottom: 333 / 4003
  34359. }
  34360. },
  34361. gryphon: {
  34362. height: math.unit(3, "meters"),
  34363. name: "Gryphon",
  34364. image: {
  34365. source: "./media/characters/sabrina/gryphon.svg",
  34366. extra: 1576 / 945,
  34367. bottom: 71 / 1647
  34368. }
  34369. },
  34370. snake: {
  34371. height: math.unit(12, "meters"),
  34372. name: "Snake",
  34373. image: {
  34374. source: "./media/characters/sabrina/snake.svg",
  34375. extra: 1758 / 1320,
  34376. bottom: 186 / 1944
  34377. }
  34378. },
  34379. collar: {
  34380. height: math.unit(1.86, "meters"),
  34381. name: "Collar",
  34382. image: {
  34383. source: "./media/characters/sabrina/collar.svg"
  34384. }
  34385. },
  34386. eye: {
  34387. height: math.unit(0.53, "meters"),
  34388. name: "Eye",
  34389. image: {
  34390. source: "./media/characters/sabrina/eye.svg"
  34391. }
  34392. },
  34393. foot: {
  34394. height: math.unit(1.86, "meters"),
  34395. name: "Foot",
  34396. image: {
  34397. source: "./media/characters/sabrina/foot.svg"
  34398. }
  34399. },
  34400. hand: {
  34401. height: math.unit(1.32, "meters"),
  34402. name: "Hand",
  34403. image: {
  34404. source: "./media/characters/sabrina/hand.svg"
  34405. }
  34406. },
  34407. head: {
  34408. height: math.unit(2.44, "meters"),
  34409. name: "Head",
  34410. image: {
  34411. source: "./media/characters/sabrina/head.svg"
  34412. }
  34413. },
  34414. headAngry: {
  34415. height: math.unit(2.44, "meters"),
  34416. name: "Head (Angry))",
  34417. image: {
  34418. source: "./media/characters/sabrina/head-angry.svg"
  34419. }
  34420. },
  34421. maw: {
  34422. height: math.unit(1.65, "meters"),
  34423. name: "Maw",
  34424. image: {
  34425. source: "./media/characters/sabrina/maw.svg"
  34426. }
  34427. },
  34428. spikes: {
  34429. height: math.unit(1.69, "meters"),
  34430. name: "Spikes",
  34431. image: {
  34432. source: "./media/characters/sabrina/spikes.svg"
  34433. }
  34434. },
  34435. stomach: {
  34436. height: math.unit(1.15, "meters"),
  34437. name: "Stomach",
  34438. image: {
  34439. source: "./media/characters/sabrina/stomach.svg"
  34440. }
  34441. },
  34442. tongue: {
  34443. height: math.unit(1.27, "meters"),
  34444. name: "Tongue",
  34445. image: {
  34446. source: "./media/characters/sabrina/tongue.svg"
  34447. }
  34448. },
  34449. wingDorsal: {
  34450. height: math.unit(4.85, "meters"),
  34451. name: "Wing (Dorsal)",
  34452. image: {
  34453. source: "./media/characters/sabrina/wing-dorsal.svg"
  34454. }
  34455. },
  34456. wingVentral: {
  34457. height: math.unit(4.85, "meters"),
  34458. name: "Wing (Ventral)",
  34459. image: {
  34460. source: "./media/characters/sabrina/wing-ventral.svg"
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(5, "meters"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34474. {
  34475. frontMaid: {
  34476. height: math.unit(5 + 5/12, "feet"),
  34477. weight: math.unit(130, "lb"),
  34478. name: "Front (Maid)",
  34479. image: {
  34480. source: "./media/characters/midnight-tales/front-maid.svg",
  34481. extra: 489/454,
  34482. bottom: 61/550
  34483. }
  34484. },
  34485. frontFormal: {
  34486. height: math.unit(5 + 5/12, "feet"),
  34487. weight: math.unit(130, "lb"),
  34488. name: "Front (Formal)",
  34489. image: {
  34490. source: "./media/characters/midnight-tales/front-formal.svg",
  34491. extra: 489/454,
  34492. bottom: 61/550
  34493. }
  34494. },
  34495. back: {
  34496. height: math.unit(5 + 5/12, "feet"),
  34497. weight: math.unit(130, "lb"),
  34498. name: "Back",
  34499. image: {
  34500. source: "./media/characters/midnight-tales/back.svg",
  34501. extra: 498/456,
  34502. bottom: 33/531
  34503. }
  34504. },
  34505. frontBeast: {
  34506. height: math.unit(40, "feet"),
  34507. weight: math.unit(64000, "lb"),
  34508. name: "Front (Beast)",
  34509. image: {
  34510. source: "./media/characters/midnight-tales/front-beast.svg",
  34511. extra: 927/860,
  34512. bottom: 53/980
  34513. }
  34514. },
  34515. backBeast: {
  34516. height: math.unit(40, "feet"),
  34517. weight: math.unit(64000, "lb"),
  34518. name: "Back (Beast)",
  34519. image: {
  34520. source: "./media/characters/midnight-tales/back-beast.svg",
  34521. extra: 929/855,
  34522. bottom: 16/945
  34523. }
  34524. },
  34525. footBeast: {
  34526. height: math.unit(6.7, "feet"),
  34527. name: "Foot (Beast)",
  34528. image: {
  34529. source: "./media/characters/midnight-tales/foot-beast.svg"
  34530. }
  34531. },
  34532. headBeast: {
  34533. height: math.unit(8, "feet"),
  34534. name: "Head (Beast)",
  34535. image: {
  34536. source: "./media/characters/midnight-tales/head-beast.svg"
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 5 / 12, "feet"),
  34544. default: true
  34545. },
  34546. {
  34547. name: "Macro",
  34548. height: math.unit(25, "feet")
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(5 + 10/12, "feet"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/argon/front.svg",
  34560. extra: 2009/1935,
  34561. bottom: 118/2127
  34562. }
  34563. },
  34564. back: {
  34565. height: math.unit(5 + 10/12, "feet"),
  34566. name: "Back",
  34567. image: {
  34568. source: "./media/characters/argon/back.svg",
  34569. extra: 2047/1992,
  34570. bottom: 20/2067
  34571. }
  34572. },
  34573. frontDressed: {
  34574. height: math.unit(5 + 10/12, "feet"),
  34575. name: "Front (Dressed)",
  34576. image: {
  34577. source: "./media/characters/argon/front-dressed.svg",
  34578. extra: 2009/1935,
  34579. bottom: 118/2127
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(5 + 10/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(8 + 6/12, "feet"),
  34596. weight: math.unit(1150, "lb"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/kichi/front.svg",
  34600. extra: 1267/1164,
  34601. bottom: 61/1328
  34602. }
  34603. },
  34604. back: {
  34605. height: math.unit(8 + 6/12, "feet"),
  34606. weight: math.unit(1150, "lb"),
  34607. name: "Back",
  34608. image: {
  34609. source: "./media/characters/kichi/back.svg",
  34610. extra: 1273/1166,
  34611. bottom: 33/1306
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(8 + 6/12, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(6, "feet"),
  34628. weight: math.unit(210, "lb"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/manetel-greyscale/front.svg",
  34632. extra: 350/312,
  34633. bottom: 8/358
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Micro",
  34640. height: math.unit(2, "inches")
  34641. },
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(6, "feet"),
  34645. default: true
  34646. },
  34647. {
  34648. name: "Minimacro",
  34649. height: math.unit(17, "feet")
  34650. },
  34651. {
  34652. name: "Macro",
  34653. height: math.unit(117, "feet")
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34659. {
  34660. side: {
  34661. height: math.unit(5 + 1/12, "feet"),
  34662. weight: math.unit(418, "lb"),
  34663. name: "Side",
  34664. image: {
  34665. source: "./media/characters/softpurr/side.svg",
  34666. extra: 1993/1945,
  34667. bottom: 134/2127
  34668. }
  34669. },
  34670. front: {
  34671. height: math.unit(5 + 1/12, "feet"),
  34672. weight: math.unit(418, "lb"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/softpurr/front.svg",
  34676. extra: 1950/1856,
  34677. bottom: 174/2124
  34678. }
  34679. },
  34680. paw: {
  34681. height: math.unit(1, "feet"),
  34682. name: "Paw",
  34683. image: {
  34684. source: "./media/characters/softpurr/paw.svg"
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(5 + 1/12, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(260, "meters"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/anahita/front.svg",
  34704. extra: 665/635,
  34705. bottom: 89/754
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Macro",
  34712. height: math.unit(260, "meters"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(4 + 10/12, "feet"),
  34722. weight: math.unit(160, "lb"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/chip-mouse/front.svg",
  34726. extra: 3528/3408,
  34727. bottom: 0/3528
  34728. }
  34729. },
  34730. frontNsfw: {
  34731. height: math.unit(4 + 10/12, "feet"),
  34732. weight: math.unit(160, "lb"),
  34733. name: "Front (NSFW)",
  34734. image: {
  34735. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34736. extra: 3528/3408,
  34737. bottom: 0/3528
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(4 + 10/12, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34751. {
  34752. side: {
  34753. height: math.unit(10, "feet"),
  34754. weight: math.unit(14000, "lb"),
  34755. name: "Side",
  34756. image: {
  34757. source: "./media/characters/kremm/side.svg",
  34758. extra: 1390/1053,
  34759. bottom: 90/1480
  34760. }
  34761. },
  34762. gut: {
  34763. height: math.unit(5.8, "feet"),
  34764. name: "Gut",
  34765. image: {
  34766. source: "./media/characters/kremm/gut.svg"
  34767. }
  34768. },
  34769. ass: {
  34770. height: math.unit(6.1, "feet"),
  34771. name: "Ass",
  34772. image: {
  34773. source: "./media/characters/kremm/ass.svg"
  34774. }
  34775. },
  34776. jaws: {
  34777. height: math.unit(2.2, "feet"),
  34778. name: "Jaws",
  34779. image: {
  34780. source: "./media/characters/kremm/jaws.svg"
  34781. }
  34782. },
  34783. dick: {
  34784. height: math.unit(4.26, "feet"),
  34785. name: "Dick",
  34786. image: {
  34787. source: "./media/characters/kremm/dick.svg"
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(10, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(30, "stories"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/kai/front.svg",
  34807. extra: 1892/1718,
  34808. bottom: 162/2054
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Macro",
  34815. height: math.unit(30, "stories"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(6 + 4/12, "feet"),
  34825. weight: math.unit(145, "lb"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/sykes/front.svg",
  34829. extra: 1321 / 1187,
  34830. bottom: 66 / 1387
  34831. }
  34832. },
  34833. back: {
  34834. height: math.unit(6 + 4/12, "feet"),
  34835. weight: math.unit(145, "lb"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/sykes/back.svg",
  34839. extra: 1326/1181,
  34840. bottom: 31/1357
  34841. }
  34842. },
  34843. traditionalOutfit: {
  34844. height: math.unit(6 + 4/12, "feet"),
  34845. weight: math.unit(145, "lb"),
  34846. name: "Traditional Outfit",
  34847. image: {
  34848. source: "./media/characters/sykes/traditional-outfit.svg",
  34849. extra: 1321 / 1187,
  34850. bottom: 66 / 1387
  34851. }
  34852. },
  34853. adventureOutfit: {
  34854. height: math.unit(6 + 4/12, "feet"),
  34855. weight: math.unit(145, "lb"),
  34856. name: "Adventure Outfit",
  34857. image: {
  34858. source: "./media/characters/sykes/adventure-outfit.svg",
  34859. extra: 1321 / 1187,
  34860. bottom: 66 / 1387
  34861. }
  34862. },
  34863. handLeft: {
  34864. height: math.unit(0.9, "feet"),
  34865. name: "Hand (Left)",
  34866. image: {
  34867. source: "./media/characters/sykes/hand-left.svg"
  34868. }
  34869. },
  34870. handRight: {
  34871. height: math.unit(0.839, "feet"),
  34872. name: "Hand (Right)",
  34873. image: {
  34874. source: "./media/characters/sykes/hand-right.svg"
  34875. }
  34876. },
  34877. leftFoot: {
  34878. height: math.unit(1.2, "feet"),
  34879. name: "Foot (Left)",
  34880. image: {
  34881. source: "./media/characters/sykes/foot-left.svg"
  34882. }
  34883. },
  34884. rightFoot: {
  34885. height: math.unit(1.2, "feet"),
  34886. name: "Foot (Right)",
  34887. image: {
  34888. source: "./media/characters/sykes/foot-right.svg"
  34889. }
  34890. },
  34891. maw: {
  34892. height: math.unit(1.93, "feet"),
  34893. name: "Maw",
  34894. image: {
  34895. source: "./media/characters/sykes/maw.svg"
  34896. }
  34897. },
  34898. teeth: {
  34899. height: math.unit(0.51, "feet"),
  34900. name: "Teeth",
  34901. image: {
  34902. source: "./media/characters/sykes/teeth.svg"
  34903. }
  34904. },
  34905. tongue: {
  34906. height: math.unit(2.13, "feet"),
  34907. name: "Tongue",
  34908. image: {
  34909. source: "./media/characters/sykes/tongue.svg"
  34910. }
  34911. },
  34912. uvula: {
  34913. height: math.unit(0.16, "feet"),
  34914. name: "Uvula",
  34915. image: {
  34916. source: "./media/characters/sykes/uvula.svg"
  34917. }
  34918. },
  34919. collar: {
  34920. height: math.unit(0.287, "feet"),
  34921. name: "Collar",
  34922. image: {
  34923. source: "./media/characters/sykes/collar.svg"
  34924. }
  34925. },
  34926. tail: {
  34927. height: math.unit(3.8, "feet"),
  34928. name: "Tail",
  34929. image: {
  34930. source: "./media/characters/sykes/tail.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Shrunken",
  34937. height: math.unit(5, "inches")
  34938. },
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(6 + 4 / 12, "feet"),
  34942. default: true
  34943. },
  34944. {
  34945. name: "Big",
  34946. height: math.unit(15, "feet")
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(5 + 8/12, "feet"),
  34955. weight: math.unit(190, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/oven-otter/front.svg",
  34959. extra: 1809/1740,
  34960. bottom: 181/1990
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(5 + 8/12, "feet"),
  34965. weight: math.unit(190, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/oven-otter/back.svg",
  34969. extra: 1709/1635,
  34970. bottom: 118/1827
  34971. }
  34972. },
  34973. hand: {
  34974. height: math.unit(1.07, "feet"),
  34975. name: "Hand",
  34976. image: {
  34977. source: "./media/characters/oven-otter/hand.svg"
  34978. }
  34979. },
  34980. beans: {
  34981. height: math.unit(1.74, "feet"),
  34982. name: "Beans",
  34983. image: {
  34984. source: "./media/characters/oven-otter/beans.svg"
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Micro",
  34991. height: math.unit(0.5, "inches")
  34992. },
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(5 + 8/12, "feet"),
  34996. default: true
  34997. },
  34998. {
  34999. name: "Macro",
  35000. height: math.unit(250, "feet")
  35001. },
  35002. {
  35003. name: "Really High",
  35004. height: math.unit(420, "feet")
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(5, "meters"),
  35013. weight: math.unit(292000000000000, "kg"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/devourer/front.svg",
  35017. extra: 1800/1733,
  35018. bottom: 211/2011
  35019. }
  35020. },
  35021. maw: {
  35022. height: math.unit(1.1, "meter"),
  35023. name: "Maw",
  35024. image: {
  35025. source: "./media/characters/devourer/maw.svg"
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Small",
  35032. height: math.unit(3, "meters")
  35033. },
  35034. {
  35035. name: "Large",
  35036. height: math.unit(5, "meters"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35043. {
  35044. front: {
  35045. height: math.unit(6, "feet"),
  35046. weight: math.unit(400, "lb"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/ellarby/front.svg",
  35050. extra: 1909/1763,
  35051. bottom: 80/1989
  35052. }
  35053. },
  35054. back: {
  35055. height: math.unit(6, "feet"),
  35056. weight: math.unit(400, "lb"),
  35057. name: "Back",
  35058. image: {
  35059. source: "./media/characters/ellarby/back.svg",
  35060. extra: 1914/1784,
  35061. bottom: 172/2086
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Mischief",
  35068. height: math.unit(18, "inches")
  35069. },
  35070. {
  35071. name: "Trouble",
  35072. height: math.unit(12, "feet")
  35073. },
  35074. {
  35075. name: "Havoc",
  35076. height: math.unit(200, "feet"),
  35077. default: true
  35078. },
  35079. {
  35080. name: "Pandemonium",
  35081. height: math.unit(1, "mile")
  35082. },
  35083. {
  35084. name: "Catastrophe",
  35085. height: math.unit(100, "miles")
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35091. {
  35092. front: {
  35093. height: math.unit(4.7, "meters"),
  35094. weight: math.unit(6500, "kg"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/vex/front.svg",
  35098. extra: 1288/1140,
  35099. bottom: 100/1388
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(4.7, "meters"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35113. {
  35114. normal: {
  35115. height: math.unit(6, "feet"),
  35116. weight: math.unit(350, "lb"),
  35117. name: "Normal",
  35118. image: {
  35119. source: "./media/characters/teshy/normal.svg",
  35120. extra: 1795/1735,
  35121. bottom: 16/1811
  35122. }
  35123. },
  35124. monsterFront: {
  35125. height: math.unit(12, "feet"),
  35126. weight: math.unit(4700, "lb"),
  35127. name: "Monster (Front)",
  35128. image: {
  35129. source: "./media/characters/teshy/monster-front.svg",
  35130. extra: 2042/2034,
  35131. bottom: 128/2170
  35132. }
  35133. },
  35134. monsterSide: {
  35135. height: math.unit(12, "feet"),
  35136. weight: math.unit(4700, "lb"),
  35137. name: "Monster (Side)",
  35138. image: {
  35139. source: "./media/characters/teshy/monster-side.svg",
  35140. extra: 2067/2056,
  35141. bottom: 70/2137
  35142. }
  35143. },
  35144. monsterBack: {
  35145. height: math.unit(12, "feet"),
  35146. weight: math.unit(4700, "lb"),
  35147. name: "Monster (Back)",
  35148. image: {
  35149. source: "./media/characters/teshy/monster-back.svg",
  35150. extra: 1921/1914,
  35151. bottom: 171/2092
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(6, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(6, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/ramey/front.svg",
  35171. extra: 790/787,
  35172. bottom: 27/817
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(5 + 5/12, "feet"),
  35189. weight: math.unit(120, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/phirae/front.svg",
  35193. extra: 2491/2436,
  35194. bottom: 38/2529
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(5 + 5/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35208. {
  35209. front: {
  35210. height: math.unit(5 + 3/12, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/stagglas/front.svg",
  35214. extra: 962/882,
  35215. bottom: 53/1015
  35216. }
  35217. },
  35218. feral: {
  35219. height: math.unit(335, "cm"),
  35220. name: "Feral",
  35221. image: {
  35222. source: "./media/characters/stagglas/feral.svg",
  35223. extra: 1732/1090,
  35224. bottom: 48/1780
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(5 + 3/12, "feet"),
  35232. default: true
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(5 + 4/12, "feet"),
  35241. weight: math.unit(145, "lb"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/starra/front.svg",
  35245. extra: 1790/1691,
  35246. bottom: 91/1881
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 4/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(2.2, "meters"),
  35263. name: "Front",
  35264. image: {
  35265. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35266. extra: 1194/1005,
  35267. bottom: 25/1219
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(2.2, "meters"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35281. {
  35282. side: {
  35283. height: math.unit(8 + 2/12, "feet"),
  35284. weight: math.unit(1240, "lb"),
  35285. name: "Side",
  35286. image: {
  35287. source: "./media/characters/mika-valentine/side.svg",
  35288. extra: 2670/2501,
  35289. bottom: 250/2920
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(8 + 2/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(7 + 2/12, "feet"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/xoltol/front.svg",
  35309. extra: 2212/2124,
  35310. bottom: 84/2296
  35311. }
  35312. },
  35313. side: {
  35314. height: math.unit(7 + 2/12, "feet"),
  35315. name: "Side",
  35316. image: {
  35317. source: "./media/characters/xoltol/side.svg",
  35318. extra: 2273/2197,
  35319. bottom: 26/2299
  35320. }
  35321. },
  35322. hand: {
  35323. height: math.unit(2.5, "feet"),
  35324. name: "Hand",
  35325. image: {
  35326. source: "./media/characters/xoltol/hand.svg"
  35327. }
  35328. },
  35329. },
  35330. [
  35331. {
  35332. name: "Small-ish",
  35333. height: math.unit(5 + 11/12, "feet")
  35334. },
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(7 + 2/12, "feet")
  35338. },
  35339. {
  35340. name: "\"Macro\"",
  35341. height: math.unit(14 + 9/12, "feet"),
  35342. default: true
  35343. },
  35344. {
  35345. name: "Alternate Height",
  35346. height: math.unit(20, "feet")
  35347. },
  35348. {
  35349. name: "Actually Macro",
  35350. height: math.unit(100, "feet")
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(5 + 2/12, "feet"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/kotetsu-redwood/front.svg",
  35362. extra: 1053/942,
  35363. bottom: 60/1113
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(5 + 2/12, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(2.4, "meters"),
  35380. weight: math.unit(125, "kg"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/lilith/front.svg",
  35384. extra: 1590/1513,
  35385. bottom: 203/1793
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Humanoid",
  35392. height: math.unit(2.4, "meters")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6, "meters"),
  35397. default: true
  35398. },
  35399. {
  35400. name: "Largest",
  35401. height: math.unit(55, "meters")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(8 + 4/12, "feet"),
  35410. weight: math.unit(535, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/beh'kah-bolger/front.svg",
  35414. extra: 1660/1603,
  35415. bottom: 37/1697
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(8 + 4/12, "feet"),
  35423. default: true
  35424. },
  35425. {
  35426. name: "Kaiju",
  35427. height: math.unit(250, "feet")
  35428. },
  35429. {
  35430. name: "Still Growing",
  35431. height: math.unit(10, "miles")
  35432. },
  35433. {
  35434. name: "Continental",
  35435. height: math.unit(5000, "miles")
  35436. },
  35437. {
  35438. name: "Final Form",
  35439. height: math.unit(2500000, "miles")
  35440. },
  35441. ]
  35442. ))
  35443. characterMakers.push(() => makeCharacter(
  35444. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35445. {
  35446. front: {
  35447. height: math.unit(7 + 2/12, "feet"),
  35448. weight: math.unit(230, "kg"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/tatyana-milewska/front.svg",
  35452. extra: 1199/1150,
  35453. bottom: 86/1285
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(7 + 2/12, "feet"),
  35461. default: true
  35462. },
  35463. {
  35464. name: "Big",
  35465. height: math.unit(12, "feet")
  35466. },
  35467. {
  35468. name: "Minimacro",
  35469. height: math.unit(20, "feet")
  35470. },
  35471. {
  35472. name: "Macro",
  35473. height: math.unit(120, "feet")
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35479. {
  35480. front: {
  35481. height: math.unit(7 + 8/12, "feet"),
  35482. weight: math.unit(152, "kg"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/helen-arri/front.svg",
  35486. extra: 440/423,
  35487. bottom: 14/454
  35488. }
  35489. },
  35490. back: {
  35491. height: math.unit(7 + 8/12, "feet"),
  35492. weight: math.unit(152, "kg"),
  35493. name: "Back",
  35494. image: {
  35495. source: "./media/characters/helen-arri/back.svg",
  35496. extra: 443/426,
  35497. bottom: 8/451
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(7 + 8/12, "feet"),
  35505. default: true
  35506. },
  35507. {
  35508. name: "Big",
  35509. height: math.unit(14, "feet")
  35510. },
  35511. {
  35512. name: "Minimacro",
  35513. height: math.unit(24, "feet")
  35514. },
  35515. {
  35516. name: "Macro",
  35517. height: math.unit(140, "feet")
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(6, "meters"),
  35526. name: "Front",
  35527. image: {
  35528. source: "./media/characters/ehanu-rehu/front.svg",
  35529. extra: 1800/1800,
  35530. bottom: 59/1859
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(6, "meters"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(7 + 3/12, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/renholder/front.svg",
  35550. extra: 3096/2960,
  35551. bottom: 250/3346
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal Bat",
  35558. height: math.unit(7 + 3/12, "feet"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Slightly Tall Bat",
  35563. height: math.unit(100, "feet")
  35564. },
  35565. {
  35566. name: "Big Bat",
  35567. height: math.unit(1000, "feet")
  35568. },
  35569. {
  35570. name: "City-Sized Bat",
  35571. height: math.unit(200000, "feet")
  35572. },
  35573. {
  35574. name: "Bigger Bat",
  35575. height: math.unit(10000, "miles")
  35576. },
  35577. {
  35578. name: "Solar Sized Bat",
  35579. height: math.unit(100, "AU")
  35580. },
  35581. {
  35582. name: "Galactic Bat",
  35583. height: math.unit(200000, "lightyears")
  35584. },
  35585. {
  35586. name: "Universally Known Bat",
  35587. height: math.unit(1, "universe")
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(6 + 11/12, "feet"),
  35596. weight: math.unit(250, "lb"),
  35597. name: "Front",
  35598. image: {
  35599. source: "./media/characters/cookiecat/front.svg",
  35600. extra: 893/827,
  35601. bottom: 14/907
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Micro",
  35608. height: math.unit(3, "inches")
  35609. },
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(6 + 11/12, "feet"),
  35613. default: true
  35614. },
  35615. {
  35616. name: "Macro",
  35617. height: math.unit(100, "feet")
  35618. },
  35619. {
  35620. name: "Macro+",
  35621. height: math.unit(404, "feet")
  35622. },
  35623. {
  35624. name: "Megamacro",
  35625. height: math.unit(165, "miles")
  35626. },
  35627. {
  35628. name: "Planetary",
  35629. height: math.unit(4600, "miles")
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35635. {
  35636. front: {
  35637. height: math.unit(10 + 3/12, "feet"),
  35638. weight: math.unit(1500, "lb"),
  35639. name: "Front",
  35640. image: {
  35641. source: "./media/characters/tux-kusanagi/front.svg",
  35642. extra: 944/840,
  35643. bottom: 39/983
  35644. }
  35645. },
  35646. back: {
  35647. height: math.unit(10 + 3/12, "feet"),
  35648. weight: math.unit(1500, "lb"),
  35649. name: "Back",
  35650. image: {
  35651. source: "./media/characters/tux-kusanagi/back.svg",
  35652. extra: 941/842,
  35653. bottom: 28/969
  35654. }
  35655. },
  35656. rump: {
  35657. height: math.unit(5.25, "feet"),
  35658. name: "Rump",
  35659. image: {
  35660. source: "./media/characters/tux-kusanagi/rump.svg"
  35661. }
  35662. },
  35663. beak: {
  35664. height: math.unit(1.54, "feet"),
  35665. name: "Beak",
  35666. image: {
  35667. source: "./media/characters/tux-kusanagi/beak.svg"
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(10 + 3/12, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(58, "feet"),
  35684. weight: math.unit(200, "tons"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/uzarmazari/front.svg",
  35688. extra: 1575/1455,
  35689. bottom: 152/1727
  35690. }
  35691. },
  35692. back: {
  35693. height: math.unit(58, "feet"),
  35694. weight: math.unit(200, "tons"),
  35695. name: "Back",
  35696. image: {
  35697. source: "./media/characters/uzarmazari/back.svg",
  35698. extra: 1585/1510,
  35699. bottom: 157/1742
  35700. }
  35701. },
  35702. head: {
  35703. height: math.unit(26, "feet"),
  35704. name: "Head",
  35705. image: {
  35706. source: "./media/characters/uzarmazari/head.svg"
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(58, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35720. {
  35721. side: {
  35722. height: math.unit(15, "feet"),
  35723. name: "Side",
  35724. image: {
  35725. source: "./media/characters/akitu/side.svg",
  35726. extra: 1421/1321,
  35727. bottom: 157/1578
  35728. }
  35729. },
  35730. front: {
  35731. height: math.unit(15, "feet"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/akitu/front.svg",
  35735. extra: 1435/1326,
  35736. bottom: 232/1667
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(15, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(10 + 8/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/azalie-croixland/front.svg",
  35756. extra: 1972/1856,
  35757. bottom: 31/2003
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Original Height",
  35764. height: math.unit(5 + 4/12, "feet")
  35765. },
  35766. {
  35767. name: "Normal Height",
  35768. height: math.unit(10 + 8/12, "feet"),
  35769. default: true
  35770. },
  35771. ]
  35772. ))
  35773. characterMakers.push(() => makeCharacter(
  35774. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35775. {
  35776. side: {
  35777. height: math.unit(7 + 1/12, "feet"),
  35778. weight: math.unit(245, "lb"),
  35779. name: "Side",
  35780. image: {
  35781. source: "./media/characters/kavus-kazian/side.svg",
  35782. extra: 349/342,
  35783. bottom: 15/364
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(7 + 1/12, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35797. {
  35798. normalFront: {
  35799. height: math.unit(5 + 11/12, "feet"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/moonlight-rose/normal-front.svg",
  35803. extra: 1980/1825,
  35804. bottom: 18/1998
  35805. },
  35806. form: "normal",
  35807. default: true
  35808. },
  35809. normalBack: {
  35810. height: math.unit(5 + 11/12, "feet"),
  35811. name: "Back",
  35812. image: {
  35813. source: "./media/characters/moonlight-rose/normal-back.svg",
  35814. extra: 2010/1839,
  35815. bottom: 10/2020
  35816. },
  35817. form: "normal"
  35818. },
  35819. demonFront: {
  35820. height: math.unit(1.5, "earths"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/moonlight-rose/demon.svg",
  35824. extra: 1400/1294,
  35825. bottom: 45/1445
  35826. },
  35827. form: "demon",
  35828. default: true
  35829. },
  35830. terraFront: {
  35831. height: math.unit(1.5, "earths"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/moonlight-rose/terra.svg"
  35835. },
  35836. form: "terra",
  35837. default: true
  35838. },
  35839. jupiterFront: {
  35840. height: math.unit(69911*2, "km"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35844. extra: 1367/1286,
  35845. bottom: 55/1422
  35846. },
  35847. form: "jupiter",
  35848. default: true
  35849. },
  35850. neptuneFront: {
  35851. height: math.unit(24622*2, "feet"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35855. extra: 1851/1712,
  35856. bottom: 0/1851
  35857. },
  35858. form: "neptune",
  35859. default: true
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "\"Natural\" Height",
  35865. height: math.unit(5 + 11/12, "feet"),
  35866. form: "normal"
  35867. },
  35868. {
  35869. name: "Smallest comfortable size",
  35870. height: math.unit(40, "meters"),
  35871. form: "normal"
  35872. },
  35873. {
  35874. name: "Common size",
  35875. height: math.unit(50, "km"),
  35876. form: "normal",
  35877. default: true
  35878. },
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(1.5, "earths"),
  35882. form: "demon",
  35883. default: true
  35884. },
  35885. {
  35886. name: "Universal",
  35887. height: math.unit(15, "universes"),
  35888. form: "demon"
  35889. },
  35890. {
  35891. name: "Earth",
  35892. height: math.unit(1.5, "earths"),
  35893. form: "terra",
  35894. default: true
  35895. },
  35896. {
  35897. name: "Super Earth",
  35898. height: math.unit(67.5, "earths"),
  35899. form: "terra"
  35900. },
  35901. {
  35902. name: "Doesn't fit in a solar system...",
  35903. height: math.unit(1, "galaxy"),
  35904. form: "terra"
  35905. },
  35906. {
  35907. name: "Saturn",
  35908. height: math.unit(58232*2, "km"),
  35909. form: "jupiter"
  35910. },
  35911. {
  35912. name: "Jupiter",
  35913. height: math.unit(69911*2, "km"),
  35914. form: "jupiter",
  35915. default: true
  35916. },
  35917. {
  35918. name: "HD 100546 b",
  35919. height: math.unit(482938, "km"),
  35920. form: "jupiter"
  35921. },
  35922. {
  35923. name: "Enceladus",
  35924. height: math.unit(513*2, "km"),
  35925. form: "neptune"
  35926. },
  35927. {
  35928. name: "Europe",
  35929. height: math.unit(1560*2, "km"),
  35930. form: "neptune"
  35931. },
  35932. {
  35933. name: "Neptune",
  35934. height: math.unit(24622*2, "km"),
  35935. form: "neptune",
  35936. default: true
  35937. },
  35938. {
  35939. name: "CoRoT-9b",
  35940. height: math.unit(75067*2, "km"),
  35941. form: "neptune"
  35942. },
  35943. ],
  35944. {
  35945. "normal": {
  35946. name: "Normal",
  35947. default: true
  35948. },
  35949. "demon": {
  35950. name: "Demon"
  35951. },
  35952. "terra": {
  35953. name: "Terra"
  35954. },
  35955. "jupiter": {
  35956. name: "Jupiter"
  35957. },
  35958. "neptune": {
  35959. name: "Neptune"
  35960. }
  35961. }
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35965. {
  35966. front: {
  35967. height: math.unit(16, "feet"),
  35968. weight: math.unit(610, "kg"),
  35969. name: "Front",
  35970. image: {
  35971. source: "./media/characters/huckle/front.svg",
  35972. extra: 1731/1625,
  35973. bottom: 33/1764
  35974. }
  35975. },
  35976. back: {
  35977. height: math.unit(16, "feet"),
  35978. weight: math.unit(610, "kg"),
  35979. name: "Back",
  35980. image: {
  35981. source: "./media/characters/huckle/back.svg",
  35982. extra: 1738/1651,
  35983. bottom: 37/1775
  35984. }
  35985. },
  35986. laughing: {
  35987. height: math.unit(3.75, "feet"),
  35988. name: "Laughing",
  35989. image: {
  35990. source: "./media/characters/huckle/laughing.svg"
  35991. }
  35992. },
  35993. angry: {
  35994. height: math.unit(4.15, "feet"),
  35995. name: "Angry",
  35996. image: {
  35997. source: "./media/characters/huckle/angry.svg"
  35998. }
  35999. },
  36000. },
  36001. [
  36002. {
  36003. name: "Normal",
  36004. height: math.unit(16, "feet"),
  36005. default: true
  36006. },
  36007. {
  36008. name: "Mini Macro",
  36009. height: math.unit(463, "feet")
  36010. },
  36011. {
  36012. name: "Macro",
  36013. height: math.unit(1680, "meters")
  36014. },
  36015. {
  36016. name: "Mega Macro",
  36017. height: math.unit(175, "km")
  36018. },
  36019. {
  36020. name: "Terra Macro",
  36021. height: math.unit(32, "gigameters")
  36022. },
  36023. {
  36024. name: "Multiverse+",
  36025. height: math.unit(2.56e23, "yottameters")
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6 + 9/12, "feet"),
  36034. weight: math.unit(280, "lb"),
  36035. name: "Front",
  36036. image: {
  36037. source: "./media/characters/candy/front.svg",
  36038. extra: 234/217,
  36039. bottom: 11/245
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Really Small",
  36046. height: math.unit(0.1, "nm")
  36047. },
  36048. {
  36049. name: "Micro",
  36050. height: math.unit(2, "inches")
  36051. },
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(6 + 9/12, "feet"),
  36055. default: true
  36056. },
  36057. {
  36058. name: "Small Macro",
  36059. height: math.unit(69, "feet")
  36060. },
  36061. {
  36062. name: "Macro",
  36063. height: math.unit(160, "feet")
  36064. },
  36065. {
  36066. name: "Megamacro",
  36067. height: math.unit(22000, "miles")
  36068. },
  36069. {
  36070. name: "Gigamacro",
  36071. height: math.unit(50000, "miles")
  36072. },
  36073. ]
  36074. ))
  36075. characterMakers.push(() => makeCharacter(
  36076. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36077. {
  36078. front: {
  36079. height: math.unit(4, "feet"),
  36080. weight: math.unit(90, "lb"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/joey-mcdonald/front.svg",
  36084. extra: 1059/852,
  36085. bottom: 33/1092
  36086. }
  36087. },
  36088. back: {
  36089. height: math.unit(4, "feet"),
  36090. weight: math.unit(90, "lb"),
  36091. name: "Back",
  36092. image: {
  36093. source: "./media/characters/joey-mcdonald/back.svg",
  36094. extra: 1077/879,
  36095. bottom: 5/1082
  36096. }
  36097. },
  36098. frontKobold: {
  36099. height: math.unit(4, "feet"),
  36100. weight: math.unit(100, "lb"),
  36101. name: "Front-kobold",
  36102. image: {
  36103. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36104. extra: 1480/1367,
  36105. bottom: 0/1480
  36106. }
  36107. },
  36108. backKobold: {
  36109. height: math.unit(4, "feet"),
  36110. weight: math.unit(100, "lb"),
  36111. name: "Back-kobold",
  36112. image: {
  36113. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36114. extra: 1449/1361,
  36115. bottom: 0/1449
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(4, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(12 + 6/12, "feet"),
  36132. name: "Front",
  36133. image: {
  36134. source: "./media/characters/kass-lockheed/front.svg",
  36135. extra: 354/343,
  36136. bottom: 9/363
  36137. }
  36138. },
  36139. back: {
  36140. height: math.unit(12 + 6/12, "feet"),
  36141. name: "Back",
  36142. image: {
  36143. source: "./media/characters/kass-lockheed/back.svg",
  36144. extra: 364/352,
  36145. bottom: 3/367
  36146. }
  36147. },
  36148. dick: {
  36149. height: math.unit(3.12, "feet"),
  36150. name: "Dick",
  36151. image: {
  36152. source: "./media/characters/kass-lockheed/dick.svg"
  36153. }
  36154. },
  36155. head: {
  36156. height: math.unit(2.6, "feet"),
  36157. name: "Head",
  36158. image: {
  36159. source: "./media/characters/kass-lockheed/head.svg"
  36160. }
  36161. },
  36162. bleh: {
  36163. height: math.unit(2.85, "feet"),
  36164. name: "Bleh",
  36165. image: {
  36166. source: "./media/characters/kass-lockheed/bleh.svg"
  36167. }
  36168. },
  36169. smug: {
  36170. height: math.unit(2.85, "feet"),
  36171. name: "Smug",
  36172. image: {
  36173. source: "./media/characters/kass-lockheed/smug.svg"
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(12 + 6/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(6 + 2/12, "feet"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/taylor/front.svg",
  36193. extra: 639/495,
  36194. bottom: 12/651
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(6 + 2/12, "feet"),
  36202. default: true
  36203. },
  36204. {
  36205. name: "Big",
  36206. height: math.unit(15, "feet")
  36207. },
  36208. {
  36209. name: "Lorg",
  36210. height: math.unit(80, "feet")
  36211. },
  36212. {
  36213. name: "Too Lorg",
  36214. height: math.unit(120, "feet")
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36220. {
  36221. front: {
  36222. height: math.unit(15, "feet"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/kaizer/front.svg",
  36226. extra: 1612/1436,
  36227. bottom: 43/1655
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(15, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36241. {
  36242. front: {
  36243. height: math.unit(2, "feet"),
  36244. weight: math.unit(30, "lb"),
  36245. name: "Front",
  36246. image: {
  36247. source: "./media/characters/sandy/front.svg",
  36248. extra: 1439/1307,
  36249. bottom: 194/1633
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(2, "feet"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(3, "feet"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/mellvi/front.svg",
  36269. extra: 1831/1630,
  36270. bottom: 58/1889
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(3, "feet"),
  36278. default: true
  36279. },
  36280. ]
  36281. ))
  36282. characterMakers.push(() => makeCharacter(
  36283. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36284. {
  36285. front: {
  36286. height: math.unit(5 + 11/12, "feet"),
  36287. weight: math.unit(200, "lb"),
  36288. name: "Front",
  36289. image: {
  36290. source: "./media/characters/shirou/front.svg",
  36291. extra: 2491/2383,
  36292. bottom: 189/2680
  36293. }
  36294. },
  36295. back: {
  36296. height: math.unit(5 + 11/12, "feet"),
  36297. weight: math.unit(200, "lb"),
  36298. name: "Back",
  36299. image: {
  36300. source: "./media/characters/shirou/back.svg",
  36301. extra: 2554/2450,
  36302. bottom: 76/2630
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(5 + 11/12, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(6 + 3/12, "feet"),
  36319. weight: math.unit(177, "lb"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/noryu/front.svg",
  36323. extra: 973/885,
  36324. bottom: 10/983
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(6 + 3/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(5 + 6/12, "feet"),
  36341. weight: math.unit(170, "lb"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/mevolas-rubenido/front.svg",
  36345. extra: 2109/1901,
  36346. bottom: 96/2205
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(5 + 6/12, "feet"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36360. {
  36361. front: {
  36362. height: math.unit(100, "feet"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/dee/front.svg",
  36366. extra: 2153/2036,
  36367. bottom: 59/2212
  36368. }
  36369. },
  36370. back: {
  36371. height: math.unit(100, "feet"),
  36372. name: "Back",
  36373. image: {
  36374. source: "./media/characters/dee/back.svg",
  36375. extra: 2183/2058,
  36376. bottom: 75/2258
  36377. }
  36378. },
  36379. foot: {
  36380. height: math.unit(19.43, "feet"),
  36381. name: "Foot",
  36382. image: {
  36383. source: "./media/characters/dee/foot.svg"
  36384. }
  36385. },
  36386. hoof: {
  36387. height: math.unit(20.6, "feet"),
  36388. name: "Hoof",
  36389. image: {
  36390. source: "./media/characters/dee/hoof.svg"
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Macro",
  36397. height: math.unit(100, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(5 + 6/12, "feet"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/teh/front.svg",
  36410. extra: 1002/847,
  36411. bottom: 62/1064
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(5 + 6/12, "feet"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36425. {
  36426. side: {
  36427. height: math.unit(6 + 1/12, "feet"),
  36428. weight: math.unit(204, "lb"),
  36429. name: "Side",
  36430. image: {
  36431. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36432. extra: 974/775,
  36433. bottom: 169/1143
  36434. }
  36435. },
  36436. sitting: {
  36437. height: math.unit(6 + 2/12, "feet"),
  36438. weight: math.unit(204, "lb"),
  36439. name: "Sitting",
  36440. image: {
  36441. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36442. extra: 1175/964,
  36443. bottom: 378/1553
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(6 + 1/12, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(6, "inches"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/tululi/front.svg",
  36463. extra: 1997/1876,
  36464. bottom: 20/2017
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(6, "inches"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(4 + 1/12, "feet"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/star/front.svg",
  36484. extra: 1493/1189,
  36485. bottom: 48/1541
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(4 + 1/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(6 + 3/12, "feet"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/comet/front.svg",
  36505. extra: 1681/1462,
  36506. bottom: 26/1707
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(6 + 3/12, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(950, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/vortex/front.svg",
  36526. extra: 1497/1434,
  36527. bottom: 56/1553
  36528. }
  36529. },
  36530. maw: {
  36531. height: math.unit(285, "feet"),
  36532. name: "Maw",
  36533. image: {
  36534. source: "./media/characters/vortex/maw.svg"
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Macro",
  36541. height: math.unit(950, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(600, "feet"),
  36551. weight: math.unit(0.02, "grams"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/doodle/front.svg",
  36555. extra: 1578/1413,
  36556. bottom: 37/1615
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Macro",
  36563. height: math.unit(600, "feet"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(6 + 6/12, "feet"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/jai/front.svg",
  36576. extra: 1645/1534,
  36577. bottom: 115/1760
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(6 + 6/12, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(6 + 8/12, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/pixel/front.svg",
  36597. extra: 1900/1735,
  36598. bottom: 63/1963
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6 + 8/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36612. {
  36613. back: {
  36614. height: math.unit(4 + 1/12, "feet"),
  36615. weight: math.unit(75, "lb"),
  36616. name: "Back",
  36617. image: {
  36618. source: "./media/characters/rhett/back.svg",
  36619. extra: 930/878,
  36620. bottom: 25/955
  36621. }
  36622. },
  36623. front: {
  36624. height: math.unit(4 + 1/12, "feet"),
  36625. weight: math.unit(75, "lb"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/rhett/front.svg",
  36629. extra: 1682/1586,
  36630. bottom: 92/1774
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Micro",
  36637. height: math.unit(8, "inches")
  36638. },
  36639. {
  36640. name: "Tiny",
  36641. height: math.unit(2, "feet")
  36642. },
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(4 + 1/12, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(3 + 3/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/penny/front.svg",
  36658. extra: 1406/1311,
  36659. bottom: 26/1432
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(3 + 3/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(4 + 11/12, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/monty/front.svg",
  36679. extra: 1479/1209,
  36680. bottom: 0/1479
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(4 + 11/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36694. {
  36695. front: {
  36696. height: math.unit(8 + 4/12, "feet"),
  36697. name: "Front",
  36698. image: {
  36699. source: "./media/characters/sterling/front.svg",
  36700. extra: 1420/1236,
  36701. bottom: 27/1447
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(8 + 4/12, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(15, "feet"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/marble/front.svg",
  36721. extra: 973/937,
  36722. bottom: 32/1005
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(15, "feet"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36736. {
  36737. front: {
  36738. height: math.unit(3, "inches"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/powder/front.svg",
  36742. extra: 1504/1334,
  36743. bottom: 518/2022
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(3, "inches"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(4 + 5/12, "feet"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/joey-raccoon/front.svg",
  36763. extra: 1273/1197,
  36764. bottom: 0/1273
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(4 + 5/12, "feet"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(8 + 4/12, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/vick/front.svg",
  36784. extra: 2187/2118,
  36785. bottom: 47/2234
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(8 + 4/12, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(5 + 5/12, "feet"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/mitsy/front.svg",
  36805. extra: 1842/1695,
  36806. bottom: 0/1842
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(5 + 5/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(6 + 3/12, "feet"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/silvy/front.svg",
  36826. extra: 1995/1836,
  36827. bottom: 225/2220
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(6 + 3/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(3 + 8/12, "feet"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/rodney/front.svg",
  36847. extra: 1956/1747,
  36848. bottom: 31/1987
  36849. }
  36850. },
  36851. frontDressed: {
  36852. height: math.unit(2.9, "feet"),
  36853. name: "Front (Dressed)",
  36854. image: {
  36855. source: "./media/characters/rodney/front-dressed.svg",
  36856. extra: 1382/1241,
  36857. bottom: 385/1767
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(3 + 8/12, "feet"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(5 + 9/12, "feet"),
  36874. weight: math.unit(194, "lbs"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/zakail-sudekai/front.svg",
  36878. extra: 2696/2533,
  36879. bottom: 248/2944
  36880. }
  36881. },
  36882. maw: {
  36883. height: math.unit(1.35, "feet"),
  36884. name: "Maw",
  36885. image: {
  36886. source: "./media/characters/zakail-sudekai/maw.svg"
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(5 + 9/12, "feet"),
  36894. default: true
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(8 + 4/12, "feet"),
  36903. weight: math.unit(1200, "lb"),
  36904. name: "Front",
  36905. image: {
  36906. source: "./media/characters/eleanor/front.svg",
  36907. extra: 1226/1192,
  36908. bottom: 52/1278
  36909. }
  36910. },
  36911. back: {
  36912. height: math.unit(8 + 4/12, "feet"),
  36913. weight: math.unit(1200, "lb"),
  36914. name: "Back",
  36915. image: {
  36916. source: "./media/characters/eleanor/back.svg",
  36917. extra: 1242/1184,
  36918. bottom: 60/1302
  36919. }
  36920. },
  36921. head: {
  36922. height: math.unit(2.62, "feet"),
  36923. name: "Head",
  36924. image: {
  36925. source: "./media/characters/eleanor/head.svg"
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(8 + 4/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(8 + 4/12, "feet"),
  36942. weight: math.unit(750, "lb"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/tanya/front.svg",
  36946. extra: 1749/1615,
  36947. bottom: 33/1782
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(8 + 4/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(5, "feet"),
  36964. weight: math.unit(225, "lb"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/cindy/front.svg",
  36968. extra: 1320/1250,
  36969. bottom: 42/1362
  36970. }
  36971. },
  36972. frontDressed: {
  36973. height: math.unit(5, "feet"),
  36974. weight: math.unit(225, "lb"),
  36975. name: "Front (Dressed)",
  36976. image: {
  36977. source: "./media/characters/cindy/front-dressed.svg",
  36978. extra: 1320/1250,
  36979. bottom: 42/1362
  36980. }
  36981. },
  36982. back: {
  36983. height: math.unit(5, "feet"),
  36984. weight: math.unit(225, "lb"),
  36985. name: "Back",
  36986. image: {
  36987. source: "./media/characters/cindy/back.svg",
  36988. extra: 1384/1346,
  36989. bottom: 14/1398
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(5, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(6 + 9/12, "feet"),
  37006. weight: math.unit(440, "lb"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/wilbur-owen/front.svg",
  37010. extra: 1575/1448,
  37011. bottom: 72/1647
  37012. }
  37013. },
  37014. back: {
  37015. height: math.unit(6 + 9/12, "feet"),
  37016. weight: math.unit(440, "lb"),
  37017. name: "Back",
  37018. image: {
  37019. source: "./media/characters/wilbur-owen/back.svg",
  37020. extra: 1578/1445,
  37021. bottom: 36/1614
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(6 + 9/12, "feet"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(6 + 5/12, "feet"),
  37038. weight: math.unit(650, "lb"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/keegan/front.svg",
  37042. extra: 2387/2198,
  37043. bottom: 33/2420
  37044. }
  37045. },
  37046. side: {
  37047. height: math.unit(6 + 5/12, "feet"),
  37048. weight: math.unit(650, "lb"),
  37049. name: "Side",
  37050. image: {
  37051. source: "./media/characters/keegan/side.svg",
  37052. extra: 2390/2202,
  37053. bottom: 47/2437
  37054. }
  37055. },
  37056. back: {
  37057. height: math.unit(6 + 5/12, "feet"),
  37058. weight: math.unit(650, "lb"),
  37059. name: "Back",
  37060. image: {
  37061. source: "./media/characters/keegan/back.svg",
  37062. extra: 2418/2268,
  37063. bottom: 15/2433
  37064. }
  37065. },
  37066. frontSfw: {
  37067. height: math.unit(6 + 5/12, "feet"),
  37068. weight: math.unit(650, "lb"),
  37069. name: "Front (SFW)",
  37070. image: {
  37071. source: "./media/characters/keegan/front-sfw.svg",
  37072. extra: 2387/2198,
  37073. bottom: 33/2420
  37074. }
  37075. },
  37076. beans: {
  37077. height: math.unit(1.85, "feet"),
  37078. name: "Beans",
  37079. image: {
  37080. source: "./media/characters/keegan/beans.svg"
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(6 + 5/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(9, "feet"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/colton/front.svg",
  37100. extra: 1589/1326,
  37101. bottom: 139/1728
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(9, "feet"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(2 + 9/12, "feet"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/bora/front.svg",
  37121. extra: 1265/1250,
  37122. bottom: 24/1289
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(2 + 9/12, "feet"),
  37130. default: true
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(8, "feet"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/myu-myu/front.svg",
  37142. extra: 1949/1857,
  37143. bottom: 90/2039
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(8, "feet"),
  37151. default: true
  37152. },
  37153. {
  37154. name: "Big",
  37155. height: math.unit(15, "feet")
  37156. },
  37157. {
  37158. name: "BIG",
  37159. height: math.unit(25, "feet")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37165. {
  37166. side: {
  37167. height: math.unit(7 + 5/12, "feet"),
  37168. weight: math.unit(2800, "lb"),
  37169. name: "Side",
  37170. image: {
  37171. source: "./media/characters/haloren/side.svg",
  37172. extra: 1793/409,
  37173. bottom: 59/1852
  37174. }
  37175. },
  37176. frontPaw: {
  37177. height: math.unit(2.36, "feet"),
  37178. name: "Front paw",
  37179. image: {
  37180. source: "./media/characters/haloren/front-paw.svg"
  37181. }
  37182. },
  37183. hindPaw: {
  37184. height: math.unit(3.18, "feet"),
  37185. name: "Hind paw",
  37186. image: {
  37187. source: "./media/characters/haloren/hind-paw.svg"
  37188. }
  37189. },
  37190. maw: {
  37191. height: math.unit(5.05, "feet"),
  37192. name: "Maw",
  37193. image: {
  37194. source: "./media/characters/haloren/maw.svg"
  37195. }
  37196. },
  37197. dick: {
  37198. height: math.unit(2.90, "feet"),
  37199. name: "Dick",
  37200. image: {
  37201. source: "./media/characters/haloren/dick.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(7 + 5/12, "feet"),
  37209. default: true
  37210. },
  37211. {
  37212. name: "Enhanced",
  37213. height: math.unit(14 + 3/12, "feet")
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(171, "cm"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/kimmy/front.svg",
  37225. extra: 1491/1435,
  37226. bottom: 53/1544
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Small",
  37233. height: math.unit(9, "cm")
  37234. },
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(171, "cm"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(8, "feet"),
  37247. weight: math.unit(300, "lb"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/galeboomer/front.svg",
  37251. extra: 4651/4415,
  37252. bottom: 162/4813
  37253. }
  37254. },
  37255. back: {
  37256. height: math.unit(8, "feet"),
  37257. weight: math.unit(300, "lb"),
  37258. name: "Back",
  37259. image: {
  37260. source: "./media/characters/galeboomer/back.svg",
  37261. extra: 4544/4314,
  37262. bottom: 16/4560
  37263. }
  37264. },
  37265. frontAlt: {
  37266. height: math.unit(8, "feet"),
  37267. weight: math.unit(300, "lb"),
  37268. name: "Front (Alt)",
  37269. image: {
  37270. source: "./media/characters/galeboomer/front-alt.svg",
  37271. extra: 4458/4228,
  37272. bottom: 68/4526
  37273. }
  37274. },
  37275. maw: {
  37276. height: math.unit(1.2, "feet"),
  37277. name: "Maw",
  37278. image: {
  37279. source: "./media/characters/galeboomer/maw.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(8, "feet"),
  37287. default: true
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(5 + 9/12, "feet"),
  37296. weight: math.unit(120, "lb"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/chyr/front.svg",
  37300. extra: 1323/1254,
  37301. bottom: 63/1386
  37302. }
  37303. },
  37304. back: {
  37305. height: math.unit(5 + 9/12, "feet"),
  37306. weight: math.unit(120, "lb"),
  37307. name: "Back",
  37308. image: {
  37309. source: "./media/characters/chyr/back.svg",
  37310. extra: 1323/1252,
  37311. bottom: 48/1371
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(5 + 9/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(7, "feet"),
  37328. weight: math.unit(310, "lb"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/solarus/front.svg",
  37332. extra: 2415/2021,
  37333. bottom: 103/2518
  37334. }
  37335. },
  37336. back: {
  37337. height: math.unit(7, "feet"),
  37338. weight: math.unit(310, "lb"),
  37339. name: "Back",
  37340. image: {
  37341. source: "./media/characters/solarus/back.svg",
  37342. extra: 2463/2089,
  37343. bottom: 79/2542
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(7, "feet"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(16, "feet"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37363. extra: 1844/1780,
  37364. bottom: 58/1902
  37365. }
  37366. },
  37367. winterCoat: {
  37368. height: math.unit(16, "feet"),
  37369. name: "Winter Coat",
  37370. image: {
  37371. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37372. extra: 1807/1775,
  37373. bottom: 69/1876
  37374. }
  37375. },
  37376. },
  37377. [
  37378. {
  37379. name: "Normal",
  37380. height: math.unit(16, "feet"),
  37381. default: true
  37382. },
  37383. {
  37384. name: "Chicago Size",
  37385. height: math.unit(560, "feet")
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(11 + 6/12, "feet"),
  37394. weight: math.unit(1366, "lb"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/lexor/front.svg",
  37398. extra: 1560/1481,
  37399. bottom: 211/1771
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(11 + 6/12, "feet"),
  37404. weight: math.unit(1366, "lb"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/lexor/back.svg",
  37408. extra: 1614/1533,
  37409. bottom: 76/1690
  37410. }
  37411. },
  37412. maw: {
  37413. height: math.unit(3, "feet"),
  37414. name: "Maw",
  37415. image: {
  37416. source: "./media/characters/lexor/maw.svg"
  37417. }
  37418. },
  37419. dick: {
  37420. height: math.unit(2.59, "feet"),
  37421. name: "Dick",
  37422. image: {
  37423. source: "./media/characters/lexor/dick.svg"
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(11 + 6/12, "feet"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(5 + 8/12, "feet"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/magnum/front.svg",
  37443. extra: 942/855,
  37444. bottom: 26/968
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(5 + 8/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(18 + 4/12, "feet"),
  37461. weight: math.unit(1500, "kg"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/solas-sharpsman/front.svg",
  37465. extra: 1698/1589,
  37466. bottom: 0/1698
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(18 + 4/12, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(5 + 5/12, "feet"),
  37483. weight: math.unit(180, "lb"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/october/front.svg",
  37487. extra: 1800/1650,
  37488. bottom: 0/1800
  37489. }
  37490. },
  37491. frontNsfw: {
  37492. height: math.unit(5 + 5/12, "feet"),
  37493. weight: math.unit(180, "lb"),
  37494. name: "Front (NSFW)",
  37495. image: {
  37496. source: "./media/characters/october/front-nsfw.svg",
  37497. extra: 1392/1307,
  37498. bottom: 42/1434
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(5 + 5/12, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(8 + 6/12, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/essynkardi/front.svg",
  37518. extra: 1914/1846,
  37519. bottom: 22/1936
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(8 + 6/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(6 + 6/12, "feet"),
  37536. weight: math.unit(7, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/icky/front.svg",
  37540. extra: 813/782,
  37541. bottom: 66/879
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(6 + 6/12, "feet"),
  37546. weight: math.unit(7, "lb"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/icky/back.svg",
  37550. extra: 754/735,
  37551. bottom: 56/810
  37552. }
  37553. },
  37554. },
  37555. [
  37556. {
  37557. name: "Normal",
  37558. height: math.unit(6 + 6/12, "feet"),
  37559. default: true
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(15, "feet"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/rojas/front.svg",
  37571. extra: 1462/1408,
  37572. bottom: 95/1557
  37573. }
  37574. },
  37575. back: {
  37576. height: math.unit(15, "feet"),
  37577. name: "Back",
  37578. image: {
  37579. source: "./media/characters/rojas/back.svg",
  37580. extra: 1023/954,
  37581. bottom: 28/1051
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Normal",
  37588. height: math.unit(15, "feet"),
  37589. default: true
  37590. },
  37591. ]
  37592. ))
  37593. characterMakers.push(() => makeCharacter(
  37594. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37595. {
  37596. frontHuman: {
  37597. height: math.unit(5 + 7/12, "feet"),
  37598. name: "Front (Human)",
  37599. image: {
  37600. source: "./media/characters/alek-dryagan/front-human.svg",
  37601. extra: 1687/1667,
  37602. bottom: 69/1756
  37603. }
  37604. },
  37605. backHuman: {
  37606. height: math.unit(5 + 7/12, "feet"),
  37607. name: "Back (Human)",
  37608. image: {
  37609. source: "./media/characters/alek-dryagan/back-human.svg",
  37610. extra: 1670/1649,
  37611. bottom: 65/1735
  37612. }
  37613. },
  37614. frontDemi: {
  37615. height: math.unit(65, "feet"),
  37616. name: "Front (Demi)",
  37617. image: {
  37618. source: "./media/characters/alek-dryagan/front-demi.svg",
  37619. extra: 1669/1642,
  37620. bottom: 49/1718
  37621. }
  37622. },
  37623. backDemi: {
  37624. height: math.unit(65, "feet"),
  37625. name: "Back (Demi)",
  37626. image: {
  37627. source: "./media/characters/alek-dryagan/back-demi.svg",
  37628. extra: 1658/1637,
  37629. bottom: 40/1698
  37630. }
  37631. },
  37632. mawHuman: {
  37633. height: math.unit(0.3, "feet"),
  37634. name: "Maw (Human)",
  37635. image: {
  37636. source: "./media/characters/alek-dryagan/maw-human.svg"
  37637. }
  37638. },
  37639. mawDemi: {
  37640. height: math.unit(3.8, "feet"),
  37641. name: "Maw (Demi)",
  37642. image: {
  37643. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(5 + 7/12, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37657. {
  37658. frontHuman: {
  37659. height: math.unit(5 + 2/12, "feet"),
  37660. name: "Front (Human)",
  37661. image: {
  37662. source: "./media/characters/gen/front-human.svg",
  37663. extra: 1627/1538,
  37664. bottom: 71/1698
  37665. }
  37666. },
  37667. backHuman: {
  37668. height: math.unit(5 + 2/12, "feet"),
  37669. name: "Back (Human)",
  37670. image: {
  37671. source: "./media/characters/gen/back-human.svg",
  37672. extra: 1638/1548,
  37673. bottom: 69/1707
  37674. }
  37675. },
  37676. frontDemi: {
  37677. height: math.unit(5 + 2/12, "feet"),
  37678. name: "Front (Demi)",
  37679. image: {
  37680. source: "./media/characters/gen/front-demi.svg",
  37681. extra: 1627/1538,
  37682. bottom: 71/1698
  37683. }
  37684. },
  37685. backDemi: {
  37686. height: math.unit(5 + 2/12, "feet"),
  37687. name: "Back (Demi)",
  37688. image: {
  37689. source: "./media/characters/gen/back-demi.svg",
  37690. extra: 1638/1548,
  37691. bottom: 69/1707
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(5 + 2/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37705. {
  37706. frontImp: {
  37707. height: math.unit(1 + 11/12, "feet"),
  37708. name: "Front (Imp)",
  37709. image: {
  37710. source: "./media/characters/max-kobold/front-imp.svg",
  37711. extra: 1238/1134,
  37712. bottom: 81/1319
  37713. }
  37714. },
  37715. backImp: {
  37716. height: math.unit(1 + 11/12, "feet"),
  37717. name: "Back (Imp)",
  37718. image: {
  37719. source: "./media/characters/max-kobold/back-imp.svg",
  37720. extra: 1334/1175,
  37721. bottom: 34/1368
  37722. }
  37723. },
  37724. frontDemi: {
  37725. height: math.unit(5 + 9/12, "feet"),
  37726. name: "Front (Demi)",
  37727. image: {
  37728. source: "./media/characters/max-kobold/front-demi.svg",
  37729. extra: 1715/1685,
  37730. bottom: 54/1769
  37731. }
  37732. },
  37733. backDemi: {
  37734. height: math.unit(5 + 9/12, "feet"),
  37735. name: "Back (Demi)",
  37736. image: {
  37737. source: "./media/characters/max-kobold/back-demi.svg",
  37738. extra: 1752/1729,
  37739. bottom: 41/1793
  37740. }
  37741. },
  37742. handImp: {
  37743. height: math.unit(0.45, "feet"),
  37744. name: "Hand (Imp)",
  37745. image: {
  37746. source: "./media/characters/max-kobold/hand.svg"
  37747. }
  37748. },
  37749. pawImp: {
  37750. height: math.unit(0.46, "feet"),
  37751. name: "Paw (Imp)",
  37752. image: {
  37753. source: "./media/characters/max-kobold/paw.svg"
  37754. }
  37755. },
  37756. handDemi: {
  37757. height: math.unit(0.80, "feet"),
  37758. name: "Hand (Demi)",
  37759. image: {
  37760. source: "./media/characters/max-kobold/hand.svg"
  37761. }
  37762. },
  37763. pawDemi: {
  37764. height: math.unit(1.1, "feet"),
  37765. name: "Paw (Demi)",
  37766. image: {
  37767. source: "./media/characters/max-kobold/paw.svg"
  37768. }
  37769. },
  37770. headImp: {
  37771. height: math.unit(1.33, "feet"),
  37772. name: "Head (Imp)",
  37773. image: {
  37774. source: "./media/characters/max-kobold/head-imp.svg"
  37775. }
  37776. },
  37777. mawImp: {
  37778. height: math.unit(0.75, "feet"),
  37779. name: "Maw (Imp)",
  37780. image: {
  37781. source: "./media/characters/max-kobold/maw-imp.svg"
  37782. }
  37783. },
  37784. mawDemi: {
  37785. height: math.unit(0.42, "feet"),
  37786. name: "Maw (Demi)",
  37787. image: {
  37788. source: "./media/characters/max-kobold/maw-demi.svg"
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(1 + 11/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(7 + 5/12, "feet"),
  37805. name: "Front",
  37806. image: {
  37807. source: "./media/characters/carbon/front.svg",
  37808. extra: 1754/1689,
  37809. bottom: 65/1819
  37810. }
  37811. },
  37812. back: {
  37813. height: math.unit(7 + 5/12, "feet"),
  37814. name: "Back",
  37815. image: {
  37816. source: "./media/characters/carbon/back.svg",
  37817. extra: 1762/1695,
  37818. bottom: 24/1786
  37819. }
  37820. },
  37821. frontGigantamax: {
  37822. height: math.unit(150, "feet"),
  37823. name: "Front (Gigantamax)",
  37824. image: {
  37825. source: "./media/characters/carbon/front-gigantamax.svg",
  37826. extra: 1826/1669,
  37827. bottom: 59/1885
  37828. }
  37829. },
  37830. backGigantamax: {
  37831. height: math.unit(150, "feet"),
  37832. name: "Back (Gigantamax)",
  37833. image: {
  37834. source: "./media/characters/carbon/back-gigantamax.svg",
  37835. extra: 1796/1653,
  37836. bottom: 53/1849
  37837. }
  37838. },
  37839. maw: {
  37840. height: math.unit(0.48, "feet"),
  37841. name: "Maw",
  37842. image: {
  37843. source: "./media/characters/carbon/maw.svg"
  37844. }
  37845. },
  37846. mawGigantamax: {
  37847. height: math.unit(7.5, "feet"),
  37848. name: "Maw (Gigantamax)",
  37849. image: {
  37850. source: "./media/characters/carbon/maw-gigantamax.svg"
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(7 + 5/12, "feet"),
  37858. default: true
  37859. },
  37860. ]
  37861. ))
  37862. characterMakers.push(() => makeCharacter(
  37863. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37864. {
  37865. front: {
  37866. height: math.unit(6, "feet"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/maverick/front.svg",
  37870. extra: 1672/1661,
  37871. bottom: 85/1757
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(6, "feet"),
  37876. name: "Back",
  37877. image: {
  37878. source: "./media/characters/maverick/back.svg",
  37879. extra: 1642/1631,
  37880. bottom: 38/1680
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(6, "feet"),
  37888. default: true
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(15, "feet"),
  37897. weight: math.unit(615, "lb"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/grockle/front.svg",
  37901. extra: 1535/1427,
  37902. bottom: 56/1591
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(15, "feet"),
  37910. default: true
  37911. },
  37912. {
  37913. name: "Large",
  37914. height: math.unit(150, "feet")
  37915. },
  37916. {
  37917. name: "Macro",
  37918. height: math.unit(1876, "feet")
  37919. },
  37920. {
  37921. name: "Mega Macro",
  37922. height: math.unit(121940, "feet")
  37923. },
  37924. {
  37925. name: "Giga Macro",
  37926. height: math.unit(750, "km")
  37927. },
  37928. {
  37929. name: "Tera Macro",
  37930. height: math.unit(750000, "km")
  37931. },
  37932. {
  37933. name: "Galactic",
  37934. height: math.unit(1.4e5, "km")
  37935. },
  37936. {
  37937. name: "Godlike",
  37938. height: math.unit(9.8e280, "galaxies")
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(11, "meters"),
  37947. weight: math.unit(20, "tonnes"),
  37948. name: "Front",
  37949. image: {
  37950. source: "./media/characters/alistair/front.svg",
  37951. extra: 1265/1009,
  37952. bottom: 93/1358
  37953. }
  37954. },
  37955. },
  37956. [
  37957. {
  37958. name: "Normal",
  37959. height: math.unit(11, "meters"),
  37960. default: true
  37961. },
  37962. ]
  37963. ))
  37964. characterMakers.push(() => makeCharacter(
  37965. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37966. {
  37967. front: {
  37968. height: math.unit(5 + 8/12, "feet"),
  37969. name: "Front",
  37970. image: {
  37971. source: "./media/characters/haruka/front.svg",
  37972. extra: 2012/1952,
  37973. bottom: 0/2012
  37974. }
  37975. },
  37976. },
  37977. [
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(5 + 8/12, "feet"),
  37981. default: true
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37987. {
  37988. back: {
  37989. height: math.unit(9, "feet"),
  37990. name: "Back",
  37991. image: {
  37992. source: "./media/characters/vivian-sylveon/back.svg",
  37993. extra: 1853/1714,
  37994. bottom: 0/1853
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Normal",
  38001. height: math.unit(9, "feet"),
  38002. default: true
  38003. },
  38004. {
  38005. name: "Macro",
  38006. height: math.unit(500, "feet")
  38007. },
  38008. {
  38009. name: "Megamacro",
  38010. height: math.unit(600, "miles")
  38011. },
  38012. {
  38013. name: "Gigamacro",
  38014. height: math.unit(30000, "miles")
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38020. {
  38021. anthro: {
  38022. height: math.unit(5 + 10/12, "feet"),
  38023. weight: math.unit(100, "lb"),
  38024. name: "Anthro",
  38025. image: {
  38026. source: "./media/characters/daiki/anthro.svg",
  38027. extra: 1115/1027,
  38028. bottom: 69/1184
  38029. }
  38030. },
  38031. feral: {
  38032. height: math.unit(200, "feet"),
  38033. name: "Feral",
  38034. image: {
  38035. source: "./media/characters/daiki/feral.svg",
  38036. extra: 1256/313,
  38037. bottom: 39/1295
  38038. }
  38039. },
  38040. feralHead: {
  38041. height: math.unit(171, "feet"),
  38042. name: "Feral Head",
  38043. image: {
  38044. source: "./media/characters/daiki/feral-head.svg"
  38045. }
  38046. },
  38047. manaDragon: {
  38048. height: math.unit(170, "meters"),
  38049. name: "Mana-dragon",
  38050. image: {
  38051. source: "./media/characters/daiki/mana-dragon.svg",
  38052. extra: 763/420,
  38053. bottom: 97/860
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(5 + 10/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38067. {
  38068. fullyEquippedFront: {
  38069. height: math.unit(3 + 1/12, "feet"),
  38070. weight: math.unit(24, "lb"),
  38071. name: "Fully Equipped (Front)",
  38072. image: {
  38073. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38074. extra: 687/605,
  38075. bottom: 18/705
  38076. }
  38077. },
  38078. fullyEquippedBack: {
  38079. height: math.unit(3 + 1/12, "feet"),
  38080. weight: math.unit(24, "lb"),
  38081. name: "Fully Equipped (Back)",
  38082. image: {
  38083. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38084. extra: 689/590,
  38085. bottom: 18/707
  38086. }
  38087. },
  38088. dailyWear: {
  38089. height: math.unit(3 + 1/12, "feet"),
  38090. weight: math.unit(24, "lb"),
  38091. name: "Daily Wear",
  38092. image: {
  38093. source: "./media/characters/tea-spot/daily-wear.svg",
  38094. extra: 701/620,
  38095. bottom: 21/722
  38096. }
  38097. },
  38098. maidWork: {
  38099. height: math.unit(3 + 1/12, "feet"),
  38100. weight: math.unit(24, "lb"),
  38101. name: "Maid Work",
  38102. image: {
  38103. source: "./media/characters/tea-spot/maid-work.svg",
  38104. extra: 693/609,
  38105. bottom: 15/708
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(3 + 1/12, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(175, "cm"),
  38122. weight: math.unit(75, "kg"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/chee/front.svg",
  38126. extra: 1796/1740,
  38127. bottom: 40/1836
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Micro-Micro",
  38134. height: math.unit(1, "nm")
  38135. },
  38136. {
  38137. name: "Micro-erst",
  38138. height: math.unit(1, "micrometer")
  38139. },
  38140. {
  38141. name: "Micro-er",
  38142. height: math.unit(1, "cm")
  38143. },
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(175, "cm"),
  38147. default: true
  38148. },
  38149. {
  38150. name: "Macro",
  38151. height: math.unit(100, "m")
  38152. },
  38153. {
  38154. name: "Macro-er",
  38155. height: math.unit(1, "km")
  38156. },
  38157. {
  38158. name: "Macro-erst",
  38159. height: math.unit(10, "km")
  38160. },
  38161. {
  38162. name: "Macro-Macro",
  38163. height: math.unit(100, "km")
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(11 + 9/12, "feet"),
  38172. weight: math.unit(935, "lb"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/kingsley/front.svg",
  38176. extra: 1803/1674,
  38177. bottom: 127/1930
  38178. }
  38179. },
  38180. frontNude: {
  38181. height: math.unit(11 + 9/12, "feet"),
  38182. weight: math.unit(935, "lb"),
  38183. name: "Front (Nude)",
  38184. image: {
  38185. source: "./media/characters/kingsley/front-nude.svg",
  38186. extra: 1803/1674,
  38187. bottom: 127/1930
  38188. }
  38189. },
  38190. },
  38191. [
  38192. {
  38193. name: "Normal",
  38194. height: math.unit(11 + 9/12, "feet"),
  38195. default: true
  38196. },
  38197. ]
  38198. ))
  38199. characterMakers.push(() => makeCharacter(
  38200. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38201. {
  38202. side: {
  38203. height: math.unit(9, "feet"),
  38204. name: "Side",
  38205. image: {
  38206. source: "./media/characters/rymel/side.svg",
  38207. extra: 792/469,
  38208. bottom: 121/913
  38209. }
  38210. },
  38211. maw: {
  38212. height: math.unit(2.4, "meters"),
  38213. name: "Maw",
  38214. image: {
  38215. source: "./media/characters/rymel/maw.svg"
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "House Drake",
  38222. height: math.unit(2, "feet")
  38223. },
  38224. {
  38225. name: "Reduced",
  38226. height: math.unit(4.5, "feet")
  38227. },
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(9, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(1.74, "meters"),
  38240. weight: math.unit(55, "kg"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/rubus/front.svg",
  38244. extra: 1894/1742,
  38245. bottom: 44/1938
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(1.74, "meters"),
  38253. default: true
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38259. {
  38260. front: {
  38261. height: math.unit(5 + 2/12, "feet"),
  38262. weight: math.unit(112, "lb"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/cassie-kingston/front.svg",
  38266. extra: 1438/1390,
  38267. bottom: 47/1485
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Normal",
  38274. height: math.unit(5 + 2/12, "feet"),
  38275. default: true
  38276. },
  38277. {
  38278. name: "Macro",
  38279. height: math.unit(128, "feet")
  38280. },
  38281. {
  38282. name: "Megamacro",
  38283. height: math.unit(2.56, "miles")
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38289. {
  38290. front: {
  38291. height: math.unit(7, "feet"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/fox/front.svg",
  38295. extra: 1798/1703,
  38296. bottom: 55/1853
  38297. }
  38298. },
  38299. back: {
  38300. height: math.unit(7, "feet"),
  38301. name: "Back",
  38302. image: {
  38303. source: "./media/characters/fox/back.svg",
  38304. extra: 1748/1649,
  38305. bottom: 32/1780
  38306. }
  38307. },
  38308. head: {
  38309. height: math.unit(1.95, "feet"),
  38310. name: "Head",
  38311. image: {
  38312. source: "./media/characters/fox/head.svg"
  38313. }
  38314. },
  38315. dick: {
  38316. height: math.unit(1.33, "feet"),
  38317. name: "Dick",
  38318. image: {
  38319. source: "./media/characters/fox/dick.svg"
  38320. }
  38321. },
  38322. foot: {
  38323. height: math.unit(1, "feet"),
  38324. name: "Foot",
  38325. image: {
  38326. source: "./media/characters/fox/foot.svg"
  38327. }
  38328. },
  38329. paw: {
  38330. height: math.unit(0.92, "feet"),
  38331. name: "Paw",
  38332. image: {
  38333. source: "./media/characters/fox/paw.svg"
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Small",
  38340. height: math.unit(3, "inches")
  38341. },
  38342. {
  38343. name: "\"Realistic\"",
  38344. height: math.unit(7, "feet")
  38345. },
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(150, "feet"),
  38349. default: true
  38350. },
  38351. {
  38352. name: "BIG",
  38353. height: math.unit(1200, "feet")
  38354. },
  38355. {
  38356. name: "👀",
  38357. height: math.unit(5, "miles")
  38358. },
  38359. {
  38360. name: "👀👀👀",
  38361. height: math.unit(64, "miles")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(625, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/asonja-rossa/front.svg",
  38373. extra: 1833/1686,
  38374. bottom: 24/1857
  38375. }
  38376. },
  38377. back: {
  38378. height: math.unit(625, "feet"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/asonja-rossa/back.svg",
  38382. extra: 1852/1753,
  38383. bottom: 26/1878
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Macro",
  38390. height: math.unit(625, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38397. {
  38398. side: {
  38399. height: math.unit(8, "feet"),
  38400. name: "Side",
  38401. image: {
  38402. source: "./media/characters/rezukii/side.svg",
  38403. extra: 979/542,
  38404. bottom: 87/1066
  38405. }
  38406. },
  38407. sitting: {
  38408. height: math.unit(14.6, "feet"),
  38409. name: "Sitting",
  38410. image: {
  38411. source: "./media/characters/rezukii/sitting.svg",
  38412. extra: 1023/813,
  38413. bottom: 45/1068
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Tiny",
  38420. height: math.unit(2, "feet")
  38421. },
  38422. {
  38423. name: "Smol",
  38424. height: math.unit(4, "feet")
  38425. },
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(8, "feet"),
  38429. default: true
  38430. },
  38431. {
  38432. name: "Big",
  38433. height: math.unit(12, "feet")
  38434. },
  38435. {
  38436. name: "Macro",
  38437. height: math.unit(30, "feet")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(14, "feet"),
  38446. weight: math.unit(9.5, "tonnes"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/dawnheart/front.svg",
  38450. extra: 2792/2675,
  38451. bottom: 64/2856
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(14, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38465. {
  38466. front: {
  38467. height: math.unit(1.7, "m"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/gladi/front.svg",
  38471. extra: 1460/1362,
  38472. bottom: 19/1479
  38473. }
  38474. },
  38475. back: {
  38476. height: math.unit(1.7, "m"),
  38477. name: "Back",
  38478. image: {
  38479. source: "./media/characters/gladi/back.svg",
  38480. extra: 1459/1357,
  38481. bottom: 12/1471
  38482. }
  38483. },
  38484. feral: {
  38485. height: math.unit(2.05, "m"),
  38486. name: "Feral",
  38487. image: {
  38488. source: "./media/characters/gladi/feral.svg",
  38489. extra: 821/557,
  38490. bottom: 91/912
  38491. }
  38492. },
  38493. },
  38494. [
  38495. {
  38496. name: "Shortest",
  38497. height: math.unit(70, "cm")
  38498. },
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(1.7, "m")
  38502. },
  38503. {
  38504. name: "Macro",
  38505. height: math.unit(10, "m"),
  38506. default: true
  38507. },
  38508. {
  38509. name: "Tallest",
  38510. height: math.unit(200, "m")
  38511. },
  38512. ]
  38513. ))
  38514. characterMakers.push(() => makeCharacter(
  38515. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38516. {
  38517. front: {
  38518. height: math.unit(5 + 7/12, "feet"),
  38519. weight: math.unit(2, "tons"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/erdno/front.svg",
  38523. extra: 1234/1129,
  38524. bottom: 35/1269
  38525. }
  38526. },
  38527. angled: {
  38528. height: math.unit(5 + 7/12, "feet"),
  38529. weight: math.unit(2, "tons"),
  38530. name: "Angled",
  38531. image: {
  38532. source: "./media/characters/erdno/angled.svg",
  38533. extra: 1185/1139,
  38534. bottom: 36/1221
  38535. }
  38536. },
  38537. side: {
  38538. height: math.unit(5 + 7/12, "feet"),
  38539. weight: math.unit(2, "tons"),
  38540. name: "Side",
  38541. image: {
  38542. source: "./media/characters/erdno/side.svg",
  38543. extra: 1191/1144,
  38544. bottom: 40/1231
  38545. }
  38546. },
  38547. back: {
  38548. height: math.unit(5 + 7/12, "feet"),
  38549. weight: math.unit(2, "tons"),
  38550. name: "Back",
  38551. image: {
  38552. source: "./media/characters/erdno/back.svg",
  38553. extra: 1202/1146,
  38554. bottom: 17/1219
  38555. }
  38556. },
  38557. frontNsfw: {
  38558. height: math.unit(5 + 7/12, "feet"),
  38559. weight: math.unit(2, "tons"),
  38560. name: "Front (NSFW)",
  38561. image: {
  38562. source: "./media/characters/erdno/front-nsfw.svg",
  38563. extra: 1234/1129,
  38564. bottom: 35/1269
  38565. }
  38566. },
  38567. angledNsfw: {
  38568. height: math.unit(5 + 7/12, "feet"),
  38569. weight: math.unit(2, "tons"),
  38570. name: "Angled (NSFW)",
  38571. image: {
  38572. source: "./media/characters/erdno/angled-nsfw.svg",
  38573. extra: 1185/1139,
  38574. bottom: 36/1221
  38575. }
  38576. },
  38577. sideNsfw: {
  38578. height: math.unit(5 + 7/12, "feet"),
  38579. weight: math.unit(2, "tons"),
  38580. name: "Side (NSFW)",
  38581. image: {
  38582. source: "./media/characters/erdno/side-nsfw.svg",
  38583. extra: 1191/1144,
  38584. bottom: 40/1231
  38585. }
  38586. },
  38587. backNsfw: {
  38588. height: math.unit(5 + 7/12, "feet"),
  38589. weight: math.unit(2, "tons"),
  38590. name: "Back (NSFW)",
  38591. image: {
  38592. source: "./media/characters/erdno/back-nsfw.svg",
  38593. extra: 1202/1146,
  38594. bottom: 17/1219
  38595. }
  38596. },
  38597. frontHyper: {
  38598. height: math.unit(5 + 7/12, "feet"),
  38599. weight: math.unit(2, "tons"),
  38600. name: "Front (Hyper)",
  38601. image: {
  38602. source: "./media/characters/erdno/front-hyper.svg",
  38603. extra: 1298/1136,
  38604. bottom: 35/1333
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(5 + 7/12, "feet"),
  38612. default: true
  38613. },
  38614. {
  38615. name: "Big",
  38616. height: math.unit(5.7, "meters")
  38617. },
  38618. {
  38619. name: "Macro",
  38620. height: math.unit(5.7, "kilometers")
  38621. },
  38622. {
  38623. name: "Megamacro",
  38624. height: math.unit(5.7, "earths")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(5 + 10/12, "feet"),
  38633. weight: math.unit(150, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/jamie/front.svg",
  38637. extra: 1908/1768,
  38638. bottom: 19/1927
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Minimum",
  38645. height: math.unit(2, "cm")
  38646. },
  38647. {
  38648. name: "Micro",
  38649. height: math.unit(3, "inches")
  38650. },
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(5 + 10/12, "feet"),
  38654. default: true
  38655. },
  38656. {
  38657. name: "Macro",
  38658. height: math.unit(150, "feet")
  38659. },
  38660. {
  38661. name: "Megamacro",
  38662. height: math.unit(10000, "m")
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(2, "meters"),
  38671. weight: math.unit(100, "kg"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/shiron/front.svg",
  38675. extra: 2103/1985,
  38676. bottom: 98/2201
  38677. }
  38678. },
  38679. back: {
  38680. height: math.unit(2, "meters"),
  38681. weight: math.unit(100, "kg"),
  38682. name: "Back",
  38683. image: {
  38684. source: "./media/characters/shiron/back.svg",
  38685. extra: 2110/2015,
  38686. bottom: 89/2199
  38687. }
  38688. },
  38689. hand: {
  38690. height: math.unit(0.96, "feet"),
  38691. name: "Hand",
  38692. image: {
  38693. source: "./media/characters/shiron/hand.svg"
  38694. }
  38695. },
  38696. foot: {
  38697. height: math.unit(1.464, "feet"),
  38698. name: "Foot",
  38699. image: {
  38700. source: "./media/characters/shiron/foot.svg"
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(2, "meters")
  38708. },
  38709. {
  38710. name: "Macro",
  38711. height: math.unit(500, "meters"),
  38712. default: true
  38713. },
  38714. {
  38715. name: "Megamacro",
  38716. height: math.unit(20, "km")
  38717. },
  38718. ]
  38719. ))
  38720. characterMakers.push(() => makeCharacter(
  38721. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38722. {
  38723. front: {
  38724. height: math.unit(6, "feet"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/sam/front.svg",
  38728. extra: 849/826,
  38729. bottom: 19/868
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(6, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(8 + 4/12, "feet"),
  38746. weight: math.unit(122, "kg"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/namori-kurogawa/front.svg",
  38750. extra: 1894/1576,
  38751. bottom: 34/1928
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(8 + 4/12, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(9, "feet"),
  38768. weight: math.unit(621, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/unmru/front.svg",
  38772. extra: 1853/1747,
  38773. bottom: 73/1926
  38774. }
  38775. },
  38776. side: {
  38777. height: math.unit(9, "feet"),
  38778. weight: math.unit(621, "lb"),
  38779. name: "Side",
  38780. image: {
  38781. source: "./media/characters/unmru/side.svg",
  38782. extra: 1781/1671,
  38783. bottom: 127/1908
  38784. }
  38785. },
  38786. back: {
  38787. height: math.unit(9, "feet"),
  38788. weight: math.unit(621, "lb"),
  38789. name: "Back",
  38790. image: {
  38791. source: "./media/characters/unmru/back.svg",
  38792. extra: 1894/1765,
  38793. bottom: 75/1969
  38794. }
  38795. },
  38796. dick: {
  38797. height: math.unit(3, "feet"),
  38798. weight: math.unit(35, "lb"),
  38799. name: "Dick",
  38800. image: {
  38801. source: "./media/characters/unmru/dick.svg"
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(9, "feet")
  38809. },
  38810. {
  38811. name: "Natural",
  38812. height: math.unit(27, "feet"),
  38813. default: true
  38814. },
  38815. {
  38816. name: "Giant",
  38817. height: math.unit(90, "feet")
  38818. },
  38819. {
  38820. name: "Kaiju",
  38821. height: math.unit(270, "feet")
  38822. },
  38823. {
  38824. name: "Macro",
  38825. height: math.unit(900, "feet")
  38826. },
  38827. {
  38828. name: "Macro+",
  38829. height: math.unit(2700, "feet")
  38830. },
  38831. {
  38832. name: "Megamacro",
  38833. height: math.unit(9000, "feet")
  38834. },
  38835. {
  38836. name: "City-Crushing",
  38837. height: math.unit(27000, "feet")
  38838. },
  38839. {
  38840. name: "Mountain-Mashing",
  38841. height: math.unit(90000, "feet")
  38842. },
  38843. {
  38844. name: "Earth-Eclipsing",
  38845. height: math.unit(2.7e8, "feet")
  38846. },
  38847. {
  38848. name: "Sol-Swallowing",
  38849. height: math.unit(9e10, "feet")
  38850. },
  38851. {
  38852. name: "Majoris-Munching",
  38853. height: math.unit(2.7e13, "feet")
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38859. {
  38860. front: {
  38861. height: math.unit(1, "inch"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/squeaks-mouse/front.svg",
  38865. extra: 352/308,
  38866. bottom: 25/377
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Micro",
  38873. height: math.unit(1, "inch"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38880. {
  38881. side: {
  38882. height: math.unit(35, "feet"),
  38883. name: "Side",
  38884. image: {
  38885. source: "./media/characters/sayko/side.svg",
  38886. extra: 1697/1021,
  38887. bottom: 82/1779
  38888. }
  38889. },
  38890. head: {
  38891. height: math.unit(16, "feet"),
  38892. name: "Head",
  38893. image: {
  38894. source: "./media/characters/sayko/head.svg"
  38895. }
  38896. },
  38897. forepaw: {
  38898. height: math.unit(7.85, "feet"),
  38899. name: "Forepaw",
  38900. image: {
  38901. source: "./media/characters/sayko/forepaw.svg"
  38902. }
  38903. },
  38904. hindpaw: {
  38905. height: math.unit(8.8, "feet"),
  38906. name: "Hindpaw",
  38907. image: {
  38908. source: "./media/characters/sayko/hindpaw.svg"
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(35, "feet"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Colossus",
  38920. height: math.unit(100, "meters")
  38921. },
  38922. {
  38923. name: "\"Small\" Deity",
  38924. height: math.unit(1, "km")
  38925. },
  38926. {
  38927. name: "\"Large\" Deity",
  38928. height: math.unit(15, "km")
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(6, "feet"),
  38937. weight: math.unit(250, "lb"),
  38938. name: "Front",
  38939. image: {
  38940. source: "./media/characters/mukiro/front.svg",
  38941. extra: 1368/1310,
  38942. bottom: 34/1402
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(6, "feet"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(12 + 4/12, "feet"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38962. extra: 1346/1311,
  38963. bottom: 65/1411
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Base",
  38970. height: math.unit(12 + 4/12, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(150, "feet")
  38976. },
  38977. {
  38978. name: "Mega",
  38979. height: math.unit(2, "miles")
  38980. },
  38981. {
  38982. name: "Demi God",
  38983. height: math.unit(4, "AU")
  38984. },
  38985. {
  38986. name: "God Size",
  38987. height: math.unit(1, "universe")
  38988. },
  38989. ]
  38990. ))
  38991. characterMakers.push(() => makeCharacter(
  38992. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38993. {
  38994. front: {
  38995. height: math.unit(3 + 3/12, "feet"),
  38996. weight: math.unit(88, "lb"),
  38997. name: "Front",
  38998. image: {
  38999. source: "./media/characters/trey/front.svg",
  39000. extra: 1815/1509,
  39001. bottom: 60/1875
  39002. }
  39003. },
  39004. },
  39005. [
  39006. {
  39007. name: "Normal",
  39008. height: math.unit(3 + 3/12, "feet"),
  39009. default: true
  39010. },
  39011. ]
  39012. ))
  39013. characterMakers.push(() => makeCharacter(
  39014. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39015. {
  39016. front: {
  39017. height: math.unit(4, "meters"),
  39018. name: "Front",
  39019. image: {
  39020. source: "./media/characters/adelonda/front.svg",
  39021. extra: 1077/982,
  39022. bottom: 39/1116
  39023. }
  39024. },
  39025. back: {
  39026. height: math.unit(4, "meters"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/adelonda/back.svg",
  39030. extra: 1105/1003,
  39031. bottom: 25/1130
  39032. }
  39033. },
  39034. feral: {
  39035. height: math.unit(40/1.5, "meters"),
  39036. name: "Feral",
  39037. image: {
  39038. source: "./media/characters/adelonda/feral.svg",
  39039. extra: 597/271,
  39040. bottom: 387/984
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(4, "meters"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(8 + 4/12, "feet"),
  39057. weight: math.unit(670, "lb"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/acadiel/front.svg",
  39061. extra: 1901/1595,
  39062. bottom: 142/2043
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(8 + 4/12, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Macro",
  39074. height: math.unit(200, "feet")
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(6 + 2/12, "feet"),
  39083. weight: math.unit(185, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/kayne-ein/front.svg",
  39087. extra: 1780/1560,
  39088. bottom: 81/1861
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(6 + 2/12, "feet"),
  39096. default: true
  39097. },
  39098. {
  39099. name: "Transformation Stage",
  39100. height: math.unit(15, "feet")
  39101. },
  39102. {
  39103. name: "Macro",
  39104. height: math.unit(150, "feet")
  39105. },
  39106. {
  39107. name: "Earth's Shadow",
  39108. height: math.unit(6200, "miles")
  39109. },
  39110. {
  39111. name: "Universal Demon",
  39112. height: math.unit(28e9, "parsecs")
  39113. },
  39114. {
  39115. name: "Multiverse God",
  39116. height: math.unit(3, "multiverses")
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(5 + 5/12, "feet"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/fawn/front.svg",
  39128. extra: 1873/1731,
  39129. bottom: 95/1968
  39130. }
  39131. },
  39132. back: {
  39133. height: math.unit(5 + 5/12, "feet"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/fawn/back.svg",
  39137. extra: 1813/1700,
  39138. bottom: 14/1827
  39139. }
  39140. },
  39141. hoof: {
  39142. height: math.unit(1.45, "feet"),
  39143. name: "Hoof",
  39144. image: {
  39145. source: "./media/characters/fawn/hoof.svg"
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(5 + 5/12, "feet"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(2 + 5/12, "feet"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/orion/front.svg",
  39165. extra: 1366/1304,
  39166. bottom: 43/1409
  39167. }
  39168. },
  39169. paw: {
  39170. height: math.unit(0.52, "feet"),
  39171. name: "Paw",
  39172. image: {
  39173. source: "./media/characters/orion/paw.svg"
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(2 + 5/12, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(5 + 10/12, "feet"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/vera/front.svg",
  39193. extra: 1680/1575,
  39194. bottom: 49/1729
  39195. }
  39196. },
  39197. back: {
  39198. height: math.unit(5 + 10/12, "feet"),
  39199. name: "Back",
  39200. image: {
  39201. source: "./media/characters/vera/back.svg",
  39202. extra: 1700/1588,
  39203. bottom: 18/1718
  39204. }
  39205. },
  39206. arcanine: {
  39207. height: math.unit(6 + 8/12, "feet"),
  39208. name: "Arcanine",
  39209. image: {
  39210. source: "./media/characters/vera/arcanine.svg",
  39211. extra: 1590/1511,
  39212. bottom: 71/1661
  39213. }
  39214. },
  39215. maw: {
  39216. height: math.unit(0.82, "feet"),
  39217. name: "Maw",
  39218. image: {
  39219. source: "./media/characters/vera/maw.svg"
  39220. }
  39221. },
  39222. mawArcanine: {
  39223. height: math.unit(0.97, "feet"),
  39224. name: "Maw (Arcanine)",
  39225. image: {
  39226. source: "./media/characters/vera/maw-arcanine.svg"
  39227. }
  39228. },
  39229. paw: {
  39230. height: math.unit(0.75, "feet"),
  39231. name: "Paw",
  39232. image: {
  39233. source: "./media/characters/vera/paw.svg"
  39234. }
  39235. },
  39236. pawprint: {
  39237. height: math.unit(0.52, "feet"),
  39238. name: "Pawprint",
  39239. image: {
  39240. source: "./media/characters/vera/pawprint.svg"
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Normal",
  39247. height: math.unit(5 + 10/12, "feet"),
  39248. default: true
  39249. },
  39250. {
  39251. name: "Macro",
  39252. height: math.unit(75, "feet")
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(4, "feet"),
  39261. weight: math.unit(40, "lb"),
  39262. name: "Front",
  39263. image: {
  39264. source: "./media/characters/orvan-rabbit/front.svg",
  39265. extra: 1896/1642,
  39266. bottom: 29/1925
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(4, "feet"),
  39274. default: true
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39280. {
  39281. front: {
  39282. height: math.unit(6, "feet"),
  39283. weight: math.unit(168, "lb"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/lisa/front.svg",
  39287. extra: 2065/1867,
  39288. bottom: 46/2111
  39289. }
  39290. },
  39291. back: {
  39292. height: math.unit(6, "feet"),
  39293. weight: math.unit(168, "lb"),
  39294. name: "Back",
  39295. image: {
  39296. source: "./media/characters/lisa/back.svg",
  39297. extra: 1982/1838,
  39298. bottom: 29/2011
  39299. }
  39300. },
  39301. maw: {
  39302. height: math.unit(0.81, "feet"),
  39303. name: "Maw",
  39304. image: {
  39305. source: "./media/characters/lisa/maw.svg"
  39306. }
  39307. },
  39308. paw: {
  39309. height: math.unit(0.9, "feet"),
  39310. name: "Paw",
  39311. image: {
  39312. source: "./media/characters/lisa/paw.svg"
  39313. }
  39314. },
  39315. caribousune: {
  39316. height: math.unit(7 + 2/12, "feet"),
  39317. weight: math.unit(268, "lb"),
  39318. name: "Caribousune",
  39319. image: {
  39320. source: "./media/characters/lisa/caribousune.svg",
  39321. extra: 1843/1633,
  39322. bottom: 29/1872
  39323. }
  39324. },
  39325. frontCaribousune: {
  39326. height: math.unit(7 + 2/12, "feet"),
  39327. weight: math.unit(268, "lb"),
  39328. name: "Front (Caribousune)",
  39329. image: {
  39330. source: "./media/characters/lisa/front-caribousune.svg",
  39331. extra: 1818/1638,
  39332. bottom: 52/1870
  39333. }
  39334. },
  39335. sideCaribousune: {
  39336. height: math.unit(7 + 2/12, "feet"),
  39337. weight: math.unit(268, "lb"),
  39338. name: "Side (Caribousune)",
  39339. image: {
  39340. source: "./media/characters/lisa/side-caribousune.svg",
  39341. extra: 1851/1635,
  39342. bottom: 16/1867
  39343. }
  39344. },
  39345. backCaribousune: {
  39346. height: math.unit(7 + 2/12, "feet"),
  39347. weight: math.unit(268, "lb"),
  39348. name: "Back (Caribousune)",
  39349. image: {
  39350. source: "./media/characters/lisa/back-caribousune.svg",
  39351. extra: 1801/1604,
  39352. bottom: 44/1845
  39353. }
  39354. },
  39355. caribou: {
  39356. height: math.unit(7 + 2/12, "feet"),
  39357. weight: math.unit(268, "lb"),
  39358. name: "Caribou",
  39359. image: {
  39360. source: "./media/characters/lisa/caribou.svg",
  39361. extra: 1843/1633,
  39362. bottom: 29/1872
  39363. }
  39364. },
  39365. frontCaribou: {
  39366. height: math.unit(7 + 2/12, "feet"),
  39367. weight: math.unit(268, "lb"),
  39368. name: "Front (Caribou)",
  39369. image: {
  39370. source: "./media/characters/lisa/front-caribou.svg",
  39371. extra: 1818/1638,
  39372. bottom: 52/1870
  39373. }
  39374. },
  39375. sideCaribou: {
  39376. height: math.unit(7 + 2/12, "feet"),
  39377. weight: math.unit(268, "lb"),
  39378. name: "Side (Caribou)",
  39379. image: {
  39380. source: "./media/characters/lisa/side-caribou.svg",
  39381. extra: 1851/1635,
  39382. bottom: 16/1867
  39383. }
  39384. },
  39385. backCaribou: {
  39386. height: math.unit(7 + 2/12, "feet"),
  39387. weight: math.unit(268, "lb"),
  39388. name: "Back (Caribou)",
  39389. image: {
  39390. source: "./media/characters/lisa/back-caribou.svg",
  39391. extra: 1801/1604,
  39392. bottom: 44/1845
  39393. }
  39394. },
  39395. mawCaribou: {
  39396. height: math.unit(1.45, "feet"),
  39397. name: "Maw (Caribou)",
  39398. image: {
  39399. source: "./media/characters/lisa/maw-caribou.svg"
  39400. }
  39401. },
  39402. mawCaribousune: {
  39403. height: math.unit(1.45, "feet"),
  39404. name: "Maw (Caribousune)",
  39405. image: {
  39406. source: "./media/characters/lisa/maw-caribousune.svg"
  39407. }
  39408. },
  39409. pawCaribousune: {
  39410. height: math.unit(1.61, "feet"),
  39411. name: "Paw (Caribou)",
  39412. image: {
  39413. source: "./media/characters/lisa/paw-caribousune.svg"
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(6, "feet")
  39421. },
  39422. {
  39423. name: "God Size",
  39424. height: math.unit(72, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Towering",
  39429. height: math.unit(288, "feet")
  39430. },
  39431. {
  39432. name: "City Size",
  39433. height: math.unit(48384, "feet")
  39434. },
  39435. {
  39436. name: "Continental",
  39437. height: math.unit(4200, "miles")
  39438. },
  39439. {
  39440. name: "Planet Eater",
  39441. height: math.unit(42, "earths")
  39442. },
  39443. {
  39444. name: "Star Swallower",
  39445. height: math.unit(42, "solarradii")
  39446. },
  39447. {
  39448. name: "System Swallower",
  39449. height: math.unit(84000, "AU")
  39450. },
  39451. {
  39452. name: "Galaxy Gobbler",
  39453. height: math.unit(42, "galaxies")
  39454. },
  39455. {
  39456. name: "Universe Devourer",
  39457. height: math.unit(42, "universes")
  39458. },
  39459. {
  39460. name: "Multiverse Muncher",
  39461. height: math.unit(42, "multiverses")
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39467. {
  39468. front: {
  39469. height: math.unit(36, "feet"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/shadow-rat/front.svg",
  39473. extra: 1845/1758,
  39474. bottom: 83/1928
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(36, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39488. {
  39489. side: {
  39490. height: math.unit(8, "feet"),
  39491. weight: math.unit(2630, "lb"),
  39492. name: "Side",
  39493. image: {
  39494. source: "./media/characters/torallia/side.svg",
  39495. extra: 2164/2021,
  39496. bottom: 371/2535
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Mortal Interaction",
  39503. height: math.unit(8, "feet")
  39504. },
  39505. {
  39506. name: "Natural",
  39507. height: math.unit(24, "feet"),
  39508. default: true
  39509. },
  39510. {
  39511. name: "Giant",
  39512. height: math.unit(80, "feet")
  39513. },
  39514. {
  39515. name: "Kaiju",
  39516. height: math.unit(240, "feet")
  39517. },
  39518. {
  39519. name: "Macro",
  39520. height: math.unit(800, "feet")
  39521. },
  39522. {
  39523. name: "Macro+",
  39524. height: math.unit(2400, "feet")
  39525. },
  39526. {
  39527. name: "Macro++",
  39528. height: math.unit(8000, "feet")
  39529. },
  39530. {
  39531. name: "City-Crushing",
  39532. height: math.unit(24000, "feet")
  39533. },
  39534. {
  39535. name: "Mountain-Mashing",
  39536. height: math.unit(80000, "feet")
  39537. },
  39538. {
  39539. name: "District Demolisher",
  39540. height: math.unit(240000, "feet")
  39541. },
  39542. {
  39543. name: "Tri-County Terror",
  39544. height: math.unit(800000, "feet")
  39545. },
  39546. {
  39547. name: "State Smasher",
  39548. height: math.unit(2.4e6, "feet")
  39549. },
  39550. {
  39551. name: "Nation Nemesis",
  39552. height: math.unit(8e6, "feet")
  39553. },
  39554. {
  39555. name: "Continent Cracker",
  39556. height: math.unit(2.4e7, "feet")
  39557. },
  39558. {
  39559. name: "Planet-Pillaging",
  39560. height: math.unit(8e7, "feet")
  39561. },
  39562. {
  39563. name: "Earth-Eclipsing",
  39564. height: math.unit(2.4e8, "feet")
  39565. },
  39566. {
  39567. name: "Jovian-Jostling",
  39568. height: math.unit(8e8, "feet")
  39569. },
  39570. {
  39571. name: "Gas Giant Gulper",
  39572. height: math.unit(2.4e9, "feet")
  39573. },
  39574. {
  39575. name: "Astral Annihilator",
  39576. height: math.unit(8e9, "feet")
  39577. },
  39578. {
  39579. name: "Celestial Conqueror",
  39580. height: math.unit(2.4e10, "feet")
  39581. },
  39582. {
  39583. name: "Sol-Swallowing",
  39584. height: math.unit(8e10, "feet")
  39585. },
  39586. {
  39587. name: "Hunter of the Heavens",
  39588. height: math.unit(2.4e13, "feet")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(6 + 8/12, "feet"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/rebecca-pawlson/front.svg",
  39600. extra: 1737/1596,
  39601. bottom: 107/1844
  39602. }
  39603. },
  39604. back: {
  39605. height: math.unit(6 + 8/12, "feet"),
  39606. name: "Back",
  39607. image: {
  39608. source: "./media/characters/rebecca-pawlson/back.svg",
  39609. extra: 1702/1523,
  39610. bottom: 86/1788
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(6 + 8/12, "feet")
  39618. },
  39619. {
  39620. name: "Mini Macro",
  39621. height: math.unit(10, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(100, "feet")
  39627. },
  39628. {
  39629. name: "Mega Macro",
  39630. height: math.unit(2500, "feet")
  39631. },
  39632. {
  39633. name: "Giga Macro",
  39634. height: math.unit(50, "miles")
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(7 + 6/12, "feet"),
  39643. weight: math.unit(600, "lb"),
  39644. name: "Front",
  39645. image: {
  39646. source: "./media/characters/moxie-nova/front.svg",
  39647. extra: 1734/1652,
  39648. bottom: 41/1775
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(7 + 6/12, "feet"),
  39656. default: true
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39662. {
  39663. goat: {
  39664. height: math.unit(4, "feet"),
  39665. weight: math.unit(180, "lb"),
  39666. name: "Goat",
  39667. image: {
  39668. source: "./media/characters/tiffany/goat.svg",
  39669. extra: 1845/1595,
  39670. bottom: 106/1951
  39671. }
  39672. },
  39673. front: {
  39674. height: math.unit(5, "feet"),
  39675. weight: math.unit(150, "lb"),
  39676. name: "Foxcoon",
  39677. image: {
  39678. source: "./media/characters/tiffany/foxcoon.svg",
  39679. extra: 1941/1845,
  39680. bottom: 58/1999
  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: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(8, "feet"),
  39697. weight: math.unit(300, "lb"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/raxinath/front.svg",
  39701. extra: 1407/1309,
  39702. bottom: 39/1446
  39703. }
  39704. },
  39705. back: {
  39706. height: math.unit(8, "feet"),
  39707. weight: math.unit(300, "lb"),
  39708. name: "Back",
  39709. image: {
  39710. source: "./media/characters/raxinath/back.svg",
  39711. extra: 1405/1315,
  39712. bottom: 9/1414
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Speck",
  39719. height: math.unit(0.5, "nm")
  39720. },
  39721. {
  39722. name: "Micro",
  39723. height: math.unit(3, "inches")
  39724. },
  39725. {
  39726. name: "Kobold",
  39727. height: math.unit(3, "feet")
  39728. },
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(8, "feet"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Giant",
  39736. height: math.unit(50, "feet")
  39737. },
  39738. {
  39739. name: "Macro",
  39740. height: math.unit(1000, "feet")
  39741. },
  39742. {
  39743. name: "Megamacro",
  39744. height: math.unit(1, "mile")
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(10, "feet"),
  39753. weight: math.unit(1442, "lb"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/mal-dragon/front.svg",
  39757. extra: 1515/1444,
  39758. bottom: 113/1628
  39759. }
  39760. },
  39761. back: {
  39762. height: math.unit(10, "feet"),
  39763. weight: math.unit(1442, "lb"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/mal-dragon/back.svg",
  39767. extra: 1527/1434,
  39768. bottom: 25/1552
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Mortal Interaction",
  39775. height: math.unit(10, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "Large",
  39780. height: math.unit(30, "feet")
  39781. },
  39782. {
  39783. name: "Kaiju",
  39784. height: math.unit(300, "feet")
  39785. },
  39786. {
  39787. name: "Megamacro",
  39788. height: math.unit(10000, "feet")
  39789. },
  39790. {
  39791. name: "Continent Cracker",
  39792. height: math.unit(30000000, "feet")
  39793. },
  39794. {
  39795. name: "Sol-Swallowing",
  39796. height: math.unit(1e11, "feet")
  39797. },
  39798. {
  39799. name: "Light Universal",
  39800. height: math.unit(5, "universes")
  39801. },
  39802. {
  39803. name: "Universe Atoms",
  39804. height: math.unit(1.829e9, "universes")
  39805. },
  39806. {
  39807. name: "Light Multiversal",
  39808. height: math.unit(5, "multiverses")
  39809. },
  39810. {
  39811. name: "Multiverse Atoms",
  39812. height: math.unit(1.829e9, "multiverses")
  39813. },
  39814. {
  39815. name: "Fabric of Time",
  39816. height: math.unit(1e262, "multiverses")
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(9, "feet"),
  39825. weight: math.unit(1050, "lb"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/tabitha/front.svg",
  39829. extra: 2083/1994,
  39830. bottom: 68/2151
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Baseline",
  39837. height: math.unit(9, "feet"),
  39838. default: true
  39839. },
  39840. {
  39841. name: "Giant",
  39842. height: math.unit(90, "feet")
  39843. },
  39844. {
  39845. name: "Macro",
  39846. height: math.unit(900, "feet")
  39847. },
  39848. {
  39849. name: "Megamacro",
  39850. height: math.unit(9000, "feet")
  39851. },
  39852. {
  39853. name: "City-Crushing",
  39854. height: math.unit(27000, "feet")
  39855. },
  39856. {
  39857. name: "Mountain-Mashing",
  39858. height: math.unit(90000, "feet")
  39859. },
  39860. {
  39861. name: "Nation Nemesis",
  39862. height: math.unit(9e6, "feet")
  39863. },
  39864. {
  39865. name: "Continent Cracker",
  39866. height: math.unit(27e6, "feet")
  39867. },
  39868. {
  39869. name: "Earth-Eclipsing",
  39870. height: math.unit(2.7e8, "feet")
  39871. },
  39872. {
  39873. name: "Gas Giant Gulper",
  39874. height: math.unit(2.7e9, "feet")
  39875. },
  39876. {
  39877. name: "Sol-Swallowing",
  39878. height: math.unit(9e10, "feet")
  39879. },
  39880. {
  39881. name: "Galaxy Gulper",
  39882. height: math.unit(9, "galaxies")
  39883. },
  39884. {
  39885. name: "Cosmos Churner",
  39886. height: math.unit(9, "universes")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(160, "cm"),
  39895. weight: math.unit(55, "kg"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/tow/front.svg",
  39899. extra: 1751/1722,
  39900. bottom: 74/1825
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Norm",
  39907. height: math.unit(160, "cm")
  39908. },
  39909. {
  39910. name: "Casual",
  39911. height: math.unit(3200, "m"),
  39912. default: true
  39913. },
  39914. {
  39915. name: "Show-Off",
  39916. height: math.unit(160, "km")
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39922. {
  39923. front: {
  39924. height: math.unit(7 + 11/12, "feet"),
  39925. weight: math.unit(342.8, "lb"),
  39926. name: "Front",
  39927. image: {
  39928. source: "./media/characters/vivian-orca-dragon/front.svg",
  39929. extra: 1890/1865,
  39930. bottom: 28/1918
  39931. }
  39932. },
  39933. },
  39934. [
  39935. {
  39936. name: "Micro",
  39937. height: math.unit(5, "inches")
  39938. },
  39939. {
  39940. name: "Normal",
  39941. height: math.unit(7 + 11/12, "feet"),
  39942. default: true
  39943. },
  39944. {
  39945. name: "Macro",
  39946. height: math.unit(395 + 7/12, "feet")
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39952. {
  39953. side: {
  39954. height: math.unit(10, "feet"),
  39955. weight: math.unit(1442, "lb"),
  39956. name: "Side",
  39957. image: {
  39958. source: "./media/characters/lotherakon/side.svg",
  39959. extra: 1604/1497,
  39960. bottom: 89/1693
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Mortal Interaction",
  39967. height: math.unit(10, "feet")
  39968. },
  39969. {
  39970. name: "Large",
  39971. height: math.unit(30, "feet"),
  39972. default: true
  39973. },
  39974. {
  39975. name: "Giant",
  39976. height: math.unit(100, "feet")
  39977. },
  39978. {
  39979. name: "Kaiju",
  39980. height: math.unit(300, "feet")
  39981. },
  39982. {
  39983. name: "Macro",
  39984. height: math.unit(1000, "feet")
  39985. },
  39986. {
  39987. name: "Macro+",
  39988. height: math.unit(3000, "feet")
  39989. },
  39990. {
  39991. name: "Megamacro",
  39992. height: math.unit(10000, "feet")
  39993. },
  39994. {
  39995. name: "City-Crushing",
  39996. height: math.unit(30000, "feet")
  39997. },
  39998. {
  39999. name: "Continent Cracker",
  40000. height: math.unit(30e6, "feet")
  40001. },
  40002. {
  40003. name: "Earth Eclipsing",
  40004. height: math.unit(3e8, "feet")
  40005. },
  40006. {
  40007. name: "Gas Giant Gulper",
  40008. height: math.unit(3e9, "feet")
  40009. },
  40010. {
  40011. name: "Sol-Swallowing",
  40012. height: math.unit(1e11, "feet")
  40013. },
  40014. {
  40015. name: "System Swallower",
  40016. height: math.unit(3e14, "feet")
  40017. },
  40018. {
  40019. name: "Galaxy Gulper",
  40020. height: math.unit(10, "galaxies")
  40021. },
  40022. {
  40023. name: "Light Universal",
  40024. height: math.unit(5, "universes")
  40025. },
  40026. {
  40027. name: "Universe Palm",
  40028. height: math.unit(20, "universes")
  40029. },
  40030. {
  40031. name: "Light Multiversal",
  40032. height: math.unit(5, "multiverses")
  40033. },
  40034. {
  40035. name: "Multiverse Palm",
  40036. height: math.unit(20, "multiverses")
  40037. },
  40038. {
  40039. name: "Inferno Incarnate",
  40040. height: math.unit(1e7, "multiverses")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(8, "feet"),
  40049. weight: math.unit(1200, "lb"),
  40050. name: "Front",
  40051. image: {
  40052. source: "./media/characters/malithee/front.svg",
  40053. extra: 1675/1640,
  40054. bottom: 162/1837
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Mortal Interaction",
  40061. height: math.unit(8, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Large",
  40066. height: math.unit(24, "feet")
  40067. },
  40068. {
  40069. name: "Kaiju",
  40070. height: math.unit(240, "feet")
  40071. },
  40072. {
  40073. name: "Megamacro",
  40074. height: math.unit(8000, "feet")
  40075. },
  40076. {
  40077. name: "Continent Cracker",
  40078. height: math.unit(24e6, "feet")
  40079. },
  40080. {
  40081. name: "Earth-Eclipsing",
  40082. height: math.unit(2.4e8, "feet")
  40083. },
  40084. {
  40085. name: "Sol-Swallowing",
  40086. height: math.unit(8e10, "feet")
  40087. },
  40088. {
  40089. name: "Galaxy Gulper",
  40090. height: math.unit(8, "galaxies")
  40091. },
  40092. {
  40093. name: "Light Universal",
  40094. height: math.unit(4, "universes")
  40095. },
  40096. {
  40097. name: "Universe Atoms",
  40098. height: math.unit(1.829e9, "universes")
  40099. },
  40100. {
  40101. name: "Light Multiversal",
  40102. height: math.unit(4, "multiverses")
  40103. },
  40104. {
  40105. name: "Multiverse Atoms",
  40106. height: math.unit(1.829e9, "multiverses")
  40107. },
  40108. {
  40109. name: "Nigh-Omnipresence",
  40110. height: math.unit(8e261, "multiverses")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(10, "feet"),
  40119. weight: math.unit(1500, "lb"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/miles-thestia/front.svg",
  40123. extra: 1812/1727,
  40124. bottom: 86/1898
  40125. }
  40126. },
  40127. back: {
  40128. height: math.unit(10, "feet"),
  40129. weight: math.unit(1500, "lb"),
  40130. name: "Back",
  40131. image: {
  40132. source: "./media/characters/miles-thestia/back.svg",
  40133. extra: 1799/1690,
  40134. bottom: 47/1846
  40135. }
  40136. },
  40137. frontNsfw: {
  40138. height: math.unit(10, "feet"),
  40139. weight: math.unit(1500, "lb"),
  40140. name: "Front (NSFW)",
  40141. image: {
  40142. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40143. extra: 1812/1727,
  40144. bottom: 86/1898
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Mini-Macro",
  40151. height: math.unit(10, "feet"),
  40152. default: true
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(25, "feet"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/titan-s-wulf/front.svg",
  40164. extra: 1560/1484,
  40165. bottom: 76/1636
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Smallest",
  40172. height: math.unit(25, "feet"),
  40173. default: true
  40174. },
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(200, "feet")
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(200000, "feet")
  40182. },
  40183. {
  40184. name: "Multiversal Original",
  40185. height: math.unit(10000, "multiverses")
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(8, "feet"),
  40194. weight: math.unit(553, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/tawendeh/front.svg",
  40198. extra: 2365/2268,
  40199. bottom: 83/2448
  40200. }
  40201. },
  40202. frontClothed: {
  40203. height: math.unit(8, "feet"),
  40204. weight: math.unit(553, "lb"),
  40205. name: "Front (Clothed)",
  40206. image: {
  40207. source: "./media/characters/tawendeh/front-clothed.svg",
  40208. extra: 2365/2268,
  40209. bottom: 83/2448
  40210. }
  40211. },
  40212. back: {
  40213. height: math.unit(8, "feet"),
  40214. weight: math.unit(553, "lb"),
  40215. name: "Back",
  40216. image: {
  40217. source: "./media/characters/tawendeh/back.svg",
  40218. extra: 2397/2294,
  40219. bottom: 42/2439
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Mortal Interaction",
  40226. height: math.unit(8, "feet"),
  40227. default: true
  40228. },
  40229. {
  40230. name: "Giant",
  40231. height: math.unit(80, "feet")
  40232. },
  40233. {
  40234. name: "Macro",
  40235. height: math.unit(800, "feet")
  40236. },
  40237. {
  40238. name: "Megamacro",
  40239. height: math.unit(8000, "feet")
  40240. },
  40241. {
  40242. name: "City-Crushing",
  40243. height: math.unit(24000, "feet")
  40244. },
  40245. {
  40246. name: "Mountain-Mashing",
  40247. height: math.unit(80000, "feet")
  40248. },
  40249. {
  40250. name: "Nation Nemesis",
  40251. height: math.unit(8e6, "feet")
  40252. },
  40253. {
  40254. name: "Continent Cracker",
  40255. height: math.unit(24e6, "feet")
  40256. },
  40257. {
  40258. name: "Earth-Eclipsing",
  40259. height: math.unit(2.4e8, "feet")
  40260. },
  40261. {
  40262. name: "Gas Giant Gulper",
  40263. height: math.unit(2.4e9, "feet")
  40264. },
  40265. {
  40266. name: "Sol-Swallowing",
  40267. height: math.unit(8e10, "feet")
  40268. },
  40269. {
  40270. name: "Galaxy Gulper",
  40271. height: math.unit(8, "galaxies")
  40272. },
  40273. {
  40274. name: "Cosmos Churner",
  40275. height: math.unit(8, "universes")
  40276. },
  40277. {
  40278. name: "Omnipotent Otter",
  40279. height: math.unit(80, "universes")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(2.6, "meters"),
  40288. weight: math.unit(900, "kg"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/neesha/front.svg",
  40292. extra: 1803/1653,
  40293. bottom: 128/1931
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(2.6, "meters"),
  40301. default: true
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(50, "meters")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(5, "feet"),
  40314. weight: math.unit(185, "lb"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/kyera/front.svg",
  40318. extra: 1875/1790,
  40319. bottom: 96/1971
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(5, "feet"),
  40327. default: true
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(7 + 6/12, "feet"),
  40336. weight: math.unit(540, "lb"),
  40337. name: "Front",
  40338. image: {
  40339. source: "./media/characters/yuko/front.svg",
  40340. extra: 1282/1222,
  40341. bottom: 101/1383
  40342. }
  40343. },
  40344. frontClothed: {
  40345. height: math.unit(7 + 6/12, "feet"),
  40346. weight: math.unit(540, "lb"),
  40347. name: "Front (Clothed)",
  40348. image: {
  40349. source: "./media/characters/yuko/front-clothed.svg",
  40350. extra: 1282/1222,
  40351. bottom: 101/1383
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(7 + 6/12, "feet"),
  40359. default: true
  40360. },
  40361. {
  40362. name: "Macro",
  40363. height: math.unit(26 + 9/12, "feet")
  40364. },
  40365. {
  40366. name: "Megamacro",
  40367. height: math.unit(300, "feet")
  40368. },
  40369. {
  40370. name: "Gigamacro",
  40371. height: math.unit(5000, "feet")
  40372. },
  40373. {
  40374. name: "Planetary",
  40375. height: math.unit(10000, "miles")
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(8 + 2/12, "feet"),
  40384. weight: math.unit(600, "lb"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/deam-nitrel/front.svg",
  40388. extra: 1308/1234,
  40389. bottom: 125/1433
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Normal",
  40396. height: math.unit(8 + 2/12, "feet"),
  40397. default: true
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(6.1, "feet"),
  40406. weight: math.unit(180, "lb"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/skyress/front.svg",
  40410. extra: 1045/915,
  40411. bottom: 28/1073
  40412. }
  40413. },
  40414. maw: {
  40415. height: math.unit(1, "feet"),
  40416. name: "Maw",
  40417. image: {
  40418. source: "./media/characters/skyress/maw.svg"
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(6.1, "feet"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Macro",
  40430. height: math.unit(200, "feet")
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(4 + 2/12, "feet"),
  40439. weight: math.unit(40, "kg"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/amethyst-jones/front.svg",
  40443. extra: 1220/1150,
  40444. bottom: 101/1321
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(4 + 2/12, "feet"),
  40452. default: true
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(1.7, "m"),
  40461. weight: math.unit(135, "lb"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/jade/front.svg",
  40465. extra: 1818/1767,
  40466. bottom: 32/1850
  40467. }
  40468. },
  40469. back: {
  40470. height: math.unit(1.7, "m"),
  40471. weight: math.unit(135, "lb"),
  40472. name: "Back",
  40473. image: {
  40474. source: "./media/characters/jade/back.svg",
  40475. extra: 1869/1809,
  40476. bottom: 35/1904
  40477. }
  40478. },
  40479. hand: {
  40480. height: math.unit(0.24, "m"),
  40481. name: "Hand",
  40482. image: {
  40483. source: "./media/characters/jade/hand.svg"
  40484. }
  40485. },
  40486. foot: {
  40487. height: math.unit(0.263, "m"),
  40488. name: "Foot",
  40489. image: {
  40490. source: "./media/characters/jade/foot.svg"
  40491. }
  40492. },
  40493. dick: {
  40494. height: math.unit(0.47, "m"),
  40495. name: "Dick",
  40496. image: {
  40497. source: "./media/characters/jade/dick.svg"
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Micro",
  40504. height: math.unit(22, "cm")
  40505. },
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(1.7, "m"),
  40509. default: true
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(152, "m")
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40519. {
  40520. front: {
  40521. height: math.unit(100, "miles"),
  40522. weight: math.unit(20000, "tons"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/cookie/front.svg",
  40526. extra: 1125/1070,
  40527. bottom: 30/1155
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Big",
  40534. height: math.unit(50, "feet")
  40535. },
  40536. {
  40537. name: "Macro",
  40538. height: math.unit(100, "miles"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Megamacro",
  40543. height: math.unit(90000, "miles")
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(6, "feet"),
  40552. weight: math.unit(145, "lb"),
  40553. name: "Front",
  40554. image: {
  40555. source: "./media/characters/farzian/front.svg",
  40556. extra: 1902/1693,
  40557. bottom: 108/2010
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Macro",
  40564. height: math.unit(500, "feet"),
  40565. default: true
  40566. },
  40567. ]
  40568. ))
  40569. characterMakers.push(() => makeCharacter(
  40570. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40571. {
  40572. front: {
  40573. height: math.unit(3 + 6/12, "feet"),
  40574. weight: math.unit(50, "lb"),
  40575. name: "Front",
  40576. image: {
  40577. source: "./media/characters/kimberly-tilson/front.svg",
  40578. extra: 1400/1322,
  40579. bottom: 36/1436
  40580. }
  40581. },
  40582. back: {
  40583. height: math.unit(3 + 6/12, "feet"),
  40584. weight: math.unit(50, "lb"),
  40585. name: "Back",
  40586. image: {
  40587. source: "./media/characters/kimberly-tilson/back.svg",
  40588. extra: 1370/1307,
  40589. bottom: 20/1390
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(3 + 6/12, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(1148, "feet"),
  40606. weight: math.unit(34057, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/harthos/front.svg",
  40610. extra: 1391/1339,
  40611. bottom: 13/1404
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Macro",
  40618. height: math.unit(1148, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(15, "feet"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/hypatia/front.svg",
  40631. extra: 1653/1591,
  40632. bottom: 79/1732
  40633. }
  40634. },
  40635. },
  40636. [
  40637. {
  40638. name: "Normal",
  40639. height: math.unit(15, "feet")
  40640. },
  40641. {
  40642. name: "Small",
  40643. height: math.unit(300, "feet")
  40644. },
  40645. {
  40646. name: "Macro",
  40647. height: math.unit(2500, "feet"),
  40648. default: true
  40649. },
  40650. {
  40651. name: "Mega Macro",
  40652. height: math.unit(1500, "miles")
  40653. },
  40654. {
  40655. name: "Giga Macro",
  40656. height: math.unit(1.5e6, "miles")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(6, "feet"),
  40665. weight: math.unit(200, "lb"),
  40666. name: "Front",
  40667. image: {
  40668. source: "./media/characters/wulver/front.svg",
  40669. extra: 1724/1632,
  40670. bottom: 130/1854
  40671. }
  40672. },
  40673. frontNsfw: {
  40674. height: math.unit(6, "feet"),
  40675. weight: math.unit(200, "lb"),
  40676. name: "Front (NSFW)",
  40677. image: {
  40678. source: "./media/characters/wulver/front-nsfw.svg",
  40679. extra: 1724/1632,
  40680. bottom: 130/1854
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Human-Sized",
  40687. height: math.unit(6, "feet")
  40688. },
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(4, "meters"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Large",
  40696. height: math.unit(6, "m")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(7, "feet"),
  40705. name: "Front",
  40706. image: {
  40707. source: "./media/characters/maru/front.svg",
  40708. extra: 1595/1570,
  40709. bottom: 0/1595
  40710. }
  40711. },
  40712. },
  40713. [
  40714. {
  40715. name: "Normal",
  40716. height: math.unit(7, "feet"),
  40717. default: true
  40718. },
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(700, "feet")
  40722. },
  40723. {
  40724. name: "Mega Macro",
  40725. height: math.unit(25, "miles")
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(6, "feet"),
  40734. weight: math.unit(170, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/xenon/front.svg",
  40738. extra: 1376/1305,
  40739. bottom: 56/1432
  40740. }
  40741. },
  40742. back: {
  40743. height: math.unit(6, "feet"),
  40744. weight: math.unit(170, "lb"),
  40745. name: "Back",
  40746. image: {
  40747. source: "./media/characters/xenon/back.svg",
  40748. extra: 1328/1259,
  40749. bottom: 95/1423
  40750. }
  40751. },
  40752. maw: {
  40753. height: math.unit(0.52, "feet"),
  40754. name: "Maw",
  40755. image: {
  40756. source: "./media/characters/xenon/maw.svg"
  40757. }
  40758. },
  40759. hand: {
  40760. height: math.unit(0.82, "feet"),
  40761. name: "Hand",
  40762. image: {
  40763. source: "./media/characters/xenon/hand.svg"
  40764. }
  40765. },
  40766. foot: {
  40767. height: math.unit(1.13, "feet"),
  40768. name: "Foot",
  40769. image: {
  40770. source: "./media/characters/xenon/foot.svg"
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Micro",
  40777. height: math.unit(0.8, "inches")
  40778. },
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(6, "feet")
  40782. },
  40783. {
  40784. name: "Macro",
  40785. height: math.unit(50, "feet"),
  40786. default: true
  40787. },
  40788. {
  40789. name: "Macro+",
  40790. height: math.unit(250, "feet")
  40791. },
  40792. {
  40793. name: "Megamacro",
  40794. height: math.unit(1500, "feet")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(7 + 5/12, "feet"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/zane/front.svg",
  40806. extra: 1260/1203,
  40807. bottom: 94/1354
  40808. }
  40809. },
  40810. back: {
  40811. height: math.unit(5.05, "feet"),
  40812. name: "Back",
  40813. image: {
  40814. source: "./media/characters/zane/back.svg",
  40815. extra: 893/829,
  40816. bottom: 30/923
  40817. }
  40818. },
  40819. werewolf: {
  40820. height: math.unit(11, "feet"),
  40821. name: "Werewolf",
  40822. image: {
  40823. source: "./media/characters/zane/werewolf.svg",
  40824. extra: 1383/1323,
  40825. bottom: 89/1472
  40826. }
  40827. },
  40828. foot: {
  40829. height: math.unit(1.46, "feet"),
  40830. name: "Foot",
  40831. image: {
  40832. source: "./media/characters/zane/foot.svg"
  40833. }
  40834. },
  40835. footFront: {
  40836. height: math.unit(0.784, "feet"),
  40837. name: "Foot (Front)",
  40838. image: {
  40839. source: "./media/characters/zane/foot-front.svg"
  40840. }
  40841. },
  40842. dick: {
  40843. height: math.unit(1.95, "feet"),
  40844. name: "Dick",
  40845. image: {
  40846. source: "./media/characters/zane/dick.svg"
  40847. }
  40848. },
  40849. dickWerewolf: {
  40850. height: math.unit(3.77, "feet"),
  40851. name: "Dick (Werewolf)",
  40852. image: {
  40853. source: "./media/characters/zane/dick.svg"
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(7 + 5/12, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(6 + 2/12, "feet"),
  40870. weight: math.unit(284, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/benni-desparque/front.svg",
  40874. extra: 1353/1126,
  40875. bottom: 69/1422
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Civilian",
  40882. height: math.unit(6 + 2/12, "feet")
  40883. },
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(98, "feet"),
  40887. default: true
  40888. },
  40889. {
  40890. name: "Kaiju Fighter",
  40891. height: math.unit(268, "feet")
  40892. },
  40893. ]
  40894. ))
  40895. characterMakers.push(() => makeCharacter(
  40896. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40897. {
  40898. front: {
  40899. height: math.unit(5, "feet"),
  40900. weight: math.unit(105, "lb"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/maxine/front.svg",
  40904. extra: 1386/1250,
  40905. bottom: 71/1457
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(5, "feet"),
  40913. default: true
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(11 + 7/12, "feet"),
  40922. weight: math.unit(9576, "lb"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/scaly/front.svg",
  40926. extra: 888/867,
  40927. bottom: 36/924
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Normal",
  40934. height: math.unit(11 + 7/12, "feet"),
  40935. default: true
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6 + 3/12, "feet"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/saelria/front.svg",
  40947. extra: 1243/1138,
  40948. bottom: 46/1289
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Micro",
  40955. height: math.unit(6, "inches"),
  40956. },
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(6 + 3/12, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(25, "feet")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(80, "meters"),
  40973. weight: math.unit(7000, "tonnes"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/tef/front.svg",
  40977. extra: 2036/1991,
  40978. bottom: 54/2090
  40979. }
  40980. },
  40981. back: {
  40982. height: math.unit(80, "meters"),
  40983. weight: math.unit(7000, "tonnes"),
  40984. name: "Back",
  40985. image: {
  40986. source: "./media/characters/tef/back.svg",
  40987. extra: 2036/1991,
  40988. bottom: 54/2090
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Macro",
  40995. height: math.unit(80, "meters"),
  40996. default: true
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41002. {
  41003. front: {
  41004. height: math.unit(13, "feet"),
  41005. weight: math.unit(6, "tons"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/rover/front.svg",
  41009. extra: 1233/1156,
  41010. bottom: 50/1283
  41011. }
  41012. },
  41013. back: {
  41014. height: math.unit(13, "feet"),
  41015. weight: math.unit(6, "tons"),
  41016. name: "Back",
  41017. image: {
  41018. source: "./media/characters/rover/back.svg",
  41019. extra: 1327/1258,
  41020. bottom: 39/1366
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Normal",
  41027. height: math.unit(13, "feet"),
  41028. default: true
  41029. },
  41030. {
  41031. name: "Macro",
  41032. height: math.unit(1300, "feet")
  41033. },
  41034. {
  41035. name: "Megamacro",
  41036. height: math.unit(1300, "miles")
  41037. },
  41038. {
  41039. name: "Gigamacro",
  41040. height: math.unit(1300000, "miles")
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(6, "feet"),
  41049. weight: math.unit(150, "lb"),
  41050. name: "Front",
  41051. image: {
  41052. source: "./media/characters/ariz/front.svg",
  41053. extra: 1401/1346,
  41054. bottom: 5/1406
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(10, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(6, "feet"),
  41071. weight: math.unit(140, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/sigrun/front.svg",
  41075. extra: 1418/1359,
  41076. bottom: 27/1445
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Macro",
  41083. height: math.unit(35, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41090. {
  41091. front: {
  41092. height: math.unit(6, "feet"),
  41093. weight: math.unit(150, "lb"),
  41094. name: "Front",
  41095. image: {
  41096. source: "./media/characters/numin/front.svg",
  41097. extra: 1433/1388,
  41098. bottom: 12/1445
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Macro",
  41105. height: math.unit(21.5, "km"),
  41106. default: true
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41112. {
  41113. front: {
  41114. height: math.unit(6, "feet"),
  41115. weight: math.unit(463, "lb"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/melwa/front.svg",
  41119. extra: 1307/1248,
  41120. bottom: 93/1400
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Macro",
  41127. height: math.unit(50, "meters"),
  41128. default: true
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(325, "feet"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/zorkaiju/front.svg",
  41140. extra: 1955/1814,
  41141. bottom: 40/1995
  41142. }
  41143. },
  41144. frontExtended: {
  41145. height: math.unit(325, "feet"),
  41146. name: "Front (Extended)",
  41147. image: {
  41148. source: "./media/characters/zorkaiju/front-extended.svg",
  41149. extra: 1955/1814,
  41150. bottom: 40/1995
  41151. }
  41152. },
  41153. side: {
  41154. height: math.unit(325, "feet"),
  41155. name: "Side",
  41156. image: {
  41157. source: "./media/characters/zorkaiju/side.svg",
  41158. extra: 1495/1396,
  41159. bottom: 17/1512
  41160. }
  41161. },
  41162. sideExtended: {
  41163. height: math.unit(325, "feet"),
  41164. name: "Side (Extended)",
  41165. image: {
  41166. source: "./media/characters/zorkaiju/side-extended.svg",
  41167. extra: 1495/1396,
  41168. bottom: 17/1512
  41169. }
  41170. },
  41171. back: {
  41172. height: math.unit(325, "feet"),
  41173. name: "Back",
  41174. image: {
  41175. source: "./media/characters/zorkaiju/back.svg",
  41176. extra: 1959/1821,
  41177. bottom: 31/1990
  41178. }
  41179. },
  41180. backExtended: {
  41181. height: math.unit(325, "feet"),
  41182. name: "Back (Extended)",
  41183. image: {
  41184. source: "./media/characters/zorkaiju/back-extended.svg",
  41185. extra: 1959/1821,
  41186. bottom: 31/1990
  41187. }
  41188. },
  41189. hand: {
  41190. height: math.unit(58.4, "feet"),
  41191. name: "Hand",
  41192. image: {
  41193. source: "./media/characters/zorkaiju/hand.svg"
  41194. }
  41195. },
  41196. handExtended: {
  41197. height: math.unit(61.4, "feet"),
  41198. name: "Hand (Extended)",
  41199. image: {
  41200. source: "./media/characters/zorkaiju/hand-extended.svg"
  41201. }
  41202. },
  41203. foot: {
  41204. height: math.unit(95, "feet"),
  41205. name: "Foot",
  41206. image: {
  41207. source: "./media/characters/zorkaiju/foot.svg"
  41208. }
  41209. },
  41210. leftArm: {
  41211. height: math.unit(59, "feet"),
  41212. name: "Left Arm",
  41213. image: {
  41214. source: "./media/characters/zorkaiju/left-arm.svg"
  41215. }
  41216. },
  41217. rightArm: {
  41218. height: math.unit(59, "feet"),
  41219. name: "Right Arm",
  41220. image: {
  41221. source: "./media/characters/zorkaiju/right-arm.svg"
  41222. }
  41223. },
  41224. tail: {
  41225. height: math.unit(104, "feet"),
  41226. name: "Tail",
  41227. image: {
  41228. source: "./media/characters/zorkaiju/tail.svg"
  41229. }
  41230. },
  41231. tailExtended: {
  41232. height: math.unit(104, "feet"),
  41233. name: "Tail (Extended)",
  41234. image: {
  41235. source: "./media/characters/zorkaiju/tail-extended.svg"
  41236. }
  41237. },
  41238. tailBottom: {
  41239. height: math.unit(104, "feet"),
  41240. name: "Tail Bottom",
  41241. image: {
  41242. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41243. }
  41244. },
  41245. crystal: {
  41246. height: math.unit(27.54, "feet"),
  41247. name: "Crystal",
  41248. image: {
  41249. source: "./media/characters/zorkaiju/crystal.svg"
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Kaiju",
  41256. height: math.unit(325, "feet"),
  41257. default: true
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(6 + 1/12, "feet"),
  41266. weight: math.unit(115, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/bailey-belfry/front.svg",
  41270. extra: 1240/1121,
  41271. bottom: 101/1341
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(6 + 1/12, "feet"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41285. {
  41286. side: {
  41287. height: math.unit(4, "meters"),
  41288. weight: math.unit(250, "kg"),
  41289. name: "Side",
  41290. image: {
  41291. source: "./media/characters/blacky/side.svg",
  41292. extra: 1027/919,
  41293. bottom: 43/1070
  41294. }
  41295. },
  41296. maw: {
  41297. height: math.unit(1, "meters"),
  41298. name: "Maw",
  41299. image: {
  41300. source: "./media/characters/blacky/maw.svg"
  41301. }
  41302. },
  41303. paw: {
  41304. height: math.unit(1, "meters"),
  41305. name: "Paw",
  41306. image: {
  41307. source: "./media/characters/blacky/paw.svg"
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Normal",
  41314. height: math.unit(4, "meters"),
  41315. default: true
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41321. {
  41322. front: {
  41323. height: math.unit(170, "cm"),
  41324. weight: math.unit(66, "kg"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/thux-ei/front.svg",
  41328. extra: 1109/1011,
  41329. bottom: 8/1117
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Normal",
  41336. height: math.unit(170, "cm"),
  41337. default: true
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(5, "feet"),
  41346. weight: math.unit(120, "lb"),
  41347. name: "Front",
  41348. image: {
  41349. source: "./media/characters/roxanne-voltaire/front.svg",
  41350. extra: 1901/1779,
  41351. bottom: 53/1954
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Normal",
  41358. height: math.unit(5, "feet"),
  41359. default: true
  41360. },
  41361. {
  41362. name: "Giant",
  41363. height: math.unit(50, "feet")
  41364. },
  41365. {
  41366. name: "Titan",
  41367. height: math.unit(500, "feet")
  41368. },
  41369. {
  41370. name: "Macro",
  41371. height: math.unit(5000, "feet")
  41372. },
  41373. {
  41374. name: "Megamacro",
  41375. height: math.unit(50000, "feet")
  41376. },
  41377. {
  41378. name: "Gigamacro",
  41379. height: math.unit(500000, "feet")
  41380. },
  41381. {
  41382. name: "Teramacro",
  41383. height: math.unit(5e6, "feet")
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41389. {
  41390. front: {
  41391. height: math.unit(6 + 2/12, "feet"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/squeaks/front.svg",
  41395. extra: 1823/1768,
  41396. bottom: 138/1961
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Micro",
  41403. height: math.unit(0.5, "inches")
  41404. },
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(6 + 2/12, "feet"),
  41408. default: true
  41409. },
  41410. {
  41411. name: "Macro",
  41412. height: math.unit(600, "feet")
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(1.72, "meters"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/archinger/front.svg",
  41424. extra: 1861/1675,
  41425. bottom: 125/1986
  41426. }
  41427. },
  41428. back: {
  41429. height: math.unit(1.72, "meters"),
  41430. name: "Back",
  41431. image: {
  41432. source: "./media/characters/archinger/back.svg",
  41433. extra: 1844/1701,
  41434. bottom: 104/1948
  41435. }
  41436. },
  41437. cock: {
  41438. height: math.unit(0.59, "feet"),
  41439. name: "Cock",
  41440. image: {
  41441. source: "./media/characters/archinger/cock.svg"
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(1.72, "meters"),
  41449. default: true
  41450. },
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(84, "meters")
  41454. },
  41455. {
  41456. name: "Macro+",
  41457. height: math.unit(112, "meters")
  41458. },
  41459. {
  41460. name: "Macro++",
  41461. height: math.unit(960, "meters")
  41462. },
  41463. {
  41464. name: "Macro+++",
  41465. height: math.unit(4, "km")
  41466. },
  41467. {
  41468. name: "Macro++++",
  41469. height: math.unit(48, "km")
  41470. },
  41471. {
  41472. name: "Macro+++++",
  41473. height: math.unit(4500, "km")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(5 + 5/12, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/alsnapz/front.svg",
  41485. extra: 1157/1065,
  41486. bottom: 42/1199
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(5 + 5/12, "feet"),
  41494. default: true
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41500. {
  41501. side: {
  41502. height: math.unit(3.2, "earths"),
  41503. name: "Side",
  41504. image: {
  41505. source: "./media/characters/mag/side.svg",
  41506. extra: 1331/1008,
  41507. bottom: 52/1383
  41508. }
  41509. },
  41510. wing: {
  41511. height: math.unit(1.94, "earths"),
  41512. name: "Wing",
  41513. image: {
  41514. source: "./media/characters/mag/wing.svg"
  41515. }
  41516. },
  41517. dick: {
  41518. height: math.unit(1.8, "earths"),
  41519. name: "Dick",
  41520. image: {
  41521. source: "./media/characters/mag/dick.svg"
  41522. }
  41523. },
  41524. ass: {
  41525. height: math.unit(1.33, "earths"),
  41526. name: "Ass",
  41527. image: {
  41528. source: "./media/characters/mag/ass.svg"
  41529. }
  41530. },
  41531. head: {
  41532. height: math.unit(1.1, "earths"),
  41533. name: "Head",
  41534. image: {
  41535. source: "./media/characters/mag/head.svg"
  41536. }
  41537. },
  41538. maw: {
  41539. height: math.unit(1.62, "earths"),
  41540. name: "Maw",
  41541. image: {
  41542. source: "./media/characters/mag/maw.svg"
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Small",
  41549. height: math.unit(162, "feet")
  41550. },
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(3.2, "earths"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(512, "feet"),
  41563. weight: math.unit(63509, "tonnes"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/vorrel-harroc/front.svg",
  41567. extra: 1075/1063,
  41568. bottom: 62/1137
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(10, "feet")
  41576. },
  41577. {
  41578. name: "Macro",
  41579. height: math.unit(512, "feet"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Megamacro",
  41584. height: math.unit(256, "miles")
  41585. },
  41586. {
  41587. name: "Gigamacro",
  41588. height: math.unit(4096, "miles")
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41594. {
  41595. side: {
  41596. height: math.unit(50, "feet"),
  41597. name: "Side",
  41598. image: {
  41599. source: "./media/characters/froimar/side.svg",
  41600. extra: 855/638,
  41601. bottom: 99/954
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Macro",
  41608. height: math.unit(50, "feet"),
  41609. default: true
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41615. {
  41616. front: {
  41617. height: math.unit(210, "miles"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/timothy/front.svg",
  41621. extra: 1007/943,
  41622. bottom: 62/1069
  41623. }
  41624. },
  41625. frontSkirt: {
  41626. height: math.unit(210, "miles"),
  41627. name: "Front (Skirt)",
  41628. image: {
  41629. source: "./media/characters/timothy/front-skirt.svg",
  41630. extra: 1007/943,
  41631. bottom: 62/1069
  41632. }
  41633. },
  41634. frontCoat: {
  41635. height: math.unit(210, "miles"),
  41636. name: "Front (Coat)",
  41637. image: {
  41638. source: "./media/characters/timothy/front-coat.svg",
  41639. extra: 1007/943,
  41640. bottom: 62/1069
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(210, "miles"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Megamacro",
  41652. height: math.unit(210000, "miles")
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(188, "feet"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/pyotr/front.svg",
  41664. extra: 1912/1826,
  41665. bottom: 18/1930
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Macro",
  41672. height: math.unit(188, "feet"),
  41673. default: true
  41674. },
  41675. {
  41676. name: "Megamacro",
  41677. height: math.unit(8, "miles")
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41683. {
  41684. side: {
  41685. height: math.unit(10, "feet"),
  41686. weight: math.unit(4500, "lb"),
  41687. name: "Side",
  41688. image: {
  41689. source: "./media/characters/ackart/side.svg",
  41690. extra: 1776/1668,
  41691. bottom: 116/1892
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(10, "feet"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41705. {
  41706. side: {
  41707. height: math.unit(21, "feet"),
  41708. name: "Side",
  41709. image: {
  41710. source: "./media/characters/nolow/side.svg",
  41711. extra: 1484/1434,
  41712. bottom: 85/1569
  41713. }
  41714. },
  41715. sideErect: {
  41716. height: math.unit(21, "feet"),
  41717. name: "Side-erect",
  41718. image: {
  41719. source: "./media/characters/nolow/side-erect.svg",
  41720. extra: 1484/1434,
  41721. bottom: 85/1569
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Regular",
  41728. height: math.unit(12, "feet")
  41729. },
  41730. {
  41731. name: "Big Chee",
  41732. height: math.unit(21, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41739. {
  41740. front: {
  41741. height: math.unit(7, "feet"),
  41742. weight: math.unit(250, "lb"),
  41743. name: "Front",
  41744. image: {
  41745. source: "./media/characters/nines/front.svg",
  41746. extra: 1741/1607,
  41747. bottom: 41/1782
  41748. }
  41749. },
  41750. side: {
  41751. height: math.unit(7, "feet"),
  41752. weight: math.unit(250, "lb"),
  41753. name: "Side",
  41754. image: {
  41755. source: "./media/characters/nines/side.svg",
  41756. extra: 1854/1735,
  41757. bottom: 93/1947
  41758. }
  41759. },
  41760. back: {
  41761. height: math.unit(7, "feet"),
  41762. weight: math.unit(250, "lb"),
  41763. name: "Back",
  41764. image: {
  41765. source: "./media/characters/nines/back.svg",
  41766. extra: 1748/1615,
  41767. bottom: 20/1768
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Megamacro",
  41774. height: math.unit(99, "km"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(5 + 10/12, "feet"),
  41784. weight: math.unit(210, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/zenith/front.svg",
  41788. extra: 1531/1452,
  41789. bottom: 198/1729
  41790. }
  41791. },
  41792. back: {
  41793. height: math.unit(5 + 10/12, "feet"),
  41794. weight: math.unit(210, "lb"),
  41795. name: "Back",
  41796. image: {
  41797. source: "./media/characters/zenith/back.svg",
  41798. extra: 1571/1487,
  41799. bottom: 75/1646
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(5 + 10/12, "feet"),
  41807. default: true
  41808. }
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(4, "feet"),
  41816. weight: math.unit(60, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/jasper/front.svg",
  41820. extra: 1450/1379,
  41821. bottom: 19/1469
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Normal",
  41828. height: math.unit(4, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(6 + 5/12, "feet"),
  41838. weight: math.unit(290, "lb"),
  41839. name: "Front",
  41840. image: {
  41841. source: "./media/characters/tiberius-thyben/front.svg",
  41842. extra: 757/739,
  41843. bottom: 39/796
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Micro",
  41850. height: math.unit(1.5, "inches")
  41851. },
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(6 + 5/12, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(300, "feet")
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(5 + 6/12, "feet"),
  41868. weight: math.unit(60, "kg"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/sabre/front.svg",
  41872. extra: 738/671,
  41873. bottom: 27/765
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Teeny",
  41880. height: math.unit(2, "inches")
  41881. },
  41882. {
  41883. name: "Smol",
  41884. height: math.unit(8, "inches")
  41885. },
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(5 + 6/12, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Mini-Macro",
  41893. height: math.unit(15, "feet")
  41894. },
  41895. {
  41896. name: "Macro",
  41897. height: math.unit(50, "feet")
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(6 + 4/12, "feet"),
  41906. weight: math.unit(170, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/charlie/front.svg",
  41910. extra: 1348/1228,
  41911. bottom: 15/1363
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Macro",
  41918. height: math.unit(1700, "meters"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "MegaMacro",
  41923. height: math.unit(20400, "meters")
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(6 + 3/12, "feet"),
  41932. weight: math.unit(185, "lb"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/susan-grant/front.svg",
  41936. extra: 1351/1327,
  41937. bottom: 26/1377
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Normal",
  41944. height: math.unit(6 + 3/12, "feet"),
  41945. default: true
  41946. },
  41947. {
  41948. name: "Macro",
  41949. height: math.unit(225, "feet")
  41950. },
  41951. {
  41952. name: "Macro+",
  41953. height: math.unit(900, "feet")
  41954. },
  41955. {
  41956. name: "MegaMacro",
  41957. height: math.unit(14400, "feet")
  41958. },
  41959. ]
  41960. ))
  41961. characterMakers.push(() => makeCharacter(
  41962. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41963. {
  41964. front: {
  41965. height: math.unit(5 + 4/12, "feet"),
  41966. weight: math.unit(110, "lb"),
  41967. name: "Front",
  41968. image: {
  41969. source: "./media/characters/axel-isanov/front.svg",
  41970. extra: 1096/1065,
  41971. bottom: 13/1109
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(5 + 4/12, "feet"),
  41979. default: true
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(9, "feet"),
  41988. weight: math.unit(467, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/necahual/front.svg",
  41992. extra: 920/873,
  41993. bottom: 26/946
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(9, "feet"),
  41998. weight: math.unit(467, "lb"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/necahual/back.svg",
  42002. extra: 930/884,
  42003. bottom: 16/946
  42004. }
  42005. },
  42006. frontUnderwear: {
  42007. height: math.unit(9, "feet"),
  42008. weight: math.unit(467, "lb"),
  42009. name: "Front (Underwear)",
  42010. image: {
  42011. source: "./media/characters/necahual/front-underwear.svg",
  42012. extra: 920/873,
  42013. bottom: 26/946
  42014. }
  42015. },
  42016. frontDressed: {
  42017. height: math.unit(9, "feet"),
  42018. weight: math.unit(467, "lb"),
  42019. name: "Front (Dressed)",
  42020. image: {
  42021. source: "./media/characters/necahual/front-dressed.svg",
  42022. extra: 920/873,
  42023. bottom: 26/946
  42024. }
  42025. },
  42026. },
  42027. [
  42028. {
  42029. name: "Comprsesed",
  42030. height: math.unit(9, "feet")
  42031. },
  42032. {
  42033. name: "Natural",
  42034. height: math.unit(15, "feet"),
  42035. default: true
  42036. },
  42037. {
  42038. name: "Boosted",
  42039. height: math.unit(50, "feet")
  42040. },
  42041. {
  42042. name: "Boosted+",
  42043. height: math.unit(150, "feet")
  42044. },
  42045. {
  42046. name: "Max",
  42047. height: math.unit(500, "feet")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(22 + 1/12, "feet"),
  42056. weight: math.unit(3200, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/theo-acacia/front.svg",
  42060. extra: 1796/1741,
  42061. bottom: 83/1879
  42062. }
  42063. },
  42064. frontUnderwear: {
  42065. height: math.unit(22 + 1/12, "feet"),
  42066. weight: math.unit(3200, "lb"),
  42067. name: "Front (Underwear)",
  42068. image: {
  42069. source: "./media/characters/theo-acacia/front-underwear.svg",
  42070. extra: 1796/1741,
  42071. bottom: 83/1879
  42072. }
  42073. },
  42074. frontNude: {
  42075. height: math.unit(22 + 1/12, "feet"),
  42076. weight: math.unit(3200, "lb"),
  42077. name: "Front (Nude)",
  42078. image: {
  42079. source: "./media/characters/theo-acacia/front-nude.svg",
  42080. extra: 1796/1741,
  42081. bottom: 83/1879
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(22 + 1/12, "feet"),
  42089. default: true
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42095. {
  42096. front: {
  42097. height: math.unit(20, "feet"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/astra/front.svg",
  42101. extra: 1850/1714,
  42102. bottom: 106/1956
  42103. }
  42104. },
  42105. frontUndressed: {
  42106. height: math.unit(20, "feet"),
  42107. name: "Front (Undressed)",
  42108. image: {
  42109. source: "./media/characters/astra/front-undressed.svg",
  42110. extra: 1926/1749,
  42111. bottom: 0/1926
  42112. }
  42113. },
  42114. hand: {
  42115. height: math.unit(1.53, "feet"),
  42116. name: "Hand",
  42117. image: {
  42118. source: "./media/characters/astra/hand.svg"
  42119. }
  42120. },
  42121. paw: {
  42122. height: math.unit(1.53, "feet"),
  42123. name: "Paw",
  42124. image: {
  42125. source: "./media/characters/astra/paw.svg"
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Smallest",
  42132. height: math.unit(20, "feet")
  42133. },
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(1e9, "miles"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Larger",
  42141. height: math.unit(5, "multiverses")
  42142. },
  42143. {
  42144. name: "Largest",
  42145. height: math.unit(1e9, "multiverses")
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(8, "feet"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/breanna/front.svg",
  42157. extra: 1912/1632,
  42158. bottom: 33/1945
  42159. }
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Smallest",
  42165. height: math.unit(8, "feet")
  42166. },
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(1, "mile"),
  42170. default: true
  42171. },
  42172. {
  42173. name: "Maximum",
  42174. height: math.unit(1500000000000, "lightyears")
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42180. {
  42181. front: {
  42182. height: math.unit(5 + 11/12, "feet"),
  42183. weight: math.unit(155, "lb"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/cai/front.svg",
  42187. extra: 1823/1702,
  42188. bottom: 32/1855
  42189. }
  42190. },
  42191. back: {
  42192. height: math.unit(5 + 11/12, "feet"),
  42193. weight: math.unit(155, "lb"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/cai/back.svg",
  42197. extra: 1809/1708,
  42198. bottom: 31/1840
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(5 + 11/12, "feet"),
  42206. default: true
  42207. },
  42208. {
  42209. name: "Big",
  42210. height: math.unit(15, "feet")
  42211. },
  42212. {
  42213. name: "Macro",
  42214. height: math.unit(200, "feet")
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(5 + 6/12, "feet"),
  42223. weight: math.unit(160, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42227. extra: 1227/1174,
  42228. bottom: 37/1264
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(444, "meters"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(18 + 7/12, "feet"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/rex/front.svg",
  42248. extra: 1941/1807,
  42249. bottom: 66/2007
  42250. }
  42251. },
  42252. back: {
  42253. height: math.unit(18 + 7/12, "feet"),
  42254. name: "Back",
  42255. image: {
  42256. source: "./media/characters/rex/back.svg",
  42257. extra: 1937/1822,
  42258. bottom: 42/1979
  42259. }
  42260. },
  42261. boot: {
  42262. height: math.unit(3.45, "feet"),
  42263. name: "Boot",
  42264. image: {
  42265. source: "./media/characters/rex/boot.svg"
  42266. }
  42267. },
  42268. paw: {
  42269. height: math.unit(4.17, "feet"),
  42270. name: "Paw",
  42271. image: {
  42272. source: "./media/characters/rex/paw.svg"
  42273. }
  42274. },
  42275. head: {
  42276. height: math.unit(6.728, "feet"),
  42277. name: "Head",
  42278. image: {
  42279. source: "./media/characters/rex/head.svg"
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Nano",
  42286. height: math.unit(18 + 7/12, "feet")
  42287. },
  42288. {
  42289. name: "Micro",
  42290. height: math.unit(1.5, "megameters")
  42291. },
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(440, "megameters"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Macro",
  42299. height: math.unit(2.5, "gigameters")
  42300. },
  42301. {
  42302. name: "Gigamacro",
  42303. height: math.unit(2, "galaxies")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42309. {
  42310. side: {
  42311. height: math.unit(32, "feet"),
  42312. weight: math.unit(250000, "lb"),
  42313. name: "Side",
  42314. image: {
  42315. source: "./media/characters/silverwing/side.svg",
  42316. extra: 1100/1019,
  42317. bottom: 204/1304
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Normal",
  42324. height: math.unit(32, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(6 + 6/12, "feet"),
  42334. weight: math.unit(350, "lb"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/tristan-hawthorne/front.svg",
  42338. extra: 1159/1124,
  42339. bottom: 37/1196
  42340. },
  42341. form: "labrador",
  42342. default: true
  42343. },
  42344. skunkFront: {
  42345. height: math.unit(4 + 6/12, "feet"),
  42346. weight: math.unit(120, "lb"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42350. extra: 1609/1551,
  42351. bottom: 169/1778
  42352. },
  42353. form: "skunk",
  42354. default: true
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(6 + 6/12, "feet"),
  42361. form: "labrador",
  42362. default: true
  42363. },
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(4 + 6/12, "feet"),
  42367. form: "skunk",
  42368. default: true
  42369. },
  42370. ],
  42371. {
  42372. "labrador": {
  42373. name: "Labrador",
  42374. default: true
  42375. },
  42376. "skunk": {
  42377. name: "Skunk"
  42378. }
  42379. }
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(5 + 11/12, "feet"),
  42386. weight: math.unit(190, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/mizu/front.svg",
  42390. extra: 1988/1788,
  42391. bottom: 14/2002
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(5 + 11/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(1.7, "feet"),
  42408. weight: math.unit(50, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/dechroma/front.svg",
  42412. extra: 1095/859,
  42413. bottom: 64/1159
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(1.7, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42427. {
  42428. side: {
  42429. height: math.unit(30, "feet"),
  42430. name: "Side",
  42431. image: {
  42432. source: "./media/characters/veluren-thanazel/side.svg",
  42433. extra: 1611/633,
  42434. bottom: 118/1729
  42435. }
  42436. },
  42437. front: {
  42438. height: math.unit(30, "feet"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/veluren-thanazel/front.svg",
  42442. extra: 1486/636,
  42443. bottom: 238/1724
  42444. }
  42445. },
  42446. head: {
  42447. height: math.unit(21.4, "feet"),
  42448. name: "Head",
  42449. image: {
  42450. source: "./media/characters/veluren-thanazel/head.svg"
  42451. }
  42452. },
  42453. genitals: {
  42454. height: math.unit(19.4, "feet"),
  42455. name: "Genitals",
  42456. image: {
  42457. source: "./media/characters/veluren-thanazel/genitals.svg"
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Social",
  42464. height: math.unit(6, "feet")
  42465. },
  42466. {
  42467. name: "Play",
  42468. height: math.unit(12, "feet")
  42469. },
  42470. {
  42471. name: "True",
  42472. height: math.unit(30, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(7 + 6/12, "feet"),
  42482. weight: math.unit(500, "kg"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/arcturas/front.svg",
  42486. extra: 1700/1500,
  42487. bottom: 145/1845
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Normal",
  42494. height: math.unit(7 + 6/12, "feet"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42501. {
  42502. side: {
  42503. height: math.unit(6, "feet"),
  42504. weight: math.unit(2, "tons"),
  42505. name: "Side",
  42506. image: {
  42507. source: "./media/characters/vitaen/side.svg",
  42508. extra: 1157/617,
  42509. bottom: 122/1279
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(6, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(19, "feet"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/fia-dreamweaver/front.svg",
  42529. extra: 1630/1504,
  42530. bottom: 25/1655
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(19, "feet"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(5 + 4/12, "feet"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/artan/front.svg",
  42550. extra: 1618/1535,
  42551. bottom: 46/1664
  42552. }
  42553. },
  42554. back: {
  42555. height: math.unit(5 + 4/12, "feet"),
  42556. name: "Back",
  42557. image: {
  42558. source: "./media/characters/artan/back.svg",
  42559. extra: 1618/1543,
  42560. bottom: 31/1649
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Normal",
  42567. height: math.unit(5 + 4/12, "feet"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42574. {
  42575. side: {
  42576. height: math.unit(182, "cm"),
  42577. weight: math.unit(1000, "lb"),
  42578. name: "Side",
  42579. image: {
  42580. source: "./media/characters/silver-dragon/side.svg",
  42581. extra: 710/287,
  42582. bottom: 88/798
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Normal",
  42589. height: math.unit(182, "cm"),
  42590. default: true
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42596. {
  42597. side: {
  42598. height: math.unit(6 + 6/12, "feet"),
  42599. weight: math.unit(1.5, "tons"),
  42600. name: "Side",
  42601. image: {
  42602. source: "./media/characters/zephyr/side.svg",
  42603. extra: 1433/586,
  42604. bottom: 109/1542
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Normal",
  42611. height: math.unit(6 + 6/12, "feet"),
  42612. default: true
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42618. {
  42619. side: {
  42620. height: math.unit(1, "feet"),
  42621. name: "Side",
  42622. image: {
  42623. source: "./media/characters/vixye/side.svg",
  42624. extra: 632/541,
  42625. bottom: 0/632
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(1, "feet"),
  42633. default: true
  42634. },
  42635. {
  42636. name: "True",
  42637. height: math.unit(1e15, "multiverses")
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(8 + 2/12, "feet"),
  42646. weight: math.unit(650, "lb"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42650. extra: 1174/1137,
  42651. bottom: 82/1256
  42652. }
  42653. },
  42654. back: {
  42655. height: math.unit(8 + 2/12, "feet"),
  42656. weight: math.unit(650, "lb"),
  42657. name: "Back",
  42658. image: {
  42659. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42660. extra: 1204/1157,
  42661. bottom: 46/1250
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Wildform",
  42668. height: math.unit(8 + 2/12, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(18, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/cyphin/front.svg",
  42681. extra: 970/886,
  42682. bottom: 42/1012
  42683. }
  42684. },
  42685. back: {
  42686. height: math.unit(18, "feet"),
  42687. name: "Back",
  42688. image: {
  42689. source: "./media/characters/cyphin/back.svg",
  42690. extra: 1009/894,
  42691. bottom: 24/1033
  42692. }
  42693. },
  42694. head: {
  42695. height: math.unit(5.05, "feet"),
  42696. name: "Head",
  42697. image: {
  42698. source: "./media/characters/cyphin/head.svg"
  42699. }
  42700. },
  42701. tailbud: {
  42702. height: math.unit(5, "feet"),
  42703. name: "Tailbud",
  42704. image: {
  42705. source: "./media/characters/cyphin/tailbud.svg"
  42706. }
  42707. },
  42708. },
  42709. [
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42714. {
  42715. side: {
  42716. height: math.unit(10, "feet"),
  42717. weight: math.unit(6, "tons"),
  42718. name: "Side",
  42719. image: {
  42720. source: "./media/characters/raijin/side.svg",
  42721. extra: 1529/613,
  42722. bottom: 337/1866
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(10, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42736. {
  42737. side: {
  42738. height: math.unit(9, "feet"),
  42739. name: "Side",
  42740. image: {
  42741. source: "./media/characters/nilghais/side.svg",
  42742. extra: 1047/744,
  42743. bottom: 91/1138
  42744. }
  42745. },
  42746. head: {
  42747. height: math.unit(3.14, "feet"),
  42748. name: "Head",
  42749. image: {
  42750. source: "./media/characters/nilghais/head.svg"
  42751. }
  42752. },
  42753. mouth: {
  42754. height: math.unit(4.6, "feet"),
  42755. name: "Mouth",
  42756. image: {
  42757. source: "./media/characters/nilghais/mouth.svg"
  42758. }
  42759. },
  42760. wings: {
  42761. height: math.unit(24, "feet"),
  42762. name: "Wings",
  42763. image: {
  42764. source: "./media/characters/nilghais/wings.svg"
  42765. }
  42766. },
  42767. ass: {
  42768. height: math.unit(6.12, "feet"),
  42769. name: "Ass",
  42770. image: {
  42771. source: "./media/characters/nilghais/ass.svg"
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(9, "feet"),
  42779. default: true
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42785. {
  42786. regular: {
  42787. height: math.unit(16 + 2/12, "feet"),
  42788. weight: math.unit(2300, "lb"),
  42789. name: "Regular",
  42790. image: {
  42791. source: "./media/characters/zolgar/regular.svg",
  42792. extra: 1246/1004,
  42793. bottom: 124/1370
  42794. }
  42795. },
  42796. boxers: {
  42797. height: math.unit(16 + 2/12, "feet"),
  42798. weight: math.unit(2300, "lb"),
  42799. name: "Boxers",
  42800. image: {
  42801. source: "./media/characters/zolgar/boxers.svg",
  42802. extra: 1246/1004,
  42803. bottom: 124/1370
  42804. }
  42805. },
  42806. armored: {
  42807. height: math.unit(16 + 2/12, "feet"),
  42808. weight: math.unit(2300, "lb"),
  42809. name: "Armored",
  42810. image: {
  42811. source: "./media/characters/zolgar/armored.svg",
  42812. extra: 1246/1004,
  42813. bottom: 124/1370
  42814. }
  42815. },
  42816. goth: {
  42817. height: math.unit(16 + 2/12, "feet"),
  42818. weight: math.unit(2300, "lb"),
  42819. name: "Goth",
  42820. image: {
  42821. source: "./media/characters/zolgar/goth.svg",
  42822. extra: 1246/1004,
  42823. bottom: 124/1370
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Shrunken Down",
  42830. height: math.unit(9 + 2/12, "feet")
  42831. },
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(16 + 2/12, "feet"),
  42835. default: true
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42841. {
  42842. front: {
  42843. height: math.unit(6, "feet"),
  42844. weight: math.unit(168, "lb"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/luca/front.svg",
  42848. extra: 841/667,
  42849. bottom: 102/943
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(6, "feet"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42863. {
  42864. side: {
  42865. height: math.unit(7 + 3/12, "feet"),
  42866. weight: math.unit(312, "lb"),
  42867. name: "Side",
  42868. image: {
  42869. source: "./media/characters/zezo/side.svg",
  42870. extra: 1192/1067,
  42871. bottom: 63/1255
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(7 + 3/12, "feet"),
  42879. default: true
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(5 + 5/12, "feet"),
  42888. weight: math.unit(170, "lb"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/mayso/front.svg",
  42892. extra: 1215/1108,
  42893. bottom: 16/1231
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(5 + 5/12, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(4 + 3/12, "feet"),
  42910. weight: math.unit(80, "lb"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/hess/front.svg",
  42914. extra: 1200/1123,
  42915. bottom: 16/1216
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(4 + 3/12, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42929. {
  42930. front: {
  42931. height: math.unit(1.9, "meters"),
  42932. name: "Front",
  42933. image: {
  42934. source: "./media/characters/ashgar/front.svg",
  42935. extra: 1177/1146,
  42936. bottom: 99/1276
  42937. }
  42938. },
  42939. back: {
  42940. height: math.unit(1.9, "meters"),
  42941. name: "Back",
  42942. image: {
  42943. source: "./media/characters/ashgar/back.svg",
  42944. extra: 1201/1183,
  42945. bottom: 53/1254
  42946. }
  42947. },
  42948. feral: {
  42949. height: math.unit(1.4, "meters"),
  42950. name: "Feral",
  42951. image: {
  42952. source: "./media/characters/ashgar/feral.svg",
  42953. extra: 370/345,
  42954. bottom: 45/415
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Normal",
  42961. height: math.unit(1.9, "meters"),
  42962. default: true
  42963. },
  42964. ]
  42965. ))
  42966. characterMakers.push(() => makeCharacter(
  42967. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42968. {
  42969. regular: {
  42970. height: math.unit(6, "feet"),
  42971. weight: math.unit(220, "lb"),
  42972. name: "Regular",
  42973. image: {
  42974. source: "./media/characters/phillip/regular.svg",
  42975. extra: 1373/1277,
  42976. bottom: 75/1448
  42977. }
  42978. },
  42979. dressed: {
  42980. height: math.unit(6, "feet"),
  42981. weight: math.unit(220, "lb"),
  42982. name: "Dressed",
  42983. image: {
  42984. source: "./media/characters/phillip/dressed.svg",
  42985. extra: 1373/1277,
  42986. bottom: 75/1448
  42987. }
  42988. },
  42989. paw: {
  42990. height: math.unit(1.44, "feet"),
  42991. name: "Paw",
  42992. image: {
  42993. source: "./media/characters/phillip/paw.svg"
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(6, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43007. {
  43008. side: {
  43009. height: math.unit(42, "feet"),
  43010. name: "Side",
  43011. image: {
  43012. source: "./media/characters/uvula/side.svg",
  43013. extra: 683/586,
  43014. bottom: 60/743
  43015. }
  43016. },
  43017. front: {
  43018. height: math.unit(42, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/uvula/front.svg",
  43022. extra: 705/613,
  43023. bottom: 54/759
  43024. }
  43025. },
  43026. maw: {
  43027. height: math.unit(23.5, "feet"),
  43028. name: "Maw",
  43029. image: {
  43030. source: "./media/characters/uvula/maw.svg"
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Original Size",
  43037. height: math.unit(14, "inches")
  43038. },
  43039. {
  43040. name: "Human Size",
  43041. height: math.unit(6, "feet")
  43042. },
  43043. {
  43044. name: "Big",
  43045. height: math.unit(42, "feet"),
  43046. default: true
  43047. },
  43048. {
  43049. name: "Bigger",
  43050. height: math.unit(100, "feet")
  43051. },
  43052. ]
  43053. ))
  43054. characterMakers.push(() => makeCharacter(
  43055. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43056. {
  43057. front: {
  43058. height: math.unit(5 + 11/12, "feet"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/lannah/front.svg",
  43062. extra: 1208/1113,
  43063. bottom: 97/1305
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(5 + 11/12, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43077. {
  43078. front: {
  43079. height: math.unit(6 + 3/12, "feet"),
  43080. weight: math.unit(3.5, "tons"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/emberflame/front.svg",
  43084. extra: 1198/672,
  43085. bottom: 82/1280
  43086. }
  43087. },
  43088. side: {
  43089. height: math.unit(6 + 3/12, "feet"),
  43090. weight: math.unit(3.5, "tons"),
  43091. name: "Side",
  43092. image: {
  43093. source: "./media/characters/emberflame/side.svg",
  43094. extra: 938/527,
  43095. bottom: 56/994
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(6 + 3/12, "feet"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43109. {
  43110. side: {
  43111. height: math.unit(17.5, "feet"),
  43112. weight: math.unit(35, "tons"),
  43113. name: "Side",
  43114. image: {
  43115. source: "./media/characters/sophie-ambrose/side.svg",
  43116. extra: 1573/1242,
  43117. bottom: 71/1644
  43118. }
  43119. },
  43120. maw: {
  43121. height: math.unit(7.4, "feet"),
  43122. name: "Maw",
  43123. image: {
  43124. source: "./media/characters/sophie-ambrose/maw.svg"
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(17.5, "feet"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(280, "feet"),
  43141. weight: math.unit(550, "tons"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/king-mugi/front.svg",
  43145. extra: 1102/947,
  43146. bottom: 104/1206
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "King Mugi",
  43153. height: math.unit(280, "feet"),
  43154. default: true
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43160. {
  43161. front: {
  43162. height: math.unit(64, "meters"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/nova-fox/front.svg",
  43166. extra: 1310/1246,
  43167. bottom: 65/1375
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Macro",
  43174. height: math.unit(64, "meters"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(6 + 3/12, "feet"),
  43184. weight: math.unit(170, "lb"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/sam-bat/front.svg",
  43188. extra: 1601/1411,
  43189. bottom: 125/1726
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(6 + 3/12, "feet"),
  43194. weight: math.unit(170, "lb"),
  43195. name: "Back",
  43196. image: {
  43197. source: "./media/characters/sam-bat/back.svg",
  43198. extra: 1577/1405,
  43199. bottom: 58/1635
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(6 + 3/12, "feet"),
  43207. default: true
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43213. {
  43214. front: {
  43215. height: math.unit(59, "feet"),
  43216. weight: math.unit(40000, "lb"),
  43217. name: "Front",
  43218. image: {
  43219. source: "./media/characters/inari/front.svg",
  43220. extra: 1884/1350,
  43221. bottom: 95/1979
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Gigantamax",
  43228. height: math.unit(59, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(5 + 8/12, "feet"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/elizabeth/front.svg",
  43241. extra: 1395/1298,
  43242. bottom: 54/1449
  43243. }
  43244. },
  43245. mouth: {
  43246. height: math.unit(1.97, "feet"),
  43247. name: "Mouth",
  43248. image: {
  43249. source: "./media/characters/elizabeth/mouth.svg"
  43250. }
  43251. },
  43252. foot: {
  43253. height: math.unit(1.17, "feet"),
  43254. name: "Foot",
  43255. image: {
  43256. source: "./media/characters/elizabeth/foot.svg"
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(5 + 8/12, "feet"),
  43264. default: true
  43265. },
  43266. {
  43267. name: "Minimacro",
  43268. height: math.unit(18, "feet")
  43269. },
  43270. {
  43271. name: "Macro",
  43272. height: math.unit(180, "feet")
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(5 + 2/12, "feet"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/october-gossamer/front.svg",
  43284. extra: 505/454,
  43285. bottom: 7/512
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(5 + 2/12, "feet"),
  43290. name: "Back",
  43291. image: {
  43292. source: "./media/characters/october-gossamer/back.svg",
  43293. extra: 501/454,
  43294. bottom: 11/512
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(5 + 2/12, "feet"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43308. {
  43309. front: {
  43310. height: math.unit(5, "feet"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/epiglottis/front.svg",
  43314. extra: 923/849,
  43315. bottom: 17/940
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Original Size",
  43322. height: math.unit(10, "inches")
  43323. },
  43324. {
  43325. name: "Human Size",
  43326. height: math.unit(5, "feet"),
  43327. default: true
  43328. },
  43329. {
  43330. name: "Big",
  43331. height: math.unit(25, "feet")
  43332. },
  43333. {
  43334. name: "Bigger",
  43335. height: math.unit(50, "feet")
  43336. },
  43337. {
  43338. name: "oh lawd",
  43339. height: math.unit(75, "feet")
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43345. {
  43346. front: {
  43347. height: math.unit(2 + 4/12, "feet"),
  43348. weight: math.unit(60, "lb"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/lerm/front.svg",
  43352. extra: 796/790,
  43353. bottom: 79/875
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(2 + 4/12, "feet"),
  43361. default: true
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(5.5, "feet"),
  43370. weight: math.unit(130, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/xena-nebadon/front.svg",
  43374. extra: 1828/1730,
  43375. bottom: 79/1907
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Tiny Puppy",
  43382. height: math.unit(3, "inches")
  43383. },
  43384. {
  43385. name: "Normal",
  43386. height: math.unit(5.5, "feet"),
  43387. default: true
  43388. },
  43389. {
  43390. name: "Lotta Lady",
  43391. height: math.unit(12, "feet")
  43392. },
  43393. {
  43394. name: "Pretty Big",
  43395. height: math.unit(100, "feet")
  43396. },
  43397. {
  43398. name: "Big",
  43399. height: math.unit(500, "feet")
  43400. },
  43401. {
  43402. name: "Skyscraper Toys",
  43403. height: math.unit(2500, "feet")
  43404. },
  43405. {
  43406. name: "Plane Catcher",
  43407. height: math.unit(8, "miles")
  43408. },
  43409. {
  43410. name: "Planet Toys",
  43411. height: math.unit(15, "earths")
  43412. },
  43413. {
  43414. name: "Stardust",
  43415. height: math.unit(0.25, "galaxies")
  43416. },
  43417. {
  43418. name: "Snacks",
  43419. height: math.unit(70, "universes")
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(1.6, "meters"),
  43428. weight: math.unit(60, "kg"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/bounty/front.svg",
  43432. extra: 1426/1308,
  43433. bottom: 15/1441
  43434. }
  43435. },
  43436. back: {
  43437. height: math.unit(1.6, "meters"),
  43438. weight: math.unit(60, "kg"),
  43439. name: "Back",
  43440. image: {
  43441. source: "./media/characters/bounty/back.svg",
  43442. extra: 1417/1307,
  43443. bottom: 8/1425
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(1.6, "meters"),
  43451. default: true
  43452. },
  43453. {
  43454. name: "Macro",
  43455. height: math.unit(300, "meters")
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43461. {
  43462. front: {
  43463. height: math.unit(2 + 8/12, "feet"),
  43464. weight: math.unit(15, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/mochi/front.svg",
  43468. extra: 1022/852,
  43469. bottom: 435/1457
  43470. }
  43471. },
  43472. back: {
  43473. height: math.unit(2 + 8/12, "feet"),
  43474. weight: math.unit(15, "lb"),
  43475. name: "Back",
  43476. image: {
  43477. source: "./media/characters/mochi/back.svg",
  43478. extra: 1335/1119,
  43479. bottom: 39/1374
  43480. }
  43481. },
  43482. bird: {
  43483. height: math.unit(2 + 8/12, "feet"),
  43484. weight: math.unit(15, "lb"),
  43485. name: "Bird",
  43486. image: {
  43487. source: "./media/characters/mochi/bird.svg",
  43488. extra: 1251/1113,
  43489. bottom: 178/1429
  43490. }
  43491. },
  43492. kaiju: {
  43493. height: math.unit(154, "feet"),
  43494. weight: math.unit(1e7, "lb"),
  43495. name: "Kaiju",
  43496. image: {
  43497. source: "./media/characters/mochi/kaiju.svg",
  43498. extra: 460/324,
  43499. bottom: 40/500
  43500. }
  43501. },
  43502. head: {
  43503. height: math.unit(1.21, "feet"),
  43504. name: "Head",
  43505. image: {
  43506. source: "./media/characters/mochi/head.svg"
  43507. }
  43508. },
  43509. alternateTail: {
  43510. height: math.unit(2 + 8/12, "feet"),
  43511. weight: math.unit(45, "lb"),
  43512. name: "Alternate Tail",
  43513. image: {
  43514. source: "./media/characters/mochi/alternate-tail.svg",
  43515. extra: 139/76,
  43516. bottom: 45/184
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Micro",
  43523. height: math.unit(2, "inches")
  43524. },
  43525. {
  43526. name: "Normal",
  43527. height: math.unit(2 + 8/12, "feet"),
  43528. default: true
  43529. },
  43530. {
  43531. name: "Macro",
  43532. height: math.unit(106, "feet")
  43533. },
  43534. ]
  43535. ))
  43536. characterMakers.push(() => makeCharacter(
  43537. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43538. {
  43539. front: {
  43540. height: math.unit(5.67, "feet"),
  43541. weight: math.unit(135, "lb"),
  43542. name: "Front",
  43543. image: {
  43544. source: "./media/characters/sarel/front.svg",
  43545. extra: 865/788,
  43546. bottom: 97/962
  43547. }
  43548. },
  43549. back: {
  43550. height: math.unit(5.67, "feet"),
  43551. weight: math.unit(135, "lb"),
  43552. name: "Back",
  43553. image: {
  43554. source: "./media/characters/sarel/back.svg",
  43555. extra: 857/777,
  43556. bottom: 32/889
  43557. }
  43558. },
  43559. chozoan: {
  43560. height: math.unit(5.67, "feet"),
  43561. weight: math.unit(135, "lb"),
  43562. name: "Chozoan",
  43563. image: {
  43564. source: "./media/characters/sarel/chozoan.svg",
  43565. extra: 865/788,
  43566. bottom: 97/962
  43567. }
  43568. },
  43569. current: {
  43570. height: math.unit(5.67, "feet"),
  43571. weight: math.unit(135, "lb"),
  43572. name: "Current",
  43573. image: {
  43574. source: "./media/characters/sarel/current.svg",
  43575. extra: 865/788,
  43576. bottom: 97/962
  43577. }
  43578. },
  43579. head: {
  43580. height: math.unit(1.77, "feet"),
  43581. name: "Head",
  43582. image: {
  43583. source: "./media/characters/sarel/head.svg"
  43584. }
  43585. },
  43586. claws: {
  43587. height: math.unit(1.8, "feet"),
  43588. name: "Claws",
  43589. image: {
  43590. source: "./media/characters/sarel/claws.svg"
  43591. }
  43592. },
  43593. clawsAlt: {
  43594. height: math.unit(1.8, "feet"),
  43595. name: "Claws-alt",
  43596. image: {
  43597. source: "./media/characters/sarel/claws-alt.svg"
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(5.67, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(5500, "feet"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/alyonia/front.svg",
  43617. extra: 1200/1135,
  43618. bottom: 29/1229
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(5500, "feet"),
  43623. name: "Back",
  43624. image: {
  43625. source: "./media/characters/alyonia/back.svg",
  43626. extra: 1205/1138,
  43627. bottom: 10/1215
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Small",
  43634. height: math.unit(10, "feet")
  43635. },
  43636. {
  43637. name: "Macro",
  43638. height: math.unit(500, "feet")
  43639. },
  43640. {
  43641. name: "Mega Macro",
  43642. height: math.unit(5500, "feet"),
  43643. default: true
  43644. },
  43645. {
  43646. name: "Mega Macro+",
  43647. height: math.unit(500000, "feet")
  43648. },
  43649. {
  43650. name: "Giga Macro",
  43651. height: math.unit(3000, "miles")
  43652. },
  43653. {
  43654. name: "Tera Macro",
  43655. height: math.unit(2.8e6, "miles")
  43656. },
  43657. {
  43658. name: "Galactic",
  43659. height: math.unit(120000, "lightyears")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43665. {
  43666. werewolf: {
  43667. height: math.unit(8, "feet"),
  43668. weight: math.unit(425, "lb"),
  43669. name: "Werewolf",
  43670. image: {
  43671. source: "./media/characters/autumn/werewolf.svg",
  43672. extra: 2154/2031,
  43673. bottom: 160/2314
  43674. }
  43675. },
  43676. human: {
  43677. height: math.unit(5 + 8/12, "feet"),
  43678. weight: math.unit(150, "lb"),
  43679. name: "Human",
  43680. image: {
  43681. source: "./media/characters/autumn/human.svg",
  43682. extra: 1200/1149,
  43683. bottom: 30/1230
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(8, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(8 + 5/12, "feet"),
  43700. weight: math.unit(825, "lb"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/cobalt-charizard/front.svg",
  43704. extra: 1268/1155,
  43705. bottom: 122/1390
  43706. }
  43707. },
  43708. side: {
  43709. height: math.unit(8 + 5/12, "feet"),
  43710. weight: math.unit(825, "lb"),
  43711. name: "Side",
  43712. image: {
  43713. source: "./media/characters/cobalt-charizard/side.svg",
  43714. extra: 1348/1257,
  43715. bottom: 58/1406
  43716. }
  43717. },
  43718. gMax: {
  43719. height: math.unit(134 + 11/12, "feet"),
  43720. name: "G-Max",
  43721. image: {
  43722. source: "./media/characters/cobalt-charizard/g-max.svg",
  43723. extra: 1835/1541,
  43724. bottom: 151/1986
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Normal",
  43731. height: math.unit(8 + 5/12, "feet"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(6 + 3/12, "feet"),
  43741. weight: math.unit(210, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/stella/front.svg",
  43745. extra: 3549/3335,
  43746. bottom: 51/3600
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Normal",
  43753. height: math.unit(6 + 3/12, "feet"),
  43754. default: true
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(5, "feet"),
  43763. weight: math.unit(90, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/riley-bishop/front.svg",
  43767. extra: 1450/1428,
  43768. bottom: 152/1602
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Normal",
  43775. height: math.unit(5, "feet"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43782. {
  43783. side: {
  43784. height: math.unit(8 + 2/12, "feet"),
  43785. weight: math.unit(500, "kg"),
  43786. name: "Side",
  43787. image: {
  43788. source: "./media/characters/theo-arcanine/side.svg",
  43789. extra: 1342/1074,
  43790. bottom: 111/1453
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Normal",
  43797. height: math.unit(8 + 2/12, "feet"),
  43798. default: true
  43799. },
  43800. ]
  43801. ))
  43802. characterMakers.push(() => makeCharacter(
  43803. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43804. {
  43805. front: {
  43806. height: math.unit(4, "feet"),
  43807. name: "Front",
  43808. image: {
  43809. source: "./media/characters/kali/front.svg",
  43810. extra: 1921/1357,
  43811. bottom: 70/1991
  43812. }
  43813. },
  43814. },
  43815. [
  43816. {
  43817. name: "Normal",
  43818. height: math.unit(4, "feet"),
  43819. default: true
  43820. },
  43821. {
  43822. name: "Macro",
  43823. height: math.unit(32, "meters")
  43824. },
  43825. {
  43826. name: "Macro+",
  43827. height: math.unit(150, "meters")
  43828. },
  43829. {
  43830. name: "Megamacro",
  43831. height: math.unit(7500, "meters")
  43832. },
  43833. {
  43834. name: "Megamacro+",
  43835. height: math.unit(80, "kilometers")
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43841. {
  43842. side: {
  43843. height: math.unit(5 + 11/12, "feet"),
  43844. weight: math.unit(236, "lb"),
  43845. name: "Side",
  43846. image: {
  43847. source: "./media/characters/gapp/side.svg",
  43848. extra: 775/340,
  43849. bottom: 58/833
  43850. }
  43851. },
  43852. mouth: {
  43853. height: math.unit(2.98, "feet"),
  43854. name: "Mouth",
  43855. image: {
  43856. source: "./media/characters/gapp/mouth.svg"
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Normal",
  43863. height: math.unit(5 + 1/12, "feet"),
  43864. default: true
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(6, "feet"),
  43873. name: "Front",
  43874. image: {
  43875. source: "./media/characters/persephone/front.svg",
  43876. extra: 1895/1717,
  43877. bottom: 96/1991
  43878. }
  43879. },
  43880. back: {
  43881. height: math.unit(6, "feet"),
  43882. name: "Back",
  43883. image: {
  43884. source: "./media/characters/persephone/back.svg",
  43885. extra: 1868/1679,
  43886. bottom: 26/1894
  43887. }
  43888. },
  43889. casual: {
  43890. height: math.unit(6, "feet"),
  43891. name: "Casual",
  43892. image: {
  43893. source: "./media/characters/persephone/casual.svg",
  43894. extra: 1713/1541,
  43895. bottom: 76/1789
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Human Size",
  43902. height: math.unit(6, "feet")
  43903. },
  43904. {
  43905. name: "Big Steppy",
  43906. height: math.unit(600, "meters"),
  43907. default: true
  43908. },
  43909. {
  43910. name: "Galaxy Brain",
  43911. height: math.unit(1, "zettameter")
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(1.85, "meters"),
  43920. name: "Front",
  43921. image: {
  43922. source: "./media/characters/riley-foxthing/front.svg",
  43923. extra: 1495/1354,
  43924. bottom: 122/1617
  43925. }
  43926. },
  43927. frontAlt: {
  43928. height: math.unit(1.85, "meters"),
  43929. name: "Front (Alt)",
  43930. image: {
  43931. source: "./media/characters/riley-foxthing/front-alt.svg",
  43932. extra: 1572/1389,
  43933. bottom: 116/1688
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal Sized",
  43940. height: math.unit(1.85, "meters"),
  43941. default: true
  43942. },
  43943. {
  43944. name: "Quite Sizable",
  43945. height: math.unit(5, "meters")
  43946. },
  43947. {
  43948. name: "Rather Large",
  43949. height: math.unit(20, "meters")
  43950. },
  43951. {
  43952. name: "Macro",
  43953. height: math.unit(450, "meters")
  43954. },
  43955. {
  43956. name: "Giga",
  43957. height: math.unit(5, "km")
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43963. {
  43964. front: {
  43965. height: math.unit(6, "feet"),
  43966. weight: math.unit(200, "lb"),
  43967. name: "Front",
  43968. image: {
  43969. source: "./media/characters/blizzard/front.svg",
  43970. extra: 1136/990,
  43971. bottom: 136/1272
  43972. }
  43973. },
  43974. back: {
  43975. height: math.unit(6, "feet"),
  43976. weight: math.unit(200, "lb"),
  43977. name: "Back",
  43978. image: {
  43979. source: "./media/characters/blizzard/back.svg",
  43980. extra: 1175/1034,
  43981. bottom: 97/1272
  43982. }
  43983. },
  43984. sitting: {
  43985. height: math.unit(3.725, "feet"),
  43986. weight: math.unit(200, "lb"),
  43987. name: "Sitting",
  43988. image: {
  43989. source: "./media/characters/blizzard/sitting.svg",
  43990. extra: 581/485,
  43991. bottom: 90/671
  43992. }
  43993. },
  43994. frontWizard: {
  43995. height: math.unit(7.9, "feet"),
  43996. weight: math.unit(200, "lb"),
  43997. name: "Front (Wizard)",
  43998. image: {
  43999. source: "./media/characters/blizzard/front-wizard.svg"
  44000. }
  44001. },
  44002. backWizard: {
  44003. height: math.unit(7.9, "feet"),
  44004. weight: math.unit(200, "lb"),
  44005. name: "Back (Wizard)",
  44006. image: {
  44007. source: "./media/characters/blizzard/back-wizard.svg"
  44008. }
  44009. },
  44010. frontNsfw: {
  44011. height: math.unit(6, "feet"),
  44012. weight: math.unit(200, "lb"),
  44013. name: "Front (NSFW)",
  44014. image: {
  44015. source: "./media/characters/blizzard/front-nsfw.svg",
  44016. extra: 1136/990,
  44017. bottom: 136/1272
  44018. }
  44019. },
  44020. backNsfw: {
  44021. height: math.unit(6, "feet"),
  44022. weight: math.unit(200, "lb"),
  44023. name: "Back (NSFW)",
  44024. image: {
  44025. source: "./media/characters/blizzard/back-nsfw.svg",
  44026. extra: 1175/1034,
  44027. bottom: 97/1272
  44028. }
  44029. },
  44030. sittingNsfw: {
  44031. height: math.unit(3.725, "feet"),
  44032. weight: math.unit(200, "lb"),
  44033. name: "Sitting (NSFW)",
  44034. image: {
  44035. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44036. extra: 581/485,
  44037. bottom: 90/671
  44038. }
  44039. },
  44040. wizardFrontNsfw: {
  44041. height: math.unit(7.9, "feet"),
  44042. weight: math.unit(200, "lb"),
  44043. name: "Wizard (Front, NSFW)",
  44044. image: {
  44045. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(5 + 2/12, "feet"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/lumi/front.svg",
  44065. extra: 1328/1268,
  44066. bottom: 103/1431
  44067. }
  44068. },
  44069. back: {
  44070. height: math.unit(5 + 2/12, "feet"),
  44071. name: "Back",
  44072. image: {
  44073. source: "./media/characters/lumi/back.svg",
  44074. extra: 1381/1327,
  44075. bottom: 43/1424
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(5 + 2/12, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(5 + 9/12, "feet"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/aliya-cotton/front.svg",
  44095. extra: 577/564,
  44096. bottom: 29/606
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(5 + 9/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(2.7, "meters"),
  44113. weight: math.unit(25000, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/noah-luxray/front.svg",
  44117. extra: 1644/825,
  44118. bottom: 339/1983
  44119. }
  44120. },
  44121. side: {
  44122. height: math.unit(2.97, "meters"),
  44123. weight: math.unit(25000, "lb"),
  44124. name: "Side",
  44125. image: {
  44126. source: "./media/characters/noah-luxray/side.svg",
  44127. extra: 1319/650,
  44128. bottom: 163/1482
  44129. }
  44130. },
  44131. dick: {
  44132. height: math.unit(7.4, "feet"),
  44133. weight: math.unit(2500, "lb"),
  44134. name: "Dick",
  44135. image: {
  44136. source: "./media/characters/noah-luxray/dick.svg"
  44137. }
  44138. },
  44139. dickAlt: {
  44140. height: math.unit(10.83, "feet"),
  44141. weight: math.unit(2500, "lb"),
  44142. name: "Dick-alt",
  44143. image: {
  44144. source: "./media/characters/noah-luxray/dick-alt.svg"
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "BIG",
  44151. height: math.unit(2.7, "meters"),
  44152. default: true
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44158. {
  44159. standing: {
  44160. height: math.unit(183, "cm"),
  44161. weight: math.unit(68, "kg"),
  44162. name: "Standing",
  44163. image: {
  44164. source: "./media/characters/arion/standing.svg",
  44165. extra: 1869/1807,
  44166. bottom: 93/1962
  44167. }
  44168. },
  44169. reclining: {
  44170. height: math.unit(70.5, "cm"),
  44171. weight: math.unit(68, "lb"),
  44172. name: "Reclining",
  44173. image: {
  44174. source: "./media/characters/arion/reclining.svg",
  44175. extra: 937/870,
  44176. bottom: 63/1000
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Colossus Size, Low",
  44183. height: math.unit(33, "meters"),
  44184. default: true
  44185. },
  44186. {
  44187. name: "Colossus Size, Mid",
  44188. height: math.unit(52, "meters")
  44189. },
  44190. {
  44191. name: "Colossus Size, High",
  44192. height: math.unit(60, "meters")
  44193. },
  44194. {
  44195. name: "Titan Size, Low",
  44196. height: math.unit(91, "meters"),
  44197. },
  44198. {
  44199. name: "Titan Size, Mid",
  44200. height: math.unit(122, "meters")
  44201. },
  44202. {
  44203. name: "Titan Size, High",
  44204. height: math.unit(162, "meters")
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(53, "meters"),
  44213. name: "Front",
  44214. image: {
  44215. source: "./media/characters/stellar-marbey/front.svg",
  44216. extra: 1913/1805,
  44217. bottom: 92/2005
  44218. }
  44219. },
  44220. back: {
  44221. height: math.unit(53, "meters"),
  44222. name: "Back",
  44223. image: {
  44224. source: "./media/characters/stellar-marbey/back.svg",
  44225. extra: 1960/1851,
  44226. bottom: 28/1988
  44227. }
  44228. },
  44229. mouth: {
  44230. height: math.unit(3.5, "meters"),
  44231. name: "Mouth",
  44232. image: {
  44233. source: "./media/characters/stellar-marbey/mouth.svg"
  44234. }
  44235. },
  44236. },
  44237. [
  44238. {
  44239. name: "Macro",
  44240. height: math.unit(53, "meters"),
  44241. default: true
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(8 + 1/12, "feet"),
  44250. weight: math.unit(233, "lb"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/matsu/front.svg",
  44254. extra: 832/772,
  44255. bottom: 40/872
  44256. }
  44257. },
  44258. back: {
  44259. height: math.unit(8 + 1/12, "feet"),
  44260. weight: math.unit(233, "lb"),
  44261. name: "Back",
  44262. image: {
  44263. source: "./media/characters/matsu/back.svg",
  44264. extra: 839/780,
  44265. bottom: 47/886
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(8 + 1/12, "feet"),
  44273. default: true
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(4, "feet"),
  44282. weight: math.unit(148, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/thiz/front.svg",
  44286. extra: 1913/1748,
  44287. bottom: 62/1975
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(4, "feet"),
  44295. default: true
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44301. {
  44302. front: {
  44303. height: math.unit(7 + 6/12, "feet"),
  44304. weight: math.unit(267, "lb"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/marcel/front.svg",
  44308. extra: 1221/1096,
  44309. bottom: 76/1297
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(7 + 6/12, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44323. {
  44324. side: {
  44325. height: math.unit(42, "meters"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/flake/side.svg",
  44329. extra: 1525/1306,
  44330. bottom: 209/1734
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(42, "meters"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44344. {
  44345. dressed: {
  44346. height: math.unit(6 + 4/12, "feet"),
  44347. weight: math.unit(520, "lb"),
  44348. name: "Dressed",
  44349. image: {
  44350. source: "./media/characters/someonne/dressed.svg",
  44351. extra: 1020/1010,
  44352. bottom: 178/1198
  44353. }
  44354. },
  44355. undressed: {
  44356. height: math.unit(6 + 4/12, "feet"),
  44357. weight: math.unit(520, "lb"),
  44358. name: "Undressed",
  44359. image: {
  44360. source: "./media/characters/someonne/undressed.svg",
  44361. extra: 1019/1014,
  44362. bottom: 169/1188
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Normal",
  44369. height: math.unit(6 + 4/12, "feet"),
  44370. default: true
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(3, "feet"),
  44379. weight: math.unit(30, "lb"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/till/front.svg",
  44383. extra: 892/823,
  44384. bottom: 55/947
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(3, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(9 + 8/12, "feet"),
  44401. weight: math.unit(800, "lb"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/sydney-heki/front.svg",
  44405. extra: 1360/1300,
  44406. bottom: 22/1382
  44407. }
  44408. },
  44409. back: {
  44410. height: math.unit(9 + 8/12, "feet"),
  44411. weight: math.unit(800, "lb"),
  44412. name: "Back",
  44413. image: {
  44414. source: "./media/characters/sydney-heki/back.svg",
  44415. extra: 1356/1293,
  44416. bottom: 12/1368
  44417. }
  44418. },
  44419. frontDressed: {
  44420. height: math.unit(9 + 8/12, "feet"),
  44421. weight: math.unit(800, "lb"),
  44422. name: "Front-dressed",
  44423. image: {
  44424. source: "./media/characters/sydney-heki/front-dressed.svg",
  44425. extra: 1360/1300,
  44426. bottom: 22/1382
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Normal",
  44433. height: math.unit(9 + 8/12, "feet"),
  44434. default: true
  44435. },
  44436. {
  44437. name: "Macro",
  44438. height: math.unit(500, "feet")
  44439. },
  44440. {
  44441. name: "Megamacro",
  44442. height: math.unit(3.6, "miles")
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(200, "cm"),
  44451. weight: math.unit(250, "lb"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/fowler-karlsson/front.svg",
  44455. extra: 897/845,
  44456. bottom: 123/1020
  44457. }
  44458. },
  44459. back: {
  44460. height: math.unit(200, "cm"),
  44461. weight: math.unit(250, "lb"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/fowler-karlsson/back.svg",
  44465. extra: 999/944,
  44466. bottom: 26/1025
  44467. }
  44468. },
  44469. dick: {
  44470. height: math.unit(1.92, "feet"),
  44471. weight: math.unit(150, "lb"),
  44472. name: "Dick",
  44473. image: {
  44474. source: "./media/characters/fowler-karlsson/dick.svg"
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(200, "cm"),
  44482. default: true
  44483. },
  44484. {
  44485. name: "Smaller Macro",
  44486. height: math.unit(90, "m")
  44487. },
  44488. {
  44489. name: "Macro",
  44490. height: math.unit(150, "m")
  44491. },
  44492. {
  44493. name: "Bigger Macro",
  44494. height: math.unit(300, "m")
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44500. {
  44501. side: {
  44502. height: math.unit(8 + 2/12, "feet"),
  44503. weight: math.unit(1, "tonne"),
  44504. name: "Side",
  44505. image: {
  44506. source: "./media/characters/rylide/side.svg",
  44507. extra: 1318/1034,
  44508. bottom: 106/1424
  44509. }
  44510. },
  44511. sitting: {
  44512. height: math.unit(303, "cm"),
  44513. weight: math.unit(1, "tonne"),
  44514. name: "Sitting",
  44515. image: {
  44516. source: "./media/characters/rylide/sitting.svg",
  44517. extra: 1303/1103,
  44518. bottom: 36/1339
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(8 + 2/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5 + 10/12, "feet"),
  44535. weight: math.unit(160, "lb"),
  44536. name: "Front",
  44537. image: {
  44538. source: "./media/characters/pudask/front.svg",
  44539. extra: 1616/1590,
  44540. bottom: 161/1777
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Ferret Height",
  44547. height: math.unit(2 + 5/12, "feet")
  44548. },
  44549. {
  44550. name: "Canon Height",
  44551. height: math.unit(5 + 10/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(3 + 6/12, "feet"),
  44561. weight: math.unit(60, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/ramita/front.svg",
  44565. extra: 1402/1232,
  44566. bottom: 62/1464
  44567. }
  44568. },
  44569. dressed: {
  44570. height: math.unit(3 + 6/12, "feet"),
  44571. weight: math.unit(60, "lb"),
  44572. name: "Dressed",
  44573. image: {
  44574. source: "./media/characters/ramita/dressed.svg",
  44575. extra: 1534/1249,
  44576. bottom: 50/1584
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(3 + 6/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(8, "feet"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/ark/front.svg",
  44596. extra: 772/693,
  44597. bottom: 45/817
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(8, "feet"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44611. {
  44612. front: {
  44613. height: math.unit(6, "feet"),
  44614. weight: math.unit(250, "lb"),
  44615. volume: math.unit(5/8, "gallons"),
  44616. name: "Front",
  44617. image: {
  44618. source: "./media/characters/ludwig-horn/front.svg",
  44619. extra: 1782/1635,
  44620. bottom: 96/1878
  44621. }
  44622. },
  44623. back: {
  44624. height: math.unit(6, "feet"),
  44625. weight: math.unit(250, "lb"),
  44626. volume: math.unit(5/8, "gallons"),
  44627. name: "Back",
  44628. image: {
  44629. source: "./media/characters/ludwig-horn/back.svg",
  44630. extra: 1874/1729,
  44631. bottom: 27/1901
  44632. }
  44633. },
  44634. dick: {
  44635. height: math.unit(1.05, "feet"),
  44636. weight: math.unit(15, "lb"),
  44637. volume: math.unit(5/8, "gallons"),
  44638. name: "Dick",
  44639. image: {
  44640. source: "./media/characters/ludwig-horn/dick.svg"
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Small",
  44647. height: math.unit(6, "feet")
  44648. },
  44649. {
  44650. name: "Typical",
  44651. height: math.unit(12, "feet"),
  44652. default: true
  44653. },
  44654. {
  44655. name: "Building",
  44656. height: math.unit(80, "feet")
  44657. },
  44658. {
  44659. name: "Town",
  44660. height: math.unit(800, "feet")
  44661. },
  44662. {
  44663. name: "Kingdom",
  44664. height: math.unit(80000, "feet")
  44665. },
  44666. {
  44667. name: "Planet",
  44668. height: math.unit(8000000, "feet")
  44669. },
  44670. {
  44671. name: "Universe",
  44672. height: math.unit(8000000000, "feet")
  44673. },
  44674. {
  44675. name: "Transcended",
  44676. height: math.unit(8e27, "feet")
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44682. {
  44683. front: {
  44684. height: math.unit(5, "feet"),
  44685. weight: math.unit(50, "kg"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/biot-avery/front.svg",
  44689. extra: 1295/1232,
  44690. bottom: 86/1381
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(5, "feet"),
  44698. default: true
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(6, "feet"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/kitsune-kiro/front.svg",
  44710. extra: 1270/1158,
  44711. bottom: 42/1312
  44712. }
  44713. },
  44714. frontAlt: {
  44715. height: math.unit(6, "feet"),
  44716. name: "Front-alt",
  44717. image: {
  44718. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44719. extra: 1130/1081,
  44720. bottom: 36/1166
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Smol",
  44727. height: math.unit(3, "feet")
  44728. },
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(6, "feet"),
  44732. default: true
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(6, "feet"),
  44741. weight: math.unit(125, "lb"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/jack-thatcher/front.svg",
  44745. extra: 1474/1370,
  44746. bottom: 26/1500
  44747. }
  44748. },
  44749. back: {
  44750. height: math.unit(6, "feet"),
  44751. weight: math.unit(125, "lb"),
  44752. name: "Back",
  44753. image: {
  44754. source: "./media/characters/jack-thatcher/back.svg",
  44755. extra: 1489/1384,
  44756. bottom: 18/1507
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(6, "feet"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Macro",
  44768. height: math.unit(75, "feet")
  44769. },
  44770. {
  44771. name: "Macro-er",
  44772. height: math.unit(250, "feet")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(7, "feet"),
  44781. weight: math.unit(110, "kg"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/max-hyper/front.svg",
  44785. extra: 1969/1881,
  44786. bottom: 49/2018
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(7, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44800. {
  44801. front: {
  44802. height: math.unit(5 + 5/12, "feet"),
  44803. weight: math.unit(160, "lb"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/spook/front.svg",
  44807. extra: 794/791,
  44808. bottom: 54/848
  44809. }
  44810. },
  44811. back: {
  44812. height: math.unit(5 + 5/12, "feet"),
  44813. weight: math.unit(160, "lb"),
  44814. name: "Back",
  44815. image: {
  44816. source: "./media/characters/spook/back.svg",
  44817. extra: 812/798,
  44818. bottom: 32/844
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(5 + 5/12, "feet"),
  44826. default: true
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44832. {
  44833. front: {
  44834. height: math.unit(18, "feet"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/xeaduulix/front.svg",
  44838. extra: 1380/1166,
  44839. bottom: 110/1490
  44840. }
  44841. },
  44842. back: {
  44843. height: math.unit(18, "feet"),
  44844. name: "Back",
  44845. image: {
  44846. source: "./media/characters/xeaduulix/back.svg",
  44847. extra: 1592/1170,
  44848. bottom: 128/1720
  44849. }
  44850. },
  44851. frontNsfw: {
  44852. height: math.unit(18, "feet"),
  44853. name: "Front (NSFW)",
  44854. image: {
  44855. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44856. extra: 1380/1166,
  44857. bottom: 110/1490
  44858. }
  44859. },
  44860. backNsfw: {
  44861. height: math.unit(18, "feet"),
  44862. name: "Back (NSFW)",
  44863. image: {
  44864. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44865. extra: 1592/1170,
  44866. bottom: 128/1720
  44867. }
  44868. },
  44869. },
  44870. [
  44871. {
  44872. name: "Normal",
  44873. height: math.unit(18, "feet"),
  44874. default: true
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44880. {
  44881. spreadWings: {
  44882. height: math.unit(20, "feet"),
  44883. name: "Spread Wings",
  44884. image: {
  44885. source: "./media/characters/fledge/spread-wings.svg",
  44886. extra: 693/635,
  44887. bottom: 26/719
  44888. }
  44889. },
  44890. front: {
  44891. height: math.unit(20, "feet"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/fledge/front.svg",
  44895. extra: 684/637,
  44896. bottom: 18/702
  44897. }
  44898. },
  44899. frontAlt: {
  44900. height: math.unit(20, "feet"),
  44901. name: "Front (Alt)",
  44902. image: {
  44903. source: "./media/characters/fledge/front-alt.svg",
  44904. extra: 708/664,
  44905. bottom: 13/721
  44906. }
  44907. },
  44908. back: {
  44909. height: math.unit(20, "feet"),
  44910. name: "Back",
  44911. image: {
  44912. source: "./media/characters/fledge/back.svg",
  44913. extra: 718/634,
  44914. bottom: 22/740
  44915. }
  44916. },
  44917. head: {
  44918. height: math.unit(5.55, "feet"),
  44919. name: "Head",
  44920. image: {
  44921. source: "./media/characters/fledge/head.svg"
  44922. }
  44923. },
  44924. headAlt: {
  44925. height: math.unit(5.1, "feet"),
  44926. name: "Head (Alt)",
  44927. image: {
  44928. source: "./media/characters/fledge/head-alt.svg"
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Small",
  44935. height: math.unit(6 + 2/12, "feet")
  44936. },
  44937. {
  44938. name: "Big",
  44939. height: math.unit(20, "feet"),
  44940. default: true
  44941. },
  44942. {
  44943. name: "Giant",
  44944. height: math.unit(100, "feet")
  44945. },
  44946. {
  44947. name: "Macro",
  44948. height: math.unit(200, "feet")
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(1, "meter"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/atlas-morenai/front.svg",
  44960. extra: 1275/1043,
  44961. bottom: 19/1294
  44962. }
  44963. },
  44964. back: {
  44965. height: math.unit(1, "meter"),
  44966. name: "Back",
  44967. image: {
  44968. source: "./media/characters/atlas-morenai/back.svg",
  44969. extra: 1141/1001,
  44970. bottom: 25/1166
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(1, "meter"),
  44978. default: true
  44979. },
  44980. {
  44981. name: "Magic-Infused",
  44982. height: math.unit(5, "meters")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(5, "meters"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/cintia/front.svg",
  44994. extra: 1312/1228,
  44995. bottom: 38/1350
  44996. }
  44997. },
  44998. back: {
  44999. height: math.unit(5, "meters"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/cintia/back.svg",
  45003. extra: 1260/1166,
  45004. bottom: 98/1358
  45005. }
  45006. },
  45007. frontDick: {
  45008. height: math.unit(5, "meters"),
  45009. name: "Front (Dick)",
  45010. image: {
  45011. source: "./media/characters/cintia/front-dick.svg",
  45012. extra: 1312/1228,
  45013. bottom: 38/1350
  45014. }
  45015. },
  45016. backDick: {
  45017. height: math.unit(5, "meters"),
  45018. name: "Back (Dick)",
  45019. image: {
  45020. source: "./media/characters/cintia/back-dick.svg",
  45021. extra: 1260/1166,
  45022. bottom: 98/1358
  45023. }
  45024. },
  45025. bust: {
  45026. height: math.unit(1.97, "meters"),
  45027. name: "Bust",
  45028. image: {
  45029. source: "./media/characters/cintia/bust.svg",
  45030. extra: 617/565,
  45031. bottom: 0/617
  45032. }
  45033. },
  45034. },
  45035. [
  45036. {
  45037. name: "Normal",
  45038. height: math.unit(5, "meters"),
  45039. default: true
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45045. {
  45046. side: {
  45047. height: math.unit(100, "feet"),
  45048. name: "Side",
  45049. image: {
  45050. source: "./media/characters/denora/side.svg",
  45051. extra: 875/803,
  45052. bottom: 9/884
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Standard",
  45059. height: math.unit(100, "feet"),
  45060. default: true
  45061. },
  45062. {
  45063. name: "Grand",
  45064. height: math.unit(1000, "feet")
  45065. },
  45066. {
  45067. name: "Conquering",
  45068. height: math.unit(10000, "feet")
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45074. {
  45075. dressed: {
  45076. height: math.unit(8 + 5/12, "feet"),
  45077. weight: math.unit(700, "lb"),
  45078. name: "Dressed",
  45079. image: {
  45080. source: "./media/characters/kiva/dressed.svg",
  45081. extra: 1102/1055,
  45082. bottom: 60/1162
  45083. }
  45084. },
  45085. nude: {
  45086. height: math.unit(8 + 5/12, "feet"),
  45087. weight: math.unit(700, "lb"),
  45088. name: "Nude",
  45089. image: {
  45090. source: "./media/characters/kiva/nude.svg",
  45091. extra: 1102/1055,
  45092. bottom: 60/1162
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Base Height",
  45099. height: math.unit(8 + 5/12, "feet"),
  45100. default: true
  45101. },
  45102. {
  45103. name: "Macro",
  45104. height: math.unit(100, "feet")
  45105. },
  45106. {
  45107. name: "Max",
  45108. height: math.unit(3280, "feet")
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(6 + 8/12, "feet"),
  45117. weight: math.unit(250, "lb"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/ztragon/front.svg",
  45121. extra: 1825/1684,
  45122. bottom: 98/1923
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(6 + 8/12, "feet"),
  45130. default: true
  45131. },
  45132. {
  45133. name: "Macro",
  45134. height: math.unit(80, "feet")
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45140. {
  45141. front: {
  45142. height: math.unit(10.4, "feet"),
  45143. weight: math.unit(2, "tons"),
  45144. name: "Front",
  45145. image: {
  45146. source: "./media/characters/yesenia/front.svg",
  45147. extra: 1479/1474,
  45148. bottom: 233/1712
  45149. }
  45150. },
  45151. },
  45152. [
  45153. {
  45154. name: "Normal",
  45155. height: math.unit(10.4, "feet"),
  45156. default: true
  45157. },
  45158. ]
  45159. ))
  45160. characterMakers.push(() => makeCharacter(
  45161. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45162. {
  45163. normal: {
  45164. height: math.unit(6 + 1/12, "feet"),
  45165. weight: math.unit(180, "lb"),
  45166. name: "Normal",
  45167. image: {
  45168. source: "./media/characters/leanne-lycheborne/normal.svg",
  45169. extra: 1748/1660,
  45170. bottom: 98/1846
  45171. }
  45172. },
  45173. were: {
  45174. height: math.unit(12, "feet"),
  45175. weight: math.unit(1600, "lb"),
  45176. name: "Were",
  45177. image: {
  45178. source: "./media/characters/leanne-lycheborne/were.svg",
  45179. extra: 1485/1432,
  45180. bottom: 66/1551
  45181. }
  45182. },
  45183. },
  45184. [
  45185. {
  45186. name: "Normal",
  45187. height: math.unit(6 + 1/12, "feet"),
  45188. default: true
  45189. },
  45190. ]
  45191. ))
  45192. characterMakers.push(() => makeCharacter(
  45193. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45194. {
  45195. side: {
  45196. height: math.unit(13, "feet"),
  45197. name: "Side",
  45198. image: {
  45199. source: "./media/characters/kira-tyler/side.svg",
  45200. extra: 693/393,
  45201. bottom: 58/751
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Normal",
  45208. height: math.unit(13, "feet"),
  45209. default: true
  45210. },
  45211. ]
  45212. ))
  45213. characterMakers.push(() => makeCharacter(
  45214. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45215. {
  45216. front: {
  45217. height: math.unit(10.3, "feet"),
  45218. weight: math.unit(150, "lb"),
  45219. name: "Front",
  45220. image: {
  45221. source: "./media/characters/blaze/front.svg",
  45222. extra: 1378/1286,
  45223. bottom: 172/1550
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(10.3, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45237. {
  45238. side: {
  45239. height: math.unit(2, "meters"),
  45240. weight: math.unit(400, "kg"),
  45241. name: "Side",
  45242. image: {
  45243. source: "./media/characters/anu/side.svg",
  45244. extra: 506/394,
  45245. bottom: 18/524
  45246. }
  45247. },
  45248. },
  45249. [
  45250. {
  45251. name: "Humanoid",
  45252. height: math.unit(2, "meters")
  45253. },
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(5, "meters"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(5 + 5/12, "feet"),
  45266. weight: math.unit(170, "lb"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/synx-the-lynx/front.svg",
  45270. extra: 1893/1745,
  45271. bottom: 17/1910
  45272. }
  45273. },
  45274. side: {
  45275. height: math.unit(5 + 5/12, "feet"),
  45276. weight: math.unit(170, "lb"),
  45277. name: "Side",
  45278. image: {
  45279. source: "./media/characters/synx-the-lynx/side.svg",
  45280. extra: 1884/1740,
  45281. bottom: 39/1923
  45282. }
  45283. },
  45284. back: {
  45285. height: math.unit(5 + 5/12, "feet"),
  45286. weight: math.unit(170, "lb"),
  45287. name: "Back",
  45288. image: {
  45289. source: "./media/characters/synx-the-lynx/back.svg",
  45290. extra: 1903/1755,
  45291. bottom: 14/1917
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Normal",
  45298. height: math.unit(5 + 5/12, "feet"),
  45299. default: true
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45305. {
  45306. back: {
  45307. height: math.unit(15, "feet"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/nadezda-fex/back.svg",
  45311. extra: 1695/1481,
  45312. bottom: 25/1720
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(15, "feet"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Macro",
  45324. height: math.unit(2.5, "miles")
  45325. },
  45326. {
  45327. name: "Goddess",
  45328. height: math.unit(2, "multiverses")
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(216, "cm"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/lev/front.svg",
  45340. extra: 1728/1670,
  45341. bottom: 82/1810
  45342. }
  45343. },
  45344. back: {
  45345. height: math.unit(216, "cm"),
  45346. name: "Back",
  45347. image: {
  45348. source: "./media/characters/lev/back.svg",
  45349. extra: 1738/1675,
  45350. bottom: 24/1762
  45351. }
  45352. },
  45353. dressed: {
  45354. height: math.unit(216, "cm"),
  45355. name: "Dressed",
  45356. image: {
  45357. source: "./media/characters/lev/dressed.svg",
  45358. extra: 1397/1351,
  45359. bottom: 73/1470
  45360. }
  45361. },
  45362. head: {
  45363. height: math.unit(0.51, "meter"),
  45364. name: "Head",
  45365. image: {
  45366. source: "./media/characters/lev/head.svg"
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(216, "cm"),
  45374. default: true
  45375. },
  45376. {
  45377. name: "Relatively Macro",
  45378. height: math.unit(80, "meters")
  45379. },
  45380. {
  45381. name: "Megamacro",
  45382. height: math.unit(21600, "meters")
  45383. },
  45384. {
  45385. name: "Megamacro+",
  45386. height: math.unit(64800, "meters")
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(2, "meters"),
  45395. weight: math.unit(80, "kg"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/moka/front.svg",
  45399. extra: 1337/1255,
  45400. bottom: 58/1395
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Micro",
  45407. height: math.unit(15, "cm")
  45408. },
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(2, "meters"),
  45412. default: true
  45413. },
  45414. {
  45415. name: "Macro",
  45416. height: math.unit(20, "meters"),
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(9, "feet"),
  45425. weight: math.unit(240, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/kuzco/front.svg",
  45429. extra: 1593/1487,
  45430. bottom: 32/1625
  45431. }
  45432. },
  45433. side: {
  45434. height: math.unit(9, "feet"),
  45435. weight: math.unit(240, "lb"),
  45436. name: "Side",
  45437. image: {
  45438. source: "./media/characters/kuzco/side.svg",
  45439. extra: 1575/1485,
  45440. bottom: 30/1605
  45441. }
  45442. },
  45443. back: {
  45444. height: math.unit(9, "feet"),
  45445. weight: math.unit(240, "lb"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/kuzco/back.svg",
  45449. extra: 1603/1514,
  45450. bottom: 14/1617
  45451. }
  45452. },
  45453. },
  45454. [
  45455. {
  45456. name: "Normal",
  45457. height: math.unit(9, "feet"),
  45458. default: true
  45459. },
  45460. ]
  45461. ))
  45462. characterMakers.push(() => makeCharacter(
  45463. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45464. {
  45465. side: {
  45466. height: math.unit(2, "meters"),
  45467. weight: math.unit(300, "kg"),
  45468. name: "Side",
  45469. image: {
  45470. source: "./media/characters/ceruleus/side.svg",
  45471. extra: 1068/974,
  45472. bottom: 126/1194
  45473. }
  45474. },
  45475. },
  45476. [
  45477. {
  45478. name: "Normal",
  45479. height: math.unit(16, "meters"),
  45480. default: true
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45486. {
  45487. front: {
  45488. height: math.unit(9, "feet"),
  45489. weight: math.unit(500, "kg"),
  45490. name: "Front",
  45491. image: {
  45492. source: "./media/characters/acouya/front.svg",
  45493. extra: 1660/1473,
  45494. bottom: 28/1688
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Normal",
  45501. height: math.unit(9, "feet"),
  45502. default: true
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(5 + 6/12, "feet"),
  45511. weight: math.unit(195, "lb"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/vant/front.svg",
  45515. extra: 1396/1320,
  45516. bottom: 20/1416
  45517. }
  45518. },
  45519. back: {
  45520. height: math.unit(5 + 6/12, "feet"),
  45521. weight: math.unit(195, "lb"),
  45522. name: "Back",
  45523. image: {
  45524. source: "./media/characters/vant/back.svg",
  45525. extra: 1396/1320,
  45526. bottom: 20/1416
  45527. }
  45528. },
  45529. maw: {
  45530. height: math.unit(0.75, "feet"),
  45531. name: "Maw",
  45532. image: {
  45533. source: "./media/characters/vant/maw.svg"
  45534. }
  45535. },
  45536. paw: {
  45537. height: math.unit(1.07, "feet"),
  45538. name: "Paw",
  45539. image: {
  45540. source: "./media/characters/vant/paw.svg"
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Micro",
  45547. height: math.unit(0.25, "inches")
  45548. },
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(5 + 6/12, "feet"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Macro",
  45556. height: math.unit(75, "feet")
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45562. {
  45563. front: {
  45564. height: math.unit(30, "meters"),
  45565. weight: math.unit(363, "tons"),
  45566. name: "Front",
  45567. image: {
  45568. source: "./media/characters/ahra/front.svg",
  45569. extra: 1914/1814,
  45570. bottom: 46/1960
  45571. }
  45572. },
  45573. },
  45574. [
  45575. {
  45576. name: "Macro",
  45577. height: math.unit(30, "meters"),
  45578. default: true
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45584. {
  45585. undressed: {
  45586. height: math.unit(2, "m"),
  45587. weight: math.unit(250, "kg"),
  45588. name: "Undressed",
  45589. image: {
  45590. source: "./media/characters/coriander/undressed.svg",
  45591. extra: 1757/1606,
  45592. bottom: 107/1864
  45593. }
  45594. },
  45595. dressed: {
  45596. height: math.unit(2, "m"),
  45597. weight: math.unit(250, "kg"),
  45598. name: "Dressed",
  45599. image: {
  45600. source: "./media/characters/coriander/dressed.svg",
  45601. extra: 1757/1606,
  45602. bottom: 107/1864
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(4, "meters"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "XL",
  45614. height: math.unit(6, "meters")
  45615. },
  45616. {
  45617. name: "XXL",
  45618. height: math.unit(8, "meters")
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(6, "feet"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/syrinx/front.svg",
  45630. extra: 1557/1259,
  45631. bottom: 171/1728
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Normal",
  45638. height: math.unit(6 + 3/12, "feet"),
  45639. default: true
  45640. },
  45641. ]
  45642. ))
  45643. characterMakers.push(() => makeCharacter(
  45644. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45645. {
  45646. front: {
  45647. height: math.unit(11 + 6/12, "feet"),
  45648. weight: math.unit(1.5, "tons"),
  45649. name: "Front",
  45650. image: {
  45651. source: "./media/characters/bor/front.svg",
  45652. extra: 1189/1109,
  45653. bottom: 170/1359
  45654. }
  45655. },
  45656. },
  45657. [
  45658. {
  45659. name: "Normal",
  45660. height: math.unit(11 + 6/12, "feet"),
  45661. default: true
  45662. },
  45663. {
  45664. name: "Macro",
  45665. height: math.unit(32 + 9/12, "feet")
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45671. {
  45672. anthro: {
  45673. height: math.unit(9, "feet"),
  45674. weight: math.unit(2076, "lb"),
  45675. name: "Anthro",
  45676. image: {
  45677. source: "./media/characters/abacus/anthro.svg",
  45678. extra: 1540/1494,
  45679. bottom: 233/1773
  45680. }
  45681. },
  45682. pigeon: {
  45683. height: math.unit(1, "feet"),
  45684. name: "Pigeon",
  45685. image: {
  45686. source: "./media/characters/abacus/pigeon.svg",
  45687. extra: 528/525,
  45688. bottom: 46/574
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(9, "feet"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45702. {
  45703. side: {
  45704. height: math.unit(6, "feet"),
  45705. name: "Side",
  45706. image: {
  45707. source: "./media/characters/delkhan/side.svg",
  45708. extra: 1884/1786,
  45709. bottom: 308/2192
  45710. }
  45711. },
  45712. head: {
  45713. height: math.unit(3.38, "feet"),
  45714. name: "Head",
  45715. image: {
  45716. source: "./media/characters/delkhan/head.svg"
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Normal",
  45723. height: math.unit(72, "feet"),
  45724. default: true
  45725. },
  45726. {
  45727. name: "Giant",
  45728. height: math.unit(172, "feet")
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45734. {
  45735. standing: {
  45736. height: math.unit(6, "feet"),
  45737. name: "Standing",
  45738. image: {
  45739. source: "./media/characters/euchidat/standing.svg",
  45740. extra: 1612/1553,
  45741. bottom: 116/1728
  45742. }
  45743. },
  45744. leaning: {
  45745. height: math.unit(6, "feet"),
  45746. name: "Leaning",
  45747. image: {
  45748. source: "./media/characters/euchidat/leaning.svg",
  45749. extra: 1719/1674,
  45750. bottom: 27/1746
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Normal",
  45757. height: math.unit(175, "feet"),
  45758. default: true
  45759. },
  45760. {
  45761. name: "Megamacro",
  45762. height: math.unit(190, "miles")
  45763. },
  45764. {
  45765. name: "Gigamacro",
  45766. height: math.unit(190000, "miles")
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45772. {
  45773. front: {
  45774. height: math.unit(6, "feet"),
  45775. weight: math.unit(150, "lb"),
  45776. name: "Front",
  45777. image: {
  45778. source: "./media/characters/rebecca-stack/front.svg",
  45779. extra: 1256/1201,
  45780. bottom: 18/1274
  45781. }
  45782. },
  45783. },
  45784. [
  45785. {
  45786. name: "Normal",
  45787. height: math.unit(5 + 8/12, "feet"),
  45788. default: true
  45789. },
  45790. {
  45791. name: "Demolitionist",
  45792. height: math.unit(200, "feet")
  45793. },
  45794. {
  45795. name: "Out of Control",
  45796. height: math.unit(2, "miles")
  45797. },
  45798. {
  45799. name: "Giga",
  45800. height: math.unit(7200, "miles")
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(6, "feet"),
  45809. weight: math.unit(150, "lb"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/jenny-cartwright/front.svg",
  45813. extra: 1384/1376,
  45814. bottom: 58/1442
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "Normal",
  45821. height: math.unit(6 + 7/12, "feet"),
  45822. default: true
  45823. },
  45824. {
  45825. name: "Librarian",
  45826. height: math.unit(55, "feet")
  45827. },
  45828. {
  45829. name: "Sightseer",
  45830. height: math.unit(50, "miles")
  45831. },
  45832. {
  45833. name: "Giga",
  45834. height: math.unit(30000, "miles")
  45835. },
  45836. ]
  45837. ))
  45838. characterMakers.push(() => makeCharacter(
  45839. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45840. {
  45841. nude: {
  45842. height: math.unit(8, "feet"),
  45843. weight: math.unit(225, "lb"),
  45844. name: "Nude",
  45845. image: {
  45846. source: "./media/characters/marvy/nude.svg",
  45847. extra: 1900/1683,
  45848. bottom: 89/1989
  45849. }
  45850. },
  45851. dressed: {
  45852. height: math.unit(8, "feet"),
  45853. weight: math.unit(225, "lb"),
  45854. name: "Dressed",
  45855. image: {
  45856. source: "./media/characters/marvy/dressed.svg",
  45857. extra: 1900/1683,
  45858. bottom: 89/1989
  45859. }
  45860. },
  45861. head: {
  45862. height: math.unit(2.85, "feet"),
  45863. name: "Head",
  45864. image: {
  45865. source: "./media/characters/marvy/head.svg"
  45866. }
  45867. },
  45868. },
  45869. [
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(8, "feet"),
  45873. default: true
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45879. {
  45880. front: {
  45881. height: math.unit(8, "feet"),
  45882. weight: math.unit(250, "lb"),
  45883. name: "Front",
  45884. image: {
  45885. source: "./media/characters/leah/front.svg",
  45886. extra: 1257/1149,
  45887. bottom: 109/1366
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Normal",
  45894. height: math.unit(8, "feet"),
  45895. default: true
  45896. },
  45897. {
  45898. name: "Minimacro",
  45899. height: math.unit(40, "feet")
  45900. },
  45901. {
  45902. name: "Macro",
  45903. height: math.unit(124, "feet")
  45904. },
  45905. {
  45906. name: "Megamacro",
  45907. height: math.unit(850, "feet")
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45913. {
  45914. side: {
  45915. height: math.unit(13 + 6/12, "feet"),
  45916. weight: math.unit(3200, "lb"),
  45917. name: "Side",
  45918. image: {
  45919. source: "./media/characters/alvir/side.svg",
  45920. extra: 896/589,
  45921. bottom: 26/922
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(13 + 6/12, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45935. {
  45936. front: {
  45937. height: math.unit(5 + 4/12, "feet"),
  45938. weight: math.unit(236, "lb"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/zaina-khalil/front.svg",
  45942. extra: 1533/1485,
  45943. bottom: 94/1627
  45944. }
  45945. },
  45946. side: {
  45947. height: math.unit(5 + 4/12, "feet"),
  45948. weight: math.unit(236, "lb"),
  45949. name: "Side",
  45950. image: {
  45951. source: "./media/characters/zaina-khalil/side.svg",
  45952. extra: 1537/1498,
  45953. bottom: 66/1603
  45954. }
  45955. },
  45956. back: {
  45957. height: math.unit(5 + 4/12, "feet"),
  45958. weight: math.unit(236, "lb"),
  45959. name: "Back",
  45960. image: {
  45961. source: "./media/characters/zaina-khalil/back.svg",
  45962. extra: 1546/1494,
  45963. bottom: 89/1635
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Normal",
  45970. height: math.unit(5 + 4/12, "feet"),
  45971. default: true
  45972. },
  45973. ]
  45974. ))
  45975. characterMakers.push(() => makeCharacter(
  45976. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45977. {
  45978. side: {
  45979. height: math.unit(12, "feet"),
  45980. weight: math.unit(4000, "lb"),
  45981. name: "Side",
  45982. image: {
  45983. source: "./media/characters/terry/side.svg",
  45984. extra: 1518/1439,
  45985. bottom: 149/1667
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(12, "feet"),
  45993. default: true
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(12, "feet"),
  46002. weight: math.unit(1500, "lb"),
  46003. name: "Front",
  46004. image: {
  46005. source: "./media/characters/kahea/front.svg",
  46006. extra: 1722/1617,
  46007. bottom: 179/1901
  46008. }
  46009. },
  46010. },
  46011. [
  46012. {
  46013. name: "Normal",
  46014. height: math.unit(12, "feet"),
  46015. default: true
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46021. {
  46022. demonFront: {
  46023. height: math.unit(36, "feet"),
  46024. name: "Front",
  46025. image: {
  46026. source: "./media/characters/alex-xuria/demon-front.svg",
  46027. extra: 1705/1673,
  46028. bottom: 198/1903
  46029. },
  46030. form: "demon",
  46031. default: true
  46032. },
  46033. demonBack: {
  46034. height: math.unit(36, "feet"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/alex-xuria/demon-back.svg",
  46038. extra: 1725/1693,
  46039. bottom: 70/1795
  46040. },
  46041. form: "demon"
  46042. },
  46043. demonHead: {
  46044. height: math.unit(2.14, "meters"),
  46045. name: "Head",
  46046. image: {
  46047. source: "./media/characters/alex-xuria/demon-head.svg"
  46048. },
  46049. form: "demon"
  46050. },
  46051. demonHand: {
  46052. height: math.unit(1.61, "meters"),
  46053. name: "Hand",
  46054. image: {
  46055. source: "./media/characters/alex-xuria/demon-hand.svg"
  46056. },
  46057. form: "demon"
  46058. },
  46059. demonPaw: {
  46060. height: math.unit(1.35, "meters"),
  46061. name: "Paw",
  46062. image: {
  46063. source: "./media/characters/alex-xuria/demon-paw.svg"
  46064. },
  46065. form: "demon"
  46066. },
  46067. demonFoot: {
  46068. height: math.unit(2.2, "meters"),
  46069. name: "Foot",
  46070. image: {
  46071. source: "./media/characters/alex-xuria/demon-foot.svg"
  46072. },
  46073. form: "demon"
  46074. },
  46075. demonCock: {
  46076. height: math.unit(1.74, "meters"),
  46077. name: "Cock",
  46078. image: {
  46079. source: "./media/characters/alex-xuria/demon-cock.svg"
  46080. },
  46081. form: "demon"
  46082. },
  46083. demonTailClosed: {
  46084. height: math.unit(1.47, "meters"),
  46085. name: "Tail (Closed)",
  46086. image: {
  46087. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46088. },
  46089. form: "demon"
  46090. },
  46091. demonTailOpen: {
  46092. height: math.unit(2.85, "meters"),
  46093. name: "Tail (Open)",
  46094. image: {
  46095. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46096. },
  46097. form: "demon"
  46098. },
  46099. incubusFront: {
  46100. height: math.unit(12, "feet"),
  46101. name: "Front",
  46102. image: {
  46103. source: "./media/characters/alex-xuria/incubus-front.svg",
  46104. extra: 1754/1677,
  46105. bottom: 125/1879
  46106. },
  46107. form: "incubus",
  46108. default: true
  46109. },
  46110. incubusBack: {
  46111. height: math.unit(12, "feet"),
  46112. name: "Back",
  46113. image: {
  46114. source: "./media/characters/alex-xuria/incubus-back.svg",
  46115. extra: 1702/1647,
  46116. bottom: 30/1732
  46117. },
  46118. form: "incubus"
  46119. },
  46120. incubusHead: {
  46121. height: math.unit(3.45, "feet"),
  46122. name: "Head",
  46123. image: {
  46124. source: "./media/characters/alex-xuria/incubus-head.svg"
  46125. },
  46126. form: "incubus"
  46127. },
  46128. rabbitFront: {
  46129. height: math.unit(6, "feet"),
  46130. name: "Front",
  46131. image: {
  46132. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46133. extra: 1369/1349,
  46134. bottom: 45/1414
  46135. },
  46136. form: "rabbit",
  46137. default: true
  46138. },
  46139. rabbitSide: {
  46140. height: math.unit(6, "feet"),
  46141. name: "Side",
  46142. image: {
  46143. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46144. extra: 1370/1356,
  46145. bottom: 37/1407
  46146. },
  46147. form: "rabbit"
  46148. },
  46149. rabbitBack: {
  46150. height: math.unit(6, "feet"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46154. extra: 1375/1358,
  46155. bottom: 43/1418
  46156. },
  46157. form: "rabbit"
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Normal",
  46163. height: math.unit(6, "feet"),
  46164. default: true,
  46165. form: "rabbit"
  46166. },
  46167. {
  46168. name: "Incubus",
  46169. height: math.unit(12, "feet"),
  46170. default: true,
  46171. form: "incubus"
  46172. },
  46173. {
  46174. name: "Demon",
  46175. height: math.unit(36, "feet"),
  46176. default: true,
  46177. form: "demon"
  46178. }
  46179. ],
  46180. {
  46181. "demon": {
  46182. name: "Demon",
  46183. default: true
  46184. },
  46185. "incubus": {
  46186. name: "Incubus",
  46187. },
  46188. "rabbit": {
  46189. name: "Rabbit"
  46190. }
  46191. }
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(7 + 5/12, "feet"),
  46198. weight: math.unit(510, "lb"),
  46199. name: "Front",
  46200. image: {
  46201. source: "./media/characters/syrup/front.svg",
  46202. extra: 932/916,
  46203. bottom: 26/958
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(7 + 5/12, "feet"),
  46211. default: true
  46212. },
  46213. {
  46214. name: "Big",
  46215. height: math.unit(50, "feet")
  46216. },
  46217. {
  46218. name: "Macro",
  46219. height: math.unit(300, "feet")
  46220. },
  46221. {
  46222. name: "Megamacro",
  46223. height: math.unit(1, "mile")
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(6 + 9/12, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/zeimne/front.svg",
  46235. extra: 1969/1806,
  46236. bottom: 53/2022
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Normal",
  46243. height: math.unit(6 + 9/12, "feet"),
  46244. default: true
  46245. },
  46246. {
  46247. name: "Giant",
  46248. height: math.unit(550, "feet")
  46249. },
  46250. {
  46251. name: "Mega",
  46252. height: math.unit(3, "miles")
  46253. },
  46254. {
  46255. name: "Giga",
  46256. height: math.unit(250, "miles")
  46257. },
  46258. {
  46259. name: "Tera",
  46260. height: math.unit(1, "AU")
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(5 + 2/12, "feet"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/grar/front.svg",
  46272. extra: 1331/1119,
  46273. bottom: 60/1391
  46274. }
  46275. },
  46276. back: {
  46277. height: math.unit(5 + 2/12, "feet"),
  46278. name: "Back",
  46279. image: {
  46280. source: "./media/characters/grar/back.svg",
  46281. extra: 1385/1169,
  46282. bottom: 23/1408
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(5 + 2/12, "feet"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46296. {
  46297. front: {
  46298. height: math.unit(13 + 7/12, "feet"),
  46299. weight: math.unit(2200, "lb"),
  46300. name: "Front",
  46301. image: {
  46302. source: "./media/characters/endraya/front.svg",
  46303. extra: 1289/1215,
  46304. bottom: 50/1339
  46305. }
  46306. },
  46307. nude: {
  46308. height: math.unit(13 + 7/12, "feet"),
  46309. weight: math.unit(2200, "lb"),
  46310. name: "Nude",
  46311. image: {
  46312. source: "./media/characters/endraya/nude.svg",
  46313. extra: 1247/1171,
  46314. bottom: 40/1287
  46315. }
  46316. },
  46317. head: {
  46318. height: math.unit(2.6, "feet"),
  46319. name: "Head",
  46320. image: {
  46321. source: "./media/characters/endraya/head.svg"
  46322. }
  46323. },
  46324. slit: {
  46325. height: math.unit(3.4, "feet"),
  46326. name: "Slit",
  46327. image: {
  46328. source: "./media/characters/endraya/slit.svg"
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(13 + 7/12, "feet"),
  46336. default: true
  46337. },
  46338. {
  46339. name: "Macro",
  46340. height: math.unit(200, "feet")
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(1.81, "meters"),
  46349. weight: math.unit(69, "kg"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/rodryana/front.svg",
  46353. extra: 2002/1921,
  46354. bottom: 53/2055
  46355. }
  46356. },
  46357. back: {
  46358. height: math.unit(1.81, "meters"),
  46359. weight: math.unit(69, "kg"),
  46360. name: "Back",
  46361. image: {
  46362. source: "./media/characters/rodryana/back.svg",
  46363. extra: 1993/1926,
  46364. bottom: 48/2041
  46365. }
  46366. },
  46367. maw: {
  46368. height: math.unit(0.19769417475, "meters"),
  46369. name: "Maw",
  46370. image: {
  46371. source: "./media/characters/rodryana/maw.svg"
  46372. }
  46373. },
  46374. slit: {
  46375. height: math.unit(0.31631067961, "meters"),
  46376. name: "Slit",
  46377. image: {
  46378. source: "./media/characters/rodryana/slit.svg"
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(1.81, "meters")
  46386. },
  46387. {
  46388. name: "Mini Macro",
  46389. height: math.unit(181, "meters")
  46390. },
  46391. {
  46392. name: "Macro",
  46393. height: math.unit(452, "meters"),
  46394. default: true
  46395. },
  46396. {
  46397. name: "Mega Macro",
  46398. height: math.unit(1.375, "km")
  46399. },
  46400. {
  46401. name: "Giga Macro",
  46402. height: math.unit(13.575, "km")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(6, "feet"),
  46411. weight: math.unit(1000, "lb"),
  46412. name: "Front",
  46413. image: {
  46414. source: "./media/characters/asaya/front.svg",
  46415. extra: 1460/1200,
  46416. bottom: 71/1531
  46417. }
  46418. },
  46419. },
  46420. [
  46421. {
  46422. name: "Normal",
  46423. height: math.unit(8, "km"),
  46424. default: true
  46425. },
  46426. ]
  46427. ))
  46428. characterMakers.push(() => makeCharacter(
  46429. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46430. {
  46431. front: {
  46432. height: math.unit(3.5, "meters"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/sarzu-and-israz/front.svg",
  46436. extra: 1570/1558,
  46437. bottom: 150/1720
  46438. },
  46439. },
  46440. back: {
  46441. height: math.unit(3.5, "meters"),
  46442. name: "Back",
  46443. image: {
  46444. source: "./media/characters/sarzu-and-israz/back.svg",
  46445. extra: 1523/1509,
  46446. bottom: 132/1655
  46447. },
  46448. },
  46449. frontFemale: {
  46450. height: math.unit(3.5, "meters"),
  46451. name: "Front (Female)",
  46452. image: {
  46453. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46454. extra: 1570/1558,
  46455. bottom: 150/1720
  46456. },
  46457. },
  46458. frontHerm: {
  46459. height: math.unit(3.5, "meters"),
  46460. name: "Front (Herm)",
  46461. image: {
  46462. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46463. extra: 1570/1558,
  46464. bottom: 150/1720
  46465. },
  46466. },
  46467. },
  46468. [
  46469. {
  46470. name: "Normal",
  46471. height: math.unit(3.5, "meters"),
  46472. default: true,
  46473. },
  46474. {
  46475. name: "Macro",
  46476. height: math.unit(65.5, "meters"),
  46477. },
  46478. ],
  46479. ))
  46480. characterMakers.push(() => makeCharacter(
  46481. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46482. {
  46483. front: {
  46484. height: math.unit(6, "feet"),
  46485. weight: math.unit(250, "lb"),
  46486. name: "Front",
  46487. image: {
  46488. source: "./media/characters/zenimma/front.svg",
  46489. extra: 1346/1320,
  46490. bottom: 58/1404
  46491. }
  46492. },
  46493. back: {
  46494. height: math.unit(6, "feet"),
  46495. weight: math.unit(250, "lb"),
  46496. name: "Back",
  46497. image: {
  46498. source: "./media/characters/zenimma/back.svg",
  46499. extra: 1324/1308,
  46500. bottom: 44/1368
  46501. }
  46502. },
  46503. dick: {
  46504. height: math.unit(1.44, "feet"),
  46505. name: "Dick",
  46506. image: {
  46507. source: "./media/characters/zenimma/dick.svg"
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Canon Height",
  46514. height: math.unit(66, "miles"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46521. {
  46522. nude: {
  46523. height: math.unit(6, "feet"),
  46524. weight: math.unit(150, "lb"),
  46525. name: "Nude",
  46526. image: {
  46527. source: "./media/characters/shavon/nude.svg",
  46528. extra: 1242/1096,
  46529. bottom: 98/1340
  46530. }
  46531. },
  46532. dressed: {
  46533. height: math.unit(6, "feet"),
  46534. weight: math.unit(150, "lb"),
  46535. name: "Dressed",
  46536. image: {
  46537. source: "./media/characters/shavon/dressed.svg",
  46538. extra: 1242/1096,
  46539. bottom: 98/1340
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Macro",
  46546. height: math.unit(255, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(6, "feet"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/steph/front.svg",
  46559. extra: 1430/1330,
  46560. bottom: 54/1484
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(6, "feet"),
  46568. default: true
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46574. {
  46575. front: {
  46576. height: math.unit(9, "feet"),
  46577. weight: math.unit(400, "lb"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/kil'aman/front.svg",
  46581. extra: 1210/1159,
  46582. bottom: 109/1319
  46583. }
  46584. },
  46585. head: {
  46586. height: math.unit(2.14, "feet"),
  46587. name: "Head",
  46588. image: {
  46589. source: "./media/characters/kil'aman/head.svg"
  46590. }
  46591. },
  46592. maw: {
  46593. height: math.unit(1.21, "feet"),
  46594. name: "Maw",
  46595. image: {
  46596. source: "./media/characters/kil'aman/maw.svg"
  46597. }
  46598. },
  46599. foot: {
  46600. height: math.unit(1.7, "feet"),
  46601. name: "Foot",
  46602. image: {
  46603. source: "./media/characters/kil'aman/foot.svg"
  46604. }
  46605. },
  46606. dick: {
  46607. height: math.unit(2.1, "feet"),
  46608. name: "Dick",
  46609. image: {
  46610. source: "./media/characters/kil'aman/dick.svg"
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(9, "feet")
  46618. },
  46619. {
  46620. name: "Canon Height",
  46621. height: math.unit(10, "miles"),
  46622. default: true
  46623. },
  46624. {
  46625. name: "Maximum",
  46626. height: math.unit(6e9, "miles")
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46632. {
  46633. front: {
  46634. height: math.unit(90, "feet"),
  46635. weight: math.unit(675000, "lb"),
  46636. name: "Front",
  46637. image: {
  46638. source: "./media/characters/qadan/front.svg",
  46639. extra: 1012/1004,
  46640. bottom: 78/1090
  46641. }
  46642. },
  46643. back: {
  46644. height: math.unit(90, "feet"),
  46645. weight: math.unit(675000, "lb"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/qadan/back.svg",
  46649. extra: 1042/1031,
  46650. bottom: 55/1097
  46651. }
  46652. },
  46653. armored: {
  46654. height: math.unit(90, "feet"),
  46655. weight: math.unit(675000, "lb"),
  46656. name: "Armored",
  46657. image: {
  46658. source: "./media/characters/qadan/armored.svg",
  46659. extra: 1047/1037,
  46660. bottom: 48/1095
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(90, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(6, "feet"),
  46677. weight: math.unit(225, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/brooke/front.svg",
  46681. extra: 1050/1010,
  46682. bottom: 66/1116
  46683. }
  46684. },
  46685. back: {
  46686. height: math.unit(6, "feet"),
  46687. weight: math.unit(225, "lb"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/brooke/back.svg",
  46691. extra: 1053/1013,
  46692. bottom: 41/1094
  46693. }
  46694. },
  46695. dressed: {
  46696. height: math.unit(6, "feet"),
  46697. weight: math.unit(225, "lb"),
  46698. name: "Dressed",
  46699. image: {
  46700. source: "./media/characters/brooke/dressed.svg",
  46701. extra: 1050/1010,
  46702. bottom: 66/1116
  46703. }
  46704. },
  46705. },
  46706. [
  46707. {
  46708. name: "Canon Height",
  46709. height: math.unit(500, "miles"),
  46710. default: true
  46711. },
  46712. ]
  46713. ))
  46714. characterMakers.push(() => makeCharacter(
  46715. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46716. {
  46717. front: {
  46718. height: math.unit(6 + 2/12, "feet"),
  46719. weight: math.unit(210, "lb"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/wubs/front.svg",
  46723. extra: 1345/1325,
  46724. bottom: 70/1415
  46725. }
  46726. },
  46727. back: {
  46728. height: math.unit(6 + 2/12, "feet"),
  46729. weight: math.unit(210, "lb"),
  46730. name: "Back",
  46731. image: {
  46732. source: "./media/characters/wubs/back.svg",
  46733. extra: 1296/1275,
  46734. bottom: 58/1354
  46735. }
  46736. },
  46737. },
  46738. [
  46739. {
  46740. name: "Normal",
  46741. height: math.unit(6 + 2/12, "feet"),
  46742. default: true
  46743. },
  46744. {
  46745. name: "Macro",
  46746. height: math.unit(1000, "feet")
  46747. },
  46748. {
  46749. name: "Megamacro",
  46750. height: math.unit(1, "mile")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(4, "feet"),
  46759. weight: math.unit(120, "lb"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/blue/front.svg",
  46763. extra: 1636/1525,
  46764. bottom: 43/1679
  46765. }
  46766. },
  46767. back: {
  46768. height: math.unit(4, "feet"),
  46769. weight: math.unit(120, "lb"),
  46770. name: "Back",
  46771. image: {
  46772. source: "./media/characters/blue/back.svg",
  46773. extra: 1660/1560,
  46774. bottom: 57/1717
  46775. }
  46776. },
  46777. paws: {
  46778. height: math.unit(0.826, "feet"),
  46779. name: "Paws",
  46780. image: {
  46781. source: "./media/characters/blue/paws.svg"
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Micro",
  46788. height: math.unit(3, "inches")
  46789. },
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(4, "feet"),
  46793. default: true
  46794. },
  46795. {
  46796. name: "Femenine Form",
  46797. height: math.unit(14, "feet")
  46798. },
  46799. {
  46800. name: "Werebat Form",
  46801. height: math.unit(18, "feet")
  46802. },
  46803. ]
  46804. ))
  46805. characterMakers.push(() => makeCharacter(
  46806. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46807. {
  46808. female: {
  46809. height: math.unit(7 + 4/12, "feet"),
  46810. weight: math.unit(243, "lb"),
  46811. name: "Female",
  46812. image: {
  46813. source: "./media/characters/kaya/female.svg",
  46814. extra: 975/898,
  46815. bottom: 34/1009
  46816. }
  46817. },
  46818. herm: {
  46819. height: math.unit(7 + 4/12, "feet"),
  46820. weight: math.unit(243, "lb"),
  46821. name: "Herm",
  46822. image: {
  46823. source: "./media/characters/kaya/herm.svg",
  46824. extra: 975/898,
  46825. bottom: 34/1009
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(7 + 4/12, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46839. {
  46840. female: {
  46841. height: math.unit(9 + 4/12, "feet"),
  46842. weight: math.unit(398, "lb"),
  46843. name: "Female",
  46844. image: {
  46845. source: "./media/characters/kassandra/female.svg",
  46846. extra: 908/839,
  46847. bottom: 61/969
  46848. }
  46849. },
  46850. intersex: {
  46851. height: math.unit(9 + 4/12, "feet"),
  46852. weight: math.unit(398, "lb"),
  46853. name: "Intersex",
  46854. image: {
  46855. source: "./media/characters/kassandra/intersex.svg",
  46856. extra: 908/839,
  46857. bottom: 61/969
  46858. }
  46859. },
  46860. },
  46861. [
  46862. {
  46863. name: "Normal",
  46864. height: math.unit(9 + 4/12, "feet"),
  46865. default: true
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46871. {
  46872. front: {
  46873. height: math.unit(3, "meters"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/amy/front.svg",
  46877. extra: 1380/1343,
  46878. bottom: 70/1450
  46879. }
  46880. },
  46881. back: {
  46882. height: math.unit(3, "meters"),
  46883. name: "Back",
  46884. image: {
  46885. source: "./media/characters/amy/back.svg",
  46886. extra: 1380/1347,
  46887. bottom: 66/1446
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(3, "meters"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46901. {
  46902. side: {
  46903. height: math.unit(47, "cm"),
  46904. weight: math.unit(10.8, "kg"),
  46905. name: "Side",
  46906. image: {
  46907. source: "./media/characters/alphaschakal/side.svg",
  46908. extra: 1058/568,
  46909. bottom: 62/1120
  46910. }
  46911. },
  46912. back: {
  46913. height: math.unit(78, "cm"),
  46914. weight: math.unit(10.8, "kg"),
  46915. name: "Back",
  46916. image: {
  46917. source: "./media/characters/alphaschakal/back.svg",
  46918. extra: 1102/942,
  46919. bottom: 185/1287
  46920. }
  46921. },
  46922. head: {
  46923. height: math.unit(28, "cm"),
  46924. name: "Head",
  46925. image: {
  46926. source: "./media/characters/alphaschakal/head.svg",
  46927. extra: 696/508,
  46928. bottom: 0/696
  46929. }
  46930. },
  46931. paw: {
  46932. height: math.unit(16, "cm"),
  46933. name: "Paw",
  46934. image: {
  46935. source: "./media/characters/alphaschakal/paw.svg"
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Normal",
  46942. height: math.unit(47, "cm"),
  46943. default: true
  46944. },
  46945. {
  46946. name: "Macro",
  46947. height: math.unit(340, "cm")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(36, "earths"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/ecobyss/front.svg",
  46959. extra: 1282/1215,
  46960. bottom: 11/1293
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(36, "earths"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/ecobyss/back.svg",
  46968. extra: 1291/1222,
  46969. bottom: 8/1299
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(36, "earths"),
  46977. default: true
  46978. },
  46979. ]
  46980. ))
  46981. characterMakers.push(() => makeCharacter(
  46982. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46983. {
  46984. front: {
  46985. height: math.unit(12, "feet"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/vasuk/front.svg",
  46989. extra: 1326/1207,
  46990. bottom: 64/1390
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(12, "feet"),
  46998. default: true
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47004. {
  47005. side: {
  47006. height: math.unit(100, "feet"),
  47007. name: "Side",
  47008. image: {
  47009. source: "./media/characters/linneaus/side.svg",
  47010. extra: 987/807,
  47011. bottom: 47/1034
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Macro",
  47018. height: math.unit(100, "feet"),
  47019. default: true
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(8, "feet"),
  47028. weight: math.unit(1200, "lb"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/nyterious-daligdig/front.svg",
  47032. extra: 1284/1094,
  47033. bottom: 84/1368
  47034. }
  47035. },
  47036. back: {
  47037. height: math.unit(8, "feet"),
  47038. weight: math.unit(1200, "lb"),
  47039. name: "Back",
  47040. image: {
  47041. source: "./media/characters/nyterious-daligdig/back.svg",
  47042. extra: 1301/1121,
  47043. bottom: 129/1430
  47044. }
  47045. },
  47046. mouth: {
  47047. height: math.unit(1.464, "feet"),
  47048. name: "Mouth",
  47049. image: {
  47050. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47051. }
  47052. },
  47053. },
  47054. [
  47055. {
  47056. name: "Small",
  47057. height: math.unit(8, "feet"),
  47058. default: true
  47059. },
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(15, "feet")
  47063. },
  47064. {
  47065. name: "Macro",
  47066. height: math.unit(90, "feet")
  47067. },
  47068. ]
  47069. ))
  47070. characterMakers.push(() => makeCharacter(
  47071. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47072. {
  47073. front: {
  47074. height: math.unit(7 + 4/12, "feet"),
  47075. weight: math.unit(252, "lb"),
  47076. name: "Front",
  47077. image: {
  47078. source: "./media/characters/bandel/front.svg",
  47079. extra: 1946/1775,
  47080. bottom: 26/1972
  47081. }
  47082. },
  47083. back: {
  47084. height: math.unit(7 + 4/12, "feet"),
  47085. weight: math.unit(252, "lb"),
  47086. name: "Back",
  47087. image: {
  47088. source: "./media/characters/bandel/back.svg",
  47089. extra: 1940/1770,
  47090. bottom: 25/1965
  47091. }
  47092. },
  47093. maw: {
  47094. height: math.unit(2.15, "feet"),
  47095. name: "Maw",
  47096. image: {
  47097. source: "./media/characters/bandel/maw.svg"
  47098. }
  47099. },
  47100. stomach: {
  47101. height: math.unit(1.95, "feet"),
  47102. name: "Stomach",
  47103. image: {
  47104. source: "./media/characters/bandel/stomach.svg"
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(7 + 4/12, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47118. {
  47119. front: {
  47120. height: math.unit(10 + 5/12, "feet"),
  47121. weight: math.unit(773.5, "kg"),
  47122. name: "Front",
  47123. image: {
  47124. source: "./media/characters/zed/front.svg",
  47125. extra: 987/941,
  47126. bottom: 52/1039
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Short",
  47133. height: math.unit(5 + 4/12, "feet")
  47134. },
  47135. {
  47136. name: "Average",
  47137. height: math.unit(10 + 5/12, "feet"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Mini-Macro",
  47142. height: math.unit(24 + 9/12, "feet")
  47143. },
  47144. {
  47145. name: "Macro",
  47146. height: math.unit(249, "feet")
  47147. },
  47148. {
  47149. name: "Mega-Macro",
  47150. height: math.unit(12490, "feet")
  47151. },
  47152. {
  47153. name: "Giga-Macro",
  47154. height: math.unit(24.9, "miles")
  47155. },
  47156. {
  47157. name: "Tera-Macro",
  47158. height: math.unit(24900, "miles")
  47159. },
  47160. {
  47161. name: "Cosmic Scale",
  47162. height: math.unit(38.9, "lightyears")
  47163. },
  47164. {
  47165. name: "Universal Scale",
  47166. height: math.unit(138e12, "lightyears")
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(1561, "inches"),
  47175. name: "Front",
  47176. image: {
  47177. source: "./media/characters/ivan/front.svg",
  47178. extra: 1126/1071,
  47179. bottom: 26/1152
  47180. }
  47181. },
  47182. back: {
  47183. height: math.unit(1561, "inches"),
  47184. name: "Back",
  47185. image: {
  47186. source: "./media/characters/ivan/back.svg",
  47187. extra: 1134/1079,
  47188. bottom: 30/1164
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(1561, "inches"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(5 + 7/12, "feet"),
  47205. weight: math.unit(150, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/robin-arctic-hare/front.svg",
  47209. extra: 1148/974,
  47210. bottom: 20/1168
  47211. }
  47212. },
  47213. },
  47214. [
  47215. {
  47216. name: "Normal",
  47217. height: math.unit(5 + 7/12, "feet"),
  47218. default: true
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47224. {
  47225. side: {
  47226. height: math.unit(5, "feet"),
  47227. name: "Side",
  47228. image: {
  47229. source: "./media/characters/birch/side.svg",
  47230. extra: 985/796,
  47231. bottom: 111/1096
  47232. }
  47233. },
  47234. },
  47235. [
  47236. {
  47237. name: "Normal",
  47238. height: math.unit(5, "feet"),
  47239. default: true
  47240. },
  47241. ]
  47242. ))
  47243. characterMakers.push(() => makeCharacter(
  47244. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47245. {
  47246. front: {
  47247. height: math.unit(4, "feet"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/rasp/front.svg",
  47251. extra: 561/478,
  47252. bottom: 74/635
  47253. }
  47254. },
  47255. },
  47256. [
  47257. {
  47258. name: "Normal",
  47259. height: math.unit(4, "feet"),
  47260. default: true
  47261. },
  47262. ]
  47263. ))
  47264. characterMakers.push(() => makeCharacter(
  47265. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47266. {
  47267. front: {
  47268. height: math.unit(4 + 6/12, "feet"),
  47269. name: "Front",
  47270. image: {
  47271. source: "./media/characters/agatha/front.svg",
  47272. extra: 947/933,
  47273. bottom: 42/989
  47274. }
  47275. },
  47276. back: {
  47277. height: math.unit(4 + 6/12, "feet"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/agatha/back.svg",
  47281. extra: 935/922,
  47282. bottom: 48/983
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(4 + 6 /12, "feet"),
  47290. default: true
  47291. },
  47292. {
  47293. name: "Max Size",
  47294. height: math.unit(500, "feet")
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47300. {
  47301. side: {
  47302. height: math.unit(30, "feet"),
  47303. name: "Side",
  47304. image: {
  47305. source: "./media/characters/roggy/side.svg",
  47306. extra: 909/643,
  47307. bottom: 63/972
  47308. }
  47309. },
  47310. lounging: {
  47311. height: math.unit(20, "feet"),
  47312. name: "Lounging",
  47313. image: {
  47314. source: "./media/characters/roggy/lounging.svg",
  47315. extra: 643/479,
  47316. bottom: 145/788
  47317. }
  47318. },
  47319. handpaw: {
  47320. height: math.unit(13.1, "feet"),
  47321. name: "Handpaw",
  47322. image: {
  47323. source: "./media/characters/roggy/handpaw.svg"
  47324. }
  47325. },
  47326. footpaw: {
  47327. height: math.unit(15.8, "feet"),
  47328. name: "Footpaw",
  47329. image: {
  47330. source: "./media/characters/roggy/footpaw.svg"
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Menacing",
  47337. height: math.unit(30, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(5 + 7/12, "feet"),
  47347. weight: math.unit(135, "lb"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/naomi/front.svg",
  47351. extra: 1209/1154,
  47352. bottom: 129/1338
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(5 + 7/12, "feet"),
  47357. weight: math.unit(135, "lb"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/naomi/back.svg",
  47361. extra: 1252/1190,
  47362. bottom: 23/1275
  47363. }
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Normal",
  47369. height: math.unit(5 + 7 /12, "feet"),
  47370. default: true
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47376. {
  47377. side: {
  47378. height: math.unit(35, "meters"),
  47379. name: "Side",
  47380. image: {
  47381. source: "./media/characters/kimpi/side.svg",
  47382. extra: 419/382,
  47383. bottom: 63/482
  47384. }
  47385. },
  47386. hand: {
  47387. height: math.unit(8.96, "meters"),
  47388. name: "Hand",
  47389. image: {
  47390. source: "./media/characters/kimpi/hand.svg"
  47391. }
  47392. },
  47393. },
  47394. [
  47395. {
  47396. name: "Normal",
  47397. height: math.unit(35, "meters"),
  47398. default: true
  47399. },
  47400. ]
  47401. ))
  47402. characterMakers.push(() => makeCharacter(
  47403. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47404. {
  47405. front: {
  47406. height: math.unit(4 + 4/12, "feet"),
  47407. name: "Front",
  47408. image: {
  47409. source: "./media/characters/pepper-purrloin/front.svg",
  47410. extra: 1141/1024,
  47411. bottom: 21/1162
  47412. }
  47413. },
  47414. },
  47415. [
  47416. {
  47417. name: "Normal",
  47418. height: math.unit(4 + 4/12, "feet"),
  47419. default: true
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(6 + 2/12, "feet"),
  47428. name: "Front",
  47429. image: {
  47430. source: "./media/characters/raphael/front.svg",
  47431. extra: 1101/962,
  47432. bottom: 59/1160
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Normal",
  47439. height: math.unit(6 + 2/12, "feet"),
  47440. default: true
  47441. },
  47442. ]
  47443. ))
  47444. characterMakers.push(() => makeCharacter(
  47445. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47446. {
  47447. front: {
  47448. height: math.unit(6, "feet"),
  47449. weight: math.unit(150, "lb"),
  47450. name: "Front",
  47451. image: {
  47452. source: "./media/characters/victor-williams/front.svg",
  47453. extra: 1894/1825,
  47454. bottom: 67/1961
  47455. }
  47456. },
  47457. },
  47458. [
  47459. {
  47460. name: "Normal",
  47461. height: math.unit(6, "feet"),
  47462. default: true
  47463. },
  47464. ]
  47465. ))
  47466. characterMakers.push(() => makeCharacter(
  47467. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47468. {
  47469. front: {
  47470. height: math.unit(5 + 8/12, "feet"),
  47471. weight: math.unit(150, "lb"),
  47472. name: "Front",
  47473. image: {
  47474. source: "./media/characters/rachel/front.svg",
  47475. extra: 1902/1787,
  47476. bottom: 46/1948
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Base Height",
  47483. height: math.unit(5 + 8/12, "feet"),
  47484. default: true
  47485. },
  47486. {
  47487. name: "Macro",
  47488. height: math.unit(200, "feet")
  47489. },
  47490. {
  47491. name: "Mega Macro",
  47492. height: math.unit(1, "mile")
  47493. },
  47494. {
  47495. name: "Giga Macro",
  47496. height: math.unit(1500, "miles")
  47497. },
  47498. {
  47499. name: "Tera Macro",
  47500. height: math.unit(8000, "miles")
  47501. },
  47502. {
  47503. name: "Tera Macro+",
  47504. height: math.unit(2e5, "miles")
  47505. },
  47506. ]
  47507. ))
  47508. characterMakers.push(() => makeCharacter(
  47509. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47510. {
  47511. front: {
  47512. height: math.unit(6.5, "feet"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47516. extra: 860/819,
  47517. bottom: 307/1167
  47518. }
  47519. },
  47520. back: {
  47521. height: math.unit(6.5, "feet"),
  47522. name: "Back",
  47523. image: {
  47524. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47525. extra: 880/837,
  47526. bottom: 395/1275
  47527. }
  47528. },
  47529. sleeping: {
  47530. height: math.unit(2.79, "feet"),
  47531. name: "Sleeping",
  47532. image: {
  47533. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47534. extra: 465/383,
  47535. bottom: 263/728
  47536. }
  47537. },
  47538. maw: {
  47539. height: math.unit(2.52, "feet"),
  47540. name: "Maw",
  47541. image: {
  47542. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(6.5, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(5, "feet"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/nova-nerium/front.svg",
  47562. extra: 1548/1392,
  47563. bottom: 374/1922
  47564. }
  47565. },
  47566. back: {
  47567. height: math.unit(5, "feet"),
  47568. name: "Back",
  47569. image: {
  47570. source: "./media/characters/nova-nerium/back.svg",
  47571. extra: 1658/1468,
  47572. bottom: 257/1915
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Normal",
  47579. height: math.unit(5, "feet"),
  47580. default: true
  47581. },
  47582. ]
  47583. ))
  47584. characterMakers.push(() => makeCharacter(
  47585. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47586. {
  47587. front: {
  47588. height: math.unit(5 + 4/12, "feet"),
  47589. name: "Front",
  47590. image: {
  47591. source: "./media/characters/ashe-pyriph/front.svg",
  47592. extra: 1935/1747,
  47593. bottom: 60/1995
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(5 + 4/12, "feet"),
  47601. default: true
  47602. },
  47603. ]
  47604. ))
  47605. characterMakers.push(() => makeCharacter(
  47606. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47607. {
  47608. front: {
  47609. height: math.unit(8.7, "feet"),
  47610. name: "Front",
  47611. image: {
  47612. source: "./media/characters/flicker-wisp/front.svg",
  47613. extra: 1835/1613,
  47614. bottom: 449/2284
  47615. }
  47616. },
  47617. side: {
  47618. height: math.unit(8.7, "feet"),
  47619. name: "Side",
  47620. image: {
  47621. source: "./media/characters/flicker-wisp/side.svg",
  47622. extra: 1841/1642,
  47623. bottom: 336/2177
  47624. },
  47625. default: true
  47626. },
  47627. maw: {
  47628. height: math.unit(3.35, "feet"),
  47629. name: "Maw",
  47630. image: {
  47631. source: "./media/characters/flicker-wisp/maw.svg",
  47632. extra: 2338/1506,
  47633. bottom: 0/2338
  47634. }
  47635. },
  47636. ovipositor: {
  47637. height: math.unit(4.95, "feet"),
  47638. name: "Ovipositor",
  47639. image: {
  47640. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47641. }
  47642. },
  47643. egg: {
  47644. height: math.unit(0.385, "feet"),
  47645. weight: math.unit(2, "lb"),
  47646. name: "Egg",
  47647. image: {
  47648. source: "./media/characters/flicker-wisp/egg.svg"
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(8.7, "feet"),
  47656. default: true
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47662. {
  47663. side: {
  47664. height: math.unit(11, "feet"),
  47665. name: "Side",
  47666. image: {
  47667. source: "./media/characters/faefnul/side.svg",
  47668. extra: 1100/1007,
  47669. bottom: 0/1100
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(11, "feet"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47683. {
  47684. front: {
  47685. height: math.unit(6 + 2/12, "feet"),
  47686. name: "Front",
  47687. image: {
  47688. source: "./media/characters/shady/front.svg",
  47689. extra: 502/461,
  47690. bottom: 9/511
  47691. }
  47692. },
  47693. kneeling: {
  47694. height: math.unit(4.6, "feet"),
  47695. name: "Kneeling",
  47696. image: {
  47697. source: "./media/characters/shady/kneeling.svg",
  47698. extra: 1328/1219,
  47699. bottom: 117/1445
  47700. }
  47701. },
  47702. maw: {
  47703. height: math.unit(2, "feet"),
  47704. name: "Maw",
  47705. image: {
  47706. source: "./media/characters/shady/maw.svg"
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Nano",
  47713. height: math.unit(1, "mm")
  47714. },
  47715. {
  47716. name: "Micro",
  47717. height: math.unit(12, "mm")
  47718. },
  47719. {
  47720. name: "Tiny",
  47721. height: math.unit(3, "inches")
  47722. },
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(6 + 2/12, "feet"),
  47726. default: true
  47727. },
  47728. {
  47729. name: "Big",
  47730. height: math.unit(15, "feet")
  47731. },
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(150, "feet")
  47735. },
  47736. {
  47737. name: "Titanic",
  47738. height: math.unit(500, "feet")
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47744. {
  47745. front: {
  47746. height: math.unit(12, "feet"),
  47747. name: "Front",
  47748. image: {
  47749. source: "./media/characters/fenrir/front.svg",
  47750. extra: 968/875,
  47751. bottom: 22/990
  47752. }
  47753. },
  47754. },
  47755. [
  47756. {
  47757. name: "Big",
  47758. height: math.unit(12, "feet"),
  47759. default: true
  47760. },
  47761. ]
  47762. ))
  47763. characterMakers.push(() => makeCharacter(
  47764. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47765. {
  47766. front: {
  47767. height: math.unit(5 + 4/12, "feet"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/makar/front.svg",
  47771. extra: 1181/1112,
  47772. bottom: 78/1259
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(5 + 4/12, "feet"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47786. {
  47787. front: {
  47788. height: math.unit(5 + 7/12, "feet"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/callow/front.svg",
  47792. extra: 1482/1304,
  47793. bottom: 23/1505
  47794. }
  47795. },
  47796. back: {
  47797. height: math.unit(5 + 7/12, "feet"),
  47798. name: "Back",
  47799. image: {
  47800. source: "./media/characters/callow/back.svg",
  47801. extra: 1484/1296,
  47802. bottom: 25/1509
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Micro",
  47809. height: math.unit(3, "inches"),
  47810. default: true
  47811. },
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(5 + 7/12, "feet")
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(6 + 2/12, "feet"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/natel/front.svg",
  47826. extra: 1833/1692,
  47827. bottom: 166/1999
  47828. }
  47829. },
  47830. },
  47831. [
  47832. {
  47833. name: "Normal",
  47834. height: math.unit(6 + 2/12, "feet"),
  47835. default: true
  47836. },
  47837. ]
  47838. ))
  47839. characterMakers.push(() => makeCharacter(
  47840. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47841. {
  47842. front: {
  47843. height: math.unit(1.75, "meters"),
  47844. name: "Front",
  47845. image: {
  47846. source: "./media/characters/misu/front.svg",
  47847. extra: 1690/1558,
  47848. bottom: 234/1924
  47849. }
  47850. },
  47851. back: {
  47852. height: math.unit(1.75, "meters"),
  47853. name: "Back",
  47854. image: {
  47855. source: "./media/characters/misu/back.svg",
  47856. extra: 1762/1618,
  47857. bottom: 146/1908
  47858. }
  47859. },
  47860. frontNude: {
  47861. height: math.unit(1.75, "meters"),
  47862. name: "Front (Nude)",
  47863. image: {
  47864. source: "./media/characters/misu/front-nude.svg",
  47865. extra: 1690/1558,
  47866. bottom: 234/1924
  47867. }
  47868. },
  47869. backNude: {
  47870. height: math.unit(1.75, "meters"),
  47871. name: "Back (Nude)",
  47872. image: {
  47873. source: "./media/characters/misu/back-nude.svg",
  47874. extra: 1762/1618,
  47875. bottom: 146/1908
  47876. }
  47877. },
  47878. frontErect: {
  47879. height: math.unit(1.75, "meters"),
  47880. name: "Front (Erect)",
  47881. image: {
  47882. source: "./media/characters/misu/front-erect.svg",
  47883. extra: 1690/1558,
  47884. bottom: 234/1924
  47885. }
  47886. },
  47887. maw: {
  47888. height: math.unit(0.47, "meters"),
  47889. name: "Maw",
  47890. image: {
  47891. source: "./media/characters/misu/maw.svg"
  47892. }
  47893. },
  47894. head: {
  47895. height: math.unit(0.35, "meters"),
  47896. name: "Head",
  47897. image: {
  47898. source: "./media/characters/misu/head.svg"
  47899. }
  47900. },
  47901. rear: {
  47902. height: math.unit(0.47, "meters"),
  47903. name: "Rear",
  47904. image: {
  47905. source: "./media/characters/misu/rear.svg"
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(1.75, "meters")
  47913. },
  47914. {
  47915. name: "Not good for the people",
  47916. height: math.unit(42, "meters")
  47917. },
  47918. {
  47919. name: "Not good for the neighborhood",
  47920. height: math.unit(135, "meters")
  47921. },
  47922. {
  47923. name: "Bit bigger problem",
  47924. height: math.unit(380, "meters"),
  47925. default: true
  47926. },
  47927. {
  47928. name: "Not good for the city",
  47929. height: math.unit(1.5, "km")
  47930. },
  47931. {
  47932. name: "Not good for the county",
  47933. height: math.unit(5.5, "km")
  47934. },
  47935. {
  47936. name: "Not good for the state",
  47937. height: math.unit(25, "km")
  47938. },
  47939. {
  47940. name: "Not good for the country",
  47941. height: math.unit(125, "km")
  47942. },
  47943. {
  47944. name: "Not good for the continent",
  47945. height: math.unit(2100, "km")
  47946. },
  47947. {
  47948. name: "Not good for the planet",
  47949. height: math.unit(35000, "km")
  47950. },
  47951. {
  47952. name: "Just no",
  47953. height: math.unit(8.5e18, "km")
  47954. },
  47955. ]
  47956. ))
  47957. characterMakers.push(() => makeCharacter(
  47958. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47959. {
  47960. front: {
  47961. height: math.unit(6.5, "feet"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/poppy/front.svg",
  47965. extra: 1878/1812,
  47966. bottom: 43/1921
  47967. }
  47968. },
  47969. feet: {
  47970. height: math.unit(1.06, "feet"),
  47971. name: "Feet",
  47972. image: {
  47973. source: "./media/characters/poppy/feet.svg",
  47974. extra: 1083/1083,
  47975. bottom: 87/1170
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Human",
  47982. height: math.unit(6.5, "feet")
  47983. },
  47984. {
  47985. name: "Default",
  47986. height: math.unit(300, "feet"),
  47987. default: true
  47988. },
  47989. {
  47990. name: "Huge",
  47991. height: math.unit(850, "feet")
  47992. },
  47993. {
  47994. name: "Mega",
  47995. height: math.unit(8000, "feet")
  47996. },
  47997. {
  47998. name: "Giga",
  47999. height: math.unit(300, "miles")
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48005. {
  48006. bipedal: {
  48007. height: math.unit(7, "feet"),
  48008. name: "Bipedal",
  48009. image: {
  48010. source: "./media/characters/zener/bipedal.svg",
  48011. extra: 874/805,
  48012. bottom: 109/983
  48013. }
  48014. },
  48015. quadrupedal: {
  48016. height: math.unit(4.64, "feet"),
  48017. name: "Quadrupedal",
  48018. image: {
  48019. source: "./media/characters/zener/quadrupedal.svg",
  48020. extra: 638/507,
  48021. bottom: 190/828
  48022. }
  48023. },
  48024. cock: {
  48025. height: math.unit(18, "inches"),
  48026. name: "Cock",
  48027. image: {
  48028. source: "./media/characters/zener/cock.svg"
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Normal",
  48035. height: math.unit(7, "feet"),
  48036. default: true
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48042. {
  48043. nude: {
  48044. height: math.unit(5 + 6/12, "feet"),
  48045. name: "Nude",
  48046. image: {
  48047. source: "./media/characters/charlie-dog/nude.svg",
  48048. extra: 768/734,
  48049. bottom: 26/794
  48050. }
  48051. },
  48052. dressed: {
  48053. height: math.unit(5 + 6/12, "feet"),
  48054. name: "Dressed",
  48055. image: {
  48056. source: "./media/characters/charlie-dog/dressed.svg",
  48057. extra: 768/734,
  48058. bottom: 26/794
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Normal",
  48065. height: math.unit(5 + 6/12, "feet"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(6 + 4/12, "feet"),
  48075. name: "Front",
  48076. image: {
  48077. source: "./media/characters/ir'istrasz/front.svg",
  48078. extra: 1014/977,
  48079. bottom: 65/1079
  48080. }
  48081. },
  48082. back: {
  48083. height: math.unit(6 + 4/12, "feet"),
  48084. name: "Back",
  48085. image: {
  48086. source: "./media/characters/ir'istrasz/back.svg",
  48087. extra: 1024/992,
  48088. bottom: 34/1058
  48089. }
  48090. },
  48091. },
  48092. [
  48093. {
  48094. name: "Normal",
  48095. height: math.unit(6 + 4/12, "feet"),
  48096. default: true
  48097. },
  48098. ]
  48099. ))
  48100. characterMakers.push(() => makeCharacter(
  48101. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48102. {
  48103. front: {
  48104. height: math.unit(5 + 8/12, "feet"),
  48105. name: "Front",
  48106. image: {
  48107. source: "./media/characters/dee-ditto/front.svg",
  48108. extra: 1874/1785,
  48109. bottom: 68/1942
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(5 + 8/12, "feet"),
  48114. name: "Back",
  48115. image: {
  48116. source: "./media/characters/dee-ditto/back.svg",
  48117. extra: 1870/1783,
  48118. bottom: 77/1947
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(5 + 8/12, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(7 + 6/12, "feet"),
  48135. name: "Front",
  48136. image: {
  48137. source: "./media/characters/fey/front.svg",
  48138. extra: 995/979,
  48139. bottom: 30/1025
  48140. }
  48141. },
  48142. back: {
  48143. height: math.unit(7 + 6/12, "feet"),
  48144. name: "Back",
  48145. image: {
  48146. source: "./media/characters/fey/back.svg",
  48147. extra: 1079/1008,
  48148. bottom: 5/1084
  48149. }
  48150. },
  48151. dressed: {
  48152. height: math.unit(7 + 6/12, "feet"),
  48153. name: "Dressed",
  48154. image: {
  48155. source: "./media/characters/fey/dressed.svg",
  48156. extra: 995/979,
  48157. bottom: 30/1025
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(7 + 6/12, "feet"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48171. {
  48172. standing: {
  48173. height: math.unit(17, "feet"),
  48174. name: "Standing",
  48175. image: {
  48176. source: "./media/characters/aster/standing.svg",
  48177. extra: 1798/1598,
  48178. bottom: 117/1915
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(17, "feet"),
  48186. default: true
  48187. },
  48188. {
  48189. name: "Homewrecker",
  48190. height: math.unit(95, "feet")
  48191. },
  48192. {
  48193. name: "Planet Devourer",
  48194. height: math.unit(1008000, "miles")
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48200. {
  48201. front: {
  48202. height: math.unit(6 + 5/12, "feet"),
  48203. weight: math.unit(265, "lb"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/devon-childs/front.svg",
  48207. extra: 1795/1721,
  48208. bottom: 41/1836
  48209. }
  48210. },
  48211. side: {
  48212. height: math.unit(6 + 5/12, "feet"),
  48213. weight: math.unit(265, "lb"),
  48214. name: "Side",
  48215. image: {
  48216. source: "./media/characters/devon-childs/side.svg",
  48217. extra: 1812/1738,
  48218. bottom: 30/1842
  48219. }
  48220. },
  48221. back: {
  48222. height: math.unit(6 + 5/12, "feet"),
  48223. weight: math.unit(265, "lb"),
  48224. name: "Back",
  48225. image: {
  48226. source: "./media/characters/devon-childs/back.svg",
  48227. extra: 1808/1735,
  48228. bottom: 23/1831
  48229. }
  48230. },
  48231. hand: {
  48232. height: math.unit(1.464, "feet"),
  48233. name: "Hand",
  48234. image: {
  48235. source: "./media/characters/devon-childs/hand.svg"
  48236. }
  48237. },
  48238. foot: {
  48239. height: math.unit(1.6, "feet"),
  48240. name: "Foot",
  48241. image: {
  48242. source: "./media/characters/devon-childs/foot.svg"
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Micro",
  48249. height: math.unit(7, "cm")
  48250. },
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(6 + 5/12, "feet"),
  48254. default: true
  48255. },
  48256. {
  48257. name: "Macro",
  48258. height: math.unit(154, "feet")
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(6, "feet"),
  48267. weight: math.unit(180, "lb"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/lydemox-vir/front.svg",
  48271. extra: 1632/1435,
  48272. bottom: 58/1690
  48273. }
  48274. },
  48275. frontSFW: {
  48276. height: math.unit(6, "feet"),
  48277. weight: math.unit(180, "lb"),
  48278. name: "Front (SFW)",
  48279. image: {
  48280. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48281. extra: 1632/1435,
  48282. bottom: 58/1690
  48283. }
  48284. },
  48285. back: {
  48286. height: math.unit(6, "feet"),
  48287. weight: math.unit(180, "lb"),
  48288. name: "Back",
  48289. image: {
  48290. source: "./media/characters/lydemox-vir/back.svg",
  48291. extra: 1593/1408,
  48292. bottom: 31/1624
  48293. }
  48294. },
  48295. paw: {
  48296. height: math.unit(1.85, "feet"),
  48297. name: "Paw",
  48298. image: {
  48299. source: "./media/characters/lydemox-vir/paw.svg"
  48300. }
  48301. },
  48302. dick: {
  48303. height: math.unit(1.8, "feet"),
  48304. name: "Dick",
  48305. image: {
  48306. source: "./media/characters/lydemox-vir/dick.svg"
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Macro",
  48313. height: math.unit(100, "feet"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Teramacro",
  48318. height: math.unit(1, "earth")
  48319. },
  48320. {
  48321. name: "Planetary",
  48322. height: math.unit(20, "earths")
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(15 + 8/12, "feet"),
  48331. weight: math.unit(1237, "kg"),
  48332. name: "Front",
  48333. image: {
  48334. source: "./media/characters/mia/front.svg",
  48335. extra: 1573/1446,
  48336. bottom: 58/1631
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Small",
  48343. height: math.unit(9 + 5/12, "feet")
  48344. },
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(15 + 8/12, "feet"),
  48348. default: true
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(10 + 6/12, "feet"),
  48357. weight: math.unit(1.3, "tons"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/mr-graves/front.svg",
  48361. extra: 1779/1695,
  48362. bottom: 198/1977
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(10 + 6 /12, "feet"),
  48370. default: true
  48371. },
  48372. ]
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48376. {
  48377. dressedFront: {
  48378. height: math.unit(5 + 8/12, "feet"),
  48379. weight: math.unit(125, "lb"),
  48380. name: "Dressed (Front)",
  48381. image: {
  48382. source: "./media/characters/jess/dressed-front.svg",
  48383. extra: 1176/1152,
  48384. bottom: 42/1218
  48385. }
  48386. },
  48387. dressedSide: {
  48388. height: math.unit(5 + 8/12, "feet"),
  48389. weight: math.unit(125, "lb"),
  48390. name: "Dressed (Side)",
  48391. image: {
  48392. source: "./media/characters/jess/dressed-side.svg",
  48393. extra: 1204/1190,
  48394. bottom: 6/1210
  48395. }
  48396. },
  48397. nudeFront: {
  48398. height: math.unit(5 + 8/12, "feet"),
  48399. weight: math.unit(125, "lb"),
  48400. name: "Nude (Front)",
  48401. image: {
  48402. source: "./media/characters/jess/nude-front.svg",
  48403. extra: 1176/1152,
  48404. bottom: 42/1218
  48405. }
  48406. },
  48407. nudeSide: {
  48408. height: math.unit(5 + 8/12, "feet"),
  48409. weight: math.unit(125, "lb"),
  48410. name: "Nude (Side)",
  48411. image: {
  48412. source: "./media/characters/jess/nude-side.svg",
  48413. extra: 1204/1190,
  48414. bottom: 6/1210
  48415. }
  48416. },
  48417. organsFront: {
  48418. height: math.unit(2.83799342105, "feet"),
  48419. name: "Organs (Front)",
  48420. image: {
  48421. source: "./media/characters/jess/organs-front.svg"
  48422. }
  48423. },
  48424. organsSide: {
  48425. height: math.unit(2.64225290474, "feet"),
  48426. name: "Organs (Side)",
  48427. image: {
  48428. source: "./media/characters/jess/organs-side.svg"
  48429. }
  48430. },
  48431. digestiveTractFront: {
  48432. height: math.unit(2.8106580871, "feet"),
  48433. name: "Digestive Tract (Front)",
  48434. image: {
  48435. source: "./media/characters/jess/digestive-tract-front.svg"
  48436. }
  48437. },
  48438. digestiveTractSide: {
  48439. height: math.unit(2.54365045014, "feet"),
  48440. name: "Digestive Tract (Side)",
  48441. image: {
  48442. source: "./media/characters/jess/digestive-tract-side.svg"
  48443. }
  48444. },
  48445. respiratorySystemFront: {
  48446. height: math.unit(1.11196233456, "feet"),
  48447. name: "Respiratory System (Front)",
  48448. image: {
  48449. source: "./media/characters/jess/respiratory-system-front.svg"
  48450. }
  48451. },
  48452. respiratorySystemSide: {
  48453. height: math.unit(0.89327966297, "feet"),
  48454. name: "Respiratory System (Side)",
  48455. image: {
  48456. source: "./media/characters/jess/respiratory-system-side.svg"
  48457. }
  48458. },
  48459. urinaryTractFront: {
  48460. height: math.unit(1.16126356186, "feet"),
  48461. name: "Urinary Tract (Front)",
  48462. image: {
  48463. source: "./media/characters/jess/urinary-tract-front.svg"
  48464. }
  48465. },
  48466. urinaryTractSide: {
  48467. height: math.unit(1.20910039627, "feet"),
  48468. name: "Urinary Tract (Side)",
  48469. image: {
  48470. source: "./media/characters/jess/urinary-tract-side.svg"
  48471. }
  48472. },
  48473. reproductiveOrgansFront: {
  48474. height: math.unit(0.48422591566, "feet"),
  48475. name: "Reproductive Organs (Front)",
  48476. image: {
  48477. source: "./media/characters/jess/reproductive-organs-front.svg"
  48478. }
  48479. },
  48480. reproductiveOrgansSide: {
  48481. height: math.unit(0.61553314481, "feet"),
  48482. name: "Reproductive Organs (Side)",
  48483. image: {
  48484. source: "./media/characters/jess/reproductive-organs-side.svg"
  48485. }
  48486. },
  48487. breastsFront: {
  48488. height: math.unit(0.47690395121, "feet"),
  48489. name: "Breasts (Front)",
  48490. image: {
  48491. source: "./media/characters/jess/breasts-front.svg"
  48492. }
  48493. },
  48494. breastsSide: {
  48495. height: math.unit(0.30556998307, "feet"),
  48496. name: "Breasts (Side)",
  48497. image: {
  48498. source: "./media/characters/jess/breasts-side.svg"
  48499. }
  48500. },
  48501. heartFront: {
  48502. height: math.unit(0.53011022622, "feet"),
  48503. name: "Heart (Front)",
  48504. image: {
  48505. source: "./media/characters/jess/heart-front.svg"
  48506. }
  48507. },
  48508. heartSide: {
  48509. height: math.unit(0.51790695213, "feet"),
  48510. name: "Heart (Side)",
  48511. image: {
  48512. source: "./media/characters/jess/heart-side.svg"
  48513. }
  48514. },
  48515. earsAndNoseFront: {
  48516. height: math.unit(0.29385483995, "feet"),
  48517. name: "Ears and Nose (Front)",
  48518. image: {
  48519. source: "./media/characters/jess/ears-and-nose-front.svg"
  48520. }
  48521. },
  48522. earsAndNoseSide: {
  48523. height: math.unit(0.18109658741, "feet"),
  48524. name: "Ears and Nose (Side)",
  48525. image: {
  48526. source: "./media/characters/jess/ears-and-nose-side.svg"
  48527. }
  48528. },
  48529. },
  48530. [
  48531. {
  48532. name: "Normal",
  48533. height: math.unit(5 + 8/12, "feet"),
  48534. default: true
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(6, "feet"),
  48543. weight: math.unit(6.64467e-7, "grams"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/wimpering/front.svg",
  48547. extra: 597/587,
  48548. bottom: 34/631
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Micro",
  48555. height: math.unit(0.4, "mm"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(5 + 2/12, "feet"),
  48565. weight: math.unit(110, "lb"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/keltre/front.svg",
  48569. extra: 1099/1057,
  48570. bottom: 22/1121
  48571. }
  48572. },
  48573. back: {
  48574. height: math.unit(5 + 2/12, "feet"),
  48575. weight: math.unit(110, "lb"),
  48576. name: "Back",
  48577. image: {
  48578. source: "./media/characters/keltre/back.svg",
  48579. extra: 1095/1053,
  48580. bottom: 17/1112
  48581. }
  48582. },
  48583. dressed: {
  48584. height: math.unit(5 + 2/12, "feet"),
  48585. weight: math.unit(110, "lb"),
  48586. name: "Dressed",
  48587. image: {
  48588. source: "./media/characters/keltre/dressed.svg",
  48589. extra: 1099/1057,
  48590. bottom: 22/1121
  48591. }
  48592. },
  48593. winter: {
  48594. height: math.unit(5 + 2/12, "feet"),
  48595. weight: math.unit(110, "lb"),
  48596. name: "Winter",
  48597. image: {
  48598. source: "./media/characters/keltre/winter.svg",
  48599. extra: 1099/1057,
  48600. bottom: 22/1121
  48601. }
  48602. },
  48603. head: {
  48604. height: math.unit(1.61 * 0.86, "feet"),
  48605. name: "Head",
  48606. image: {
  48607. source: "./media/characters/keltre/head.svg",
  48608. extra: 534/421,
  48609. bottom: 0/534
  48610. }
  48611. },
  48612. hand: {
  48613. height: math.unit(1.3 * 0.86, "feet"),
  48614. name: "Hand",
  48615. image: {
  48616. source: "./media/characters/keltre/hand.svg"
  48617. }
  48618. },
  48619. foot: {
  48620. height: math.unit(1.8 * 0.86, "feet"),
  48621. name: "Foot",
  48622. image: {
  48623. source: "./media/characters/keltre/foot.svg"
  48624. }
  48625. },
  48626. },
  48627. [
  48628. {
  48629. name: "Fine",
  48630. height: math.unit(1, "inch")
  48631. },
  48632. {
  48633. name: "Dimnutive",
  48634. height: math.unit(4, "inches")
  48635. },
  48636. {
  48637. name: "Tiny",
  48638. height: math.unit(1, "foot")
  48639. },
  48640. {
  48641. name: "Small",
  48642. height: math.unit(3, "feet")
  48643. },
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(5 + 2/12, "feet"),
  48647. default: true
  48648. },
  48649. ]
  48650. ))
  48651. characterMakers.push(() => makeCharacter(
  48652. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48653. {
  48654. front: {
  48655. height: math.unit(6 + 2/12, "feet"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/nox/front.svg",
  48659. extra: 1917/1830,
  48660. bottom: 74/1991
  48661. }
  48662. },
  48663. back: {
  48664. height: math.unit(6 + 2/12, "feet"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/nox/back.svg",
  48668. extra: 1896/1815,
  48669. bottom: 21/1917
  48670. }
  48671. },
  48672. head: {
  48673. height: math.unit(1.1, "feet"),
  48674. name: "Head",
  48675. image: {
  48676. source: "./media/characters/nox/head.svg",
  48677. extra: 874/704,
  48678. bottom: 0/874
  48679. }
  48680. },
  48681. tattoo: {
  48682. height: math.unit(0.729, "feet"),
  48683. name: "Tattoo",
  48684. image: {
  48685. source: "./media/characters/nox/tattoo.svg"
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(6 + 2/12, "feet")
  48693. },
  48694. {
  48695. name: "Gigamacro",
  48696. height: math.unit(2, "earths"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Cosmic",
  48701. height: math.unit(867, "yottameters")
  48702. },
  48703. ]
  48704. ))
  48705. //characters
  48706. function makeCharacters() {
  48707. const results = [];
  48708. characterMakers.forEach(character => {
  48709. results.push(character());
  48710. });
  48711. return results;
  48712. }