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

47426 строки
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: ["mammal"]
  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. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. "golden-retriever": {
  1840. name: "Golden Retriever",
  1841. parents: ["dog"]
  1842. },
  1843. "triceratops": {
  1844. name: "Triceratops",
  1845. parents: ["dinosaur"]
  1846. },
  1847. }
  1848. //species
  1849. function getSpeciesInfo(speciesList) {
  1850. let result = new Set();
  1851. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1852. result.add(entry)
  1853. });
  1854. return Array.from(result);
  1855. };
  1856. function getSpeciesInfoHelper(species) {
  1857. if (!speciesData[species]) {
  1858. console.warn(species + " doesn't exist");
  1859. return [];
  1860. }
  1861. if (speciesData[species].parents) {
  1862. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1863. } else {
  1864. return [species];
  1865. }
  1866. }
  1867. characterMakers.push(() => makeCharacter(
  1868. {
  1869. name: "Fen",
  1870. species: ["crux"],
  1871. description: {
  1872. title: "Bio",
  1873. text: "Very furry. Sheds on everything."
  1874. },
  1875. tags: [
  1876. "anthro",
  1877. "goo"
  1878. ]
  1879. },
  1880. {
  1881. front: {
  1882. height: math.unit(12, "feet"),
  1883. weight: math.unit(2400, "lb"),
  1884. name: "Front",
  1885. image: {
  1886. source: "./media/characters/fen/front.svg",
  1887. extra: 1804/1562,
  1888. bottom: 205/2009
  1889. }
  1890. },
  1891. diving: {
  1892. height: math.unit(4.9, "meters"),
  1893. weight: math.unit(2400, "lb"),
  1894. name: "Diving",
  1895. image: {
  1896. source: "./media/characters/fen/diving.svg"
  1897. }
  1898. },
  1899. goo: {
  1900. height: math.unit(12, "feet"),
  1901. weight: math.unit(3000, "lb"),
  1902. capacity: math.unit(6, "people"),
  1903. name: "Goo",
  1904. image: {
  1905. source: "./media/characters/fen/goo.svg",
  1906. extra: 1307/1071,
  1907. bottom: 134/1441
  1908. }
  1909. },
  1910. maw: {
  1911. height: math.unit(5.03, "feet"),
  1912. name: "Maw",
  1913. image: {
  1914. source: "./media/characters/fen/maw.svg"
  1915. }
  1916. },
  1917. gooCeiling: {
  1918. height: math.unit(6.6, "feet"),
  1919. weight: math.unit(3000, "lb"),
  1920. capacity: math.unit(6, "people"),
  1921. name: "Goo (Ceiling)",
  1922. image: {
  1923. source: "./media/characters/fen/goo-ceiling.svg"
  1924. }
  1925. },
  1926. back: {
  1927. height: math.unit(12, "feet"),
  1928. weight: math.unit(2400, "lb"),
  1929. name: "Back",
  1930. image: {
  1931. source: "./media/characters/fen/back.svg",
  1932. },
  1933. info: {
  1934. description: {
  1935. mode: "append",
  1936. text: "\n\nHe is not currently looking at you."
  1937. }
  1938. }
  1939. },
  1940. full: {
  1941. height: math.unit(1.6, "meter"),
  1942. weight: math.unit(3200, "lb"),
  1943. name: "Full",
  1944. image: {
  1945. source: "./media/characters/fen/full.svg",
  1946. extra: 1133/859,
  1947. bottom: 145/1278
  1948. },
  1949. info: {
  1950. description: {
  1951. mode: "append",
  1952. text: "\n\nMunch."
  1953. }
  1954. }
  1955. },
  1956. gooLounging: {
  1957. height: math.unit(4.53, "feet"),
  1958. weight: math.unit(3000, "lb"),
  1959. capacity: math.unit(6, "people"),
  1960. name: "Goo (Lounging)",
  1961. image: {
  1962. source: "./media/characters/fen/goo.svg",
  1963. bottom: 116 / 613
  1964. }
  1965. },
  1966. lounging: {
  1967. height: math.unit(10.52, "feet"),
  1968. weight: math.unit(2400, "lb"),
  1969. name: "Lounging",
  1970. image: {
  1971. source: "./media/characters/fen/lounging.svg"
  1972. }
  1973. },
  1974. },
  1975. [
  1976. {
  1977. name: "Small",
  1978. height: math.unit(2.2428, "meter")
  1979. },
  1980. {
  1981. name: "Normal",
  1982. height: math.unit(12, "feet"),
  1983. default: true,
  1984. },
  1985. {
  1986. name: "Big",
  1987. height: math.unit(20, "feet")
  1988. },
  1989. {
  1990. name: "Minimacro",
  1991. height: math.unit(40, "feet"),
  1992. info: {
  1993. description: {
  1994. mode: "append",
  1995. text: "\n\nTOO DAMN BIG"
  1996. }
  1997. }
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(100, "feet"),
  2002. info: {
  2003. description: {
  2004. mode: "append",
  2005. text: "\n\nTOO DAMN BIG"
  2006. }
  2007. }
  2008. },
  2009. {
  2010. name: "Megamacro",
  2011. height: math.unit(2, "miles")
  2012. },
  2013. {
  2014. name: "Gigamacro",
  2015. height: math.unit(10, "earths")
  2016. },
  2017. ]
  2018. ))
  2019. characterMakers.push(() => makeCharacter(
  2020. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2021. {
  2022. front: {
  2023. height: math.unit(183, "cm"),
  2024. weight: math.unit(80, "kg"),
  2025. name: "Front",
  2026. image: {
  2027. source: "./media/characters/sofia-fluttertail/front.svg",
  2028. bottom: 0.01,
  2029. extra: 2154 / 2081
  2030. }
  2031. },
  2032. frontAlt: {
  2033. height: math.unit(183, "cm"),
  2034. weight: math.unit(80, "kg"),
  2035. name: "Front (alt)",
  2036. image: {
  2037. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2038. }
  2039. },
  2040. back: {
  2041. height: math.unit(183, "cm"),
  2042. weight: math.unit(80, "kg"),
  2043. name: "Back",
  2044. image: {
  2045. source: "./media/characters/sofia-fluttertail/back.svg"
  2046. }
  2047. },
  2048. kneeling: {
  2049. height: math.unit(125, "cm"),
  2050. weight: math.unit(80, "kg"),
  2051. name: "Kneeling",
  2052. image: {
  2053. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2054. extra: 1033 / 977,
  2055. bottom: 23.7 / 1057
  2056. }
  2057. },
  2058. maw: {
  2059. height: math.unit(183 / 5, "cm"),
  2060. name: "Maw",
  2061. image: {
  2062. source: "./media/characters/sofia-fluttertail/maw.svg"
  2063. }
  2064. },
  2065. mawcloseup: {
  2066. height: math.unit(183 / 5 * 0.41, "cm"),
  2067. name: "Maw (Closeup)",
  2068. image: {
  2069. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2070. }
  2071. },
  2072. paws: {
  2073. height: math.unit(1.17, "feet"),
  2074. name: "Paws",
  2075. image: {
  2076. source: "./media/characters/sofia-fluttertail/paws.svg",
  2077. extra: 851 / 851,
  2078. bottom: 17 / 868
  2079. }
  2080. },
  2081. },
  2082. [
  2083. {
  2084. name: "Normal",
  2085. height: math.unit(1.83, "meter")
  2086. },
  2087. {
  2088. name: "Size Thief",
  2089. height: math.unit(18, "feet")
  2090. },
  2091. {
  2092. name: "50 Foot Collie",
  2093. height: math.unit(50, "feet")
  2094. },
  2095. {
  2096. name: "Macro",
  2097. height: math.unit(96, "feet"),
  2098. default: true
  2099. },
  2100. {
  2101. name: "Megamerger",
  2102. height: math.unit(650, "feet")
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/march/front.svg",
  2115. extra: 1992/1851,
  2116. bottom: 39/2031
  2117. }
  2118. },
  2119. foot: {
  2120. height: math.unit(0.9, "feet"),
  2121. name: "Foot",
  2122. image: {
  2123. source: "./media/characters/march/foot.svg"
  2124. }
  2125. },
  2126. },
  2127. [
  2128. {
  2129. name: "Normal",
  2130. height: math.unit(7.9, "feet")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(220, "meters")
  2135. },
  2136. {
  2137. name: "Megamacro",
  2138. height: math.unit(2.98, "km"),
  2139. default: true
  2140. },
  2141. {
  2142. name: "Gigamacro",
  2143. height: math.unit(15963, "km")
  2144. },
  2145. {
  2146. name: "Teramacro",
  2147. height: math.unit(2980000000, "km")
  2148. },
  2149. {
  2150. name: "Examacro",
  2151. height: math.unit(250, "parsecs")
  2152. },
  2153. ]
  2154. ))
  2155. characterMakers.push(() => makeCharacter(
  2156. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2157. {
  2158. front: {
  2159. height: math.unit(6, "feet"),
  2160. weight: math.unit(60, "kg"),
  2161. name: "Front",
  2162. image: {
  2163. source: "./media/characters/noir/front.svg",
  2164. extra: 1,
  2165. bottom: 0.032
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Normal",
  2172. height: math.unit(6.6, "feet")
  2173. },
  2174. {
  2175. name: "Macro",
  2176. height: math.unit(500, "feet")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(2.5, "km"),
  2181. default: true
  2182. },
  2183. {
  2184. name: "Gigamacro",
  2185. height: math.unit(22500, "km")
  2186. },
  2187. {
  2188. name: "Teramacro",
  2189. height: math.unit(2500000000, "km")
  2190. },
  2191. {
  2192. name: "Examacro",
  2193. height: math.unit(200, "parsecs")
  2194. },
  2195. ]
  2196. ))
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(7, "feet"),
  2202. weight: math.unit(100, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/okuri/front.svg",
  2206. extra: 1,
  2207. bottom: 0.037
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(100, "kg"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/okuri/back.svg",
  2216. extra: 1,
  2217. bottom: 0.007
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Megamacro",
  2224. height: math.unit(100, "miles"),
  2225. default: true
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(100, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/manny/front.svg",
  2238. extra: 1,
  2239. bottom: 0.06
  2240. }
  2241. },
  2242. back: {
  2243. height: math.unit(7, "feet"),
  2244. weight: math.unit(100, "kg"),
  2245. name: "Back",
  2246. image: {
  2247. source: "./media/characters/manny/back.svg",
  2248. extra: 1,
  2249. bottom: 0.014
  2250. }
  2251. },
  2252. },
  2253. [
  2254. {
  2255. name: "Normal",
  2256. height: math.unit(7, "feet"),
  2257. },
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(78, "feet"),
  2261. default: true
  2262. },
  2263. {
  2264. name: "Macro+",
  2265. height: math.unit(300, "meters")
  2266. },
  2267. {
  2268. name: "Macro++",
  2269. height: math.unit(2400, "meters")
  2270. },
  2271. {
  2272. name: "Megamacro",
  2273. height: math.unit(5167, "meters")
  2274. },
  2275. {
  2276. name: "Gigamacro",
  2277. height: math.unit(41769, "miles")
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(7, "feet"),
  2286. weight: math.unit(100, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/adake/front-1.svg"
  2290. }
  2291. },
  2292. frontAlt: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(100, "kg"),
  2295. name: "Front (Alt)",
  2296. image: {
  2297. source: "./media/characters/adake/front-2.svg",
  2298. extra: 1,
  2299. bottom: 0.01
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(7, "feet"),
  2304. weight: math.unit(100, "kg"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/adake/back.svg",
  2308. }
  2309. },
  2310. kneel: {
  2311. height: math.unit(5.385, "feet"),
  2312. weight: math.unit(100, "kg"),
  2313. name: "Kneeling",
  2314. image: {
  2315. source: "./media/characters/adake/kneel.svg",
  2316. bottom: 0.052
  2317. }
  2318. },
  2319. },
  2320. [
  2321. {
  2322. name: "Normal",
  2323. height: math.unit(7, "feet"),
  2324. },
  2325. {
  2326. name: "Macro",
  2327. height: math.unit(78, "feet"),
  2328. default: true
  2329. },
  2330. {
  2331. name: "Macro+",
  2332. height: math.unit(300, "meters")
  2333. },
  2334. {
  2335. name: "Macro++",
  2336. height: math.unit(2400, "meters")
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(5167, "meters")
  2341. },
  2342. {
  2343. name: "Gigamacro",
  2344. height: math.unit(41769, "miles")
  2345. },
  2346. ]
  2347. ))
  2348. characterMakers.push(() => makeCharacter(
  2349. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2350. {
  2351. front: {
  2352. height: math.unit(1.65, "meters"),
  2353. weight: math.unit(50, "kg"),
  2354. name: "Front",
  2355. image: {
  2356. source: "./media/characters/elijah/front.svg",
  2357. extra: 858 / 830,
  2358. bottom: 95.5 / 953.8559
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(1.65, "meters"),
  2363. weight: math.unit(50, "kg"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/elijah/back.svg",
  2367. extra: 895 / 850,
  2368. bottom: 5.3 / 897.956
  2369. }
  2370. },
  2371. frontNsfw: {
  2372. height: math.unit(1.65, "meters"),
  2373. weight: math.unit(50, "kg"),
  2374. name: "Front (NSFW)",
  2375. image: {
  2376. source: "./media/characters/elijah/front-nsfw.svg",
  2377. extra: 858 / 830,
  2378. bottom: 95.5 / 953.8559
  2379. }
  2380. },
  2381. backNsfw: {
  2382. height: math.unit(1.65, "meters"),
  2383. weight: math.unit(50, "kg"),
  2384. name: "Back (NSFW)",
  2385. image: {
  2386. source: "./media/characters/elijah/back-nsfw.svg",
  2387. extra: 895 / 850,
  2388. bottom: 5.3 / 897.956
  2389. }
  2390. },
  2391. dick: {
  2392. height: math.unit(1, "feet"),
  2393. name: "Dick",
  2394. image: {
  2395. source: "./media/characters/elijah/dick.svg"
  2396. }
  2397. },
  2398. beakOpen: {
  2399. height: math.unit(1.25, "feet"),
  2400. name: "Beak (Open)",
  2401. image: {
  2402. source: "./media/characters/elijah/beak-open.svg"
  2403. }
  2404. },
  2405. beakShut: {
  2406. height: math.unit(1.25, "feet"),
  2407. name: "Beak (Shut)",
  2408. image: {
  2409. source: "./media/characters/elijah/beak-shut.svg"
  2410. }
  2411. },
  2412. footFlexing: {
  2413. height: math.unit(1.61, "feet"),
  2414. name: "Foot (Flexing)",
  2415. image: {
  2416. source: "./media/characters/elijah/foot-flexing.svg"
  2417. }
  2418. },
  2419. footStepping: {
  2420. height: math.unit(1.44, "feet"),
  2421. name: "Foot (Stepping)",
  2422. image: {
  2423. source: "./media/characters/elijah/foot-stepping.svg"
  2424. }
  2425. },
  2426. plantigradeLeg: {
  2427. height: math.unit(2.34, "feet"),
  2428. name: "Plantigrade Leg",
  2429. image: {
  2430. source: "./media/characters/elijah/plantigrade-leg.svg"
  2431. }
  2432. },
  2433. plantigradeFootLeft: {
  2434. height: math.unit(0.9, "feet"),
  2435. name: "Plantigrade Foot (Left)",
  2436. image: {
  2437. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2438. }
  2439. },
  2440. plantigradeFootRight: {
  2441. height: math.unit(0.9, "feet"),
  2442. name: "Plantigrade Foot (Right)",
  2443. image: {
  2444. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(1.65, "meters")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(55, "meters"),
  2456. default: true
  2457. },
  2458. {
  2459. name: "Macro+",
  2460. height: math.unit(105, "meters")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(7 + 2/12, "feet"),
  2469. weight: math.unit(320, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/rai/front.svg",
  2473. extra: 1802/1696,
  2474. bottom: 68/1870
  2475. }
  2476. },
  2477. frontDressed: {
  2478. height: math.unit(7 + 2/12, "feet"),
  2479. weight: math.unit(320, "kg"),
  2480. name: "Front (Dressed)",
  2481. image: {
  2482. source: "./media/characters/rai/front-dressed.svg",
  2483. extra: 1802/1696,
  2484. bottom: 68/1870
  2485. }
  2486. },
  2487. side: {
  2488. height: math.unit(7 + 2/12, "feet"),
  2489. weight: math.unit(320, "kg"),
  2490. name: "Side",
  2491. image: {
  2492. source: "./media/characters/rai/side.svg",
  2493. extra: 1789/1710,
  2494. bottom: 115/1904
  2495. }
  2496. },
  2497. back: {
  2498. height: math.unit(7 + 2/12, "feet"),
  2499. weight: math.unit(320, "kg"),
  2500. name: "Back",
  2501. image: {
  2502. source: "./media/characters/rai/back.svg",
  2503. extra: 1770/1707,
  2504. bottom: 28/1798
  2505. }
  2506. },
  2507. feral: {
  2508. height: math.unit(9.5, "feet"),
  2509. weight: math.unit(640, "kg"),
  2510. name: "Feral",
  2511. image: {
  2512. source: "./media/characters/rai/feral.svg",
  2513. extra: 945/553,
  2514. bottom: 176/1121
  2515. }
  2516. },
  2517. dragon: {
  2518. height: math.unit(23, "feet"),
  2519. weight: math.unit(50000, "lb"),
  2520. name: "Dragon",
  2521. image: {
  2522. source: "./media/characters/rai/dragon.svg",
  2523. extra: 2498 / 2030,
  2524. bottom: 85.2 / 2584
  2525. }
  2526. },
  2527. maw: {
  2528. height: math.unit(1.69, "feet"),
  2529. name: "Maw",
  2530. image: {
  2531. source: "./media/characters/rai/maw.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7 + 2/12, "feet")
  2539. },
  2540. {
  2541. name: "Big",
  2542. height: math.unit(11, "feet")
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(302, "feet"),
  2547. default: true
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2553. {
  2554. frontDressed: {
  2555. height: math.unit(216, "feet"),
  2556. weight: math.unit(7000000, "lb"),
  2557. name: "Front (Dressed)",
  2558. image: {
  2559. source: "./media/characters/jazzy/front-dressed.svg",
  2560. extra: 2738 / 2651,
  2561. bottom: 41.8 / 2786
  2562. }
  2563. },
  2564. backDressed: {
  2565. height: math.unit(216, "feet"),
  2566. weight: math.unit(7000000, "lb"),
  2567. name: "Back (Dressed)",
  2568. image: {
  2569. source: "./media/characters/jazzy/back-dressed.svg",
  2570. extra: 2775 / 2673,
  2571. bottom: 36.8 / 2817
  2572. }
  2573. },
  2574. front: {
  2575. height: math.unit(216, "feet"),
  2576. weight: math.unit(7000000, "lb"),
  2577. name: "Front",
  2578. image: {
  2579. source: "./media/characters/jazzy/front.svg",
  2580. extra: 2738 / 2651,
  2581. bottom: 41.8 / 2786
  2582. }
  2583. },
  2584. back: {
  2585. height: math.unit(216, "feet"),
  2586. weight: math.unit(7000000, "lb"),
  2587. name: "Back",
  2588. image: {
  2589. source: "./media/characters/jazzy/back.svg",
  2590. extra: 2775 / 2673,
  2591. bottom: 36.8 / 2817
  2592. }
  2593. },
  2594. maw: {
  2595. height: math.unit(20, "feet"),
  2596. name: "Maw",
  2597. image: {
  2598. source: "./media/characters/jazzy/maw.svg"
  2599. }
  2600. },
  2601. paws: {
  2602. height: math.unit(27.5, "feet"),
  2603. name: "Paws",
  2604. image: {
  2605. source: "./media/characters/jazzy/paws.svg"
  2606. }
  2607. },
  2608. eye: {
  2609. height: math.unit(4.4, "feet"),
  2610. name: "Eye",
  2611. image: {
  2612. source: "./media/characters/jazzy/eye.svg"
  2613. }
  2614. },
  2615. droneOffense: {
  2616. height: math.unit(9.5, "inches"),
  2617. name: "Drone (Offense)",
  2618. image: {
  2619. source: "./media/characters/jazzy/drone-offense.svg"
  2620. }
  2621. },
  2622. droneRecon: {
  2623. height: math.unit(9.5, "inches"),
  2624. name: "Drone (Recon)",
  2625. image: {
  2626. source: "./media/characters/jazzy/drone-recon.svg"
  2627. }
  2628. },
  2629. droneDefense: {
  2630. height: math.unit(9.5, "inches"),
  2631. name: "Drone (Defense)",
  2632. image: {
  2633. source: "./media/characters/jazzy/drone-defense.svg"
  2634. }
  2635. },
  2636. },
  2637. [
  2638. {
  2639. name: "Macro",
  2640. height: math.unit(216, "feet"),
  2641. default: true
  2642. },
  2643. ]
  2644. ))
  2645. characterMakers.push(() => makeCharacter(
  2646. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2647. {
  2648. front: {
  2649. height: math.unit(9 + 6/12, "feet"),
  2650. weight: math.unit(700, "lb"),
  2651. name: "Front",
  2652. image: {
  2653. source: "./media/characters/flamm/front.svg",
  2654. extra: 1751/1632,
  2655. bottom: 46/1797
  2656. }
  2657. },
  2658. buff: {
  2659. height: math.unit(9 + 6/12, "feet"),
  2660. weight: math.unit(950, "lb"),
  2661. name: "Buff",
  2662. image: {
  2663. source: "./media/characters/flamm/buff.svg",
  2664. extra: 3018/2874,
  2665. bottom: 221/3239
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(9.5, "feet")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(200, "feet"),
  2677. default: true
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(5 + 3/12, "feet"),
  2686. weight: math.unit(60, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/zephiro/front.svg",
  2690. extra: 2309 / 2162,
  2691. bottom: 0.069
  2692. }
  2693. },
  2694. side: {
  2695. height: math.unit(5 + 3/12, "feet"),
  2696. weight: math.unit(60, "kg"),
  2697. name: "Side",
  2698. image: {
  2699. source: "./media/characters/zephiro/side.svg",
  2700. extra: 2403 / 2279,
  2701. bottom: 0.015
  2702. }
  2703. },
  2704. back: {
  2705. height: math.unit(5 + 3/12, "feet"),
  2706. weight: math.unit(60, "kg"),
  2707. name: "Back",
  2708. image: {
  2709. source: "./media/characters/zephiro/back.svg",
  2710. extra: 2373 / 2244,
  2711. bottom: 0.013
  2712. }
  2713. },
  2714. hand: {
  2715. height: math.unit(0.68, "feet"),
  2716. name: "Hand",
  2717. image: {
  2718. source: "./media/characters/zephiro/hand.svg"
  2719. }
  2720. },
  2721. paw: {
  2722. height: math.unit(1, "feet"),
  2723. name: "Paw",
  2724. image: {
  2725. source: "./media/characters/zephiro/paw.svg"
  2726. }
  2727. },
  2728. beans: {
  2729. height: math.unit(0.93, "feet"),
  2730. name: "Beans",
  2731. image: {
  2732. source: "./media/characters/zephiro/beans.svg"
  2733. }
  2734. },
  2735. },
  2736. [
  2737. {
  2738. name: "Micro",
  2739. height: math.unit(3, "inches")
  2740. },
  2741. {
  2742. name: "Normal",
  2743. height: math.unit(5 + 3 / 12, "feet"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(118, "feet")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(5, "feet"),
  2757. weight: math.unit(90, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/fory/front.svg",
  2761. extra: 2862 / 2674,
  2762. bottom: 180 / 3043.8
  2763. }
  2764. },
  2765. back: {
  2766. height: math.unit(5, "feet"),
  2767. weight: math.unit(90, "kg"),
  2768. name: "Back",
  2769. image: {
  2770. source: "./media/characters/fory/back.svg",
  2771. extra: 2962 / 2791,
  2772. bottom: 106 / 3071.8
  2773. }
  2774. },
  2775. foot: {
  2776. height: math.unit(2.14, "feet"),
  2777. name: "Foot",
  2778. image: {
  2779. source: "./media/characters/fory/foot.svg"
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(5, "feet")
  2787. },
  2788. {
  2789. name: "Macro",
  2790. height: math.unit(50, "feet"),
  2791. default: true
  2792. },
  2793. {
  2794. name: "Megamacro",
  2795. height: math.unit(10, "miles")
  2796. },
  2797. {
  2798. name: "Gigamacro",
  2799. height: math.unit(5, "earths")
  2800. },
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2805. {
  2806. front: {
  2807. height: math.unit(7, "feet"),
  2808. weight: math.unit(90, "kg"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/kurrikage/front.svg",
  2812. extra: 1845/1733,
  2813. bottom: 119/1964
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(7, "feet"),
  2818. weight: math.unit(90, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/kurrikage/back.svg",
  2822. extra: 1790/1677,
  2823. bottom: 61/1851
  2824. }
  2825. },
  2826. dressed: {
  2827. height: math.unit(7, "feet"),
  2828. weight: math.unit(90, "kg"),
  2829. name: "Dressed",
  2830. image: {
  2831. source: "./media/characters/kurrikage/dressed.svg",
  2832. extra: 1845/1733,
  2833. bottom: 119/1964
  2834. }
  2835. },
  2836. foot: {
  2837. height: math.unit(1.5, "feet"),
  2838. name: "Foot",
  2839. image: {
  2840. source: "./media/characters/kurrikage/foot.svg"
  2841. }
  2842. },
  2843. staff: {
  2844. height: math.unit(6.7, "feet"),
  2845. name: "Staff",
  2846. image: {
  2847. source: "./media/characters/kurrikage/staff.svg"
  2848. }
  2849. },
  2850. peek: {
  2851. height: math.unit(1.05, "feet"),
  2852. name: "Peeking",
  2853. image: {
  2854. source: "./media/characters/kurrikage/peek.svg",
  2855. bottom: 0.08
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(12, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Big",
  2867. height: math.unit(20, "feet")
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(500, "feet")
  2872. },
  2873. {
  2874. name: "Megamacro",
  2875. height: math.unit(20, "miles")
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2881. {
  2882. front: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Front",
  2886. image: {
  2887. source: "./media/characters/shingo/front.svg",
  2888. extra: 1900/1825,
  2889. bottom: 82/1982
  2890. }
  2891. },
  2892. side: {
  2893. height: math.unit(6, "feet"),
  2894. weight: math.unit(75, "kg"),
  2895. name: "Side",
  2896. image: {
  2897. source: "./media/characters/shingo/side.svg",
  2898. extra: 1930/1865,
  2899. bottom: 16/1946
  2900. }
  2901. },
  2902. back: {
  2903. height: math.unit(6, "feet"),
  2904. weight: math.unit(75, "kg"),
  2905. name: "Back",
  2906. image: {
  2907. source: "./media/characters/shingo/back.svg",
  2908. extra: 1922/1852,
  2909. bottom: 16/1938
  2910. }
  2911. },
  2912. frontDressed: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(150, "lb"),
  2915. name: "Front-dressed",
  2916. image: {
  2917. source: "./media/characters/shingo/front-dressed.svg",
  2918. extra: 1900/1825,
  2919. bottom: 82/1982
  2920. }
  2921. },
  2922. paw: {
  2923. height: math.unit(1.29, "feet"),
  2924. name: "Paw",
  2925. image: {
  2926. source: "./media/characters/shingo/paw.svg"
  2927. }
  2928. },
  2929. hand: {
  2930. height: math.unit(1.07, "feet"),
  2931. name: "Hand",
  2932. image: {
  2933. source: "./media/characters/shingo/hand.svg"
  2934. }
  2935. },
  2936. frontAlt: {
  2937. height: math.unit(6, "feet"),
  2938. weight: math.unit(75, "kg"),
  2939. name: "Front (Alt)",
  2940. image: {
  2941. source: "./media/characters/shingo/front-alt.svg",
  2942. extra: 3511 / 3338,
  2943. bottom: 0.005
  2944. }
  2945. },
  2946. frontAlt2: {
  2947. height: math.unit(6, "feet"),
  2948. weight: math.unit(75, "kg"),
  2949. name: "Front (Alt 2)",
  2950. image: {
  2951. source: "./media/characters/shingo/front-alt-2.svg",
  2952. extra: 706/681,
  2953. bottom: 11/717
  2954. }
  2955. },
  2956. pawAlt: {
  2957. height: math.unit(1, "feet"),
  2958. name: "Paw (Alt)",
  2959. image: {
  2960. source: "./media/characters/shingo/paw-alt.svg"
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Micro",
  2967. height: math.unit(4, "inches")
  2968. },
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(6, "feet"),
  2972. default: true
  2973. },
  2974. {
  2975. name: "Macro",
  2976. height: math.unit(108, "feet")
  2977. },
  2978. {
  2979. name: "Macro+",
  2980. height: math.unit(1500, "feet")
  2981. },
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2986. {
  2987. side: {
  2988. height: math.unit(6, "feet"),
  2989. weight: math.unit(75, "kg"),
  2990. name: "Side",
  2991. image: {
  2992. source: "./media/characters/aigey/side.svg"
  2993. }
  2994. },
  2995. },
  2996. [
  2997. {
  2998. name: "Macro",
  2999. height: math.unit(200, "feet"),
  3000. default: true
  3001. },
  3002. {
  3003. name: "Megamacro",
  3004. height: math.unit(100, "miles")
  3005. },
  3006. ]
  3007. )
  3008. )
  3009. characterMakers.push(() => makeCharacter(
  3010. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3011. {
  3012. front: {
  3013. height: math.unit(5 + 5 / 12, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Front",
  3016. image: {
  3017. source: "./media/characters/natasha/front.svg",
  3018. extra: 859 / 824,
  3019. bottom: 23 / 879.6
  3020. }
  3021. },
  3022. frontNsfw: {
  3023. height: math.unit(5 + 5 / 12, "feet"),
  3024. weight: math.unit(75, "kg"),
  3025. name: "Front (NSFW)",
  3026. image: {
  3027. source: "./media/characters/natasha/front-nsfw.svg",
  3028. extra: 859 / 824,
  3029. bottom: 23 / 879.6
  3030. }
  3031. },
  3032. frontErect: {
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front (Erect)",
  3036. image: {
  3037. source: "./media/characters/natasha/front-erect.svg",
  3038. extra: 859 / 824,
  3039. bottom: 23 / 879.6
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(5 + 5 / 12, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/natasha/back.svg",
  3048. extra: 887.9 / 852.6,
  3049. bottom: 9.7 / 896.4
  3050. }
  3051. },
  3052. backAlt: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Back (Alt)",
  3056. image: {
  3057. source: "./media/characters/natasha/back-alt.svg",
  3058. extra: 1236.7 / 1192,
  3059. bottom: 22.3 / 1258.2
  3060. }
  3061. },
  3062. dick: {
  3063. height: math.unit(1.772, "feet"),
  3064. name: "Dick",
  3065. image: {
  3066. source: "./media/characters/natasha/dick.svg"
  3067. }
  3068. },
  3069. paw: {
  3070. height: math.unit(0.250, "meters"),
  3071. name: "Paw",
  3072. image: {
  3073. source: "./media/characters/natasha/paw.svg"
  3074. }
  3075. },
  3076. },
  3077. [
  3078. {
  3079. name: "Normal",
  3080. height: math.unit(5 + 5 / 12, "feet")
  3081. },
  3082. {
  3083. name: "Large",
  3084. height: math.unit(12, "feet")
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(100, "feet"),
  3089. default: true
  3090. },
  3091. {
  3092. name: "Macro+",
  3093. height: math.unit(260, "feet")
  3094. },
  3095. {
  3096. name: "Macro++",
  3097. height: math.unit(1, "mile")
  3098. },
  3099. ]
  3100. ))
  3101. characterMakers.push(() => makeCharacter(
  3102. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3103. {
  3104. front: {
  3105. height: math.unit(6, "feet"),
  3106. weight: math.unit(75, "kg"),
  3107. name: "Front",
  3108. image: {
  3109. source: "./media/characters/malik/front.svg"
  3110. }
  3111. },
  3112. side: {
  3113. height: math.unit(6, "feet"),
  3114. weight: math.unit(75, "kg"),
  3115. name: "Side",
  3116. image: {
  3117. source: "./media/characters/malik/side.svg",
  3118. extra: 1.1539
  3119. }
  3120. },
  3121. back: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Back",
  3125. image: {
  3126. source: "./media/characters/malik/back.svg"
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(156, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Macro+",
  3138. height: math.unit(1188, "feet")
  3139. },
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(6, "feet"),
  3147. weight: math.unit(75, "kg"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/sefer/front.svg",
  3151. extra: 848 / 659,
  3152. bottom: 28.3 / 876.442
  3153. }
  3154. },
  3155. back: {
  3156. height: math.unit(6, "feet"),
  3157. weight: math.unit(75, "kg"),
  3158. name: "Back",
  3159. image: {
  3160. source: "./media/characters/sefer/back.svg",
  3161. extra: 864 / 695,
  3162. bottom: 10 / 871
  3163. }
  3164. },
  3165. frontDressed: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front (Dressed)",
  3169. image: {
  3170. source: "./media/characters/sefer/front-dressed.svg",
  3171. extra: 839 / 653,
  3172. bottom: 37.6 / 878
  3173. }
  3174. },
  3175. },
  3176. [
  3177. {
  3178. name: "Normal",
  3179. height: math.unit(6, "feet"),
  3180. default: true
  3181. },
  3182. ]
  3183. ))
  3184. characterMakers.push(() => makeCharacter(
  3185. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3186. {
  3187. body: {
  3188. height: math.unit(2.2428, "meter"),
  3189. weight: math.unit(124.738, "kg"),
  3190. name: "Body",
  3191. image: {
  3192. extra: 1225 / 1050,
  3193. source: "./media/characters/north/front.svg"
  3194. }
  3195. }
  3196. },
  3197. [
  3198. {
  3199. name: "Micro",
  3200. height: math.unit(4, "inches")
  3201. },
  3202. {
  3203. name: "Macro",
  3204. height: math.unit(63, "meters")
  3205. },
  3206. {
  3207. name: "Megamacro",
  3208. height: math.unit(101, "miles"),
  3209. default: true
  3210. }
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3215. {
  3216. angled: {
  3217. height: math.unit(4, "meter"),
  3218. weight: math.unit(150, "kg"),
  3219. name: "Angled",
  3220. image: {
  3221. source: "./media/characters/talan/angled-sfw.svg",
  3222. bottom: 29 / 3734
  3223. }
  3224. },
  3225. angledNsfw: {
  3226. height: math.unit(4, "meter"),
  3227. weight: math.unit(150, "kg"),
  3228. name: "Angled (NSFW)",
  3229. image: {
  3230. source: "./media/characters/talan/angled-nsfw.svg",
  3231. bottom: 29 / 3734
  3232. }
  3233. },
  3234. frontNsfw: {
  3235. height: math.unit(4, "meter"),
  3236. weight: math.unit(150, "kg"),
  3237. name: "Front (NSFW)",
  3238. image: {
  3239. source: "./media/characters/talan/front-nsfw.svg",
  3240. bottom: 29 / 3734
  3241. }
  3242. },
  3243. sideNsfw: {
  3244. height: math.unit(4, "meter"),
  3245. weight: math.unit(150, "kg"),
  3246. name: "Side (NSFW)",
  3247. image: {
  3248. source: "./media/characters/talan/side-nsfw.svg",
  3249. bottom: 29 / 3734
  3250. }
  3251. },
  3252. back: {
  3253. height: math.unit(4, "meter"),
  3254. weight: math.unit(150, "kg"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/talan/back.svg"
  3258. }
  3259. },
  3260. dickBottom: {
  3261. height: math.unit(0.621, "meter"),
  3262. name: "Dick (Bottom)",
  3263. image: {
  3264. source: "./media/characters/talan/dick-bottom.svg"
  3265. }
  3266. },
  3267. dickTop: {
  3268. height: math.unit(0.621, "meter"),
  3269. name: "Dick (Top)",
  3270. image: {
  3271. source: "./media/characters/talan/dick-top.svg"
  3272. }
  3273. },
  3274. dickSide: {
  3275. height: math.unit(0.305, "meter"),
  3276. name: "Dick (Side)",
  3277. image: {
  3278. source: "./media/characters/talan/dick-side.svg"
  3279. }
  3280. },
  3281. dickFront: {
  3282. height: math.unit(0.305, "meter"),
  3283. name: "Dick (Front)",
  3284. image: {
  3285. source: "./media/characters/talan/dick-front.svg"
  3286. }
  3287. },
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(4, "meters")
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(100, "meters")
  3297. },
  3298. {
  3299. name: "Megamacro",
  3300. height: math.unit(2, "miles"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Gigamacro",
  3305. height: math.unit(5000, "miles")
  3306. },
  3307. {
  3308. name: "Teramacro",
  3309. height: math.unit(100, "parsecs")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(90, "kg"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/gael'rathus/front.svg"
  3322. }
  3323. },
  3324. frontAlt: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(90, "kg"),
  3327. name: "Front (alt)",
  3328. image: {
  3329. source: "./media/characters/gael'rathus/front-alt.svg"
  3330. }
  3331. },
  3332. frontAlt2: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(90, "kg"),
  3335. name: "Front (alt 2)",
  3336. image: {
  3337. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3338. }
  3339. }
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(9, "feet"),
  3345. default: true
  3346. },
  3347. {
  3348. name: "Large",
  3349. height: math.unit(25, "feet")
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(0.25, "miles")
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(10, "miles")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3363. {
  3364. side: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(140, "kg"),
  3367. name: "Side",
  3368. image: {
  3369. source: "./media/characters/sosha/side.svg",
  3370. bottom: 0.042
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(12, "feet"),
  3378. default: true
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3384. {
  3385. side: {
  3386. height: math.unit(5 + 5 / 12, "feet"),
  3387. weight: math.unit(170, "kg"),
  3388. name: "Side",
  3389. image: {
  3390. source: "./media/characters/runnola/side.svg",
  3391. extra: 741 / 448,
  3392. bottom: 0.05
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Small",
  3399. height: math.unit(3, "feet")
  3400. },
  3401. {
  3402. name: "Normal",
  3403. height: math.unit(5 + 5 / 12, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Big",
  3408. height: math.unit(10, "feet")
  3409. },
  3410. ]
  3411. ))
  3412. characterMakers.push(() => makeCharacter(
  3413. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3414. {
  3415. front: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(50, "kg"),
  3418. name: "Front",
  3419. image: {
  3420. source: "./media/characters/kurribird/front.svg",
  3421. bottom: 0.015
  3422. }
  3423. },
  3424. frontAlt: {
  3425. height: math.unit(1.5, "meter"),
  3426. weight: math.unit(50, "kg"),
  3427. name: "Front (Alt)",
  3428. image: {
  3429. source: "./media/characters/kurribird/front-alt.svg",
  3430. extra: 1.45
  3431. }
  3432. },
  3433. },
  3434. [
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(7, "feet")
  3438. },
  3439. {
  3440. name: "Big",
  3441. height: math.unit(12, "feet"),
  3442. default: true
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(1500, "feet")
  3447. },
  3448. {
  3449. name: "Megamacro",
  3450. height: math.unit(2, "miles")
  3451. }
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3456. {
  3457. front: {
  3458. height: math.unit(2, "meter"),
  3459. weight: math.unit(80, "kg"),
  3460. name: "Front",
  3461. image: {
  3462. source: "./media/characters/elbial/front.svg",
  3463. extra: 1643 / 1556,
  3464. bottom: 60.2 / 1696
  3465. }
  3466. },
  3467. side: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(80, "kg"),
  3470. name: "Side",
  3471. image: {
  3472. source: "./media/characters/elbial/side.svg",
  3473. extra: 1601/1528,
  3474. bottom: 97/1698
  3475. }
  3476. },
  3477. back: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(80, "kg"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/elbial/back.svg",
  3483. extra: 1653/1569,
  3484. bottom: 20/1673
  3485. }
  3486. },
  3487. frontDressed: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Front (Dressed)",
  3491. image: {
  3492. source: "./media/characters/elbial/front-dressed.svg",
  3493. extra: 1638/1569,
  3494. bottom: 70/1708
  3495. }
  3496. },
  3497. genitals: {
  3498. height: math.unit(2 / 3.367, "meter"),
  3499. name: "Genitals",
  3500. image: {
  3501. source: "./media/characters/elbial/genitals.svg"
  3502. }
  3503. },
  3504. },
  3505. [
  3506. {
  3507. name: "Large",
  3508. height: math.unit(100, "feet")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(500, "feet"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Megamacro",
  3517. height: math.unit(10, "miles")
  3518. },
  3519. {
  3520. name: "Gigamacro",
  3521. height: math.unit(25000, "miles")
  3522. },
  3523. {
  3524. name: "Full-Size",
  3525. height: math.unit(8000000, "gigaparsecs")
  3526. }
  3527. ]
  3528. ))
  3529. characterMakers.push(() => makeCharacter(
  3530. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3531. {
  3532. front: {
  3533. height: math.unit(2, "meter"),
  3534. weight: math.unit(60, "kg"),
  3535. name: "Front",
  3536. image: {
  3537. source: "./media/characters/noah/front.svg"
  3538. }
  3539. },
  3540. talons: {
  3541. height: math.unit(0.315, "meter"),
  3542. name: "Talons",
  3543. image: {
  3544. source: "./media/characters/noah/talons.svg"
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Large",
  3551. height: math.unit(50, "feet")
  3552. },
  3553. {
  3554. name: "Macro",
  3555. height: math.unit(750, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Megamacro",
  3560. height: math.unit(50, "miles")
  3561. },
  3562. {
  3563. name: "Gigamacro",
  3564. height: math.unit(100000, "miles")
  3565. },
  3566. {
  3567. name: "Full-Size",
  3568. height: math.unit(3000000000, "miles")
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3574. {
  3575. front: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Front",
  3579. image: {
  3580. source: "./media/characters/natalya/front.svg"
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/natalya/back.svg"
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(150, "feet"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "Megamacro",
  3600. height: math.unit(5, "miles")
  3601. },
  3602. {
  3603. name: "Full-Size",
  3604. height: math.unit(600, "kiloparsecs")
  3605. }
  3606. ]
  3607. ))
  3608. characterMakers.push(() => makeCharacter(
  3609. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3610. {
  3611. front: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(50, "kg"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/erestrebah/front.svg",
  3617. extra: 1262/1162,
  3618. bottom: 96/1358
  3619. }
  3620. },
  3621. back: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(50, "kg"),
  3624. name: "Back",
  3625. image: {
  3626. source: "./media/characters/erestrebah/back.svg",
  3627. extra: 1257/1139,
  3628. bottom: 13/1270
  3629. }
  3630. },
  3631. wing: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Wing",
  3635. image: {
  3636. source: "./media/characters/erestrebah/wing.svg",
  3637. extra: 1262/1162,
  3638. bottom: 96/1358
  3639. }
  3640. },
  3641. mouth: {
  3642. height: math.unit(0.39, "feet"),
  3643. name: "Mouth",
  3644. image: {
  3645. source: "./media/characters/erestrebah/mouth.svg"
  3646. }
  3647. }
  3648. },
  3649. [
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(10, "feet")
  3653. },
  3654. {
  3655. name: "Large",
  3656. height: math.unit(50, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Macro",
  3661. height: math.unit(300, "feet")
  3662. },
  3663. {
  3664. name: "Macro+",
  3665. height: math.unit(750, "feet")
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(3, "miles")
  3670. }
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3675. {
  3676. front: {
  3677. height: math.unit(2, "meter"),
  3678. weight: math.unit(80, "kg"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/jennifer/front.svg",
  3682. bottom: 0.11,
  3683. extra: 1.16
  3684. }
  3685. },
  3686. frontAlt: {
  3687. height: math.unit(2, "meter"),
  3688. weight: math.unit(80, "kg"),
  3689. name: "Front (Alt)",
  3690. image: {
  3691. source: "./media/characters/jennifer/front-alt.svg"
  3692. }
  3693. }
  3694. },
  3695. [
  3696. {
  3697. name: "Canon Height",
  3698. height: math.unit(120, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(300, "feet")
  3704. },
  3705. {
  3706. name: "Megamacro",
  3707. height: math.unit(20000, "feet")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(50, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/kalista/front.svg",
  3720. extra: 1314/1145,
  3721. bottom: 101/1415
  3722. }
  3723. },
  3724. back: {
  3725. height: math.unit(2, "meter"),
  3726. weight: math.unit(50, "kg"),
  3727. name: "Back",
  3728. image: {
  3729. source: "./media/characters/kalista/back.svg",
  3730. extra: 1366 / 1156,
  3731. bottom: 33.9 / 1362.78
  3732. }
  3733. }
  3734. },
  3735. [
  3736. {
  3737. name: "Uncomfortably Small",
  3738. height: math.unit(10, "feet")
  3739. },
  3740. {
  3741. name: "Small",
  3742. height: math.unit(30, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(100, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Macro+",
  3751. height: math.unit(2000, "feet")
  3752. },
  3753. {
  3754. name: "True Form",
  3755. height: math.unit(8924, "miles")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(120, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/ggv/front.svg"
  3768. }
  3769. },
  3770. side: {
  3771. height: math.unit(2, "meter"),
  3772. weight: math.unit(120, "kg"),
  3773. name: "Side",
  3774. image: {
  3775. source: "./media/characters/ggv/side.svg"
  3776. }
  3777. }
  3778. },
  3779. [
  3780. {
  3781. name: "Extremely Puny",
  3782. height: math.unit(9 + 5 / 12, "feet")
  3783. },
  3784. {
  3785. name: "Horribly Small",
  3786. height: math.unit(47.7, "miles"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Reasonably Sized",
  3791. height: math.unit(25000, "parsecs")
  3792. },
  3793. {
  3794. name: "Slightly Uncompressed",
  3795. height: math.unit(7.77e31, "parsecs")
  3796. },
  3797. {
  3798. name: "Omniversal",
  3799. height: math.unit(1e300, "meters")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(75, "lb"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/napalm/front.svg"
  3812. }
  3813. },
  3814. back: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(75, "lb"),
  3817. name: "Back",
  3818. image: {
  3819. source: "./media/characters/napalm/back.svg"
  3820. }
  3821. }
  3822. },
  3823. [
  3824. {
  3825. name: "Standard",
  3826. height: math.unit(55, "feet"),
  3827. default: true
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(7 + 5 / 6, "feet"),
  3836. weight: math.unit(325, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/asana/front.svg",
  3840. extra: 1133 / 1060,
  3841. bottom: 15.2 / 1148.6
  3842. }
  3843. },
  3844. back: {
  3845. height: math.unit(7 + 5 / 6, "feet"),
  3846. weight: math.unit(325, "lb"),
  3847. name: "Back",
  3848. image: {
  3849. source: "./media/characters/asana/back.svg",
  3850. extra: 1114 / 1043,
  3851. bottom: 5 / 1120
  3852. }
  3853. },
  3854. dressedDark: {
  3855. height: math.unit(7 + 5 / 6, "feet"),
  3856. weight: math.unit(325, "lb"),
  3857. name: "Dressed (Dark)",
  3858. image: {
  3859. source: "./media/characters/asana/dressed-dark.svg",
  3860. extra: 1133 / 1060,
  3861. bottom: 15.2 / 1148.6
  3862. }
  3863. },
  3864. dressedLight: {
  3865. height: math.unit(7 + 5 / 6, "feet"),
  3866. weight: math.unit(325, "lb"),
  3867. name: "Dressed (Light)",
  3868. image: {
  3869. source: "./media/characters/asana/dressed-light.svg",
  3870. extra: 1133 / 1060,
  3871. bottom: 15.2 / 1148.6
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Standard",
  3878. height: math.unit(7 + 5 / 6, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Large",
  3883. height: math.unit(10, "meters")
  3884. },
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(2500, "meters")
  3888. },
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(5e6, "meters")
  3892. },
  3893. {
  3894. name: "Examacro",
  3895. height: math.unit(5e12, "lightyears")
  3896. },
  3897. {
  3898. name: "Max Size",
  3899. height: math.unit(1e31, "lightyears")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(2, "meter"),
  3908. weight: math.unit(60, "kg"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/ebony/front.svg",
  3912. bottom: 0.03,
  3913. extra: 1045 / 810 + 0.03
  3914. }
  3915. },
  3916. side: {
  3917. height: math.unit(2, "meter"),
  3918. weight: math.unit(60, "kg"),
  3919. name: "Side",
  3920. image: {
  3921. source: "./media/characters/ebony/side.svg",
  3922. bottom: 0.03,
  3923. extra: 1045 / 810 + 0.03
  3924. }
  3925. },
  3926. back: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Back",
  3930. image: {
  3931. source: "./media/characters/ebony/back.svg",
  3932. bottom: 0.01,
  3933. extra: 1045 / 810 + 0.01
  3934. }
  3935. },
  3936. },
  3937. [
  3938. // TODO check why I did this lol
  3939. {
  3940. name: "Standard",
  3941. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Macro",
  3946. height: math.unit(200, "feet")
  3947. },
  3948. {
  3949. name: "Gigamacro",
  3950. height: math.unit(13000, "km")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(175, "lb"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/mountain/front.svg",
  3963. extra: 972 / 955,
  3964. bottom: 64 / 1036.6
  3965. }
  3966. },
  3967. back: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(175, "lb"),
  3970. name: "Back",
  3971. image: {
  3972. source: "./media/characters/mountain/back.svg",
  3973. extra: 970 / 950,
  3974. bottom: 28.25 / 999
  3975. }
  3976. },
  3977. },
  3978. [
  3979. {
  3980. name: "Large",
  3981. height: math.unit(20, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(300, "meters")
  3986. },
  3987. {
  3988. name: "Gigamacro",
  3989. height: math.unit(10000, "km"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Examacro",
  3994. height: math.unit(10e9, "lightyears")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(8, "feet"),
  4003. weight: math.unit(500, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/rick/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(8, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(5, "km")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(8, "feet"),
  4027. weight: math.unit(120, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/ona/front.svg"
  4031. }
  4032. },
  4033. frontAlt: {
  4034. height: math.unit(8, "feet"),
  4035. weight: math.unit(120, "lb"),
  4036. name: "Front (Alt)",
  4037. image: {
  4038. source: "./media/characters/ona/front-alt.svg"
  4039. }
  4040. },
  4041. back: {
  4042. height: math.unit(8, "feet"),
  4043. weight: math.unit(120, "lb"),
  4044. name: "Back",
  4045. image: {
  4046. source: "./media/characters/ona/back.svg"
  4047. }
  4048. },
  4049. foot: {
  4050. height: math.unit(1.1, "feet"),
  4051. name: "Foot",
  4052. image: {
  4053. source: "./media/characters/ona/foot.svg"
  4054. }
  4055. }
  4056. },
  4057. [
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(70, "km"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "Gigamacro",
  4065. height: math.unit(681818, "miles")
  4066. },
  4067. {
  4068. name: "Examacro",
  4069. height: math.unit(3800000, "lightyears")
  4070. },
  4071. ]
  4072. ))
  4073. characterMakers.push(() => makeCharacter(
  4074. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4075. {
  4076. front: {
  4077. height: math.unit(12, "feet"),
  4078. weight: math.unit(3000, "lb"),
  4079. name: "Front",
  4080. image: {
  4081. source: "./media/characters/mech/front.svg",
  4082. extra: 2900 / 2770,
  4083. bottom: 110 / 3010
  4084. }
  4085. },
  4086. back: {
  4087. height: math.unit(12, "feet"),
  4088. weight: math.unit(3000, "lb"),
  4089. name: "Back",
  4090. image: {
  4091. source: "./media/characters/mech/back.svg",
  4092. extra: 3011 / 2890,
  4093. bottom: 94 / 3105
  4094. }
  4095. },
  4096. maw: {
  4097. height: math.unit(3.07, "feet"),
  4098. name: "Maw",
  4099. image: {
  4100. source: "./media/characters/mech/maw.svg"
  4101. }
  4102. },
  4103. head: {
  4104. height: math.unit(2.82, "feet"),
  4105. name: "Head",
  4106. image: {
  4107. source: "./media/characters/mech/head.svg"
  4108. }
  4109. },
  4110. dick: {
  4111. height: math.unit(1.43, "feet"),
  4112. name: "Dick",
  4113. image: {
  4114. source: "./media/characters/mech/dick.svg"
  4115. }
  4116. },
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(12, "feet")
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(300, "feet"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro+",
  4130. height: math.unit(1500, "feet")
  4131. },
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(1.3, "meter"),
  4139. weight: math.unit(30, "kg"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/gregory/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(1.3, "meter"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro",
  4154. height: math.unit(20, "meter")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(2.8, "meter"),
  4163. weight: math.unit(200, "kg"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/elory/front.svg",
  4167. }
  4168. }
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(2.8, "meter"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(38, "meter")
  4179. }
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4184. {
  4185. front: {
  4186. height: math.unit(470, "feet"),
  4187. weight: math.unit(924, "tons"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/angelpatamon/front.svg",
  4191. }
  4192. }
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(470, "feet"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Deity Size I",
  4202. height: math.unit(28651.2, "km")
  4203. },
  4204. {
  4205. name: "Deity Size II",
  4206. height: math.unit(171907.2, "km")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4212. {
  4213. side: {
  4214. height: math.unit(7.2, "meter"),
  4215. weight: math.unit(8.2, "tons"),
  4216. name: "Side",
  4217. image: {
  4218. source: "./media/characters/cryae/side.svg",
  4219. extra: 3500 / 1500
  4220. }
  4221. }
  4222. },
  4223. [
  4224. {
  4225. name: "Normal",
  4226. height: math.unit(7.2, "meter"),
  4227. default: true
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(6, "feet"),
  4236. weight: math.unit(175, "lb"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/xera/front.svg",
  4240. extra: 2377 / 1972,
  4241. bottom: 75.5 / 2452
  4242. }
  4243. },
  4244. side: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(175, "lb"),
  4247. name: "Side",
  4248. image: {
  4249. source: "./media/characters/xera/side.svg",
  4250. extra: 2345 / 2019,
  4251. bottom: 39.7 / 2384
  4252. }
  4253. },
  4254. back: {
  4255. height: math.unit(6, "feet"),
  4256. weight: math.unit(175, "lb"),
  4257. name: "Back",
  4258. image: {
  4259. source: "./media/characters/xera/back.svg",
  4260. extra: 2095 / 1984,
  4261. bottom: 67 / 2166
  4262. }
  4263. },
  4264. },
  4265. [
  4266. {
  4267. name: "Small",
  4268. height: math.unit(10, "feet")
  4269. },
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(500, "meters"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Macro+",
  4277. height: math.unit(10, "km")
  4278. },
  4279. {
  4280. name: "Gigamacro",
  4281. height: math.unit(25000, "km")
  4282. },
  4283. {
  4284. name: "Teramacro",
  4285. height: math.unit(3e6, "km")
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(6, "feet"),
  4294. weight: math.unit(175, "lb"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/nebula/front.svg",
  4298. extra: 2566 / 2362,
  4299. bottom: 81 / 2644
  4300. }
  4301. }
  4302. },
  4303. [
  4304. {
  4305. name: "Small",
  4306. height: math.unit(4.5, "meters")
  4307. },
  4308. {
  4309. name: "Macro",
  4310. height: math.unit(1500, "meters"),
  4311. default: true
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(150, "km")
  4316. },
  4317. {
  4318. name: "Gigamacro",
  4319. height: math.unit(27000, "km")
  4320. }
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4325. {
  4326. front: {
  4327. height: math.unit(6, "feet"),
  4328. weight: math.unit(225, "lb"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/abysgar/front.svg"
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Small",
  4338. height: math.unit(4.5, "meters")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(1250, "meters"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Megamacro",
  4347. height: math.unit(125, "km")
  4348. },
  4349. {
  4350. name: "Gigamacro",
  4351. height: math.unit(26000, "km")
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(6, "feet"),
  4360. weight: math.unit(180, "lb"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/yakuz/front.svg"
  4364. }
  4365. }
  4366. },
  4367. [
  4368. {
  4369. name: "Small",
  4370. height: math.unit(5, "meters")
  4371. },
  4372. {
  4373. name: "Macro",
  4374. height: math.unit(1500, "meters"),
  4375. default: true
  4376. },
  4377. {
  4378. name: "Megamacro",
  4379. height: math.unit(200, "km")
  4380. },
  4381. {
  4382. name: "Gigamacro",
  4383. height: math.unit(100000, "km")
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(175, "lb"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/mirova/front.svg",
  4396. extra: 3334 / 3071,
  4397. bottom: 42 / 3375.6
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Small",
  4404. height: math.unit(5, "meters")
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(900, "meters"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Megamacro",
  4413. height: math.unit(135, "km")
  4414. },
  4415. {
  4416. name: "Gigamacro",
  4417. height: math.unit(20000, "km")
  4418. }
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4423. {
  4424. side: {
  4425. height: math.unit(28.35, "feet"),
  4426. weight: math.unit(99.75, "tons"),
  4427. name: "Side",
  4428. image: {
  4429. source: "./media/characters/asana-mech/side.svg",
  4430. extra: 923 / 699,
  4431. bottom: 50 / 975
  4432. }
  4433. },
  4434. chaingun: {
  4435. height: math.unit(7, "feet"),
  4436. weight: math.unit(2400, "lb"),
  4437. name: "Chaingun",
  4438. image: {
  4439. source: "./media/characters/asana-mech/chaingun.svg"
  4440. }
  4441. },
  4442. laser: {
  4443. height: math.unit(7.12, "feet"),
  4444. weight: math.unit(2000, "lb"),
  4445. name: "Laser",
  4446. image: {
  4447. source: "./media/characters/asana-mech/laser.svg"
  4448. }
  4449. },
  4450. },
  4451. [
  4452. {
  4453. name: "Normal",
  4454. height: math.unit(28.35, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Macro",
  4459. height: math.unit(2500, "feet")
  4460. },
  4461. {
  4462. name: "Megamacro",
  4463. height: math.unit(25, "miles")
  4464. },
  4465. {
  4466. name: "Examacro",
  4467. height: math.unit(6e8, "lightyears")
  4468. },
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(5, "meters"),
  4476. weight: math.unit(1000, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/asche/front.svg",
  4480. extra: 1258 / 1190,
  4481. bottom: 47 / 1305
  4482. }
  4483. },
  4484. frontUnderwear: {
  4485. height: math.unit(5, "meters"),
  4486. weight: math.unit(1000, "kg"),
  4487. name: "Front (Underwear)",
  4488. image: {
  4489. source: "./media/characters/asche/front-underwear.svg",
  4490. extra: 1258 / 1190,
  4491. bottom: 47 / 1305
  4492. }
  4493. },
  4494. frontDressed: {
  4495. height: math.unit(5, "meters"),
  4496. weight: math.unit(1000, "kg"),
  4497. name: "Front (Dressed)",
  4498. image: {
  4499. source: "./media/characters/asche/front-dressed.svg",
  4500. extra: 1258 / 1190,
  4501. bottom: 47 / 1305
  4502. }
  4503. },
  4504. frontArmor: {
  4505. height: math.unit(5, "meters"),
  4506. weight: math.unit(1000, "kg"),
  4507. name: "Front (Armored)",
  4508. image: {
  4509. source: "./media/characters/asche/front-armored.svg",
  4510. extra: 1374 / 1308,
  4511. bottom: 23 / 1397
  4512. }
  4513. },
  4514. mp724: {
  4515. height: math.unit(0.96, "meters"),
  4516. weight: math.unit(38, "kg"),
  4517. name: "H&K MP724",
  4518. image: {
  4519. source: "./media/characters/asche/h&k-mp724.svg"
  4520. }
  4521. },
  4522. side: {
  4523. height: math.unit(5, "meters"),
  4524. weight: math.unit(1000, "kg"),
  4525. name: "Side",
  4526. image: {
  4527. source: "./media/characters/asche/side.svg",
  4528. extra: 1717 / 1609,
  4529. bottom: 0.005
  4530. }
  4531. },
  4532. back: {
  4533. height: math.unit(5, "meters"),
  4534. weight: math.unit(1000, "kg"),
  4535. name: "Back",
  4536. image: {
  4537. source: "./media/characters/asche/back.svg",
  4538. extra: 1570 / 1501
  4539. }
  4540. },
  4541. },
  4542. [
  4543. {
  4544. name: "DEFCON 5",
  4545. height: math.unit(5, "meters")
  4546. },
  4547. {
  4548. name: "DEFCON 4",
  4549. height: math.unit(500, "meters"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "DEFCON 3",
  4554. height: math.unit(5, "km")
  4555. },
  4556. {
  4557. name: "DEFCON 2",
  4558. height: math.unit(500, "km")
  4559. },
  4560. {
  4561. name: "DEFCON 1",
  4562. height: math.unit(500000, "km")
  4563. },
  4564. {
  4565. name: "DEFCON 0",
  4566. height: math.unit(3, "gigaparsecs")
  4567. },
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4572. {
  4573. front: {
  4574. height: math.unit(2, "meters"),
  4575. weight: math.unit(76, "kg"),
  4576. name: "Front",
  4577. image: {
  4578. source: "./media/characters/gale/front.svg"
  4579. }
  4580. },
  4581. frontAlt1: {
  4582. height: math.unit(2, "meters"),
  4583. weight: math.unit(76, "kg"),
  4584. name: "Front (Alt 1)",
  4585. image: {
  4586. source: "./media/characters/gale/front-alt-1.svg"
  4587. }
  4588. },
  4589. frontAlt2: {
  4590. height: math.unit(2, "meters"),
  4591. weight: math.unit(76, "kg"),
  4592. name: "Front (Alt 2)",
  4593. image: {
  4594. source: "./media/characters/gale/front-alt-2.svg"
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Normal",
  4601. height: math.unit(7, "feet")
  4602. },
  4603. {
  4604. name: "Macro",
  4605. height: math.unit(150, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Macro+",
  4610. height: math.unit(300, "feet")
  4611. },
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4616. {
  4617. front: {
  4618. height: math.unit(5 + 10/12, "feet"),
  4619. weight: math.unit(67, "kg"),
  4620. name: "Front",
  4621. image: {
  4622. source: "./media/characters/draylen/front.svg",
  4623. extra: 832/777,
  4624. bottom: 85/917
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(5 + 10/12, "feet")
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(150, "feet"),
  4636. default: true
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(7 + 9 / 12, "feet"),
  4645. weight: math.unit(379, "lbs"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/chez/front.svg"
  4649. }
  4650. },
  4651. side: {
  4652. height: math.unit(7 + 9 / 12, "feet"),
  4653. weight: math.unit(379, "lbs"),
  4654. name: "Side",
  4655. image: {
  4656. source: "./media/characters/chez/side.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(7 + 9 / 12, "feet"),
  4664. default: true
  4665. },
  4666. {
  4667. name: "God King",
  4668. height: math.unit(9750000, "meters")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(275, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/kaylum/front.svg",
  4681. bottom: 0.01,
  4682. extra: 1166 / 1031
  4683. }
  4684. },
  4685. frontWingless: {
  4686. height: math.unit(6, "feet"),
  4687. weight: math.unit(275, "lbs"),
  4688. name: "Front (Wingless)",
  4689. image: {
  4690. source: "./media/characters/kaylum/front-wingless.svg",
  4691. bottom: 0.01,
  4692. extra: 1117 / 1031
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(3.05, "meters")
  4700. },
  4701. {
  4702. name: "Master",
  4703. height: math.unit(5.5, "meters")
  4704. },
  4705. {
  4706. name: "Rampage",
  4707. height: math.unit(19, "meters")
  4708. },
  4709. {
  4710. name: "Macro Lite",
  4711. height: math.unit(37, "meters")
  4712. },
  4713. {
  4714. name: "Hyper Predator",
  4715. height: math.unit(61, "meters")
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(138, "meters"),
  4720. default: true
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(150, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/geta/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Micro",
  4739. height: math.unit(3, "inches"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(5 + 5 / 12, "feet")
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(300, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/tyrnn/front.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Main Height",
  4763. height: math.unit(355, "feet"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Fave. Height",
  4768. height: math.unit(2400, "feet")
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(300, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/appledectomy/front.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(2500, "feet")
  4788. },
  4789. {
  4790. name: "Megamacro",
  4791. height: math.unit(50, "miles"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Gigamacro",
  4796. height: math.unit(5000, "miles")
  4797. },
  4798. {
  4799. name: "Teramacro",
  4800. height: math.unit(250000, "miles")
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(200, "lbs"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/vulpes/front.svg",
  4813. extra: 573 / 543,
  4814. bottom: 0.033
  4815. }
  4816. },
  4817. side: {
  4818. height: math.unit(6, "feet"),
  4819. weight: math.unit(200, "lbs"),
  4820. name: "Side",
  4821. image: {
  4822. source: "./media/characters/vulpes/side.svg",
  4823. extra: 577 / 549,
  4824. bottom: 11 / 588
  4825. }
  4826. },
  4827. back: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(200, "lbs"),
  4830. name: "Back",
  4831. image: {
  4832. source: "./media/characters/vulpes/back.svg",
  4833. extra: 573 / 549,
  4834. bottom: 20 / 593
  4835. }
  4836. },
  4837. feet: {
  4838. height: math.unit(1.276, "feet"),
  4839. name: "Feet",
  4840. image: {
  4841. source: "./media/characters/vulpes/feet.svg"
  4842. }
  4843. },
  4844. maw: {
  4845. height: math.unit(1.18, "feet"),
  4846. name: "Maw",
  4847. image: {
  4848. source: "./media/characters/vulpes/maw.svg"
  4849. }
  4850. },
  4851. },
  4852. [
  4853. {
  4854. name: "Micro",
  4855. height: math.unit(2, "inches")
  4856. },
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(6.3, "feet")
  4860. },
  4861. {
  4862. name: "Macro",
  4863. height: math.unit(850, "feet")
  4864. },
  4865. {
  4866. name: "Megamacro",
  4867. height: math.unit(7500, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Gigamacro",
  4872. height: math.unit(570000, "miles")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(210, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/rain-fallen/front.svg"
  4885. }
  4886. },
  4887. side: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(210, "lbs"),
  4890. name: "Side",
  4891. image: {
  4892. source: "./media/characters/rain-fallen/side.svg"
  4893. }
  4894. },
  4895. back: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(210, "lbs"),
  4898. name: "Back",
  4899. image: {
  4900. source: "./media/characters/rain-fallen/back.svg"
  4901. }
  4902. },
  4903. feral: {
  4904. height: math.unit(9, "feet"),
  4905. weight: math.unit(700, "lbs"),
  4906. name: "Feral",
  4907. image: {
  4908. source: "./media/characters/rain-fallen/feral.svg"
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Meddling with Mortals",
  4915. height: math.unit(8 + 8/12, "feet")
  4916. },
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(5, "meter")
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(150, "meter"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Megamacro",
  4928. height: math.unit(278e6, "meter")
  4929. },
  4930. {
  4931. name: "Gigamacro",
  4932. height: math.unit(2e9, "meter")
  4933. },
  4934. {
  4935. name: "Teramacro",
  4936. height: math.unit(8e12, "meter")
  4937. },
  4938. {
  4939. name: "Devourer",
  4940. height: math.unit(14, "zettameters")
  4941. },
  4942. {
  4943. name: "Scarlet King",
  4944. height: math.unit(18, "yottameters")
  4945. },
  4946. {
  4947. name: "Void",
  4948. height: math.unit(1e88, "yottameters")
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4954. {
  4955. standing: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(180, "lbs"),
  4958. name: "Standing",
  4959. image: {
  4960. source: "./media/characters/zaakira/standing.svg",
  4961. extra: 1599/1504,
  4962. bottom: 39/1638
  4963. }
  4964. },
  4965. laying: {
  4966. height: math.unit(3, "feet"),
  4967. weight: math.unit(180, "lbs"),
  4968. name: "Laying",
  4969. image: {
  4970. source: "./media/characters/zaakira/laying.svg"
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(12, "feet")
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(279, "feet"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4988. {
  4989. femSfw: {
  4990. height: math.unit(8, "feet"),
  4991. weight: math.unit(350, "lb"),
  4992. name: "Fem",
  4993. image: {
  4994. source: "./media/characters/sigvald/fem-sfw.svg",
  4995. extra: 182 / 164,
  4996. bottom: 8.7 / 190.5
  4997. }
  4998. },
  4999. femNsfw: {
  5000. height: math.unit(8, "feet"),
  5001. weight: math.unit(350, "lb"),
  5002. name: "Fem (NSFW)",
  5003. image: {
  5004. source: "./media/characters/sigvald/fem-nsfw.svg",
  5005. extra: 182 / 164,
  5006. bottom: 8.7 / 190.5
  5007. }
  5008. },
  5009. maleNsfw: {
  5010. height: math.unit(8, "feet"),
  5011. weight: math.unit(350, "lb"),
  5012. name: "Male (NSFW)",
  5013. image: {
  5014. source: "./media/characters/sigvald/male-nsfw.svg",
  5015. extra: 182 / 164,
  5016. bottom: 8.7 / 190.5
  5017. }
  5018. },
  5019. hermNsfw: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(350, "lb"),
  5022. name: "Herm (NSFW)",
  5023. image: {
  5024. source: "./media/characters/sigvald/herm-nsfw.svg",
  5025. extra: 182 / 164,
  5026. bottom: 8.7 / 190.5
  5027. }
  5028. },
  5029. dick: {
  5030. height: math.unit(2.36, "feet"),
  5031. name: "Dick",
  5032. image: {
  5033. source: "./media/characters/sigvald/dick.svg"
  5034. }
  5035. },
  5036. eye: {
  5037. height: math.unit(0.31, "feet"),
  5038. name: "Eye",
  5039. image: {
  5040. source: "./media/characters/sigvald/eye.svg"
  5041. }
  5042. },
  5043. mouth: {
  5044. height: math.unit(0.92, "feet"),
  5045. name: "Mouth",
  5046. image: {
  5047. source: "./media/characters/sigvald/mouth.svg"
  5048. }
  5049. },
  5050. paws: {
  5051. height: math.unit(2.2, "feet"),
  5052. name: "Paws",
  5053. image: {
  5054. source: "./media/characters/sigvald/paws.svg"
  5055. }
  5056. }
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(8, "feet")
  5062. },
  5063. {
  5064. name: "Large",
  5065. height: math.unit(12, "feet")
  5066. },
  5067. {
  5068. name: "Larger",
  5069. height: math.unit(20, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(150, "feet")
  5074. },
  5075. {
  5076. name: "Macro+",
  5077. height: math.unit(200, "feet"),
  5078. default: true
  5079. },
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5084. {
  5085. side: {
  5086. height: math.unit(12, "feet"),
  5087. weight: math.unit(2000, "kg"),
  5088. name: "Side",
  5089. image: {
  5090. source: "./media/characters/scott/side.svg",
  5091. extra: 754 / 724,
  5092. bottom: 0.069
  5093. }
  5094. },
  5095. upright: {
  5096. height: math.unit(12, "feet"),
  5097. weight: math.unit(2000, "kg"),
  5098. name: "Upright",
  5099. image: {
  5100. source: "./media/characters/scott/upright.svg",
  5101. extra: 3881 / 3722,
  5102. bottom: 0.05
  5103. }
  5104. },
  5105. },
  5106. [
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(12, "feet"),
  5110. default: true
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5116. {
  5117. side: {
  5118. height: math.unit(8, "meters"),
  5119. weight: math.unit(84755, "lbs"),
  5120. name: "Side",
  5121. image: {
  5122. source: "./media/characters/tobias/side.svg",
  5123. extra: 1474 / 1096,
  5124. bottom: 38.9 / 1513.1235
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(8, "meters"),
  5132. default: true
  5133. },
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5138. {
  5139. front: {
  5140. height: math.unit(5.5, "feet"),
  5141. weight: math.unit(400, "lbs"),
  5142. name: "Front",
  5143. image: {
  5144. source: "./media/characters/kieran/front.svg",
  5145. extra: 2694 / 2364,
  5146. bottom: 217 / 2908
  5147. }
  5148. },
  5149. side: {
  5150. height: math.unit(5.5, "feet"),
  5151. weight: math.unit(400, "lbs"),
  5152. name: "Side",
  5153. image: {
  5154. source: "./media/characters/kieran/side.svg",
  5155. extra: 875 / 777,
  5156. bottom: 84.6 / 959
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(5.5, "feet"),
  5164. default: true
  5165. },
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5170. {
  5171. side: {
  5172. height: math.unit(2, "meters"),
  5173. weight: math.unit(70, "kg"),
  5174. name: "Side",
  5175. image: {
  5176. source: "./media/characters/sanya/side.svg",
  5177. bottom: 0.02,
  5178. extra: 1.02
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Small",
  5185. height: math.unit(2, "meters")
  5186. },
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(3, "meters")
  5190. },
  5191. {
  5192. name: "Macro",
  5193. height: math.unit(16, "meters"),
  5194. default: true
  5195. },
  5196. ]
  5197. ))
  5198. characterMakers.push(() => makeCharacter(
  5199. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5200. {
  5201. front: {
  5202. height: math.unit(2, "meters"),
  5203. weight: math.unit(120, "kg"),
  5204. name: "Front",
  5205. image: {
  5206. source: "./media/characters/miranda/front.svg",
  5207. extra: 195 / 185,
  5208. bottom: 10.9 / 206.5
  5209. }
  5210. },
  5211. back: {
  5212. height: math.unit(2, "meters"),
  5213. weight: math.unit(120, "kg"),
  5214. name: "Back",
  5215. image: {
  5216. source: "./media/characters/miranda/back.svg",
  5217. extra: 201 / 193,
  5218. bottom: 2.3 / 203.7
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(10, "feet"),
  5226. default: true
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "James", species: ["deer"], tags: ["anthro"] },
  5232. {
  5233. side: {
  5234. height: math.unit(2, "meters"),
  5235. weight: math.unit(100, "kg"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/james/front.svg",
  5239. extra: 10 / 8.5
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(8.5, "feet"),
  5247. default: true
  5248. }
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5253. {
  5254. side: {
  5255. height: math.unit(9.5, "feet"),
  5256. weight: math.unit(2500, "lbs"),
  5257. name: "Side",
  5258. image: {
  5259. source: "./media/characters/heather/side.svg"
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(9.5, "feet"),
  5267. default: true
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5273. {
  5274. side: {
  5275. height: math.unit(6.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/lukas/side.svg",
  5280. extra: 7.25 / 6.5
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(6.5, "feet"),
  5288. default: true
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5294. {
  5295. side: {
  5296. height: math.unit(5, "feet"),
  5297. weight: math.unit(3000, "lbs"),
  5298. name: "Side",
  5299. image: {
  5300. source: "./media/characters/louise/side.svg"
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(5, "feet"),
  5308. default: true
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5314. {
  5315. side: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(150, "lbs"),
  5318. name: "Side",
  5319. image: {
  5320. source: "./media/characters/ramona/side.svg",
  5321. extra: 871/854,
  5322. bottom: 41/912
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5.3, "meters"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Macro",
  5334. height: math.unit(20, "stories")
  5335. },
  5336. {
  5337. name: "Macro+",
  5338. height: math.unit(50, "stories")
  5339. },
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5344. {
  5345. standing: {
  5346. height: math.unit(5.75, "feet"),
  5347. weight: math.unit(160, "lbs"),
  5348. name: "Standing",
  5349. image: {
  5350. source: "./media/characters/deerpuff/standing.svg",
  5351. extra: 682 / 624
  5352. }
  5353. },
  5354. sitting: {
  5355. height: math.unit(5.75 / 1.79, "feet"),
  5356. weight: math.unit(160, "lbs"),
  5357. name: "Sitting",
  5358. image: {
  5359. source: "./media/characters/deerpuff/sitting.svg",
  5360. bottom: 44 / 400,
  5361. extra: 1
  5362. }
  5363. },
  5364. taurLaying: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(400, "lbs"),
  5367. name: "Taur (Laying)",
  5368. image: {
  5369. source: "./media/characters/deerpuff/taur-laying.svg"
  5370. }
  5371. },
  5372. },
  5373. [
  5374. {
  5375. name: "Puffball",
  5376. height: math.unit(6, "inches")
  5377. },
  5378. {
  5379. name: "Normalpuff",
  5380. height: math.unit(5.75, "feet")
  5381. },
  5382. {
  5383. name: "Macropuff",
  5384. height: math.unit(1500, "feet"),
  5385. default: true
  5386. },
  5387. {
  5388. name: "Megapuff",
  5389. height: math.unit(500, "miles")
  5390. },
  5391. {
  5392. name: "Gigapuff",
  5393. height: math.unit(250000, "miles")
  5394. },
  5395. {
  5396. name: "Omegapuff",
  5397. height: math.unit(1000, "lightyears")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5403. {
  5404. stomping: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(170, "lbs"),
  5407. name: "Stomping",
  5408. image: {
  5409. source: "./media/characters/vivian/stomping.svg"
  5410. }
  5411. },
  5412. sitting: {
  5413. height: math.unit(6 / 1.75, "feet"),
  5414. weight: math.unit(170, "lbs"),
  5415. name: "Sitting",
  5416. image: {
  5417. source: "./media/characters/vivian/sitting.svg",
  5418. bottom: 1 / 6.4,
  5419. extra: 1,
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(7, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Macro",
  5431. height: math.unit(10, "stories")
  5432. },
  5433. {
  5434. name: "Macro+",
  5435. height: math.unit(30, "stories")
  5436. },
  5437. {
  5438. name: "Megamacro",
  5439. height: math.unit(10, "miles")
  5440. },
  5441. {
  5442. name: "Megamacro+",
  5443. height: math.unit(2750000, "meters")
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(160, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/prince/front.svg",
  5456. extra: 3400 / 3000
  5457. }
  5458. },
  5459. jumping: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(160, "lbs"),
  5462. name: "Jumping",
  5463. image: {
  5464. source: "./media/characters/prince/jump.svg",
  5465. extra: 2555 / 2134
  5466. }
  5467. },
  5468. },
  5469. [
  5470. {
  5471. name: "Normal",
  5472. height: math.unit(7.75, "feet"),
  5473. default: true
  5474. },
  5475. {
  5476. name: "Not cute",
  5477. height: math.unit(17, "feet")
  5478. },
  5479. {
  5480. name: "I said NOT",
  5481. height: math.unit(91, "feet")
  5482. },
  5483. {
  5484. name: "Please stop",
  5485. height: math.unit(560, "feet")
  5486. },
  5487. {
  5488. name: "What have you done",
  5489. height: math.unit(2200, "feet")
  5490. },
  5491. {
  5492. name: "Deer God",
  5493. height: math.unit(3.6, "miles")
  5494. },
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5499. {
  5500. standing: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(300, "lbs"),
  5503. name: "Standing",
  5504. image: {
  5505. source: "./media/characters/psymon/standing.svg",
  5506. extra: 1888 / 1810,
  5507. bottom: 0.05
  5508. }
  5509. },
  5510. slithering: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(300, "lbs"),
  5513. name: "Slithering",
  5514. image: {
  5515. source: "./media/characters/psymon/slithering.svg",
  5516. extra: 1330 / 1224
  5517. }
  5518. },
  5519. slitheringAlt: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(300, "lbs"),
  5522. name: "Slithering (Alt)",
  5523. image: {
  5524. source: "./media/characters/psymon/slithering-alt.svg",
  5525. extra: 1330 / 1224
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(11.25, "feet"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Large",
  5537. height: math.unit(27, "feet")
  5538. },
  5539. {
  5540. name: "Giant",
  5541. height: math.unit(87, "feet")
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(365, "feet")
  5546. },
  5547. {
  5548. name: "Megamacro",
  5549. height: math.unit(3, "miles")
  5550. },
  5551. {
  5552. name: "World Serpent",
  5553. height: math.unit(8000, "miles")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(180, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/daimos/front.svg",
  5566. extra: 4160 / 3897,
  5567. bottom: 0.021
  5568. }
  5569. }
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(8, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Big Dog",
  5579. height: math.unit(22, "feet")
  5580. },
  5581. {
  5582. name: "Macro",
  5583. height: math.unit(127, "feet")
  5584. },
  5585. {
  5586. name: "Megamacro",
  5587. height: math.unit(3600, "feet")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5593. {
  5594. side: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(180, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/blake/side.svg",
  5600. extra: 1212 / 1120,
  5601. bottom: 0.05
  5602. }
  5603. },
  5604. crouched: {
  5605. height: math.unit(6 * 0.57, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Crouched",
  5608. image: {
  5609. source: "./media/characters/blake/crouched.svg",
  5610. extra: 840 / 587,
  5611. bottom: 0.04
  5612. }
  5613. },
  5614. bent: {
  5615. height: math.unit(6 * 0.75, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Bent",
  5618. image: {
  5619. source: "./media/characters/blake/bent.svg",
  5620. extra: 592 / 544,
  5621. bottom: 0.035
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(8 + 1 / 6, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Big Backside",
  5633. height: math.unit(37, "feet")
  5634. },
  5635. {
  5636. name: "Subway Shredder",
  5637. height: math.unit(72, "feet")
  5638. },
  5639. {
  5640. name: "City Carver",
  5641. height: math.unit(1675, "feet")
  5642. },
  5643. {
  5644. name: "Tectonic Tweaker",
  5645. height: math.unit(2300, "miles")
  5646. },
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/guisetto/front.svg",
  5658. extra: 856 / 817,
  5659. bottom: 0.06
  5660. }
  5661. },
  5662. airborne: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(180, "lbs"),
  5665. name: "Airborne",
  5666. image: {
  5667. source: "./media/characters/guisetto/airborne.svg",
  5668. extra: 584 / 525
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(10 + 11 / 12, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Large",
  5680. height: math.unit(35, "feet")
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(475, "feet")
  5685. },
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(180, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/luxor/front.svg",
  5697. extra: 2940 / 2152
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(180, "lbs"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/luxor/back.svg",
  5706. extra: 1083 / 960
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(5 + 5 / 6, "feet"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Lamp",
  5718. height: math.unit(50, "feet")
  5719. },
  5720. {
  5721. name: "Lämp",
  5722. height: math.unit(300, "feet")
  5723. },
  5724. {
  5725. name: "The sun is a lamp",
  5726. height: math.unit(250000, "miles")
  5727. },
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5732. {
  5733. front: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(50, "lbs"),
  5736. name: "Front",
  5737. image: {
  5738. source: "./media/characters/huoyan/front.svg"
  5739. }
  5740. },
  5741. side: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(180, "lbs"),
  5744. name: "Side",
  5745. image: {
  5746. source: "./media/characters/huoyan/side.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Chef",
  5753. height: math.unit(9, "feet")
  5754. },
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(65, "feet"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(780, "feet")
  5763. },
  5764. {
  5765. name: "Flaming Mountain",
  5766. height: math.unit(4.8, "miles")
  5767. },
  5768. {
  5769. name: "Celestial",
  5770. height: math.unit(765000, "miles")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(5 + 3 / 4, "feet"),
  5779. weight: math.unit(120, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/tails/front.svg"
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5 + 3 / 4, "feet"),
  5790. default: true
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(4, "feet"),
  5799. weight: math.unit(50, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/rainy/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(800, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(150, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rainier/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(2, "mm"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(8 + 4/12, "feet"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/andy-renard/front.svg",
  5842. extra: 1839/1726,
  5843. bottom: 134/1973
  5844. }
  5845. },
  5846. back: {
  5847. height: math.unit(8 + 4/12, "feet"),
  5848. name: "Back",
  5849. image: {
  5850. source: "./media/characters/andy-renard/back.svg",
  5851. extra: 1838/1710,
  5852. bottom: 105/1943
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Tall",
  5859. height: math.unit(8 + 4/12, "feet")
  5860. },
  5861. {
  5862. name: "Mini Macro",
  5863. height: math.unit(15, "feet"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(100, "feet")
  5869. },
  5870. {
  5871. name: "Mega Macro",
  5872. height: math.unit(1000, "feet")
  5873. },
  5874. {
  5875. name: "Giga Macro",
  5876. height: math.unit(10, "miles")
  5877. },
  5878. {
  5879. name: "God Macro",
  5880. height: math.unit(1, "multiverse")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(210, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/cimmaron/front-sfw.svg",
  5893. extra: 701 / 676,
  5894. bottom: 0.046
  5895. }
  5896. },
  5897. back: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(210, "lbs"),
  5900. name: "Back",
  5901. image: {
  5902. source: "./media/characters/cimmaron/back-sfw.svg",
  5903. extra: 701 / 676,
  5904. bottom: 0.046
  5905. }
  5906. },
  5907. frontNsfw: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(210, "lbs"),
  5910. name: "Front (NSFW)",
  5911. image: {
  5912. source: "./media/characters/cimmaron/front-nsfw.svg",
  5913. extra: 701 / 676,
  5914. bottom: 0.046
  5915. }
  5916. },
  5917. backNsfw: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back (NSFW)",
  5921. image: {
  5922. source: "./media/characters/cimmaron/back-nsfw.svg",
  5923. extra: 701 / 676,
  5924. bottom: 0.046
  5925. }
  5926. },
  5927. dick: {
  5928. height: math.unit(1.714, "feet"),
  5929. name: "Dick",
  5930. image: {
  5931. source: "./media/characters/cimmaron/dick.svg"
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(6, "feet"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Macro Mayor",
  5943. height: math.unit(350, "meters")
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5949. {
  5950. front: {
  5951. height: math.unit(6, "feet"),
  5952. weight: math.unit(200, "lbs"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/akari/front.svg",
  5956. extra: 962 / 901,
  5957. bottom: 0.04
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(5, "inches"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(7, "feet")
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5975. {
  5976. front: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(140, "lbs"),
  5979. name: "Front",
  5980. image: {
  5981. source: "./media/characters/cynosura/front.svg",
  5982. extra: 896 / 847
  5983. }
  5984. },
  5985. back: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(140, "lbs"),
  5988. name: "Back",
  5989. image: {
  5990. source: "./media/characters/cynosura/back.svg",
  5991. extra: 1365 / 1250
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(4, "inches")
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(5.75, "feet"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Tall",
  6007. height: math.unit(10, "feet")
  6008. },
  6009. {
  6010. name: "Big",
  6011. height: math.unit(20, "feet")
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(50, "feet")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(13 + 2/12, "feet"),
  6024. weight: math.unit(800, "kg"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/gin/front.svg",
  6028. extra: 1312/1191,
  6029. bottom: 45/1357
  6030. }
  6031. },
  6032. mouth: {
  6033. height: math.unit(2.39 * 1.8, "feet"),
  6034. name: "Mouth",
  6035. image: {
  6036. source: "./media/characters/gin/mouth.svg"
  6037. }
  6038. },
  6039. hand: {
  6040. height: math.unit(1.57 * 2.19, "feet"),
  6041. name: "Hand",
  6042. image: {
  6043. source: "./media/characters/gin/hand.svg"
  6044. }
  6045. },
  6046. foot: {
  6047. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6048. name: "Foot",
  6049. image: {
  6050. source: "./media/characters/gin/foot.svg"
  6051. }
  6052. },
  6053. sole: {
  6054. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6055. name: "Sole",
  6056. image: {
  6057. source: "./media/characters/gin/sole.svg"
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Very Small",
  6064. height: math.unit(13 + 2 / 12, "feet")
  6065. },
  6066. {
  6067. name: "Micro",
  6068. height: math.unit(600, "miles")
  6069. },
  6070. {
  6071. name: "Regular",
  6072. height: math.unit(20, "earths"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(2.2, "solarradii")
  6078. },
  6079. {
  6080. name: "Teramacro",
  6081. height: math.unit(1.2, "galaxies")
  6082. },
  6083. {
  6084. name: "Omegamacro",
  6085. height: math.unit(200, "universes")
  6086. },
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6 + 1 / 6, "feet"),
  6094. weight: math.unit(178, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/guy/front.svg"
  6098. }
  6099. }
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(6 + 1 / 6, "feet"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Large",
  6109. height: math.unit(25 + 7 / 12, "feet")
  6110. },
  6111. {
  6112. name: "Macro",
  6113. height: math.unit(60 + 9 / 12, "feet")
  6114. },
  6115. {
  6116. name: "Macro+",
  6117. height: math.unit(246, "feet")
  6118. },
  6119. {
  6120. name: "Macro++",
  6121. height: math.unit(878, "feet")
  6122. }
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(9, "feet"),
  6130. weight: math.unit(800, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/tiberius/front.svg",
  6134. extra: 2295 / 2071
  6135. }
  6136. },
  6137. back: {
  6138. height: math.unit(9, "feet"),
  6139. weight: math.unit(800, "lbs"),
  6140. name: "Back",
  6141. image: {
  6142. source: "./media/characters/tiberius/back.svg",
  6143. extra: 2373 / 2160
  6144. }
  6145. },
  6146. },
  6147. [
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(9, "feet"),
  6151. default: true
  6152. }
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6157. {
  6158. front: {
  6159. height: math.unit(6, "feet"),
  6160. weight: math.unit(600, "lbs"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/surgo/front.svg",
  6164. extra: 3591 / 2227
  6165. }
  6166. },
  6167. back: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(600, "lbs"),
  6170. name: "Back",
  6171. image: {
  6172. source: "./media/characters/surgo/back.svg",
  6173. extra: 3557 / 2228
  6174. }
  6175. },
  6176. laying: {
  6177. height: math.unit(6 * 0.85, "feet"),
  6178. weight: math.unit(600, "lbs"),
  6179. name: "Laying",
  6180. image: {
  6181. source: "./media/characters/surgo/laying.svg"
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(6, "feet"),
  6189. default: true
  6190. }
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6195. {
  6196. side: {
  6197. height: math.unit(6, "feet"),
  6198. weight: math.unit(150, "lbs"),
  6199. name: "Side",
  6200. image: {
  6201. source: "./media/characters/cibus/side.svg",
  6202. extra: 800 / 400
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(6, "feet"),
  6210. default: true
  6211. }
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(240, "lbs"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/nibbles/front.svg"
  6223. }
  6224. },
  6225. side: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(240, "lbs"),
  6228. name: "Side",
  6229. image: {
  6230. source: "./media/characters/nibbles/side.svg"
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(9, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6244. {
  6245. side: {
  6246. height: math.unit(5 + 1 / 6, "feet"),
  6247. weight: math.unit(130, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/rikky/side.svg",
  6251. extra: 851 / 801
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(5 + 1 / 6, "feet")
  6259. },
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(152, "feet"),
  6263. default: true
  6264. },
  6265. {
  6266. name: "Megamacro",
  6267. height: math.unit(7, "miles")
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6273. {
  6274. side: {
  6275. height: math.unit(370, "cm"),
  6276. weight: math.unit(350, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/malfressa/side.svg"
  6280. }
  6281. },
  6282. walking: {
  6283. height: math.unit(370, "cm"),
  6284. weight: math.unit(350, "lbs"),
  6285. name: "Walking",
  6286. image: {
  6287. source: "./media/characters/malfressa/walking.svg"
  6288. }
  6289. },
  6290. feral: {
  6291. height: math.unit(2500, "cm"),
  6292. weight: math.unit(100000, "lbs"),
  6293. name: "Feral",
  6294. image: {
  6295. source: "./media/characters/malfressa/feral.svg",
  6296. extra: 2108 / 837,
  6297. bottom: 0.02
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(370, "cm")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(300, "meters"),
  6309. default: true
  6310. }
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(6, "feet"),
  6318. weight: math.unit(60, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/jaro/front.svg"
  6322. }
  6323. },
  6324. back: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(60, "kg"),
  6327. name: "Back",
  6328. image: {
  6329. source: "./media/characters/jaro/back.svg"
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Micro",
  6336. height: math.unit(7, "inches")
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(5.5, "feet"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Minimacro",
  6345. height: math.unit(20, "feet")
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(200, "meters")
  6350. }
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(195, "lb"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/rogue/front.svg"
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(90, "feet"),
  6369. default: true
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(5 + 8 / 12, "feet"),
  6378. weight: math.unit(140, "lb"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/piper/front.svg",
  6382. extra: 3948/3655,
  6383. bottom: 0/3948
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Micro",
  6390. height: math.unit(2, "inches")
  6391. },
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(5 + 8 / 12, "feet")
  6395. },
  6396. {
  6397. name: "Macro",
  6398. height: math.unit(250, "feet"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Megamacro",
  6403. height: math.unit(7, "miles")
  6404. },
  6405. ]
  6406. ))
  6407. characterMakers.push(() => makeCharacter(
  6408. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6409. {
  6410. front: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(220, "lb"),
  6413. name: "Front",
  6414. image: {
  6415. source: "./media/characters/gemini/front.svg"
  6416. }
  6417. },
  6418. back: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(220, "lb"),
  6421. name: "Back",
  6422. image: {
  6423. source: "./media/characters/gemini/back.svg"
  6424. }
  6425. },
  6426. kneeling: {
  6427. height: math.unit(6 / 1.5, "feet"),
  6428. weight: math.unit(220, "lb"),
  6429. name: "Kneeling",
  6430. image: {
  6431. source: "./media/characters/gemini/kneeling.svg",
  6432. bottom: 0.02
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(300, "meters"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Megamacro",
  6444. height: math.unit(6900, "meters")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6450. {
  6451. anthro: {
  6452. height: math.unit(2.35, "meters"),
  6453. weight: math.unit(73, "kg"),
  6454. name: "Anthro",
  6455. image: {
  6456. source: "./media/characters/alicia/anthro.svg",
  6457. extra: 2571 / 2385,
  6458. bottom: 75 / 2648
  6459. }
  6460. },
  6461. paw: {
  6462. height: math.unit(1.32, "feet"),
  6463. name: "Paw",
  6464. image: {
  6465. source: "./media/characters/alicia/paw.svg"
  6466. }
  6467. },
  6468. feral: {
  6469. height: math.unit(1.69, "meters"),
  6470. weight: math.unit(73, "kg"),
  6471. name: "Feral",
  6472. image: {
  6473. source: "./media/characters/alicia/feral.svg",
  6474. extra: 2123 / 1715,
  6475. bottom: 222 / 2349
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(2.35, "meters")
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(60, "meters"),
  6487. default: true
  6488. },
  6489. {
  6490. name: "Megamacro",
  6491. height: math.unit(10000, "kilometers")
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(7, "feet"),
  6500. weight: math.unit(250, "lbs"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/archy/front.svg"
  6504. }
  6505. }
  6506. },
  6507. [
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(1, "inch")
  6511. },
  6512. {
  6513. name: "Shorty",
  6514. height: math.unit(5, "feet")
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(7, "feet")
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(600, "meters"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Megamacro",
  6527. height: math.unit(1, "mile")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6533. {
  6534. front: {
  6535. height: math.unit(1.65, "meters"),
  6536. weight: math.unit(74, "kg"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/berri/front.svg",
  6540. extra: 857 / 837,
  6541. bottom: 18 / 877
  6542. }
  6543. },
  6544. bum: {
  6545. height: math.unit(1.46, "feet"),
  6546. name: "Bum",
  6547. image: {
  6548. source: "./media/characters/berri/bum.svg"
  6549. }
  6550. },
  6551. mouth: {
  6552. height: math.unit(0.44, "feet"),
  6553. name: "Mouth",
  6554. image: {
  6555. source: "./media/characters/berri/mouth.svg"
  6556. }
  6557. },
  6558. paw: {
  6559. height: math.unit(0.826, "feet"),
  6560. name: "Paw",
  6561. image: {
  6562. source: "./media/characters/berri/paw.svg"
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(1.65, "meters")
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(60, "m"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Megamacro",
  6578. height: math.unit(9.213, "km")
  6579. },
  6580. {
  6581. name: "Planet Eater",
  6582. height: math.unit(489, "megameters")
  6583. },
  6584. {
  6585. name: "Teramacro",
  6586. height: math.unit(2471635000000, "meters")
  6587. },
  6588. {
  6589. name: "Examacro",
  6590. height: math.unit(8.0624e+26, "meters")
  6591. }
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(1.72, "meters"),
  6599. weight: math.unit(68, "kg"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/lexi/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Very Smol",
  6609. height: math.unit(10, "mm")
  6610. },
  6611. {
  6612. name: "Micro",
  6613. height: math.unit(6.8, "cm"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.72, "m")
  6619. }
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(1.69, "meters"),
  6627. weight: math.unit(68, "kg"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/martin/front.svg",
  6631. extra: 596 / 581
  6632. }
  6633. }
  6634. },
  6635. [
  6636. {
  6637. name: "Micro",
  6638. height: math.unit(6.85, "cm"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(1.69, "m")
  6644. }
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6649. {
  6650. front: {
  6651. height: math.unit(1.69, "meters"),
  6652. weight: math.unit(68, "kg"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/juno/front.svg"
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(7, "cm")
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(1.89, "m")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(353, "meters"),
  6671. default: true
  6672. }
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(1.93, "meters"),
  6680. weight: math.unit(83, "kg"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/samantha/front.svg"
  6684. }
  6685. },
  6686. frontClothed: {
  6687. height: math.unit(1.93, "meters"),
  6688. weight: math.unit(83, "kg"),
  6689. name: "Front (Clothed)",
  6690. image: {
  6691. source: "./media/characters/samantha/front-clothed.svg"
  6692. }
  6693. },
  6694. back: {
  6695. height: math.unit(1.93, "meters"),
  6696. weight: math.unit(83, "kg"),
  6697. name: "Back",
  6698. image: {
  6699. source: "./media/characters/samantha/back.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.93, "m")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(74, "meters"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro+",
  6715. height: math.unit(223, "meters"),
  6716. },
  6717. {
  6718. name: "Megamacro",
  6719. height: math.unit(8381, "meters"),
  6720. },
  6721. {
  6722. name: "Megamacro+",
  6723. height: math.unit(12000, "kilometers")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.92, "meters"),
  6732. weight: math.unit(80, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/dr-clay/front.svg"
  6736. }
  6737. },
  6738. frontClothed: {
  6739. height: math.unit(1.92, "meters"),
  6740. weight: math.unit(80, "kg"),
  6741. name: "Front (Clothed)",
  6742. image: {
  6743. source: "./media/characters/dr-clay/front-clothed.svg"
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(1.92, "m")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(214, "meters"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Macro+",
  6759. height: math.unit(12.237, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(557, "megameters"),
  6764. },
  6765. {
  6766. name: "Unimaginable",
  6767. height: math.unit(120e9, "lightyears")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(2, "meters"),
  6776. weight: math.unit(80, "kg"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6780. }
  6781. }
  6782. },
  6783. [
  6784. {
  6785. name: "Teramacro",
  6786. height: math.unit(500000, "lightyears"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6793. {
  6794. crux: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(150, "kg"),
  6797. name: "Crux",
  6798. image: {
  6799. source: "./media/characters/vemus/crux.svg",
  6800. extra: 1074/936,
  6801. bottom: 23/1097
  6802. }
  6803. },
  6804. skunkTanuki: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(150, "kg"),
  6807. name: "Skunk-Tanuki",
  6808. image: {
  6809. source: "./media/characters/vemus/skunk-tanuki.svg",
  6810. extra: 926/893,
  6811. bottom: 20/946
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(3.75, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Big",
  6823. height: math.unit(8, "meters")
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(100, "meters")
  6828. },
  6829. {
  6830. name: "Macro+",
  6831. height: math.unit(1500, "meters")
  6832. },
  6833. {
  6834. name: "Stellar",
  6835. height: math.unit(14e8, "meters")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(2, "meters"),
  6844. weight: math.unit(70, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/beherit/front.svg",
  6848. extra: 1408 / 1242
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(6, "feet")
  6856. },
  6857. {
  6858. name: "Lorg",
  6859. height: math.unit(25, "feet"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Lorger",
  6864. height: math.unit(75, "feet")
  6865. },
  6866. {
  6867. name: "Macro",
  6868. height: math.unit(200, "meters")
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(2, "meters"),
  6877. weight: math.unit(150, "kg"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/everett/front.svg",
  6881. extra: 2038 / 1737,
  6882. bottom: 0.03
  6883. }
  6884. },
  6885. paw: {
  6886. height: math.unit(2 / 3.6, "meters"),
  6887. name: "Paw",
  6888. image: {
  6889. source: "./media/characters/everett/paw.svg"
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(15, "feet"),
  6897. default: true
  6898. },
  6899. {
  6900. name: "Lorg",
  6901. height: math.unit(70, "feet"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Lorger",
  6906. height: math.unit(250, "feet")
  6907. },
  6908. {
  6909. name: "Macro",
  6910. height: math.unit(500, "meters")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(2, "meters"),
  6919. weight: math.unit(86, "kg"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/rose/front.svg",
  6923. extra: 1785/1636,
  6924. bottom: 30/1815
  6925. }
  6926. },
  6927. frontSporty: {
  6928. height: math.unit(2, "meters"),
  6929. weight: math.unit(86, "kg"),
  6930. name: "Front (Sporty)",
  6931. image: {
  6932. source: "./media/characters/rose/front-sporty.svg",
  6933. extra: 350/335,
  6934. bottom: 10/360
  6935. }
  6936. },
  6937. frontAlt: {
  6938. height: math.unit(1.6, "meters"),
  6939. weight: math.unit(86, "kg"),
  6940. name: "Front (Alt)",
  6941. image: {
  6942. source: "./media/characters/rose/front-alt.svg",
  6943. extra: 299/283,
  6944. bottom: 3/302
  6945. }
  6946. },
  6947. plush: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(86/3, "kg"),
  6950. name: "Plush",
  6951. image: {
  6952. source: "./media/characters/rose/plush.svg",
  6953. extra: 361/337,
  6954. bottom: 11/372
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "True Micro",
  6961. height: math.unit(9, "cm")
  6962. },
  6963. {
  6964. name: "Micro",
  6965. height: math.unit(16, "cm")
  6966. },
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(1.85, "meters"),
  6970. default: true
  6971. },
  6972. {
  6973. name: "Mini-Macro",
  6974. height: math.unit(5, "meters")
  6975. },
  6976. {
  6977. name: "Macro",
  6978. height: math.unit(15, "meters")
  6979. },
  6980. {
  6981. name: "True Macro",
  6982. height: math.unit(40, "meters")
  6983. },
  6984. {
  6985. name: "City Scale",
  6986. height: math.unit(1, "km")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(2, "meters"),
  6995. weight: math.unit(350, "lbs"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/regal/front.svg"
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(2, "meters"),
  7003. weight: math.unit(350, "lbs"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/regal/back.svg"
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(350, "feet"),
  7014. default: true
  7015. }
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(4 + 11 / 12, "feet"),
  7023. weight: math.unit(100, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/opal/front.svg"
  7027. }
  7028. },
  7029. frontAlt: {
  7030. height: math.unit(4 + 11 / 12, "feet"),
  7031. weight: math.unit(100, "lbs"),
  7032. name: "Front (Alt)",
  7033. image: {
  7034. source: "./media/characters/opal/front-alt.svg"
  7035. }
  7036. },
  7037. },
  7038. [
  7039. {
  7040. name: "Small",
  7041. height: math.unit(4 + 11 / 12, "feet")
  7042. },
  7043. {
  7044. name: "Normal",
  7045. height: math.unit(20, "feet"),
  7046. default: true
  7047. },
  7048. {
  7049. name: "Macro",
  7050. height: math.unit(120, "feet")
  7051. },
  7052. {
  7053. name: "Megamacro",
  7054. height: math.unit(80, "miles")
  7055. },
  7056. {
  7057. name: "True Size",
  7058. height: math.unit(100000, "lightyears")
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(200, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/vector-wuff/front.svg"
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(2.8, "meters")
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(450, "meters"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Megamacro",
  7086. height: math.unit(15, "kilometers")
  7087. }
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(6, "feet"),
  7095. weight: math.unit(256, "lbs"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/dannik/front.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(69.57, "meters"),
  7106. default: true
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(120, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/azura-saharah/front.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(120, "lbs"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/azura-saharah/back.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(100, "feet"),
  7134. default: true
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7140. {
  7141. side: {
  7142. height: math.unit(5 + 4 / 12, "feet"),
  7143. weight: math.unit(163, "lbs"),
  7144. name: "Side",
  7145. image: {
  7146. source: "./media/characters/kennedy/side.svg"
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Standard Doggo",
  7153. height: math.unit(5 + 4 / 12, "feet")
  7154. },
  7155. {
  7156. name: "Big Doggo",
  7157. height: math.unit(25 + 3 / 12, "feet"),
  7158. default: true
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(5 + 5/12, "feet"),
  7167. weight: math.unit(100, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/odios-de-lunar/front.svg",
  7171. extra: 1468/1323,
  7172. bottom: 22/1490
  7173. }
  7174. }
  7175. },
  7176. [
  7177. {
  7178. name: "Micro",
  7179. height: math.unit(3, "inches")
  7180. },
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(5.5, "feet"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(100, "feet")
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7194. {
  7195. back: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(220, "lbs"),
  7198. name: "Back",
  7199. image: {
  7200. source: "./media/characters/mandake/back.svg"
  7201. }
  7202. }
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(7, "feet"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(78, "feet")
  7213. },
  7214. {
  7215. name: "Macro+",
  7216. height: math.unit(300, "meters")
  7217. },
  7218. {
  7219. name: "Macro++",
  7220. height: math.unit(2400, "feet")
  7221. },
  7222. {
  7223. name: "Megamacro",
  7224. height: math.unit(5167, "meters")
  7225. },
  7226. {
  7227. name: "Gigamacro",
  7228. height: math.unit(41769, "miles")
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/yozey/front.svg"
  7241. }
  7242. },
  7243. frontAlt: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(120, "lbs"),
  7246. name: "Front (Alt)",
  7247. image: {
  7248. source: "./media/characters/yozey/front-alt.svg"
  7249. }
  7250. },
  7251. side: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(120, "lbs"),
  7254. name: "Side",
  7255. image: {
  7256. source: "./media/characters/yozey/side.svg"
  7257. }
  7258. },
  7259. },
  7260. [
  7261. {
  7262. name: "Micro",
  7263. height: math.unit(3, "inches"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(6, "feet")
  7269. }
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(103, "lbs"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/valeska-voss/front.svg"
  7281. }
  7282. }
  7283. },
  7284. [
  7285. {
  7286. name: "Mini-Sized Sub",
  7287. height: math.unit(3.1, "inches")
  7288. },
  7289. {
  7290. name: "Mid-Sized Sub",
  7291. height: math.unit(6.2, "inches")
  7292. },
  7293. {
  7294. name: "Full-Sized Sub",
  7295. height: math.unit(9.3, "inches")
  7296. },
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(5 + 2 / 12, "foot"),
  7300. default: true
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(6, "feet"),
  7309. weight: math.unit(160, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/gene-zeta/front.svg",
  7313. extra: 3006 / 2826,
  7314. bottom: 182 / 3188
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(6, "inches")
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(5 + 11 / 12, "foot"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(140, "feet")
  7331. },
  7332. {
  7333. name: "Supercharged",
  7334. height: math.unit(2500, "feet")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(350, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/razinox/front.svg",
  7347. extra: 1686 / 1548,
  7348. bottom: 28.2 / 1868
  7349. }
  7350. },
  7351. back: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(350, "lbs"),
  7354. name: "Back",
  7355. image: {
  7356. source: "./media/characters/razinox/back.svg",
  7357. extra: 1660 / 1590,
  7358. bottom: 15 / 1665
  7359. }
  7360. },
  7361. },
  7362. [
  7363. {
  7364. name: "Normal",
  7365. height: math.unit(10 + 8 / 12, "foot")
  7366. },
  7367. {
  7368. name: "Minimacro",
  7369. height: math.unit(15, "foot")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(60, "foot"),
  7374. default: true
  7375. },
  7376. {
  7377. name: "Megamacro",
  7378. height: math.unit(5, "miles")
  7379. },
  7380. {
  7381. name: "Gigamacro",
  7382. height: math.unit(6000, "miles")
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(150, "lbs"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/cobalt/front.svg"
  7395. }
  7396. }
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(8 + 1 / 12, "foot")
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(111, "foot"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Supracosmic",
  7410. height: math.unit(1e42, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(140, "lbs"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/amanda/front.svg"
  7423. }
  7424. }
  7425. },
  7426. [
  7427. {
  7428. name: "Micro",
  7429. height: math.unit(5, "inches"),
  7430. default: true
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(2.75, "meters"),
  7439. weight: math.unit(1200, "lb"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/teal/front.svg",
  7443. extra: 2463 / 2320,
  7444. bottom: 166 / 2629
  7445. }
  7446. },
  7447. back: {
  7448. height: math.unit(2.75, "meters"),
  7449. weight: math.unit(1200, "lb"),
  7450. name: "Back",
  7451. image: {
  7452. source: "./media/characters/teal/back.svg",
  7453. extra: 2580 / 2489,
  7454. bottom: 151 / 2731
  7455. }
  7456. },
  7457. sitting: {
  7458. height: math.unit(1.9, "meters"),
  7459. weight: math.unit(1200, "lb"),
  7460. name: "Sitting",
  7461. image: {
  7462. source: "./media/characters/teal/sitting.svg",
  7463. extra: 623 / 590,
  7464. bottom: 121 / 744
  7465. }
  7466. },
  7467. standing: {
  7468. height: math.unit(2.75, "meters"),
  7469. weight: math.unit(1200, "lb"),
  7470. name: "Standing",
  7471. image: {
  7472. source: "./media/characters/teal/standing.svg",
  7473. extra: 923 / 893,
  7474. bottom: 60 / 983
  7475. }
  7476. },
  7477. stretching: {
  7478. height: math.unit(3.65, "meters"),
  7479. weight: math.unit(1200, "lb"),
  7480. name: "Stretching",
  7481. image: {
  7482. source: "./media/characters/teal/stretching.svg",
  7483. extra: 1276 / 1244,
  7484. bottom: 0 / 1276
  7485. }
  7486. },
  7487. legged: {
  7488. height: math.unit(1.3, "meters"),
  7489. weight: math.unit(100, "lb"),
  7490. name: "Legged",
  7491. image: {
  7492. source: "./media/characters/teal/legged.svg",
  7493. extra: 462 / 437,
  7494. bottom: 24 / 486
  7495. }
  7496. },
  7497. naga: {
  7498. height: math.unit(5.4, "meters"),
  7499. weight: math.unit(4000, "lb"),
  7500. name: "Naga",
  7501. image: {
  7502. source: "./media/characters/teal/naga.svg",
  7503. extra: 1902 / 1858,
  7504. bottom: 0 / 1902
  7505. }
  7506. },
  7507. hand: {
  7508. height: math.unit(0.52, "meters"),
  7509. name: "Hand",
  7510. image: {
  7511. source: "./media/characters/teal/hand.svg"
  7512. }
  7513. },
  7514. maw: {
  7515. height: math.unit(0.43, "meters"),
  7516. name: "Maw",
  7517. image: {
  7518. source: "./media/characters/teal/maw.svg"
  7519. }
  7520. },
  7521. slit: {
  7522. height: math.unit(0.25, "meters"),
  7523. name: "Slit",
  7524. image: {
  7525. source: "./media/characters/teal/slit.svg"
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(2.75, "meters"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(300, "feet")
  7538. },
  7539. {
  7540. name: "Macro+",
  7541. height: math.unit(2000, "feet")
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7547. {
  7548. frontCat: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(180, "lbs"),
  7551. name: "Front (Cat)",
  7552. image: {
  7553. source: "./media/characters/ravin-amulet/front-cat.svg"
  7554. }
  7555. },
  7556. frontCatAlt: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(180, "lbs"),
  7559. name: "Front (Alt, Cat)",
  7560. image: {
  7561. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7562. }
  7563. },
  7564. frontWerewolf: {
  7565. height: math.unit(6 * 1.2, "feet"),
  7566. weight: math.unit(225, "lbs"),
  7567. name: "Front (Werewolf)",
  7568. image: {
  7569. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7570. }
  7571. },
  7572. backWerewolf: {
  7573. height: math.unit(6 * 1.2, "feet"),
  7574. weight: math.unit(225, "lbs"),
  7575. name: "Back (Werewolf)",
  7576. image: {
  7577. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Nano",
  7584. height: math.unit(1, "micrometer")
  7585. },
  7586. {
  7587. name: "Micro",
  7588. height: math.unit(1, "inch")
  7589. },
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(6, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(60, "feet")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(165, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/fluoresce/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Micro",
  7616. height: math.unit(6, "cm")
  7617. },
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(5 + 7 / 12, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(56, "feet")
  7626. },
  7627. {
  7628. name: "Megamacro",
  7629. height: math.unit(1.9, "miles")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(9 + 6 / 12, "feet"),
  7638. weight: math.unit(523, "lbs"),
  7639. name: "Side",
  7640. image: {
  7641. source: "./media/characters/aurora/side.svg"
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(9 + 6 / 12, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(96, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro+",
  7657. height: math.unit(243, "feet")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(194, "cm"),
  7666. weight: math.unit(90, "kg"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/ranek/front.svg"
  7670. }
  7671. },
  7672. side: {
  7673. height: math.unit(194, "cm"),
  7674. weight: math.unit(90, "kg"),
  7675. name: "Side",
  7676. image: {
  7677. source: "./media/characters/ranek/side.svg"
  7678. }
  7679. },
  7680. back: {
  7681. height: math.unit(194, "cm"),
  7682. weight: math.unit(90, "kg"),
  7683. name: "Back",
  7684. image: {
  7685. source: "./media/characters/ranek/back.svg"
  7686. }
  7687. },
  7688. feral: {
  7689. height: math.unit(30, "cm"),
  7690. weight: math.unit(1.6, "lbs"),
  7691. name: "Feral",
  7692. image: {
  7693. source: "./media/characters/ranek/feral.svg"
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(194, "cm"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(100, "meters")
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(5 + 6 / 12, "feet"),
  7714. weight: math.unit(153, "lbs"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/andrew-cooper/front.svg"
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Nano",
  7724. height: math.unit(1, "mm")
  7725. },
  7726. {
  7727. name: "Micro",
  7728. height: math.unit(2, "inches")
  7729. },
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(5 + 6 / 12, "feet"),
  7733. default: true
  7734. }
  7735. ]
  7736. ))
  7737. characterMakers.push(() => makeCharacter(
  7738. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7739. {
  7740. front: {
  7741. height: math.unit(6, "feet"),
  7742. weight: math.unit(180, "lbs"),
  7743. name: "Front",
  7744. image: {
  7745. source: "./media/characters/akane-sato/front.svg",
  7746. extra: 1219 / 1140
  7747. }
  7748. },
  7749. back: {
  7750. height: math.unit(6, "feet"),
  7751. weight: math.unit(180, "lbs"),
  7752. name: "Back",
  7753. image: {
  7754. source: "./media/characters/akane-sato/back.svg",
  7755. extra: 1219 / 1170
  7756. }
  7757. },
  7758. },
  7759. [
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(2.5, "meters")
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(250, "meters"),
  7767. default: true
  7768. },
  7769. {
  7770. name: "Megamacro",
  7771. height: math.unit(25, "km")
  7772. },
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(6, "feet"),
  7780. weight: math.unit(65, "kg"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/rook/front.svg",
  7784. extra: 960 / 950
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(8.8, "feet")
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(88, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(8, "miles")
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(12 + 2 / 12, "feet"),
  7809. weight: math.unit(808, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/prodigy/front.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(12 + 2 / 12, "feet"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Macro",
  7824. height: math.unit(143, "feet")
  7825. },
  7826. {
  7827. name: "Macro+",
  7828. height: math.unit(400, "feet")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(225, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/daniel/front.svg"
  7841. }
  7842. },
  7843. leaning: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(225, "lbs"),
  7846. name: "Leaning",
  7847. image: {
  7848. source: "./media/characters/daniel/leaning.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(1000, "feet"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(88, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/chiros/front.svg",
  7869. extra: 306 / 226
  7870. }
  7871. },
  7872. side: {
  7873. height: math.unit(6, "feet"),
  7874. weight: math.unit(88, "lbs"),
  7875. name: "Side",
  7876. image: {
  7877. source: "./media/characters/chiros/side.svg",
  7878. extra: 306 / 226
  7879. }
  7880. },
  7881. },
  7882. [
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(6, "cm"),
  7886. default: true
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(100, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/selka/front.svg",
  7899. extra: 947 / 887
  7900. }
  7901. }
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(5, "cm"),
  7907. default: true
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(8 + 3 / 12, "feet"),
  7916. weight: math.unit(424, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/verin/front.svg",
  7920. extra: 1845 / 1550
  7921. }
  7922. },
  7923. frontArmored: {
  7924. height: math.unit(8 + 3 / 12, "feet"),
  7925. weight: math.unit(424, "lbs"),
  7926. name: "Front (Armored)",
  7927. image: {
  7928. source: "./media/characters/verin/front-armor.svg",
  7929. extra: 1845 / 1550,
  7930. bottom: 0.01
  7931. }
  7932. },
  7933. back: {
  7934. height: math.unit(8 + 3 / 12, "feet"),
  7935. weight: math.unit(424, "lbs"),
  7936. name: "Back",
  7937. image: {
  7938. source: "./media/characters/verin/back.svg",
  7939. bottom: 0.1,
  7940. extra: 1
  7941. }
  7942. },
  7943. foot: {
  7944. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7945. name: "Foot",
  7946. image: {
  7947. source: "./media/characters/verin/foot.svg"
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Normal",
  7954. height: math.unit(8 + 3 / 12, "feet")
  7955. },
  7956. {
  7957. name: "Minimacro",
  7958. height: math.unit(21, "feet"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(626, "feet")
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(2.718, "meters"),
  7972. weight: math.unit(150, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/sovrim-terraquian/front.svg"
  7976. }
  7977. },
  7978. back: {
  7979. height: math.unit(2.718, "meters"),
  7980. weight: math.unit(150, "lbs"),
  7981. name: "Back",
  7982. image: {
  7983. source: "./media/characters/sovrim-terraquian/back.svg"
  7984. }
  7985. }
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(2, "inches")
  7991. },
  7992. {
  7993. name: "Small",
  7994. height: math.unit(1, "meter")
  7995. },
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(Math.E, "meters"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(20, "meters")
  8004. },
  8005. {
  8006. name: "Macro+",
  8007. height: math.unit(400, "meters")
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(7, "feet"),
  8016. weight: math.unit(489, "lbs"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/reece-silvermane/front.svg",
  8020. bottom: 0.02,
  8021. extra: 1
  8022. }
  8023. },
  8024. },
  8025. [
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(1.5, "miles"),
  8029. default: true
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(78, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/kane/front.svg",
  8042. extra: 978 / 899
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(2.1, "m"),
  8050. },
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(1, "km"),
  8054. default: true
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(200, "kg"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/tegon/front.svg",
  8067. bottom: 0.01,
  8068. extra: 1
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(1, "inch")
  8076. },
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(6 + 3 / 12, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(300, "feet")
  8085. },
  8086. {
  8087. name: "Megamacro",
  8088. height: math.unit(69, "miles")
  8089. },
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8094. {
  8095. side: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(2304, "lbs"),
  8098. name: "Side",
  8099. image: {
  8100. source: "./media/characters/arcturax/side.svg",
  8101. extra: 790 / 376,
  8102. bottom: 0.01
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Micro",
  8109. height: math.unit(2, "inch")
  8110. },
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(6, "feet")
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(39, "feet"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Megamacro",
  8122. height: math.unit(7, "miles")
  8123. },
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(6, "feet"),
  8131. weight: math.unit(50, "lbs"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/sentri/front.svg",
  8135. extra: 1750 / 1570,
  8136. bottom: 0.025
  8137. }
  8138. },
  8139. frontAlt: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(50, "lbs"),
  8142. name: "Front (Alt)",
  8143. image: {
  8144. source: "./media/characters/sentri/front-alt.svg",
  8145. extra: 1750 / 1570,
  8146. bottom: 0.025
  8147. }
  8148. },
  8149. },
  8150. [
  8151. {
  8152. name: "Normal",
  8153. height: math.unit(15, "feet"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Macro",
  8158. height: math.unit(2500, "feet")
  8159. }
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8164. {
  8165. front: {
  8166. height: math.unit(5 + 8 / 12, "feet"),
  8167. weight: math.unit(130, "lbs"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/corvin/front.svg",
  8171. extra: 1803 / 1629
  8172. }
  8173. },
  8174. frontShirt: {
  8175. height: math.unit(5 + 8 / 12, "feet"),
  8176. weight: math.unit(130, "lbs"),
  8177. name: "Front (Shirt)",
  8178. image: {
  8179. source: "./media/characters/corvin/front-shirt.svg",
  8180. extra: 1803 / 1629
  8181. }
  8182. },
  8183. frontPoncho: {
  8184. height: math.unit(5 + 8 / 12, "feet"),
  8185. weight: math.unit(130, "lbs"),
  8186. name: "Front (Poncho)",
  8187. image: {
  8188. source: "./media/characters/corvin/front-poncho.svg",
  8189. extra: 1803 / 1629
  8190. }
  8191. },
  8192. side: {
  8193. height: math.unit(5 + 8 / 12, "feet"),
  8194. weight: math.unit(130, "lbs"),
  8195. name: "Side",
  8196. image: {
  8197. source: "./media/characters/corvin/side.svg",
  8198. extra: 1012 / 945
  8199. }
  8200. },
  8201. back: {
  8202. height: math.unit(5 + 8 / 12, "feet"),
  8203. weight: math.unit(130, "lbs"),
  8204. name: "Back",
  8205. image: {
  8206. source: "./media/characters/corvin/back.svg",
  8207. extra: 1803 / 1629
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(3, "inches")
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(5 + 8 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(300, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Megamacro",
  8227. height: math.unit(500, "miles")
  8228. }
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(135, "lbs"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/q/front.svg",
  8240. extra: 854 / 752,
  8241. bottom: 0.005
  8242. }
  8243. },
  8244. back: {
  8245. height: math.unit(6, "feet"),
  8246. weight: math.unit(130, "lbs"),
  8247. name: "Back",
  8248. image: {
  8249. source: "./media/characters/q/back.svg",
  8250. extra: 854 / 752
  8251. }
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(90, "feet"),
  8258. default: true
  8259. },
  8260. {
  8261. name: "Extra Macro",
  8262. height: math.unit(300, "feet"),
  8263. },
  8264. {
  8265. name: "BIG WALF",
  8266. height: math.unit(750, "feet"),
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(150, "lbs"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/carley/front.svg",
  8279. extra: 3927 / 3540,
  8280. bottom: 29.2 / 735
  8281. }
  8282. }
  8283. },
  8284. [
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(6 + 3 / 12, "feet")
  8288. },
  8289. {
  8290. name: "Macro",
  8291. height: math.unit(185, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(8, "miles"),
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(3, "feet"),
  8305. weight: math.unit(28, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/citrine/front.svg"
  8309. }
  8310. }
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(3, "feet"),
  8316. default: true
  8317. }
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8322. {
  8323. front: {
  8324. height: math.unit(14, "feet"),
  8325. weight: math.unit(1450, "kg"),
  8326. capacity: math.unit(15, "people"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/aura-starwind/front.svg",
  8330. extra: 1440/1327,
  8331. bottom: 11/1451
  8332. }
  8333. },
  8334. side: {
  8335. height: math.unit(14, "feet"),
  8336. weight: math.unit(1450, "kg"),
  8337. capacity: math.unit(15, "people"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/aura-starwind/side.svg",
  8341. extra: 1654 / 1497
  8342. }
  8343. },
  8344. taur: {
  8345. height: math.unit(18, "feet"),
  8346. weight: math.unit(5500, "kg"),
  8347. capacity: math.unit(50, "people"),
  8348. name: "Taur",
  8349. image: {
  8350. source: "./media/characters/aura-starwind/taur.svg",
  8351. extra: 1760 / 1650
  8352. }
  8353. },
  8354. feral: {
  8355. height: math.unit(46, "feet"),
  8356. weight: math.unit(25000, "kg"),
  8357. capacity: math.unit(120, "people"),
  8358. name: "Feral",
  8359. image: {
  8360. source: "./media/characters/aura-starwind/feral.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(14, "feet"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Macro",
  8372. height: math.unit(50, "meters")
  8373. },
  8374. {
  8375. name: "Megamacro",
  8376. height: math.unit(5000, "meters")
  8377. },
  8378. {
  8379. name: "Gigamacro",
  8380. height: math.unit(100000, "kilometers")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(2 + 7 / 12, "feet"),
  8389. weight: math.unit(32, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/rivet/front.svg",
  8393. extra: 1716 / 1658,
  8394. bottom: 0.03
  8395. }
  8396. },
  8397. foot: {
  8398. height: math.unit(0.551, "feet"),
  8399. name: "Rivet's Foot",
  8400. image: {
  8401. source: "./media/characters/rivet/foot.svg"
  8402. },
  8403. rename: true
  8404. }
  8405. },
  8406. [
  8407. {
  8408. name: "Micro",
  8409. height: math.unit(1.5, "inches"),
  8410. },
  8411. {
  8412. name: "Normal",
  8413. height: math.unit(2 + 7 / 12, "feet"),
  8414. default: true
  8415. },
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(85, "feet")
  8419. },
  8420. {
  8421. name: "Megamacro",
  8422. height: math.unit(2.2, "km")
  8423. }
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(5 + 9 / 12, "feet"),
  8431. weight: math.unit(150, "lbs"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/coffee/front.svg",
  8435. extra: 3666 / 3032,
  8436. bottom: 0.04
  8437. }
  8438. },
  8439. foot: {
  8440. height: math.unit(1.29, "feet"),
  8441. name: "Foot",
  8442. image: {
  8443. source: "./media/characters/coffee/foot.svg"
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Micro",
  8450. height: math.unit(2, "inches"),
  8451. },
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(5 + 9 / 12, "feet"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(800, "feet")
  8460. },
  8461. {
  8462. name: "Megamacro",
  8463. height: math.unit(25, "miles")
  8464. }
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(200, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/chari-gal/front.svg",
  8476. extra: 1568 / 1385,
  8477. bottom: 0.047
  8478. }
  8479. },
  8480. gigantamax: {
  8481. height: math.unit(6 * 16, "feet"),
  8482. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8483. name: "Gigantamax",
  8484. image: {
  8485. source: "./media/characters/chari-gal/gigantamax.svg",
  8486. extra: 1124 / 888,
  8487. bottom: 0.03
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(5 + 7 / 12, "feet")
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(200, "feet"),
  8499. default: true
  8500. }
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(6, "feet"),
  8508. weight: math.unit(150, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/nova/front.svg",
  8512. extra: 5000 / 4722,
  8513. bottom: 0.02
  8514. }
  8515. }
  8516. },
  8517. [
  8518. {
  8519. name: "Micro-",
  8520. height: math.unit(0.8, "inches")
  8521. },
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(2, "inches"),
  8525. default: true
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(3 + 1 / 12, "feet"),
  8534. weight: math.unit(21.7, "lbs"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/argent/front.svg",
  8538. extra: 1471 / 1331,
  8539. bottom: 100.8 / 1575.5
  8540. }
  8541. }
  8542. },
  8543. [
  8544. {
  8545. name: "Micro",
  8546. height: math.unit(2, "inches")
  8547. },
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(3 + 1 / 12, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Macro",
  8555. height: math.unit(120, "feet")
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8561. {
  8562. lamp: {
  8563. height: math.unit(7 * 1559 / 989, "feet"),
  8564. name: "Magic Lamp",
  8565. image: {
  8566. source: "./media/characters/mira-al-cul/lamp.svg",
  8567. extra: 1617 / 1559
  8568. }
  8569. },
  8570. front: {
  8571. height: math.unit(7, "feet"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/mira-al-cul/front.svg",
  8575. extra: 1044 / 990
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Heavily Restricted",
  8582. height: math.unit(7 * 1559 / 989, "feet")
  8583. },
  8584. {
  8585. name: "Freshly Freed",
  8586. height: math.unit(50 * 1559 / 989, "feet")
  8587. },
  8588. {
  8589. name: "World Encompassing",
  8590. height: math.unit(10000 * 1559 / 989, "miles")
  8591. },
  8592. {
  8593. name: "Galactic",
  8594. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8595. },
  8596. {
  8597. name: "Palmed Universe",
  8598. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Multiversal Matriarch",
  8603. height: math.unit(8.87e10, "yottameters")
  8604. },
  8605. {
  8606. name: "Void Mother",
  8607. height: math.unit(3.14e110, "yottaparsecs")
  8608. },
  8609. {
  8610. name: "Toying with Transcendence",
  8611. height: math.unit(1e307, "meters")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8617. {
  8618. front: {
  8619. height: math.unit(17 + 1 / 12, "feet"),
  8620. weight: math.unit(476.2 * 5, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/kuro-shi-uchū/front.svg",
  8624. extra: 2329 / 1835,
  8625. bottom: 0.02
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Micro",
  8632. height: math.unit(2, "inches")
  8633. },
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(12, "meters")
  8637. },
  8638. {
  8639. name: "Planetary",
  8640. height: math.unit(0.00929, "AU"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Universal",
  8645. height: math.unit(20, "gigaparsecs")
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(5 + 2 / 12, "feet"),
  8654. weight: math.unit(120, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/katherine/front.svg",
  8658. extra: 2075 / 1969
  8659. }
  8660. },
  8661. dress: {
  8662. height: math.unit(5 + 2 / 12, "feet"),
  8663. weight: math.unit(120, "lbs"),
  8664. name: "Dress",
  8665. image: {
  8666. source: "./media/characters/katherine/dress.svg",
  8667. extra: 2258 / 2064
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(1, "inches"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(5 + 2 / 12, "feet")
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(100, "meters")
  8684. },
  8685. {
  8686. name: "Megamacro",
  8687. height: math.unit(80, "miles")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(7 + 8 / 12, "feet"),
  8696. weight: math.unit(250, "lbs"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/yevis/front.svg",
  8700. extra: 1938 / 1755
  8701. }
  8702. }
  8703. },
  8704. [
  8705. {
  8706. name: "Mortal",
  8707. height: math.unit(7 + 8 / 12, "feet")
  8708. },
  8709. {
  8710. name: "Battle",
  8711. height: math.unit(25 + 11 / 12, "feet")
  8712. },
  8713. {
  8714. name: "Wrath",
  8715. height: math.unit(1654 + 11 / 12, "feet")
  8716. },
  8717. {
  8718. name: "Planet Destroyer",
  8719. height: math.unit(12000, "miles")
  8720. },
  8721. {
  8722. name: "Galaxy Conqueror",
  8723. height: math.unit(1.45, "zettameters"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Universal War",
  8728. height: math.unit(184, "gigaparsecs")
  8729. },
  8730. {
  8731. name: "Eternity War",
  8732. height: math.unit(1.98e55, "yottaparsecs")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(5 + 8 / 12, "feet"),
  8741. weight: math.unit(63, "kg"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/xavier/front.svg",
  8745. extra: 944 / 883
  8746. }
  8747. },
  8748. frontStretch: {
  8749. height: math.unit(5 + 8 / 12, "feet"),
  8750. weight: math.unit(63, "kg"),
  8751. name: "Stretching",
  8752. image: {
  8753. source: "./media/characters/xavier/front-stretch.svg",
  8754. extra: 962 / 820
  8755. }
  8756. },
  8757. },
  8758. [
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(5 + 8 / 12, "feet")
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(100, "meters"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "McLargeHuge",
  8770. height: math.unit(10, "miles")
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(5 + 5 / 12, "feet"),
  8779. weight: math.unit(150, "lb"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/joshii/front.svg",
  8783. extra: 765 / 653,
  8784. bottom: 51 / 816
  8785. }
  8786. },
  8787. foot: {
  8788. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8789. name: "Foot",
  8790. image: {
  8791. source: "./media/characters/joshii/foot.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(2, "inches"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "Normal",
  8803. height: math.unit(5 + 5 / 12, "feet")
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(785, "feet")
  8808. },
  8809. {
  8810. name: "Megamacro",
  8811. height: math.unit(24.5, "miles")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(150, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/goddess-elizabeth/front.svg",
  8824. extra: 1800 / 1525,
  8825. bottom: 0.005
  8826. }
  8827. },
  8828. foot: {
  8829. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8830. name: "Foot",
  8831. image: {
  8832. source: "./media/characters/goddess-elizabeth/foot.svg"
  8833. }
  8834. },
  8835. mouth: {
  8836. height: math.unit(6, "feet"),
  8837. name: "Mouth",
  8838. image: {
  8839. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(12, "feet")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(80, "miles"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(15000, "parsecs")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(5 + 9 / 12, "feet"),
  8864. weight: math.unit(144, "lb"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/kara/front.svg"
  8868. }
  8869. },
  8870. feet: {
  8871. height: math.unit(6 / 6.765, "feet"),
  8872. name: "Kara's Feet",
  8873. rename: true,
  8874. image: {
  8875. source: "./media/characters/kara/feet.svg"
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(5 + 9 / 12, "feet")
  8883. },
  8884. {
  8885. name: "Macro",
  8886. height: math.unit(174, "feet"),
  8887. default: true
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(18, "feet"),
  8896. weight: math.unit(4050, "lb"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/tyrone/front.svg",
  8900. extra: 2405 / 2270,
  8901. bottom: 182 / 2587
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Normal",
  8908. height: math.unit(18, "feet"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Macro",
  8913. height: math.unit(300, "feet")
  8914. },
  8915. {
  8916. name: "Megamacro",
  8917. height: math.unit(15, "km")
  8918. },
  8919. {
  8920. name: "Gigamacro",
  8921. height: math.unit(500, "km")
  8922. },
  8923. {
  8924. name: "Teramacro",
  8925. height: math.unit(0.5, "gigameters")
  8926. },
  8927. {
  8928. name: "Omnimacro",
  8929. height: math.unit(1e252, "yottauniverse")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(7 + 8 / 12, "feet"),
  8938. weight: math.unit(120, "lb"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/danny/front.svg",
  8942. extra: 1490 / 1350
  8943. }
  8944. },
  8945. back: {
  8946. height: math.unit(7 + 8 / 12, "feet"),
  8947. weight: math.unit(120, "lb"),
  8948. name: "Back",
  8949. image: {
  8950. source: "./media/characters/danny/back.svg",
  8951. extra: 1490 / 1350
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(7 + 8 / 12, "feet"),
  8959. default: true
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8965. {
  8966. front: {
  8967. height: math.unit(3.5, "inches"),
  8968. weight: math.unit(19, "grams"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/mallow/front.svg",
  8972. extra: 471 / 431
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(3.5, "inches"),
  8977. weight: math.unit(19, "grams"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/mallow/back.svg",
  8981. extra: 471 / 431
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(3.5, "inches"),
  8989. default: true
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(9, "feet"),
  8998. weight: math.unit(230, "kg"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/starry-aqua/front.svg"
  9002. }
  9003. },
  9004. back: {
  9005. height: math.unit(9, "feet"),
  9006. weight: math.unit(230, "kg"),
  9007. name: "Back",
  9008. image: {
  9009. source: "./media/characters/starry-aqua/back.svg"
  9010. }
  9011. },
  9012. hand: {
  9013. height: math.unit(9 * 0.1168, "feet"),
  9014. name: "Hand",
  9015. image: {
  9016. source: "./media/characters/starry-aqua/hand.svg"
  9017. }
  9018. },
  9019. foot: {
  9020. height: math.unit(9 * 0.18, "feet"),
  9021. name: "Foot",
  9022. image: {
  9023. source: "./media/characters/starry-aqua/foot.svg"
  9024. }
  9025. }
  9026. },
  9027. [
  9028. {
  9029. name: "Micro",
  9030. height: math.unit(3, "inches")
  9031. },
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(9, "feet")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(300, "feet"),
  9039. default: true
  9040. },
  9041. {
  9042. name: "Megamacro",
  9043. height: math.unit(3200, "feet")
  9044. }
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(15, "feet"),
  9052. weight: math.unit(5026, "lb"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/luka-towers/front.svg",
  9056. extra: 1269/1133,
  9057. bottom: 51/1320
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(15, "feet"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Minimacro",
  9069. height: math.unit(25, "feet")
  9070. },
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(320, "feet")
  9074. },
  9075. {
  9076. name: "Megamacro",
  9077. height: math.unit(35000, "feet")
  9078. },
  9079. {
  9080. name: "Gigamacro",
  9081. height: math.unit(4000, "miles")
  9082. },
  9083. {
  9084. name: "Teramacro",
  9085. height: math.unit(15000, "miles")
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(150, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/natalie-nightring/front.svg",
  9098. extra: 1,
  9099. bottom: 0.06
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Uh Oh",
  9106. height: math.unit(0.1, "mm")
  9107. },
  9108. {
  9109. name: "Small",
  9110. height: math.unit(3, "inches")
  9111. },
  9112. {
  9113. name: "Human Scale",
  9114. height: math.unit(6, "feet")
  9115. },
  9116. {
  9117. name: "Librarian",
  9118. height: math.unit(50, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Immense",
  9123. height: math.unit(200, "miles")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(180, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/danni-rosie/front.svg",
  9136. extra: 1260 / 1128,
  9137. bottom: 0.022
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Micro",
  9144. height: math.unit(2, "inches"),
  9145. default: true
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(5 + 9 / 12, "feet"),
  9154. weight: math.unit(220, "lb"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/samantha-kruse/front.svg",
  9158. extra: (985 / 935),
  9159. bottom: 0.03
  9160. }
  9161. },
  9162. frontUndressed: {
  9163. height: math.unit(5 + 9 / 12, "feet"),
  9164. weight: math.unit(220, "lb"),
  9165. name: "Front (Undressed)",
  9166. image: {
  9167. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9168. extra: (973 / 923),
  9169. bottom: 0.025
  9170. }
  9171. },
  9172. fat: {
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. weight: math.unit(900, "lb"),
  9175. name: "Front (Fat)",
  9176. image: {
  9177. source: "./media/characters/samantha-kruse/fat.svg",
  9178. extra: 2688 / 2561
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(5 + 9 / 12, "feet"),
  9186. default: true
  9187. }
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9192. {
  9193. back: {
  9194. height: math.unit(5 + 4 / 12, "feet"),
  9195. weight: math.unit(4963, "lb"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/amelia-rosie/back.svg",
  9199. extra: 1113 / 963,
  9200. bottom: 0.01
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Level 0",
  9207. height: math.unit(5 + 4 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Level 1",
  9211. height: math.unit(164597, "feet"),
  9212. default: true
  9213. },
  9214. {
  9215. name: "Level 2",
  9216. height: math.unit(956243, "miles")
  9217. },
  9218. {
  9219. name: "Level 3",
  9220. height: math.unit(29421709423, "miles")
  9221. },
  9222. {
  9223. name: "Level 4",
  9224. height: math.unit(154, "lightyears")
  9225. },
  9226. {
  9227. name: "Level 5",
  9228. height: math.unit(4738272, "lightyears")
  9229. },
  9230. {
  9231. name: "Level 6",
  9232. height: math.unit(145787152896, "lightyears")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(5 + 11 / 12, "feet"),
  9241. weight: math.unit(65, "kg"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/rook-kitara/front.svg",
  9245. extra: 1347 / 1274,
  9246. bottom: 0.005
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Totally Unfair",
  9253. height: math.unit(1.8, "mm")
  9254. },
  9255. {
  9256. name: "Lap Rookie",
  9257. height: math.unit(1.4, "feet")
  9258. },
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(5 + 11 / 12, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "How Did This Happen",
  9266. height: math.unit(80, "miles")
  9267. }
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(7, "feet"),
  9275. weight: math.unit(300, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/pisces/front.svg",
  9279. extra: 2255 / 2115,
  9280. bottom: 0.03
  9281. }
  9282. },
  9283. back: {
  9284. height: math.unit(7, "feet"),
  9285. weight: math.unit(300, "lb"),
  9286. name: "Back",
  9287. image: {
  9288. source: "./media/characters/pisces/back.svg",
  9289. extra: 2146 / 2055,
  9290. bottom: 0.04
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(7, "feet"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Swimming Pool",
  9302. height: math.unit(12.2, "meters")
  9303. },
  9304. {
  9305. name: "Olympic Swimming Pool",
  9306. height: math.unit(56.3, "meters")
  9307. },
  9308. {
  9309. name: "Lake Superior",
  9310. height: math.unit(93900, "meters")
  9311. },
  9312. {
  9313. name: "Mediterranean Sea",
  9314. height: math.unit(644457, "meters")
  9315. },
  9316. {
  9317. name: "World's Oceans",
  9318. height: math.unit(4567491, "meters")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(2.3, "meters"),
  9327. weight: math.unit(120, "kg"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/zelas/front.svg"
  9331. }
  9332. },
  9333. side: {
  9334. height: math.unit(2.3, "meters"),
  9335. weight: math.unit(120, "kg"),
  9336. name: "Side",
  9337. image: {
  9338. source: "./media/characters/zelas/side.svg"
  9339. }
  9340. },
  9341. back: {
  9342. height: math.unit(2.3, "meters"),
  9343. weight: math.unit(120, "kg"),
  9344. name: "Back",
  9345. image: {
  9346. source: "./media/characters/zelas/back.svg"
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit(1.116, "feet"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/zelas/foot.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(2.3, "meters")
  9361. },
  9362. {
  9363. name: "Macro",
  9364. height: math.unit(30, "meters"),
  9365. default: true
  9366. },
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9371. {
  9372. front: {
  9373. height: math.unit(1, "inch"),
  9374. weight: math.unit(0.21, "grams"),
  9375. name: "Front",
  9376. image: {
  9377. source: "./media/characters/talbot/front.svg",
  9378. extra: 594 / 544
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Micro",
  9385. height: math.unit(1, "inch"),
  9386. default: true
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9392. {
  9393. front: {
  9394. height: math.unit(3 + 3 / 12, "feet"),
  9395. weight: math.unit(51.8, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/fliss/front.svg",
  9399. extra: 840 / 640
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Teeny Tiny",
  9406. height: math.unit(1, "mm")
  9407. },
  9408. {
  9409. name: "Small",
  9410. height: math.unit(1, "inch"),
  9411. default: true
  9412. },
  9413. {
  9414. name: "Standard Sylveon",
  9415. height: math.unit(3 + 3 / 12, "feet")
  9416. },
  9417. {
  9418. name: "Large Nuisance",
  9419. height: math.unit(33, "feet")
  9420. },
  9421. {
  9422. name: "City Filler",
  9423. height: math.unit(3000, "feet")
  9424. },
  9425. {
  9426. name: "New Horizon",
  9427. height: math.unit(6000, "miles")
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(5, "cm"),
  9436. weight: math.unit(1.94, "g"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/fleta/front.svg",
  9440. extra: 835 / 803
  9441. }
  9442. },
  9443. back: {
  9444. height: math.unit(5, "cm"),
  9445. weight: math.unit(1.94, "g"),
  9446. name: "Back",
  9447. image: {
  9448. source: "./media/characters/fleta/back.svg",
  9449. extra: 835 / 803
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Micro",
  9456. height: math.unit(5, "cm"),
  9457. default: true
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(6, "feet"),
  9466. weight: math.unit(225, "lb"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/dominic/front.svg",
  9470. extra: 1770 / 1620,
  9471. bottom: 0.025
  9472. }
  9473. },
  9474. back: {
  9475. height: math.unit(6, "feet"),
  9476. weight: math.unit(225, "lb"),
  9477. name: "Back",
  9478. image: {
  9479. source: "./media/characters/dominic/back.svg",
  9480. extra: 1745 / 1620,
  9481. bottom: 0.065
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Nano",
  9488. height: math.unit(0.1, "mm")
  9489. },
  9490. {
  9491. name: "Micro-",
  9492. height: math.unit(1, "mm")
  9493. },
  9494. {
  9495. name: "Micro",
  9496. height: math.unit(4, "inches")
  9497. },
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(6 + 4 / 12, "feet"),
  9501. default: true
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(115, "feet")
  9506. },
  9507. {
  9508. name: "Macro+",
  9509. height: math.unit(955, "feet")
  9510. },
  9511. {
  9512. name: "Megamacro",
  9513. height: math.unit(8990, "feet")
  9514. },
  9515. {
  9516. name: "Gigmacro",
  9517. height: math.unit(9310, "miles")
  9518. },
  9519. {
  9520. name: "Teramacro",
  9521. height: math.unit(1567005010, "miles")
  9522. },
  9523. {
  9524. name: "Examacro",
  9525. height: math.unit(1425, "parsecs")
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(400, "feet"),
  9534. weight: math.unit(44444444, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/major-colonel/front.svg"
  9538. }
  9539. },
  9540. back: {
  9541. height: math.unit(400, "feet"),
  9542. weight: math.unit(44444444, "lb"),
  9543. name: "Back",
  9544. image: {
  9545. source: "./media/characters/major-colonel/back.svg"
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(400, "feet"),
  9553. default: true
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9559. {
  9560. catFront: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(120, "lb"),
  9563. name: "Front (Cat Side)",
  9564. image: {
  9565. source: "./media/characters/axel-lycan/cat-front.svg",
  9566. extra: 430 / 402,
  9567. bottom: 43 / 472.35
  9568. }
  9569. },
  9570. catBack: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(120, "lb"),
  9573. name: "Back (Cat Side)",
  9574. image: {
  9575. source: "./media/characters/axel-lycan/cat-back.svg",
  9576. extra: 447 / 419,
  9577. bottom: 23.3 / 469
  9578. }
  9579. },
  9580. wolfFront: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(120, "lb"),
  9583. name: "Front (Wolf Side)",
  9584. image: {
  9585. source: "./media/characters/axel-lycan/wolf-front.svg",
  9586. extra: 485 / 456,
  9587. bottom: 19 / 504
  9588. }
  9589. },
  9590. wolfBack: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(120, "lb"),
  9593. name: "Back (Wolf Side)",
  9594. image: {
  9595. source: "./media/characters/axel-lycan/wolf-back.svg",
  9596. extra: 475 / 438,
  9597. bottom: 39.2 / 514
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(1, "km"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(5 + 9 / 12, "feet"),
  9614. weight: math.unit(175, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/vanrel-hyena/front.svg",
  9618. extra: 1086 / 1010,
  9619. bottom: 0.04
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(5 + 9 / 12, "feet"),
  9627. default: true
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(103, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/abbott-absol/front.svg",
  9640. extra: 2010 / 1842
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Megamicro",
  9647. height: math.unit(0.1, "mm")
  9648. },
  9649. {
  9650. name: "Micro",
  9651. height: math.unit(1, "inch")
  9652. },
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(6, "feet"),
  9656. default: true
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9662. {
  9663. front: {
  9664. height: math.unit(6, "feet"),
  9665. weight: math.unit(264, "lb"),
  9666. name: "Front",
  9667. image: {
  9668. source: "./media/characters/hector/front.svg",
  9669. extra: 2280 / 2130,
  9670. bottom: 0.07
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(12.25, "foot"),
  9678. default: true
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(160, "feet")
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(6, "feet"),
  9691. weight: math.unit(150, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/sal/front.svg",
  9695. extra: 1846 / 1699,
  9696. bottom: 0.04
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Megamacro",
  9703. height: math.unit(10, "miles"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9710. {
  9711. front: {
  9712. height: math.unit(3, "meters"),
  9713. weight: math.unit(450, "kg"),
  9714. name: "front",
  9715. image: {
  9716. source: "./media/characters/ranger/front.svg",
  9717. extra: 2401 / 2243,
  9718. bottom: 0.05
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(3, "meters"),
  9726. default: true
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9732. {
  9733. front: {
  9734. height: math.unit(14, "feet"),
  9735. weight: math.unit(800, "kg"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/theresa/front.svg",
  9739. extra: 3575 / 3346,
  9740. bottom: 0.03
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(14, "feet"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9754. {
  9755. front: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(3, "kg"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/ine/front.svg",
  9761. extra: 678 / 539,
  9762. bottom: 0.023
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(2.265, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(5, "feet"),
  9779. weight: math.unit(30, "kg"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/vial/front.svg",
  9783. extra: 1365 / 1277,
  9784. bottom: 0.04
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(5, "feet"),
  9792. default: true
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9798. {
  9799. side: {
  9800. height: math.unit(3.4, "meters"),
  9801. weight: math.unit(1000, "lb"),
  9802. name: "Side",
  9803. image: {
  9804. source: "./media/characters/rovoska/side.svg",
  9805. extra: 4403 / 1515
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(3.4, "meters"),
  9813. default: true
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(8, "feet"),
  9822. weight: math.unit(315, "lb"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/gunner-rotthbauer/front.svg"
  9826. }
  9827. },
  9828. back: {
  9829. height: math.unit(8, "feet"),
  9830. weight: math.unit(315, "lb"),
  9831. name: "Back",
  9832. image: {
  9833. source: "./media/characters/gunner-rotthbauer/back.svg"
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Micro",
  9840. height: math.unit(3.5, "inches")
  9841. },
  9842. {
  9843. name: "Normal",
  9844. height: math.unit(8, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Macro",
  9849. height: math.unit(250, "feet")
  9850. },
  9851. {
  9852. name: "Megamacro",
  9853. height: math.unit(1, "AU")
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(5 + 5 / 12, "feet"),
  9862. weight: math.unit(140, "lb"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/allatia/front.svg",
  9866. extra: 1227 / 1180,
  9867. bottom: 0.027
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(5 + 5 / 12, "feet")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(250, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(8, "miles")
  9884. }
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(120, "lb"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/tene/front.svg",
  9896. extra: 1728 / 1578,
  9897. bottom: 0.022
  9898. }
  9899. },
  9900. stomping: {
  9901. height: math.unit(2.025, "meters"),
  9902. weight: math.unit(120, "lb"),
  9903. name: "Stomping",
  9904. image: {
  9905. source: "./media/characters/tene/stomping.svg",
  9906. extra: 938 / 873,
  9907. bottom: 0.01
  9908. }
  9909. },
  9910. sitting: {
  9911. height: math.unit(1, "meter"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Sitting",
  9914. image: {
  9915. source: "./media/characters/tene/sitting.svg",
  9916. extra: 437 / 415,
  9917. bottom: 0.1
  9918. }
  9919. },
  9920. feral: {
  9921. height: math.unit(3.9, "feet"),
  9922. weight: math.unit(250, "lb"),
  9923. name: "Feral",
  9924. image: {
  9925. source: "./media/characters/tene/feral.svg",
  9926. extra: 717 / 458,
  9927. bottom: 0.179
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(6, "feet")
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(300, "feet"),
  9939. default: true
  9940. },
  9941. {
  9942. name: "Megamacro",
  9943. height: math.unit(5, "miles")
  9944. },
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9949. {
  9950. side: {
  9951. height: math.unit(6, "feet"),
  9952. name: "Side",
  9953. image: {
  9954. source: "./media/characters/evander/side.svg",
  9955. extra: 877 / 477
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(0.83, "meters"),
  9963. default: true
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9969. {
  9970. front: {
  9971. height: math.unit(12, "feet"),
  9972. weight: math.unit(1000, "lb"),
  9973. name: "Front",
  9974. image: {
  9975. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9976. extra: 1762 / 1611
  9977. }
  9978. },
  9979. back: {
  9980. height: math.unit(12, "feet"),
  9981. weight: math.unit(1000, "lb"),
  9982. name: "Back",
  9983. image: {
  9984. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9985. extra: 1762 / 1611
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(12, "feet"),
  9993. default: true
  9994. },
  9995. {
  9996. name: "Kaiju",
  9997. height: math.unit(150, "feet")
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(150, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/zero-alurus/front.svg"
  10010. }
  10011. },
  10012. back: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(150, "lb"),
  10015. name: "Back",
  10016. image: {
  10017. source: "./media/characters/zero-alurus/back.svg"
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(5 + 10 / 12, "feet")
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(60, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Macro+",
  10033. height: math.unit(450, "feet")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(200, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/mega-shi/front.svg",
  10046. extra: 1279 / 1250,
  10047. bottom: 0.02
  10048. }
  10049. },
  10050. back: {
  10051. height: math.unit(6, "feet"),
  10052. weight: math.unit(200, "lb"),
  10053. name: "Back",
  10054. image: {
  10055. source: "./media/characters/mega-shi/back.svg",
  10056. extra: 1279 / 1250,
  10057. bottom: 0.02
  10058. }
  10059. },
  10060. },
  10061. [
  10062. {
  10063. name: "Micro",
  10064. height: math.unit(16 + 6 / 12, "feet")
  10065. },
  10066. {
  10067. name: "Third Dimension",
  10068. height: math.unit(40, "meters")
  10069. },
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(660, "feet"),
  10073. default: true
  10074. },
  10075. {
  10076. name: "Megamacro",
  10077. height: math.unit(10, "miles")
  10078. },
  10079. {
  10080. name: "Planetary Launch",
  10081. height: math.unit(500, "miles")
  10082. },
  10083. {
  10084. name: "Interstellar",
  10085. height: math.unit(1e9, "miles")
  10086. },
  10087. {
  10088. name: "Leaving the Universe",
  10089. height: math.unit(1, "gigaparsec")
  10090. },
  10091. {
  10092. name: "Travelling Universes",
  10093. height: math.unit(30e15, "parsecs")
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(150, "lb"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/odyssey/front.svg",
  10106. extra: 1782 / 1582,
  10107. bottom: 0.01
  10108. }
  10109. },
  10110. side: {
  10111. height: math.unit(5.7, "feet"),
  10112. weight: math.unit(140, "lb"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/odyssey/side.svg",
  10116. extra: 6462 / 5700
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(5 + 4 / 12, "feet")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(1, "km")
  10128. },
  10129. {
  10130. name: "Megamacro",
  10131. height: math.unit(3000, "km")
  10132. },
  10133. {
  10134. name: "Gigamacro",
  10135. height: math.unit(1, "AU"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Omniversal",
  10140. height: math.unit(100e14, "lightyears")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(300, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/mekuto/front.svg",
  10153. extra: 921 / 832,
  10154. bottom: 0.03
  10155. }
  10156. },
  10157. hand: {
  10158. height: math.unit(6 / 10.24, "feet"),
  10159. name: "Hand",
  10160. image: {
  10161. source: "./media/characters/mekuto/hand.svg"
  10162. }
  10163. },
  10164. foot: {
  10165. height: math.unit(6 / 5.05, "feet"),
  10166. name: "Foot",
  10167. image: {
  10168. source: "./media/characters/mekuto/foot.svg"
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Minimicro",
  10175. height: math.unit(0.2, "inches")
  10176. },
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(1.5, "inches")
  10180. },
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(5 + 11 / 12, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Minimacro",
  10188. height: math.unit(17 + 9 / 12, "feet")
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(177.5, "feet")
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(152, "miles")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6.5, "inches"),
  10205. weight: math.unit(13, "oz"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/dafydd-tomos/front.svg",
  10209. extra: 2990 / 2603,
  10210. bottom: 0.03
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(6.5, "inches"),
  10218. default: true
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/splinter/front.svg",
  10231. extra: 2990 / 2882,
  10232. bottom: 0.04
  10233. }
  10234. },
  10235. back: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Back",
  10239. image: {
  10240. source: "./media/characters/splinter/back.svg",
  10241. extra: 2990 / 2882,
  10242. bottom: 0.04
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(6, "feet")
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(230, "meters"),
  10254. default: true
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(4 + 10 / 12, "feet"),
  10263. weight: math.unit(480, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/snow-gabumon/front.svg",
  10267. extra: 1140 / 963,
  10268. bottom: 0.058
  10269. }
  10270. },
  10271. back: {
  10272. height: math.unit(4 + 10 / 12, "feet"),
  10273. weight: math.unit(480, "lb"),
  10274. name: "Back",
  10275. image: {
  10276. source: "./media/characters/snow-gabumon/back.svg",
  10277. extra: 1115 / 962,
  10278. bottom: 0.041
  10279. }
  10280. },
  10281. frontUndresed: {
  10282. height: math.unit(4 + 10 / 12, "feet"),
  10283. weight: math.unit(480, "lb"),
  10284. name: "Front (Undressed)",
  10285. image: {
  10286. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10287. extra: 1061 / 960,
  10288. bottom: 0.045
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Micro",
  10295. height: math.unit(1, "inch")
  10296. },
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(4 + 10 / 12, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Macro",
  10304. height: math.unit(200, "feet")
  10305. },
  10306. {
  10307. name: "Megamacro",
  10308. height: math.unit(120, "miles")
  10309. },
  10310. {
  10311. name: "Gigamacro",
  10312. height: math.unit(9800, "miles")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(1.7, "meters"),
  10321. weight: math.unit(140, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/moody/front.svg",
  10325. extra: 3226 / 3007,
  10326. bottom: 0.087
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Micro",
  10333. height: math.unit(1, "mm")
  10334. },
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(1.7, "meters"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(80, "meters")
  10343. },
  10344. {
  10345. name: "Macro+",
  10346. height: math.unit(500, "meters")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(150, "lb"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/zyas/front.svg",
  10359. extra: 1180 / 1120,
  10360. bottom: 0.045
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Normal",
  10367. height: math.unit(10, "feet"),
  10368. default: true
  10369. },
  10370. {
  10371. name: "Macro",
  10372. height: math.unit(500, "feet")
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(5, "miles")
  10377. },
  10378. {
  10379. name: "Teramacro",
  10380. height: math.unit(150000, "miles")
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(150, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/cuon/front.svg",
  10393. extra: 1390 / 1320,
  10394. bottom: 0.008
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Micro",
  10401. height: math.unit(3, "inches")
  10402. },
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(18 + 9 / 12, "feet"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(360, "feet")
  10411. },
  10412. {
  10413. name: "Megamacro",
  10414. height: math.unit(360, "miles")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(2.4, "meters"),
  10423. weight: math.unit(70, "kg"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/nyanuxk/front.svg",
  10427. extra: 1172 / 1084,
  10428. bottom: 0.065
  10429. }
  10430. },
  10431. side: {
  10432. height: math.unit(2.4, "meters"),
  10433. weight: math.unit(70, "kg"),
  10434. name: "Side",
  10435. image: {
  10436. source: "./media/characters/nyanuxk/side.svg",
  10437. extra: 1190 / 1132,
  10438. bottom: 0.007
  10439. }
  10440. },
  10441. back: {
  10442. height: math.unit(2.4, "meters"),
  10443. weight: math.unit(70, "kg"),
  10444. name: "Back",
  10445. image: {
  10446. source: "./media/characters/nyanuxk/back.svg",
  10447. extra: 1200 / 1141,
  10448. bottom: 0.015
  10449. }
  10450. },
  10451. foot: {
  10452. height: math.unit(0.52, "meters"),
  10453. name: "Foot",
  10454. image: {
  10455. source: "./media/characters/nyanuxk/foot.svg"
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Micro",
  10462. height: math.unit(2, "cm")
  10463. },
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(2.4, "meters"),
  10467. default: true
  10468. },
  10469. {
  10470. name: "Smaller Macro",
  10471. height: math.unit(120, "meters")
  10472. },
  10473. {
  10474. name: "Bigger Macro",
  10475. height: math.unit(1.2, "km")
  10476. },
  10477. {
  10478. name: "Megamacro",
  10479. height: math.unit(15, "kilometers")
  10480. },
  10481. {
  10482. name: "Gigamacro",
  10483. height: math.unit(2000, "km")
  10484. },
  10485. {
  10486. name: "Teramacro",
  10487. height: math.unit(500000, "km")
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10493. {
  10494. side: {
  10495. height: math.unit(6, "feet"),
  10496. name: "Side",
  10497. image: {
  10498. source: "./media/characters/ailbhe/side.svg",
  10499. extra: 757 / 464,
  10500. bottom: 0.041
  10501. }
  10502. },
  10503. },
  10504. [
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(1.07, "meters"),
  10508. default: true
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(120, "kg"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/zevulfius/front.svg",
  10521. extra: 965 / 903
  10522. }
  10523. },
  10524. side: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(120, "kg"),
  10527. name: "Side",
  10528. image: {
  10529. source: "./media/characters/zevulfius/side.svg",
  10530. extra: 939 / 900
  10531. }
  10532. },
  10533. back: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(120, "kg"),
  10536. name: "Back",
  10537. image: {
  10538. source: "./media/characters/zevulfius/back.svg",
  10539. extra: 918 / 854,
  10540. bottom: 0.005
  10541. }
  10542. },
  10543. foot: {
  10544. height: math.unit(6 / 3.72, "feet"),
  10545. name: "Foot",
  10546. image: {
  10547. source: "./media/characters/zevulfius/foot.svg"
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Macro",
  10554. height: math.unit(750, "meters")
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(20, "km"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "Gigamacro",
  10563. height: math.unit(2000, "km")
  10564. },
  10565. {
  10566. name: "Teramacro",
  10567. height: math.unit(250000, "km")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(100, "feet"),
  10576. weight: math.unit(350, "kg"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/rikes/front.svg",
  10580. extra: 1565 / 1483,
  10581. bottom: 0.017
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(100, "feet"),
  10589. default: true
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(8, "feet"),
  10598. weight: math.unit(356, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/adam-silver-mane/front.svg",
  10602. extra: 1036/937,
  10603. bottom: 63/1099
  10604. }
  10605. },
  10606. side: {
  10607. height: math.unit(8, "feet"),
  10608. weight: math.unit(356, "lb"),
  10609. name: "Side",
  10610. image: {
  10611. source: "./media/characters/adam-silver-mane/side.svg",
  10612. extra: 997/901,
  10613. bottom: 59/1056
  10614. }
  10615. },
  10616. frontNsfw: {
  10617. height: math.unit(8, "feet"),
  10618. weight: math.unit(356, "lb"),
  10619. name: "Front (NSFW)",
  10620. image: {
  10621. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10622. extra: 1036/937,
  10623. bottom: 63/1099
  10624. }
  10625. },
  10626. sideNsfw: {
  10627. height: math.unit(8, "feet"),
  10628. weight: math.unit(356, "lb"),
  10629. name: "Side (NSFW)",
  10630. image: {
  10631. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10632. extra: 997/901,
  10633. bottom: 59/1056
  10634. }
  10635. },
  10636. dick: {
  10637. height: math.unit(2.1, "feet"),
  10638. name: "Dick",
  10639. image: {
  10640. source: "./media/characters/adam-silver-mane/dick.svg"
  10641. }
  10642. },
  10643. taur: {
  10644. height: math.unit(16, "feet"),
  10645. weight: math.unit(1500, "kg"),
  10646. name: "Taur",
  10647. image: {
  10648. source: "./media/characters/adam-silver-mane/taur.svg",
  10649. extra: 1713 / 1571,
  10650. bottom: 0.01
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(8, "feet")
  10658. },
  10659. {
  10660. name: "Minimacro",
  10661. height: math.unit(80, "feet")
  10662. },
  10663. {
  10664. name: "MDA",
  10665. height: math.unit(80, "meters")
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(800, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(8000, "feet")
  10675. },
  10676. {
  10677. name: "Gigamacro",
  10678. height: math.unit(800, "miles")
  10679. },
  10680. {
  10681. name: "Teramacro",
  10682. height: math.unit(80000, "miles")
  10683. },
  10684. {
  10685. name: "Celestial",
  10686. height: math.unit(8e6, "miles")
  10687. },
  10688. {
  10689. name: "Star Dragon",
  10690. height: math.unit(800000, "parsecs")
  10691. },
  10692. {
  10693. name: "Godly",
  10694. height: math.unit(800, "teraparsecs")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/ky'owin/front.svg",
  10707. extra: 3888 / 3068,
  10708. bottom: 0.015
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(6 + 8 / 12, "feet")
  10716. },
  10717. {
  10718. name: "Large",
  10719. height: math.unit(68, "feet")
  10720. },
  10721. {
  10722. name: "Macro",
  10723. height: math.unit(132, "feet")
  10724. },
  10725. {
  10726. name: "Macro+",
  10727. height: math.unit(340, "feet")
  10728. },
  10729. {
  10730. name: "Macro++",
  10731. height: math.unit(680, "feet"),
  10732. default: true
  10733. },
  10734. {
  10735. name: "Megamacro",
  10736. height: math.unit(1, "mile")
  10737. },
  10738. {
  10739. name: "Megamacro+",
  10740. height: math.unit(10, "miles")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10746. {
  10747. front: {
  10748. height: math.unit(4, "feet"),
  10749. weight: math.unit(50, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/mal/front.svg",
  10753. extra: 785 / 724,
  10754. bottom: 0.07
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Micro",
  10761. height: math.unit(4, "inches")
  10762. },
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(4, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Macro",
  10770. height: math.unit(200, "feet")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(150, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/jordan-deware/front.svg",
  10783. extra: 1191 / 1012
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Nano",
  10790. height: math.unit(0.01, "mm")
  10791. },
  10792. {
  10793. name: "Minimicro",
  10794. height: math.unit(1, "mm")
  10795. },
  10796. {
  10797. name: "Micro",
  10798. height: math.unit(0.5, "inches")
  10799. },
  10800. {
  10801. name: "Normal",
  10802. height: math.unit(4, "feet"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Minimacro",
  10807. height: math.unit(40, "meters")
  10808. },
  10809. {
  10810. name: "Small Macro",
  10811. height: math.unit(400, "meters")
  10812. },
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(4, "miles")
  10816. },
  10817. {
  10818. name: "Megamacro",
  10819. height: math.unit(40, "miles")
  10820. },
  10821. {
  10822. name: "Megamacro+",
  10823. height: math.unit(400, "miles")
  10824. },
  10825. {
  10826. name: "Gigamacro",
  10827. height: math.unit(400000, "miles")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10833. {
  10834. side: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(150, "lb"),
  10837. name: "Side",
  10838. image: {
  10839. source: "./media/characters/kimiko/side.svg",
  10840. extra: 600 / 358
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(15, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(220, "feet")
  10853. },
  10854. {
  10855. name: "Macro+",
  10856. height: math.unit(1450, "feet")
  10857. },
  10858. {
  10859. name: "Megamacro",
  10860. height: math.unit(11500, "feet")
  10861. },
  10862. {
  10863. name: "Gigamacro",
  10864. height: math.unit(9500, "miles")
  10865. },
  10866. {
  10867. name: "Teramacro",
  10868. height: math.unit(2208005005, "miles")
  10869. },
  10870. {
  10871. name: "Examacro",
  10872. height: math.unit(2750, "parsecs")
  10873. },
  10874. {
  10875. name: "Zettamacro",
  10876. height: math.unit(101500, "parsecs")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(70, "kg"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/andrew-sleepy/front.svg"
  10889. }
  10890. },
  10891. side: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(70, "kg"),
  10894. name: "Side",
  10895. image: {
  10896. source: "./media/characters/andrew-sleepy/side.svg"
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Micro",
  10903. height: math.unit(1, "mm"),
  10904. default: true
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(150, "lb"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/judio/front.svg",
  10917. extra: 1258 / 1110
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(5 + 6 / 12, "feet")
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(1000, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(10, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(68, "kg"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/nomaxice/front.svg",
  10946. extra: 1498 / 1073,
  10947. bottom: 0.075
  10948. }
  10949. },
  10950. foot: {
  10951. height: math.unit(1.1, "feet"),
  10952. name: "Foot",
  10953. image: {
  10954. source: "./media/characters/nomaxice/foot.svg"
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(8, "cm")
  10962. },
  10963. {
  10964. name: "Norm",
  10965. height: math.unit(1.82, "m")
  10966. },
  10967. {
  10968. name: "Norm+",
  10969. height: math.unit(8.8, "feet")
  10970. },
  10971. {
  10972. name: "Big",
  10973. height: math.unit(8, "meters"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(18, "meters")
  10979. },
  10980. {
  10981. name: "Macro+",
  10982. height: math.unit(88, "meters")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(12, "feet"),
  10991. weight: math.unit(1.5, "tons"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/dydros/front.svg",
  10995. extra: 863 / 800,
  10996. bottom: 0.015
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(12, "feet"),
  11001. weight: math.unit(1.5, "tons"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/dydros/back.svg",
  11005. extra: 900 / 843,
  11006. bottom: 0.005
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(12, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(100, "kg"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/riggi/front.svg",
  11027. extra: 5787 / 5303
  11028. }
  11029. },
  11030. hyper: {
  11031. height: math.unit(6 * 5 / 3, "feet"),
  11032. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11033. name: "Hyper",
  11034. image: {
  11035. source: "./media/characters/riggi/hyper.svg",
  11036. extra: 3595 / 3485
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Small Macro",
  11043. height: math.unit(50, "feet")
  11044. },
  11045. {
  11046. name: "Default",
  11047. height: math.unit(200, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Loom",
  11052. height: math.unit(10000, "feet")
  11053. },
  11054. {
  11055. name: "Cruising Altitude",
  11056. height: math.unit(30000, "feet")
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(100, "miles")
  11061. },
  11062. {
  11063. name: "Continent Sized",
  11064. height: math.unit(2800, "miles")
  11065. },
  11066. {
  11067. name: "Earth Sized",
  11068. height: math.unit(8000, "miles")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(250, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/alexi/front.svg",
  11081. extra: 3483 / 3291,
  11082. bottom: 0.04
  11083. }
  11084. },
  11085. back: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(250, "lb"),
  11088. name: "Back",
  11089. image: {
  11090. source: "./media/characters/alexi/back.svg",
  11091. extra: 3533 / 3356,
  11092. bottom: 0.021
  11093. }
  11094. },
  11095. frontTransforming: {
  11096. height: math.unit(8.58, "feet"),
  11097. weight: math.unit(1300, "lb"),
  11098. name: "Transforming",
  11099. image: {
  11100. source: "./media/characters/alexi/front-transforming.svg",
  11101. extra: 437 / 409,
  11102. bottom: 19 / 458.66
  11103. }
  11104. },
  11105. frontTransformed: {
  11106. height: math.unit(12.5, "feet"),
  11107. weight: math.unit(4000, "lb"),
  11108. name: "Transformed",
  11109. image: {
  11110. source: "./media/characters/alexi/front-transformed.svg",
  11111. extra: 639 / 614,
  11112. bottom: 30.55 / 671
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(14, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Minimacro",
  11124. height: math.unit(30, "meters")
  11125. },
  11126. {
  11127. name: "Macro",
  11128. height: math.unit(500, "meters")
  11129. },
  11130. {
  11131. name: "Megamacro",
  11132. height: math.unit(9000, "km")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(384000, "km")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/kayroo/front.svg",
  11149. extra: 1153 / 1038,
  11150. bottom: 0.06
  11151. }
  11152. },
  11153. foot: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Foot",
  11157. image: {
  11158. source: "./media/characters/kayroo/foot.svg"
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(8, "feet"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Minimacro",
  11170. height: math.unit(250, "feet")
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(2800, "feet")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(5200, "feet")
  11179. },
  11180. {
  11181. name: "Gigamacro",
  11182. height: math.unit(27000, "feet")
  11183. },
  11184. {
  11185. name: "Omega",
  11186. height: math.unit(45000, "feet")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(18, "feet"),
  11195. weight: math.unit(5800, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/rhys/front.svg",
  11199. extra: 3386 / 3090,
  11200. bottom: 0.07
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(18, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Working Size",
  11212. height: math.unit(200, "feet")
  11213. },
  11214. {
  11215. name: "Demolition Size",
  11216. height: math.unit(2000, "feet")
  11217. },
  11218. {
  11219. name: "Maximum Licensed Size",
  11220. height: math.unit(5, "miles")
  11221. },
  11222. {
  11223. name: "Maximum Observed Size",
  11224. height: math.unit(10, "yottameters")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(250, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/toto/front.svg",
  11237. extra: 527 / 479,
  11238. bottom: 0.05
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Micro",
  11245. height: math.unit(3, "feet")
  11246. },
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(10, "feet")
  11250. },
  11251. {
  11252. name: "Macro",
  11253. height: math.unit(150, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(1200, "feet")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "King", species: ["lion"], tags: ["anthro"] },
  11264. {
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/king/back.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Micro",
  11277. height: math.unit(2, "inches")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(8, "feet")
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(200, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(50, "miles")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(11, "feet"),
  11299. weight: math.unit(1400, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/cordite/front.svg",
  11303. extra: 1919/1827,
  11304. bottom: 40/1959
  11305. }
  11306. },
  11307. side: {
  11308. height: math.unit(11, "feet"),
  11309. weight: math.unit(1400, "lb"),
  11310. name: "Side",
  11311. image: {
  11312. source: "./media/characters/cordite/side.svg",
  11313. extra: 1908/1793,
  11314. bottom: 38/1946
  11315. }
  11316. },
  11317. back: {
  11318. height: math.unit(11, "feet"),
  11319. weight: math.unit(1400, "lb"),
  11320. name: "Back",
  11321. image: {
  11322. source: "./media/characters/cordite/back.svg",
  11323. extra: 1938/1837,
  11324. bottom: 10/1948
  11325. }
  11326. },
  11327. feral: {
  11328. height: math.unit(2, "feet"),
  11329. weight: math.unit(90, "lb"),
  11330. name: "Feral",
  11331. image: {
  11332. source: "./media/characters/cordite/feral.svg",
  11333. extra: 1260 / 755,
  11334. bottom: 0.05
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(11, "feet"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/pianostrong/front.svg",
  11355. extra: 6577 / 6254,
  11356. bottom: 0.02
  11357. }
  11358. },
  11359. side: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Side",
  11363. image: {
  11364. source: "./media/characters/pianostrong/side.svg",
  11365. extra: 6106 / 5730
  11366. }
  11367. },
  11368. back: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(150, "lb"),
  11371. name: "Back",
  11372. image: {
  11373. source: "./media/characters/pianostrong/back.svg",
  11374. extra: 6085 / 5733,
  11375. bottom: 0.01
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(100, "feet")
  11383. },
  11384. {
  11385. name: "Macro+",
  11386. height: math.unit(300, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro++",
  11391. height: math.unit(1000, "feet")
  11392. },
  11393. ]
  11394. ))
  11395. characterMakers.push(() => makeCharacter(
  11396. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11397. {
  11398. front: {
  11399. height: math.unit(6, "feet"),
  11400. weight: math.unit(150, "lb"),
  11401. name: "Front",
  11402. image: {
  11403. source: "./media/characters/kona/front.svg",
  11404. extra: 2960 / 2629,
  11405. bottom: 0.005
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Normal",
  11412. height: math.unit(11 + 8 / 12, "feet")
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(850, "feet"),
  11417. default: true
  11418. },
  11419. {
  11420. name: "Macro+",
  11421. height: math.unit(1.5, "km"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(80, "miles")
  11427. },
  11428. {
  11429. name: "Gigamacro",
  11430. height: math.unit(3500, "miles")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11436. {
  11437. side: {
  11438. height: math.unit(1.9, "meters"),
  11439. weight: math.unit(326, "kg"),
  11440. name: "Side",
  11441. image: {
  11442. source: "./media/characters/levi/side.svg",
  11443. extra: 1704 / 1334,
  11444. bottom: 0.02
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(1.9, "meters"),
  11452. default: true
  11453. },
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(20, "meters")
  11457. },
  11458. {
  11459. name: "Macro+",
  11460. height: math.unit(200, "meters")
  11461. },
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(2, "km")
  11465. },
  11466. {
  11467. name: "Megamacro+",
  11468. height: math.unit(20, "km")
  11469. },
  11470. {
  11471. name: "Gigamacro",
  11472. height: math.unit(2500, "km")
  11473. },
  11474. {
  11475. name: "Gigamacro+",
  11476. height: math.unit(120000, "km")
  11477. },
  11478. {
  11479. name: "Teramacro",
  11480. height: math.unit(7.77e6, "km")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(6 + 4/12, "feet"),
  11489. weight: math.unit(190, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/bmc/front.svg",
  11493. extra: 1626/1472,
  11494. bottom: 79/1705
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(6 + 4/12, "feet"),
  11499. weight: math.unit(190, "lb"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/bmc/back.svg",
  11503. extra: 1640/1479,
  11504. bottom: 45/1685
  11505. }
  11506. },
  11507. frontArmor: {
  11508. height: math.unit(6 + 4/12, "feet"),
  11509. weight: math.unit(190, "lb"),
  11510. name: "Front-armor",
  11511. image: {
  11512. source: "./media/characters/bmc/front-armor.svg",
  11513. extra: 1538/1468,
  11514. bottom: 79/1617
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Human-sized",
  11521. height: math.unit(6 + 4 / 12, "feet")
  11522. },
  11523. {
  11524. name: "Interactive Size",
  11525. height: math.unit(25, "feet")
  11526. },
  11527. {
  11528. name: "Small",
  11529. height: math.unit(250, "feet")
  11530. },
  11531. {
  11532. name: "Normal",
  11533. height: math.unit(1250, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Good Day",
  11538. height: math.unit(88, "miles")
  11539. },
  11540. {
  11541. name: "Largest Measured Size",
  11542. height: math.unit(105.960, "galaxies")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(20, "feet"),
  11551. weight: math.unit(2016, "kg"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/sven-the-kaiju/front.svg",
  11555. extra: 1277/1250,
  11556. bottom: 35/1312
  11557. }
  11558. },
  11559. mouth: {
  11560. height: math.unit(1.85, "feet"),
  11561. name: "Mouth",
  11562. image: {
  11563. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11564. }
  11565. },
  11566. },
  11567. [
  11568. {
  11569. name: "Fairy",
  11570. height: math.unit(6, "inches")
  11571. },
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(20, "feet"),
  11575. default: true
  11576. },
  11577. {
  11578. name: "Rampage",
  11579. height: math.unit(200, "feet")
  11580. },
  11581. {
  11582. name: "Archfey Forest Guardian",
  11583. height: math.unit(1, "mile")
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11589. {
  11590. front: {
  11591. height: math.unit(4, "meters"),
  11592. weight: math.unit(2, "tons"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/marik/front.svg",
  11596. extra: 1057 / 1003,
  11597. bottom: 0.08
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(4, "meters"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(20, "meters")
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(50, "km")
  11614. },
  11615. {
  11616. name: "Gigamacro",
  11617. height: math.unit(100, "km")
  11618. },
  11619. {
  11620. name: "Alpha Macro",
  11621. height: math.unit(7.88e7, "yottameters")
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(6, "feet"),
  11630. weight: math.unit(110, "lb"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/mel/front.svg",
  11634. extra: 736 / 617,
  11635. bottom: 0.017
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Pico",
  11642. height: math.unit(3, "pm")
  11643. },
  11644. {
  11645. name: "Nano",
  11646. height: math.unit(3, "nm")
  11647. },
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(0.3, "mm"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Micro+",
  11655. height: math.unit(3, "mm")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(5 + 10.5 / 12, "feet")
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11665. {
  11666. kaiju: {
  11667. height: math.unit(1.75, "meters"),
  11668. weight: math.unit(55, "kg"),
  11669. name: "Kaiju",
  11670. image: {
  11671. source: "./media/characters/lykonous/kaiju.svg",
  11672. extra: 1055 / 946,
  11673. bottom: 0.135
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Normal",
  11680. height: math.unit(2.5, "meters"),
  11681. default: true
  11682. },
  11683. {
  11684. name: "Kaiju Dragon",
  11685. height: math.unit(60, "meters")
  11686. },
  11687. {
  11688. name: "Mega Kaiju",
  11689. height: math.unit(120, "km")
  11690. },
  11691. {
  11692. name: "Giga Kaiju",
  11693. height: math.unit(200, "megameters")
  11694. },
  11695. {
  11696. name: "Terra Kaiju",
  11697. height: math.unit(400, "gigameters")
  11698. },
  11699. {
  11700. name: "Kaiju Dragon God",
  11701. height: math.unit(13000, "exaparsecs")
  11702. },
  11703. ]
  11704. ))
  11705. characterMakers.push(() => makeCharacter(
  11706. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11707. {
  11708. front: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(150, "lb"),
  11711. name: "Front",
  11712. image: {
  11713. source: "./media/characters/blü/front.svg",
  11714. extra: 1883 / 1564,
  11715. bottom: 0.031
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(13, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Big Boi",
  11727. height: math.unit(150, "meters")
  11728. },
  11729. {
  11730. name: "Mini Stomper",
  11731. height: math.unit(300, "meters")
  11732. },
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(1000, "meters")
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(11000, "meters")
  11740. },
  11741. {
  11742. name: "Gigamacro",
  11743. height: math.unit(11000, "km")
  11744. },
  11745. {
  11746. name: "Teramacro",
  11747. height: math.unit(420000, "km")
  11748. },
  11749. {
  11750. name: "Examacro",
  11751. height: math.unit(120, "parsecs")
  11752. },
  11753. {
  11754. name: "God Tho",
  11755. height: math.unit(98000000000, "parsecs")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11761. {
  11762. taurFront: {
  11763. height: math.unit(6, "feet"),
  11764. weight: math.unit(200, "lb"),
  11765. name: "Taur (Front)",
  11766. image: {
  11767. source: "./media/characters/scales/taur-front.svg",
  11768. extra: 1,
  11769. bottom: 0.05
  11770. }
  11771. },
  11772. taurBack: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(200, "lb"),
  11775. name: "Taur (Back)",
  11776. image: {
  11777. source: "./media/characters/scales/taur-back.svg",
  11778. extra: 1,
  11779. bottom: 0.08
  11780. }
  11781. },
  11782. anthro: {
  11783. height: math.unit(6 * 7 / 12, "feet"),
  11784. weight: math.unit(100, "lb"),
  11785. name: "Anthro",
  11786. image: {
  11787. source: "./media/characters/scales/anthro.svg",
  11788. extra: 1,
  11789. bottom: 0.06
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(12, "feet"),
  11797. default: true
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(6, "feet"),
  11806. weight: math.unit(150, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/koragos/front.svg",
  11810. extra: 841 / 794,
  11811. bottom: 0.035
  11812. }
  11813. },
  11814. back: {
  11815. height: math.unit(6, "feet"),
  11816. weight: math.unit(150, "lb"),
  11817. name: "Back",
  11818. image: {
  11819. source: "./media/characters/koragos/back.svg",
  11820. extra: 841 / 810,
  11821. bottom: 0.022
  11822. }
  11823. },
  11824. },
  11825. [
  11826. {
  11827. name: "Normal",
  11828. height: math.unit(6 + 11 / 12, "feet"),
  11829. default: true
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(490, "feet")
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(10, "miles")
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(50, "miles")
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(250, "lb"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/xylrem/front.svg",
  11854. extra: 3323 / 3050,
  11855. bottom: 0.065
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Micro",
  11862. height: math.unit(4, "feet")
  11863. },
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(16, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(2720, "feet")
  11872. },
  11873. {
  11874. name: "Megamacro",
  11875. height: math.unit(25000, "miles")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(8, "feet"),
  11884. weight: math.unit(250, "kg"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/ikideru/front.svg",
  11888. extra: 930 / 870,
  11889. bottom: 0.087
  11890. }
  11891. },
  11892. back: {
  11893. height: math.unit(8, "feet"),
  11894. weight: math.unit(250, "kg"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/ikideru/back.svg",
  11898. extra: 919 / 852,
  11899. bottom: 0.055
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Rare",
  11906. height: math.unit(8, "feet"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Playful Loom",
  11911. height: math.unit(80, "feet")
  11912. },
  11913. {
  11914. name: "City Leaner",
  11915. height: math.unit(230, "feet")
  11916. },
  11917. {
  11918. name: "Megamacro",
  11919. height: math.unit(2500, "feet")
  11920. },
  11921. {
  11922. name: "Gigamacro",
  11923. height: math.unit(26400, "feet")
  11924. },
  11925. {
  11926. name: "Tectonic Shifter",
  11927. height: math.unit(1.7, "megameters")
  11928. },
  11929. {
  11930. name: "Planet Carer",
  11931. height: math.unit(21, "megameters")
  11932. },
  11933. {
  11934. name: "God",
  11935. height: math.unit(11157.22, "parsecs")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(120, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/neo/front.svg"
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Micro",
  11954. height: math.unit(2, "inches"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Human Size",
  11959. height: math.unit(5 + 8 / 12, "feet")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(13 + 10 / 12, "feet"),
  11968. weight: math.unit(5320, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/chauncey-chantz/front.svg",
  11972. extra: 1587 / 1435,
  11973. bottom: 0.02
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Normal",
  11980. height: math.unit(13 + 10 / 12, "feet"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(45, "feet")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(250, "miles")
  11990. },
  11991. {
  11992. name: "Planetary",
  11993. height: math.unit(10000, "miles")
  11994. },
  11995. {
  11996. name: "Galactic",
  11997. height: math.unit(40000, "parsecs")
  11998. },
  11999. {
  12000. name: "Universal",
  12001. height: math.unit(1, "yottameter")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/epifox/front.svg",
  12014. extra: 1,
  12015. bottom: 0.075
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(6, "inches")
  12023. },
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(12, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Macro",
  12031. height: math.unit(3810, "feet")
  12032. },
  12033. {
  12034. name: "Megamacro",
  12035. height: math.unit(500, "miles")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(1.8796, "m"),
  12044. weight: math.unit(230, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/colin-t/front.svg",
  12048. extra: 1272 / 1193,
  12049. bottom: 0.07
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Micro",
  12056. height: math.unit(0.571, "meters")
  12057. },
  12058. {
  12059. name: "Normal",
  12060. height: math.unit(1.8796, "meters"),
  12061. default: true
  12062. },
  12063. {
  12064. name: "Tall",
  12065. height: math.unit(4, "meters")
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(67.241, "meters")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(371.856, "meters")
  12074. },
  12075. {
  12076. name: "Planetary",
  12077. height: math.unit(12631.5689, "km")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12083. {
  12084. front: {
  12085. height: math.unit(1.85, "meters"),
  12086. weight: math.unit(80, "kg"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/matvei/front.svg",
  12090. extra: 614 / 594,
  12091. bottom: 0.01
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Normal",
  12098. height: math.unit(1.85, "meters"),
  12099. default: true
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12105. {
  12106. front: {
  12107. height: math.unit(5 + 9 / 12, "feet"),
  12108. weight: math.unit(70, "lb"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/quincy/front.svg",
  12112. extra: 3041 / 2751
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(5 + 9 / 12, "feet"),
  12117. weight: math.unit(70, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/quincy/back.svg",
  12121. extra: 3041 / 2751
  12122. }
  12123. },
  12124. flying: {
  12125. height: math.unit(5 + 4 / 12, "feet"),
  12126. weight: math.unit(70, "lb"),
  12127. name: "Flying",
  12128. image: {
  12129. source: "./media/characters/quincy/flying.svg",
  12130. extra: 1044 / 930
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Micro",
  12137. height: math.unit(3, "cm")
  12138. },
  12139. {
  12140. name: "Normal",
  12141. height: math.unit(5 + 9 / 12, "feet")
  12142. },
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(200, "meters"),
  12146. default: true
  12147. },
  12148. {
  12149. name: "Megamacro",
  12150. height: math.unit(1000, "meters")
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(3 + 11/12, "feet"),
  12159. weight: math.unit(50, "lb"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/vanrel/front.svg",
  12163. extra: 1104/949,
  12164. bottom: 52/1156
  12165. }
  12166. },
  12167. back: {
  12168. height: math.unit(3 + 11/12, "feet"),
  12169. weight: math.unit(50, "lb"),
  12170. name: "Back",
  12171. image: {
  12172. source: "./media/characters/vanrel/back.svg",
  12173. extra: 1119/976,
  12174. bottom: 37/1156
  12175. }
  12176. },
  12177. tome: {
  12178. height: math.unit(1.35, "feet"),
  12179. weight: math.unit(10, "lb"),
  12180. name: "Vanrel's Tome",
  12181. rename: true,
  12182. image: {
  12183. source: "./media/characters/vanrel/tome.svg"
  12184. }
  12185. },
  12186. beans: {
  12187. height: math.unit(0.89, "feet"),
  12188. name: "Beans",
  12189. image: {
  12190. source: "./media/characters/vanrel/beans.svg"
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Normal",
  12197. height: math.unit(3 + 11/12, "feet"),
  12198. default: true
  12199. },
  12200. ]
  12201. ))
  12202. characterMakers.push(() => makeCharacter(
  12203. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12204. {
  12205. front: {
  12206. height: math.unit(7 + 5 / 12, "feet"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/kuiper-vanrel/front.svg",
  12210. extra: 1219/1169,
  12211. bottom: 69/1288
  12212. }
  12213. },
  12214. back: {
  12215. height: math.unit(7 + 5 / 12, "feet"),
  12216. name: "Back",
  12217. image: {
  12218. source: "./media/characters/kuiper-vanrel/back.svg",
  12219. extra: 1236/1193,
  12220. bottom: 27/1263
  12221. }
  12222. },
  12223. foot: {
  12224. height: math.unit(0.55, "meters"),
  12225. name: "Foot",
  12226. image: {
  12227. source: "./media/characters/kuiper-vanrel/foot.svg",
  12228. }
  12229. },
  12230. battle: {
  12231. height: math.unit(6.824, "feet"),
  12232. name: "Battle",
  12233. image: {
  12234. source: "./media/characters/kuiper-vanrel/battle.svg",
  12235. extra: 1466 / 1327,
  12236. bottom: 29 / 1492.5
  12237. }
  12238. },
  12239. meerkui: {
  12240. height: math.unit(18, "inches"),
  12241. name: "Meerkui",
  12242. image: {
  12243. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12244. extra: 1354/1289,
  12245. bottom: 69/1423
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(7 + 5 / 12, "feet"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(8 + 5 / 12, "feet"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/keset-vanrel/front.svg",
  12265. extra: 1231/1148,
  12266. bottom: 82/1313
  12267. }
  12268. },
  12269. back: {
  12270. height: math.unit(8 + 5 / 12, "feet"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/keset-vanrel/back.svg",
  12274. extra: 1240/1174,
  12275. bottom: 33/1273
  12276. }
  12277. },
  12278. hand: {
  12279. height: math.unit(0.6, "meters"),
  12280. name: "Hand",
  12281. image: {
  12282. source: "./media/characters/keset-vanrel/hand.svg"
  12283. }
  12284. },
  12285. foot: {
  12286. height: math.unit(0.94978, "meters"),
  12287. name: "Foot",
  12288. image: {
  12289. source: "./media/characters/keset-vanrel/foot.svg"
  12290. }
  12291. },
  12292. battle: {
  12293. height: math.unit(7.408, "feet"),
  12294. name: "Battle",
  12295. image: {
  12296. source: "./media/characters/keset-vanrel/battle.svg",
  12297. extra: 1890 / 1386,
  12298. bottom: 73.28 / 1970
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(8 + 5 / 12, "feet"),
  12306. default: true
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12312. {
  12313. front: {
  12314. height: math.unit(6, "feet"),
  12315. weight: math.unit(150, "lb"),
  12316. name: "Front",
  12317. image: {
  12318. source: "./media/characters/neos/front.svg",
  12319. extra: 1696 / 992,
  12320. bottom: 0.14
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(54, "cm"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(100, "m")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(10, "km")
  12337. },
  12338. {
  12339. name: "Megamacro+",
  12340. height: math.unit(100, "km")
  12341. },
  12342. {
  12343. name: "Gigamacro",
  12344. height: math.unit(100, "Mm")
  12345. },
  12346. {
  12347. name: "Teramacro",
  12348. height: math.unit(100, "Gm")
  12349. },
  12350. {
  12351. name: "Examacro",
  12352. height: math.unit(100, "Em")
  12353. },
  12354. {
  12355. name: "Godly",
  12356. height: math.unit(10000, "Ym")
  12357. },
  12358. {
  12359. name: "Beyond Godly",
  12360. height: math.unit(25, "multiverses")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12366. {
  12367. feminine: {
  12368. height: math.unit(5, "feet"),
  12369. weight: math.unit(100, "lb"),
  12370. name: "Feminine",
  12371. image: {
  12372. source: "./media/characters/sammy-mouse/feminine.svg",
  12373. extra: 2526 / 2425,
  12374. bottom: 0.123
  12375. }
  12376. },
  12377. masculine: {
  12378. height: math.unit(5, "feet"),
  12379. weight: math.unit(100, "lb"),
  12380. name: "Masculine",
  12381. image: {
  12382. source: "./media/characters/sammy-mouse/masculine.svg",
  12383. extra: 2526 / 2425,
  12384. bottom: 0.123
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Micro",
  12391. height: math.unit(5, "inches")
  12392. },
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(5, "feet"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Macro",
  12400. height: math.unit(60, "feet")
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(4, "feet"),
  12409. weight: math.unit(50, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/kole/front.svg",
  12413. extra: 1423 / 1303,
  12414. bottom: 0.025
  12415. }
  12416. },
  12417. back: {
  12418. height: math.unit(4, "feet"),
  12419. weight: math.unit(50, "lb"),
  12420. name: "Back",
  12421. image: {
  12422. source: "./media/characters/kole/back.svg",
  12423. extra: 1426 / 1280,
  12424. bottom: 0.02
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(4, "feet"),
  12432. default: true
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(2.5, "feet"),
  12441. weight: math.unit(32, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/rufran/front.svg",
  12445. extra: 1313/885,
  12446. bottom: 94/1407
  12447. }
  12448. },
  12449. side: {
  12450. height: math.unit(2.5, "feet"),
  12451. weight: math.unit(32, "lb"),
  12452. name: "Side",
  12453. image: {
  12454. source: "./media/characters/rufran/side.svg",
  12455. extra: 1109/852,
  12456. bottom: 118/1227
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(2.5, "feet"),
  12461. weight: math.unit(32, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/rufran/back.svg",
  12465. extra: 1280/878,
  12466. bottom: 131/1411
  12467. }
  12468. },
  12469. mouth: {
  12470. height: math.unit(1.13, "feet"),
  12471. name: "Mouth",
  12472. image: {
  12473. source: "./media/characters/rufran/mouth.svg"
  12474. }
  12475. },
  12476. foot: {
  12477. height: math.unit(1.33, "feet"),
  12478. name: "Foot",
  12479. image: {
  12480. source: "./media/characters/rufran/foot.svg"
  12481. }
  12482. },
  12483. koboldFront: {
  12484. height: math.unit(2 + 6 / 12, "feet"),
  12485. weight: math.unit(20, "lb"),
  12486. name: "Front (Kobold)",
  12487. image: {
  12488. source: "./media/characters/rufran/kobold-front.svg",
  12489. extra: 2041 / 1839,
  12490. bottom: 0.055
  12491. }
  12492. },
  12493. koboldBack: {
  12494. height: math.unit(2 + 6 / 12, "feet"),
  12495. weight: math.unit(20, "lb"),
  12496. name: "Back (Kobold)",
  12497. image: {
  12498. source: "./media/characters/rufran/kobold-back.svg",
  12499. extra: 2054 / 1839,
  12500. bottom: 0.01
  12501. }
  12502. },
  12503. koboldHand: {
  12504. height: math.unit(0.2166, "meters"),
  12505. name: "Hand (Kobold)",
  12506. image: {
  12507. source: "./media/characters/rufran/kobold-hand.svg"
  12508. }
  12509. },
  12510. koboldFoot: {
  12511. height: math.unit(0.185, "meters"),
  12512. name: "Foot (Kobold)",
  12513. image: {
  12514. source: "./media/characters/rufran/kobold-foot.svg"
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Micro",
  12521. height: math.unit(1, "inch")
  12522. },
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(2 + 6 / 12, "feet"),
  12526. default: true
  12527. },
  12528. {
  12529. name: "Big",
  12530. height: math.unit(60, "feet")
  12531. },
  12532. {
  12533. name: "Macro",
  12534. height: math.unit(325, "feet")
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12540. {
  12541. front: {
  12542. height: math.unit(0.3, "meters"),
  12543. weight: math.unit(3.5, "kg"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/chip/front.svg",
  12547. extra: 748 / 674
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(1, "inch"),
  12555. default: true
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12561. {
  12562. side: {
  12563. height: math.unit(2.3, "meters"),
  12564. weight: math.unit(3500, "lb"),
  12565. name: "Side",
  12566. image: {
  12567. source: "./media/characters/torvid/side.svg",
  12568. extra: 1972 / 722,
  12569. bottom: 0.035
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(2.3, "meters"),
  12577. default: true
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(2, "meters"),
  12586. weight: math.unit(150.5, "kg"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/susan/front.svg",
  12590. extra: 693 / 635,
  12591. bottom: 0.05
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(505, "miles"),
  12599. default: true
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(150, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/raindrops/front.svg",
  12612. extra: 2655 / 2461,
  12613. bottom: 49 / 2705
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(6, "feet"),
  12618. weight: math.unit(150, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/raindrops/back.svg",
  12622. extra: 2574 / 2400,
  12623. bottom: 65 / 2634
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(6, "inches")
  12631. },
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(6 + 2 / 12, "feet")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(131, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(15, "miles")
  12644. },
  12645. {
  12646. name: "Gigamacro",
  12647. height: math.unit(4000, "miles")
  12648. },
  12649. {
  12650. name: "Teramacro",
  12651. height: math.unit(315000, "miles")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(2.794, "meters"),
  12660. weight: math.unit(325, "kg"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/tezwa/front.svg",
  12664. extra: 2083 / 1906,
  12665. bottom: 0.031
  12666. }
  12667. },
  12668. foot: {
  12669. height: math.unit(0.687, "meters"),
  12670. name: "Foot",
  12671. image: {
  12672. source: "./media/characters/tezwa/foot.svg"
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(9 + 2 / 12, "feet"),
  12680. default: true
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(58, "feet"),
  12689. weight: math.unit(89000, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/typhus/front.svg",
  12693. extra: 816 / 800,
  12694. bottom: 0.065
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(58, "feet"),
  12702. default: true
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(12, "feet"),
  12711. weight: math.unit(6, "tonnes"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/lyra-von-wulf/front.svg",
  12715. extra: 1,
  12716. bottom: 0.10
  12717. }
  12718. },
  12719. frontMecha: {
  12720. height: math.unit(12, "feet"),
  12721. weight: math.unit(12, "tonnes"),
  12722. name: "Front (Mecha)",
  12723. image: {
  12724. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12725. extra: 1,
  12726. bottom: 0.042
  12727. }
  12728. },
  12729. maw: {
  12730. height: math.unit(2.2, "feet"),
  12731. name: "Maw",
  12732. image: {
  12733. source: "./media/characters/lyra-von-wulf/maw.svg"
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(12, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Classic",
  12745. height: math.unit(50, "feet")
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(500, "feet")
  12750. },
  12751. {
  12752. name: "Megamacro",
  12753. height: math.unit(1, "mile")
  12754. },
  12755. {
  12756. name: "Gigamacro",
  12757. height: math.unit(400, "miles")
  12758. },
  12759. {
  12760. name: "Teramacro",
  12761. height: math.unit(22000, "miles")
  12762. },
  12763. {
  12764. name: "Solarmacro",
  12765. height: math.unit(8600000, "miles")
  12766. },
  12767. {
  12768. name: "Galactic",
  12769. height: math.unit(1057000, "lightyears")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(6 + 10 / 12, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/dixon/front.svg",
  12782. extra: 3361 / 3209,
  12783. bottom: 0.01
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(6 + 10 / 12, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Big",
  12795. height: math.unit(12, "meters")
  12796. },
  12797. {
  12798. name: "Macro",
  12799. height: math.unit(500, "meters")
  12800. },
  12801. {
  12802. name: "Megamacro",
  12803. height: math.unit(2, "km")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(185, "cm"),
  12812. weight: math.unit(68, "kg"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/kauko/front.svg",
  12816. extra: 1455 / 1421,
  12817. bottom: 0.03
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(185, "cm"),
  12822. weight: math.unit(68, "kg"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/kauko/back.svg",
  12826. extra: 1455 / 1421,
  12827. bottom: 0.004
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(185, "cm"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "kg"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/varg/front.svg",
  12848. extra: 1108 / 1018,
  12849. bottom: 0.0375
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(5, "meters")
  12857. },
  12858. {
  12859. name: "Macro",
  12860. height: math.unit(200, "meters")
  12861. },
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(20, "kilometers")
  12865. },
  12866. {
  12867. name: "True Size",
  12868. height: math.unit(211, "km"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Gigamacro",
  12873. height: math.unit(1000, "km")
  12874. },
  12875. {
  12876. name: "Gigamacro+",
  12877. height: math.unit(8000, "km")
  12878. },
  12879. {
  12880. name: "Teramacro",
  12881. height: math.unit(1000000, "km")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(7 + 7 / 12, "feet"),
  12890. weight: math.unit(267, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/dayza/front.svg",
  12894. extra: 1262 / 1200,
  12895. bottom: 0.035
  12896. }
  12897. },
  12898. side: {
  12899. height: math.unit(7 + 7 / 12, "feet"),
  12900. weight: math.unit(267, "lb"),
  12901. name: "Side",
  12902. image: {
  12903. source: "./media/characters/dayza/side.svg",
  12904. extra: 1295 / 1245,
  12905. bottom: 0.05
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(7 + 7 / 12, "feet"),
  12910. weight: math.unit(267, "lb"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/dayza/back.svg",
  12914. extra: 1241 / 1170
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(7 + 7 / 12, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(155, "feet")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6 + 5 / 12, "feet"),
  12935. weight: math.unit(160, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/xanthos/front.svg",
  12939. extra: 1,
  12940. bottom: 0.04
  12941. }
  12942. },
  12943. back: {
  12944. height: math.unit(6 + 5 / 12, "feet"),
  12945. weight: math.unit(160, "lb"),
  12946. name: "Back",
  12947. image: {
  12948. source: "./media/characters/xanthos/back.svg",
  12949. extra: 1,
  12950. bottom: 0.03
  12951. }
  12952. },
  12953. hand: {
  12954. height: math.unit(0.928, "feet"),
  12955. name: "Hand",
  12956. image: {
  12957. source: "./media/characters/xanthos/hand.svg"
  12958. }
  12959. },
  12960. foot: {
  12961. height: math.unit(1.286, "feet"),
  12962. name: "Foot",
  12963. image: {
  12964. source: "./media/characters/xanthos/foot.svg"
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6 + 5 / 12, "feet"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Normal+",
  12976. height: math.unit(6, "meters")
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(40, "feet")
  12981. },
  12982. {
  12983. name: "Macro+",
  12984. height: math.unit(200, "meters")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(20, "km")
  12989. },
  12990. {
  12991. name: "Megamacro+",
  12992. height: math.unit(100, "km")
  12993. },
  12994. {
  12995. name: "Gigamacro",
  12996. height: math.unit(200, "megameters")
  12997. },
  12998. {
  12999. name: "Gigamacro+",
  13000. height: math.unit(1.5, "gigameters")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(6 + 3 / 12, "feet"),
  13009. weight: math.unit(215, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/grynn/front.svg",
  13013. extra: 4627 / 4209,
  13014. bottom: 0.047
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Micro",
  13021. height: math.unit(6, "inches")
  13022. },
  13023. {
  13024. name: "Normal",
  13025. height: math.unit(6 + 3 / 12, "feet"),
  13026. default: true
  13027. },
  13028. {
  13029. name: "Big",
  13030. height: math.unit(104, "feet")
  13031. },
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(944, "feet")
  13035. },
  13036. {
  13037. name: "Macro+",
  13038. height: math.unit(9480, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro",
  13042. height: math.unit(78752, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro+",
  13046. height: math.unit(630128, "feet")
  13047. },
  13048. {
  13049. name: "Megamacro++",
  13050. height: math.unit(3150695, "feet")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(7 + 5 / 12, "feet"),
  13059. weight: math.unit(450, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/mocha-aura/front.svg",
  13063. extra: 1907 / 1817,
  13064. bottom: 0.04
  13065. }
  13066. },
  13067. back: {
  13068. height: math.unit(7 + 5 / 12, "feet"),
  13069. weight: math.unit(450, "lb"),
  13070. name: "Back",
  13071. image: {
  13072. source: "./media/characters/mocha-aura/back.svg",
  13073. extra: 1900 / 1825,
  13074. bottom: 0.045
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Nano",
  13081. height: math.unit(1, "nm")
  13082. },
  13083. {
  13084. name: "Megamicro",
  13085. height: math.unit(1, "mm")
  13086. },
  13087. {
  13088. name: "Micro",
  13089. height: math.unit(3, "inches")
  13090. },
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(7 + 5 / 12, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Macro",
  13098. height: math.unit(30, "feet")
  13099. },
  13100. {
  13101. name: "Megamacro",
  13102. height: math.unit(3500, "feet")
  13103. },
  13104. {
  13105. name: "Teramacro",
  13106. height: math.unit(500000, "miles")
  13107. },
  13108. {
  13109. name: "Petamacro",
  13110. height: math.unit(50000000000000000, "parsecs")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/ilisha-devya/front.svg",
  13123. extra: 1053/1049,
  13124. bottom: 270/1323
  13125. }
  13126. },
  13127. back: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(150, "lb"),
  13130. name: "Back",
  13131. image: {
  13132. source: "./media/characters/ilisha-devya/back.svg",
  13133. extra: 1131/1128,
  13134. bottom: 39/1170
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Macro",
  13141. height: math.unit(500, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Megamacro",
  13146. height: math.unit(10, "miles")
  13147. },
  13148. {
  13149. name: "Gigamacro",
  13150. height: math.unit(100000, "miles")
  13151. },
  13152. {
  13153. name: "Examacro",
  13154. height: math.unit(1e9, "lightyears")
  13155. },
  13156. {
  13157. name: "Omniversal",
  13158. height: math.unit(1e33, "lightyears")
  13159. },
  13160. {
  13161. name: "Beyond Infinite",
  13162. height: math.unit(1e100, "lightyears")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13168. {
  13169. Side: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Side",
  13173. image: {
  13174. source: "./media/characters/mira/side.svg",
  13175. extra: 900 / 799,
  13176. bottom: 0.02
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Human Size",
  13183. height: math.unit(6, "feet")
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(100, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Megamacro",
  13192. height: math.unit(10, "miles")
  13193. },
  13194. {
  13195. name: "Gigamacro",
  13196. height: math.unit(25000, "miles")
  13197. },
  13198. {
  13199. name: "Teramacro",
  13200. height: math.unit(300, "AU")
  13201. },
  13202. {
  13203. name: "Full Size",
  13204. height: math.unit(4.5e10, "lightyears")
  13205. },
  13206. ]
  13207. ))
  13208. characterMakers.push(() => makeCharacter(
  13209. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13210. {
  13211. front: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Front",
  13215. image: {
  13216. source: "./media/characters/holly/front.svg",
  13217. extra: 639 / 606
  13218. }
  13219. },
  13220. back: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Back",
  13224. image: {
  13225. source: "./media/characters/holly/back.svg",
  13226. extra: 623 / 598
  13227. }
  13228. },
  13229. frontWorking: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front (Working)",
  13233. image: {
  13234. source: "./media/characters/holly/front-working.svg",
  13235. extra: 607 / 577,
  13236. bottom: 0.048
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Normal",
  13243. height: math.unit(12 + 3 / 12, "feet"),
  13244. default: true
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/porter/front.svg",
  13257. extra: 1,
  13258. bottom: 0.01
  13259. }
  13260. },
  13261. frontRobes: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front (Robes)",
  13265. image: {
  13266. source: "./media/characters/porter/front-robes.svg",
  13267. extra: 1.01,
  13268. bottom: 0.01
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(11 + 9 / 12, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13282. {
  13283. legendary: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Legendary",
  13287. image: {
  13288. source: "./media/characters/lucy/legendary.svg",
  13289. extra: 1355 / 1100,
  13290. bottom: 0.045
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Legendary",
  13297. height: math.unit(86882 * 2, "miles"),
  13298. default: true
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/drusilla/front.svg",
  13311. extra: 678 / 635,
  13312. bottom: 0.03
  13313. }
  13314. },
  13315. back: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Back",
  13319. image: {
  13320. source: "./media/characters/drusilla/back.svg",
  13321. extra: 678 / 635,
  13322. bottom: 0.005
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(100, "feet")
  13330. },
  13331. {
  13332. name: "Canon Height",
  13333. height: math.unit(2000, "feet"),
  13334. default: true
  13335. },
  13336. ]
  13337. ))
  13338. characterMakers.push(() => makeCharacter(
  13339. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13340. {
  13341. front: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(180, "lb"),
  13344. name: "Front",
  13345. image: {
  13346. source: "./media/characters/renard-thatch/front.svg",
  13347. extra: 2411 / 2275,
  13348. bottom: 0.01
  13349. }
  13350. },
  13351. frontPosing: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(180, "lb"),
  13354. name: "Front (Posing)",
  13355. image: {
  13356. source: "./media/characters/renard-thatch/front-posing.svg",
  13357. extra: 2381 / 2261,
  13358. bottom: 0.01
  13359. }
  13360. },
  13361. back: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(180, "lb"),
  13364. name: "Back",
  13365. image: {
  13366. source: "./media/characters/renard-thatch/back.svg",
  13367. extra: 2428 / 2288
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Micro",
  13374. height: math.unit(3, "inches")
  13375. },
  13376. {
  13377. name: "Default",
  13378. height: math.unit(6, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(75, "feet")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(1450, "feet"),
  13392. weight: math.unit(1.21e6, "tons"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/sekvra/front.svg",
  13396. extra: 1193/1190,
  13397. bottom: 78/1271
  13398. }
  13399. },
  13400. side: {
  13401. height: math.unit(1450, "feet"),
  13402. weight: math.unit(1.21e6, "tons"),
  13403. name: "Side",
  13404. image: {
  13405. source: "./media/characters/sekvra/side.svg",
  13406. extra: 1193/1190,
  13407. bottom: 52/1245
  13408. }
  13409. },
  13410. back: {
  13411. height: math.unit(1450, "feet"),
  13412. weight: math.unit(1.21e6, "tons"),
  13413. name: "Back",
  13414. image: {
  13415. source: "./media/characters/sekvra/back.svg",
  13416. extra: 1219/1216,
  13417. bottom: 21/1240
  13418. }
  13419. },
  13420. frontClothed: {
  13421. height: math.unit(1450, "feet"),
  13422. weight: math.unit(1.21e6, "tons"),
  13423. name: "Front (Clothed)",
  13424. image: {
  13425. source: "./media/characters/sekvra/front-clothed.svg",
  13426. extra: 1192/1189,
  13427. bottom: 79/1271
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Macro",
  13434. height: math.unit(1450, "feet"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(15000, "feet")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/carmine/front.svg",
  13452. extra: 1,
  13453. bottom: 0.035
  13454. }
  13455. },
  13456. frontArmor: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(150, "lb"),
  13459. name: "Front (Armor)",
  13460. image: {
  13461. source: "./media/characters/carmine/front-armor.svg",
  13462. extra: 1,
  13463. bottom: 0.035
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Large",
  13470. height: math.unit(1, "mile")
  13471. },
  13472. {
  13473. name: "Huge",
  13474. height: math.unit(40, "miles"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Colossal",
  13479. height: math.unit(2500, "miles")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/elyssia/front.svg",
  13492. extra: 2201 / 2035,
  13493. bottom: 0.05
  13494. }
  13495. },
  13496. frontClothed: {
  13497. height: math.unit(6, "feet"),
  13498. weight: math.unit(150, "lb"),
  13499. name: "Front (Clothed)",
  13500. image: {
  13501. source: "./media/characters/elyssia/front-clothed.svg",
  13502. extra: 2201 / 2035,
  13503. bottom: 0.05
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/elyssia/back.svg",
  13512. extra: 2201 / 2035,
  13513. bottom: 0.013
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Smaller",
  13520. height: math.unit(150, "feet")
  13521. },
  13522. {
  13523. name: "Standard",
  13524. height: math.unit(1400, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Distracted",
  13529. height: math.unit(15000, "feet")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(7 + 4/12, "feet"),
  13538. weight: math.unit(690, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/geno-maxwell/front.svg",
  13542. extra: 984/856,
  13543. bottom: 87/1071
  13544. }
  13545. },
  13546. back: {
  13547. height: math.unit(7 + 4/12, "feet"),
  13548. weight: math.unit(690, "lb"),
  13549. name: "Back",
  13550. image: {
  13551. source: "./media/characters/geno-maxwell/back.svg",
  13552. extra: 981/854,
  13553. bottom: 57/1038
  13554. }
  13555. },
  13556. frontCostume: {
  13557. height: math.unit(7 + 4/12, "feet"),
  13558. weight: math.unit(690, "lb"),
  13559. name: "Front (Costume)",
  13560. image: {
  13561. source: "./media/characters/geno-maxwell/front-costume.svg",
  13562. extra: 984/856,
  13563. bottom: 87/1071
  13564. }
  13565. },
  13566. backcostume: {
  13567. height: math.unit(7 + 4/12, "feet"),
  13568. weight: math.unit(690, "lb"),
  13569. name: "Back (Costume)",
  13570. image: {
  13571. source: "./media/characters/geno-maxwell/back-costume.svg",
  13572. extra: 981/854,
  13573. bottom: 57/1038
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Micro",
  13580. height: math.unit(3, "inches")
  13581. },
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(7 + 4 / 12, "feet"),
  13585. default: true
  13586. },
  13587. {
  13588. name: "Macro",
  13589. height: math.unit(220, "feet")
  13590. },
  13591. {
  13592. name: "Megamacro",
  13593. height: math.unit(11, "miles")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(7 + 4/12, "feet"),
  13602. weight: math.unit(750, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/regena-maxwell/front.svg",
  13606. extra: 984/856,
  13607. bottom: 87/1071
  13608. }
  13609. },
  13610. back: {
  13611. height: math.unit(7 + 4/12, "feet"),
  13612. weight: math.unit(750, "lb"),
  13613. name: "Back",
  13614. image: {
  13615. source: "./media/characters/regena-maxwell/back.svg",
  13616. extra: 981/854,
  13617. bottom: 57/1038
  13618. }
  13619. },
  13620. frontCostume: {
  13621. height: math.unit(7 + 4/12, "feet"),
  13622. weight: math.unit(750, "lb"),
  13623. name: "Front (Costume)",
  13624. image: {
  13625. source: "./media/characters/regena-maxwell/front-costume.svg",
  13626. extra: 984/856,
  13627. bottom: 87/1071
  13628. }
  13629. },
  13630. backcostume: {
  13631. height: math.unit(7 + 4/12, "feet"),
  13632. weight: math.unit(750, "lb"),
  13633. name: "Back (Costume)",
  13634. image: {
  13635. source: "./media/characters/regena-maxwell/back-costume.svg",
  13636. extra: 981/854,
  13637. bottom: 57/1038
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(7 + 4 / 12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(220, "feet")
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(11, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(150, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13666. extra: 860 / 690,
  13667. bottom: 0.03
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(1.7, "meters"),
  13675. default: true
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(150, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/quilly/front.svg",
  13688. extra: 890 / 776
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Gigamacro",
  13695. height: math.unit(404090, "miles"),
  13696. default: true
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(7 + 8 / 12, "feet"),
  13705. weight: math.unit(350, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/tempest/front.svg",
  13709. extra: 1175 / 1086,
  13710. bottom: 0.02
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(7 + 8 / 12, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13724. {
  13725. side: {
  13726. height: math.unit(4 + 5 / 12, "feet"),
  13727. weight: math.unit(80, "lb"),
  13728. name: "Side",
  13729. image: {
  13730. source: "./media/characters/rodger/side.svg",
  13731. extra: 1235 / 1118
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(1, "inch")
  13739. },
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(4 + 5 / 12, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Macro",
  13747. height: math.unit(120, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/danyel/front.svg",
  13760. extra: 1185 / 1123,
  13761. bottom: 0.05
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Shrunken",
  13768. height: math.unit(0.5, "mm")
  13769. },
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(1, "mm"),
  13773. default: true
  13774. },
  13775. {
  13776. name: "Upsized",
  13777. height: math.unit(5 + 5 / 12, "feet")
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(5 + 6 / 12, "feet"),
  13786. weight: math.unit(200, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/vivian-bijoux/front.svg",
  13790. extra: 1217/1209,
  13791. bottom: 76/1293
  13792. }
  13793. },
  13794. back: {
  13795. height: math.unit(5 + 6 / 12, "feet"),
  13796. weight: math.unit(200, "lb"),
  13797. name: "Back",
  13798. image: {
  13799. source: "./media/characters/vivian-bijoux/back.svg",
  13800. extra: 1214/1208,
  13801. bottom: 51/1265
  13802. }
  13803. },
  13804. dressed: {
  13805. height: math.unit(5 + 6 / 12, "feet"),
  13806. weight: math.unit(200, "lb"),
  13807. name: "Dressed",
  13808. image: {
  13809. source: "./media/characters/vivian-bijoux/dressed.svg",
  13810. extra: 1217/1209,
  13811. bottom: 76/1293
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(5 + 6 / 12, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Bad Dream",
  13823. height: math.unit(500, "feet")
  13824. },
  13825. {
  13826. name: "Nightmare",
  13827. height: math.unit(500, "miles")
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(6 + 1 / 12, "feet"),
  13836. weight: math.unit(260, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/zeta/front.svg",
  13840. extra: 1968 / 1889,
  13841. bottom: 0.06
  13842. }
  13843. },
  13844. back: {
  13845. height: math.unit(6 + 1 / 12, "feet"),
  13846. weight: math.unit(260, "lb"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/zeta/back.svg",
  13850. extra: 1944 / 1858,
  13851. bottom: 0.03
  13852. }
  13853. },
  13854. hand: {
  13855. height: math.unit(1.112, "feet"),
  13856. name: "Hand",
  13857. image: {
  13858. source: "./media/characters/zeta/hand.svg"
  13859. }
  13860. },
  13861. foot: {
  13862. height: math.unit(1.48, "feet"),
  13863. name: "Foot",
  13864. image: {
  13865. source: "./media/characters/zeta/foot.svg"
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(6, "inches")
  13873. },
  13874. {
  13875. name: "Normal",
  13876. height: math.unit(6 + 1 / 12, "feet"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(20, "feet")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(150, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/jamie-larsen/front.svg",
  13894. extra: 962 / 933,
  13895. bottom: 0.02
  13896. }
  13897. },
  13898. back: {
  13899. height: math.unit(6, "feet"),
  13900. weight: math.unit(150, "lb"),
  13901. name: "Back",
  13902. image: {
  13903. source: "./media/characters/jamie-larsen/back.svg",
  13904. extra: 997 / 946
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Macro",
  13911. height: math.unit(28 + 7 / 12, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro+",
  13916. height: math.unit(180, "feet")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(10, "miles")
  13921. },
  13922. {
  13923. name: "Gigamacro",
  13924. height: math.unit(200000, "miles")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(120, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/vance/front.svg",
  13937. extra: 1980 / 1890,
  13938. bottom: 0.09
  13939. }
  13940. },
  13941. back: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(120, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/vance/back.svg",
  13947. extra: 2081 / 1994,
  13948. bottom: 0.014
  13949. }
  13950. },
  13951. hand: {
  13952. height: math.unit(0.88, "feet"),
  13953. name: "Hand",
  13954. image: {
  13955. source: "./media/characters/vance/hand.svg"
  13956. }
  13957. },
  13958. foot: {
  13959. height: math.unit(0.64, "feet"),
  13960. name: "Foot",
  13961. image: {
  13962. source: "./media/characters/vance/foot.svg"
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Small",
  13969. height: math.unit(90, "feet"),
  13970. default: true
  13971. },
  13972. {
  13973. name: "Macro",
  13974. height: math.unit(100, "meters")
  13975. },
  13976. {
  13977. name: "Megamacro",
  13978. height: math.unit(15, "miles")
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(6, "feet"),
  13987. weight: math.unit(180, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/xochitl/front.svg",
  13991. extra: 2297 / 2261,
  13992. bottom: 0.065
  13993. }
  13994. },
  13995. back: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(180, "lb"),
  13998. name: "Back",
  13999. image: {
  14000. source: "./media/characters/xochitl/back.svg",
  14001. extra: 2386 / 2354,
  14002. bottom: 0.01
  14003. }
  14004. },
  14005. foot: {
  14006. height: math.unit(6 / 5 * 1.15, "feet"),
  14007. weight: math.unit(150, "lb"),
  14008. name: "Foot",
  14009. image: {
  14010. source: "./media/characters/xochitl/foot.svg"
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Macro",
  14017. height: math.unit(80, "feet")
  14018. },
  14019. {
  14020. name: "Macro+",
  14021. height: math.unit(400, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Gigamacro",
  14026. height: math.unit(80000, "miles")
  14027. },
  14028. {
  14029. name: "Gigamacro+",
  14030. height: math.unit(400000, "miles")
  14031. },
  14032. {
  14033. name: "Teramacro",
  14034. height: math.unit(300, "AU")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(150, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/vincent/front.svg",
  14047. extra: 1130 / 1080,
  14048. bottom: 0.055
  14049. }
  14050. },
  14051. beak: {
  14052. height: math.unit(6 * 0.1, "feet"),
  14053. name: "Beak",
  14054. image: {
  14055. source: "./media/characters/vincent/beak.svg"
  14056. }
  14057. },
  14058. hand: {
  14059. height: math.unit(6 * 0.85, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Hand",
  14062. image: {
  14063. source: "./media/characters/vincent/hand.svg"
  14064. }
  14065. },
  14066. foot: {
  14067. height: math.unit(6 * 0.19, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Foot",
  14070. image: {
  14071. source: "./media/characters/vincent/foot.svg"
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Base",
  14078. height: math.unit(6 + 5 / 12, "feet"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(300, "feet")
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(2, "miles")
  14088. },
  14089. {
  14090. name: "Gigamacro",
  14091. height: math.unit(1000, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(2, "meters"),
  14100. weight: math.unit(500, "kg"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/coatl/front.svg",
  14104. extra: 3948 / 3500,
  14105. bottom: 0.082
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(4, "meters")
  14113. },
  14114. {
  14115. name: "Macro",
  14116. height: math.unit(100, "meters"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro+",
  14121. height: math.unit(300, "meters")
  14122. },
  14123. {
  14124. name: "Megamacro",
  14125. height: math.unit(3, "gigameters")
  14126. },
  14127. {
  14128. name: "Megamacro+",
  14129. height: math.unit(300, "terameters")
  14130. },
  14131. {
  14132. name: "Megamacro++",
  14133. height: math.unit(3, "lightyears")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(50, "kg"),
  14143. name: "front",
  14144. image: {
  14145. source: "./media/characters/shiroryu/front.svg",
  14146. extra: 1990 / 1935
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Mortal Mingling",
  14153. height: math.unit(3, "meters")
  14154. },
  14155. {
  14156. name: "Kaiju-ish",
  14157. height: math.unit(250, "meters")
  14158. },
  14159. {
  14160. name: "Somewhat Godly",
  14161. height: math.unit(400, "km"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Planetary",
  14166. height: math.unit(300, "megameters")
  14167. },
  14168. {
  14169. name: "Galaxy-dwarfing",
  14170. height: math.unit(450, "kiloparsecs")
  14171. },
  14172. {
  14173. name: "Universe Eater",
  14174. height: math.unit(150, "gigaparsecs")
  14175. },
  14176. {
  14177. name: "Almost Immeasurable",
  14178. height: math.unit(1.3e266, "yottaparsecs")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/umeko/front.svg",
  14191. extra: 1,
  14192. bottom: 0.019
  14193. }
  14194. },
  14195. frontArmored: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Front (Armored)",
  14199. image: {
  14200. source: "./media/characters/umeko/front-armored.svg",
  14201. extra: 1,
  14202. bottom: 0.021
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(220, "feet"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Guardian Dragon",
  14214. height: math.unit(50, "miles")
  14215. },
  14216. {
  14217. name: "Cosmic",
  14218. height: math.unit(800000, "miles")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/cassidy/front.svg",
  14231. extra: 810/808,
  14232. bottom: 41/851
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Canon Height",
  14239. height: math.unit(120, "feet"),
  14240. default: true
  14241. },
  14242. {
  14243. name: "Macro+",
  14244. height: math.unit(400, "feet")
  14245. },
  14246. {
  14247. name: "Macro++",
  14248. height: math.unit(4000, "feet")
  14249. },
  14250. {
  14251. name: "Megamacro",
  14252. height: math.unit(3, "miles")
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/isaac/front.svg",
  14265. extra: 896 / 815,
  14266. bottom: 0.11
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Human Size",
  14273. height: math.unit(8, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(400, "feet")
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(50, "miles")
  14283. },
  14284. {
  14285. name: "Canon Height",
  14286. height: math.unit(200, "AU")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(72, "kg"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/sleekit/front.svg",
  14299. extra: 4693 / 4487,
  14300. bottom: 0.012
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Minimum Height",
  14307. height: math.unit(10, "meters")
  14308. },
  14309. {
  14310. name: "Smaller",
  14311. height: math.unit(25, "meters")
  14312. },
  14313. {
  14314. name: "Larger",
  14315. height: math.unit(38, "meters"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Maximum height",
  14320. height: math.unit(100, "meters")
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/nillia/front.svg",
  14333. extra: 2195 / 2037,
  14334. bottom: 0.005
  14335. }
  14336. },
  14337. back: {
  14338. height: math.unit(6, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Back",
  14341. image: {
  14342. source: "./media/characters/nillia/back.svg",
  14343. extra: 2195 / 2037,
  14344. bottom: 0.005
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Canon Height",
  14351. height: math.unit(489, "feet"),
  14352. default: true
  14353. }
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(150, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/mesmyriza/front.svg",
  14365. extra: 2067 / 1784,
  14366. bottom: 0.035
  14367. }
  14368. },
  14369. foot: {
  14370. height: math.unit(6 / (250 / 35), "feet"),
  14371. name: "Foot",
  14372. image: {
  14373. source: "./media/characters/mesmyriza/foot.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(457, "meters"),
  14381. default: true
  14382. },
  14383. {
  14384. name: "Megamacro",
  14385. height: math.unit(8, "megameters")
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(6, "feet"),
  14394. weight: math.unit(250, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/saudade/front.svg",
  14398. extra: 1172 / 1139,
  14399. bottom: 0.035
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Micro",
  14406. height: math.unit(3, "inches")
  14407. },
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(6, "feet"),
  14411. default: true
  14412. },
  14413. {
  14414. name: "Macro",
  14415. height: math.unit(50, "feet")
  14416. },
  14417. {
  14418. name: "Megamacro",
  14419. height: math.unit(2800, "feet")
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(5 + 4 / 12, "feet"),
  14428. weight: math.unit(100, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/keireer/front.svg",
  14432. extra: 716 / 666,
  14433. bottom: 0.05
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(5 + 4 / 12, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(90, "kg"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/mirja/front.svg",
  14454. extra: 1789 / 1683,
  14455. bottom: 0.05
  14456. }
  14457. },
  14458. frontDressed: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(90, "lb"),
  14461. name: "Front (Dressed)",
  14462. image: {
  14463. source: "./media/characters/mirja/front-dressed.svg",
  14464. extra: 1789 / 1683,
  14465. bottom: 0.05
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(90, "lb"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/mirja/back.svg",
  14474. extra: 953 / 917,
  14475. bottom: 0.017
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "\"Incognito\"",
  14482. height: math.unit(3, "meters")
  14483. },
  14484. {
  14485. name: "Strolling Size",
  14486. height: math.unit(15, "km")
  14487. },
  14488. {
  14489. name: "Larger Strolling Size",
  14490. height: math.unit(400, "km")
  14491. },
  14492. {
  14493. name: "Preferred Size",
  14494. height: math.unit(5000, "km")
  14495. },
  14496. {
  14497. name: "True Size",
  14498. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14499. default: true
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(15, "feet"),
  14508. weight: math.unit(880, "kg"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/nightraver/front.svg",
  14512. extra: 2444 / 2160,
  14513. bottom: 0.027
  14514. }
  14515. },
  14516. back: {
  14517. height: math.unit(15, "feet"),
  14518. weight: math.unit(880, "kg"),
  14519. name: "Back",
  14520. image: {
  14521. source: "./media/characters/nightraver/back.svg",
  14522. extra: 2309 / 2180,
  14523. bottom: 0.005
  14524. }
  14525. },
  14526. sole: {
  14527. height: math.unit(2.878, "feet"),
  14528. name: "Sole",
  14529. image: {
  14530. source: "./media/characters/nightraver/sole.svg"
  14531. }
  14532. },
  14533. foot: {
  14534. height: math.unit(2.285, "feet"),
  14535. name: "Foot",
  14536. image: {
  14537. source: "./media/characters/nightraver/foot.svg"
  14538. }
  14539. },
  14540. maw: {
  14541. height: math.unit(2.67, "feet"),
  14542. name: "Maw",
  14543. image: {
  14544. source: "./media/characters/nightraver/maw.svg"
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Micro",
  14551. height: math.unit(1, "cm")
  14552. },
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(15, "feet"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(300, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(300, "miles")
  14565. },
  14566. {
  14567. name: "Gigamacro",
  14568. height: math.unit(10000, "miles")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14574. {
  14575. side: {
  14576. height: math.unit(2, "inches"),
  14577. weight: math.unit(5, "grams"),
  14578. name: "Side",
  14579. image: {
  14580. source: "./media/characters/arc/side.svg"
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Micro",
  14587. height: math.unit(2, "inches"),
  14588. default: true
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(1.1938, "meters"),
  14597. weight: math.unit(54, "kg"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/nebula-shahar/front.svg",
  14601. extra: 1642 / 1436,
  14602. bottom: 0.06
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Megamicro",
  14609. height: math.unit(0.3, "mm")
  14610. },
  14611. {
  14612. name: "Micro",
  14613. height: math.unit(3, "cm")
  14614. },
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(138, "cm"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Macro",
  14622. height: math.unit(30, "m")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(5.24, "feet"),
  14631. weight: math.unit(150, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/shayla/front.svg",
  14635. extra: 1512 / 1414,
  14636. bottom: 0.01
  14637. }
  14638. },
  14639. back: {
  14640. height: math.unit(5.24, "feet"),
  14641. weight: math.unit(150, "lb"),
  14642. name: "Back",
  14643. image: {
  14644. source: "./media/characters/shayla/back.svg",
  14645. extra: 1512 / 1414
  14646. }
  14647. },
  14648. hand: {
  14649. height: math.unit(0.7781496062992126, "feet"),
  14650. name: "Hand",
  14651. image: {
  14652. source: "./media/characters/shayla/hand.svg"
  14653. }
  14654. },
  14655. foot: {
  14656. height: math.unit(1.4206036745406823, "feet"),
  14657. name: "Foot",
  14658. image: {
  14659. source: "./media/characters/shayla/foot.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Micro",
  14666. height: math.unit(0.32, "feet")
  14667. },
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(5.24, "feet"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(492.12, "feet")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(186.41, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2.2, "m"),
  14688. weight: math.unit(120, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/pia-jr/front.svg",
  14692. extra: 1000 / 970,
  14693. bottom: 0.035
  14694. }
  14695. },
  14696. hand: {
  14697. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14698. name: "Hand",
  14699. image: {
  14700. source: "./media/characters/pia-jr/hand.svg"
  14701. }
  14702. },
  14703. paw: {
  14704. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14705. name: "Paw",
  14706. image: {
  14707. source: "./media/characters/pia-jr/paw.svg"
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Micro",
  14714. height: math.unit(1.2, "cm")
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(2.2, "m"),
  14719. default: true
  14720. },
  14721. {
  14722. name: "Macro",
  14723. height: math.unit(180, "m")
  14724. },
  14725. {
  14726. name: "Megamacro",
  14727. height: math.unit(420, "km")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(2, "m"),
  14736. weight: math.unit(115, "kg"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/pia-sr/front.svg",
  14740. extra: 760 / 730,
  14741. bottom: 0.015
  14742. }
  14743. },
  14744. back: {
  14745. height: math.unit(2, "m"),
  14746. weight: math.unit(115, "kg"),
  14747. name: "Back",
  14748. image: {
  14749. source: "./media/characters/pia-sr/back.svg",
  14750. extra: 760 / 730,
  14751. bottom: 0.01
  14752. }
  14753. },
  14754. hand: {
  14755. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14756. name: "Hand",
  14757. image: {
  14758. source: "./media/characters/pia-sr/hand.svg"
  14759. }
  14760. },
  14761. foot: {
  14762. height: math.unit(1.83, "feet"),
  14763. name: "Foot",
  14764. image: {
  14765. source: "./media/characters/pia-sr/foot.svg"
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Micro",
  14772. height: math.unit(88, "mm")
  14773. },
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(2, "m"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(200, "m")
  14782. },
  14783. {
  14784. name: "Megamacro",
  14785. height: math.unit(420, "km")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(8 + 2 / 12, "feet"),
  14794. weight: math.unit(300, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/kibibyte/front.svg",
  14798. extra: 2221 / 2098,
  14799. bottom: 0.04
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(8 + 2 / 12, "feet"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Socialable Macro",
  14811. height: math.unit(50, "feet")
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(300, "feet")
  14816. },
  14817. {
  14818. name: "Megamacro",
  14819. height: math.unit(500, "miles")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(150, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/felix/front.svg",
  14832. extra: 762 / 722,
  14833. bottom: 0.02
  14834. }
  14835. },
  14836. frontClothed: {
  14837. height: math.unit(6, "feet"),
  14838. weight: math.unit(150, "lb"),
  14839. name: "Front (Clothed)",
  14840. image: {
  14841. source: "./media/characters/felix/front-clothed.svg",
  14842. extra: 762 / 722,
  14843. bottom: 0.02
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(6 + 8 / 12, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(2600, "feet")
  14856. },
  14857. {
  14858. name: "Megamacro",
  14859. height: math.unit(450, "miles")
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(6 + 1 / 12, "feet"),
  14868. weight: math.unit(250, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/tobo/front.svg",
  14872. extra: 608 / 586,
  14873. bottom: 0.023
  14874. }
  14875. },
  14876. back: {
  14877. height: math.unit(6 + 1 / 12, "feet"),
  14878. weight: math.unit(250, "lb"),
  14879. name: "Back",
  14880. image: {
  14881. source: "./media/characters/tobo/back.svg",
  14882. extra: 608 / 586
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Nano",
  14889. height: math.unit(2, "nm")
  14890. },
  14891. {
  14892. name: "Megamicro",
  14893. height: math.unit(0.1, "mm")
  14894. },
  14895. {
  14896. name: "Micro",
  14897. height: math.unit(1, "inch"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Human-sized",
  14902. height: math.unit(6 + 1 / 12, "feet")
  14903. },
  14904. {
  14905. name: "Macro",
  14906. height: math.unit(250, "feet")
  14907. },
  14908. {
  14909. name: "Megamacro",
  14910. height: math.unit(75, "miles")
  14911. },
  14912. {
  14913. name: "Texas-sized",
  14914. height: math.unit(750, "miles")
  14915. },
  14916. {
  14917. name: "Teramacro",
  14918. height: math.unit(50000, "miles")
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(269, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/danny-kapowsky/front.svg",
  14931. extra: 766 / 736,
  14932. bottom: 0.044
  14933. }
  14934. },
  14935. back: {
  14936. height: math.unit(6, "feet"),
  14937. weight: math.unit(269, "lb"),
  14938. name: "Back",
  14939. image: {
  14940. source: "./media/characters/danny-kapowsky/back.svg",
  14941. extra: 797 / 760,
  14942. bottom: 0.025
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Macro",
  14949. height: math.unit(150, "feet"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Macro+",
  14954. height: math.unit(200, "feet")
  14955. },
  14956. {
  14957. name: "Macro++",
  14958. height: math.unit(300, "feet")
  14959. },
  14960. {
  14961. name: "Macro+++",
  14962. height: math.unit(400, "feet")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14968. {
  14969. side: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(170, "lb"),
  14972. name: "Side",
  14973. image: {
  14974. source: "./media/characters/finn/side.svg",
  14975. extra: 1953 / 1807,
  14976. bottom: 0.057
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Megamacro",
  14983. height: math.unit(14445, "feet"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(5 + 6 / 12, "feet"),
  14993. weight: math.unit(125, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/roy/front.svg",
  14997. extra: 1,
  14998. bottom: 0.11
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Micro",
  15005. height: math.unit(3, "inches"),
  15006. default: true
  15007. },
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(5 + 6 / 12, "feet")
  15011. },
  15012. {
  15013. name: "Lesser Macro",
  15014. height: math.unit(60, "feet")
  15015. },
  15016. {
  15017. name: "Greater Macro",
  15018. height: math.unit(120, "feet")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(100, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/aevsivs/front.svg",
  15031. extra: 1,
  15032. bottom: 0.03
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(100, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/aevsivs/back.svg"
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Micro",
  15047. height: math.unit(2, "inches"),
  15048. default: true
  15049. },
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(5, "feet")
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(5 + 7 / 12, "feet"),
  15061. weight: math.unit(159, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/hildegard/front.svg",
  15065. extra: 289 / 269,
  15066. bottom: 7.63 / 297.8
  15067. }
  15068. },
  15069. back: {
  15070. height: math.unit(5 + 7 / 12, "feet"),
  15071. weight: math.unit(159, "lb"),
  15072. name: "Back",
  15073. image: {
  15074. source: "./media/characters/hildegard/back.svg",
  15075. extra: 280 / 260,
  15076. bottom: 2.3 / 282
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5 + 7 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15090. {
  15091. bernard: {
  15092. height: math.unit(2 + 7 / 12, "feet"),
  15093. weight: math.unit(66, "lb"),
  15094. name: "Bernard",
  15095. rename: true,
  15096. image: {
  15097. source: "./media/characters/bernard-wilder/bernard.svg",
  15098. extra: 192 / 128,
  15099. bottom: 0.05
  15100. }
  15101. },
  15102. wilder: {
  15103. height: math.unit(5 + 8 / 12, "feet"),
  15104. weight: math.unit(143, "lb"),
  15105. name: "Wilder",
  15106. rename: true,
  15107. image: {
  15108. source: "./media/characters/bernard-wilder/wilder.svg",
  15109. extra: 361 / 312,
  15110. bottom: 0.02
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(2 + 7 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15124. {
  15125. anthro: {
  15126. height: math.unit(6 + 1 / 12, "feet"),
  15127. weight: math.unit(155, "lb"),
  15128. name: "Anthro",
  15129. image: {
  15130. source: "./media/characters/hearth/anthro.svg",
  15131. extra: 1178/1136,
  15132. bottom: 28/1206
  15133. }
  15134. },
  15135. feral: {
  15136. height: math.unit(3.78, "feet"),
  15137. weight: math.unit(35, "kg"),
  15138. name: "Feral",
  15139. image: {
  15140. source: "./media/characters/hearth/feral.svg",
  15141. extra: 153 / 135,
  15142. bottom: 0.03
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(6 + 1 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(182, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/ingrid/front.svg",
  15163. extra: 294 / 268,
  15164. bottom: 0.027
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(6, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15178. {
  15179. eevee: {
  15180. height: math.unit(2 + 10 / 12, "feet"),
  15181. weight: math.unit(86, "lb"),
  15182. name: "Malgam",
  15183. image: {
  15184. source: "./media/characters/malgam/eevee.svg",
  15185. extra: 952/784,
  15186. bottom: 38/990
  15187. }
  15188. },
  15189. sylveon: {
  15190. height: math.unit(4, "feet"),
  15191. weight: math.unit(101, "lb"),
  15192. name: "Future Malgam",
  15193. rename: true,
  15194. image: {
  15195. source: "./media/characters/malgam/sylveon.svg",
  15196. extra: 371 / 325,
  15197. bottom: 0.015
  15198. }
  15199. },
  15200. gigantamax: {
  15201. height: math.unit(50, "feet"),
  15202. name: "Gigantamax Malgam",
  15203. rename: true,
  15204. image: {
  15205. source: "./media/characters/malgam/gigantamax.svg"
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(2 + 10 / 12, "feet"),
  15213. default: true
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(5 + 11 / 12, "feet"),
  15222. weight: math.unit(188, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/fleur/front.svg",
  15226. extra: 309 / 283,
  15227. bottom: 0.007
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(5 + 11 / 12, "feet"),
  15235. default: true
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(5 + 4 / 12, "feet"),
  15244. weight: math.unit(122, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/jude/front.svg",
  15248. extra: 288 / 273,
  15249. bottom: 0.03
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(5 + 4 / 12, "feet"),
  15257. default: true
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(5 + 11 / 12, "feet"),
  15266. weight: math.unit(190, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/seara/front.svg",
  15270. extra: 1,
  15271. bottom: 0.05
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(5 + 11 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(16 + 5 / 12, "feet"),
  15288. weight: math.unit(524, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/caspian/front.svg",
  15292. extra: 1,
  15293. bottom: 0.04
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(16 + 5 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(5 + 7 / 12, "feet"),
  15310. weight: math.unit(170, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/mika/front.svg",
  15314. extra: 1,
  15315. bottom: 0.016
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(5 + 7 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(6 + 2 / 12, "feet"),
  15332. weight: math.unit(268, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/sol/front.svg",
  15336. extra: 247 / 231,
  15337. bottom: 0.05
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(6 + 2 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15351. {
  15352. buizel: {
  15353. height: math.unit(2 + 5 / 12, "feet"),
  15354. weight: math.unit(87, "lb"),
  15355. name: "Buizel",
  15356. image: {
  15357. source: "./media/characters/umiko/buizel.svg",
  15358. extra: 172 / 157,
  15359. bottom: 0.01
  15360. }
  15361. },
  15362. floatzel: {
  15363. height: math.unit(5 + 9 / 12, "feet"),
  15364. weight: math.unit(250, "lb"),
  15365. name: "Floatzel",
  15366. image: {
  15367. source: "./media/characters/umiko/floatzel.svg",
  15368. extra: 262 / 248
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(2 + 5 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(6 + 2 / 12, "feet"),
  15385. weight: math.unit(146, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/iliac/front.svg",
  15389. extra: 389 / 365,
  15390. bottom: 0.035
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(6 + 2 / 12, "feet"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(6, "feet"),
  15407. weight: math.unit(170, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/topaz/front.svg",
  15411. extra: 317 / 303,
  15412. bottom: 0.055
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(6, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(5 + 11 / 12, "feet"),
  15429. weight: math.unit(144, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/gabriel/front.svg",
  15433. extra: 285 / 262,
  15434. bottom: 0.004
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(5 + 11 / 12, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15448. {
  15449. side: {
  15450. height: math.unit(6 + 5 / 12, "feet"),
  15451. weight: math.unit(300, "lb"),
  15452. name: "Side",
  15453. image: {
  15454. source: "./media/characters/tempest-suicune/side.svg",
  15455. extra: 195 / 154,
  15456. bottom: 0.04
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(6 + 5 / 12, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(7 + 2 / 12, "feet"),
  15473. weight: math.unit(322, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/vulcan/front.svg",
  15477. extra: 154 / 147,
  15478. bottom: 0.04
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Normal",
  15485. height: math.unit(7 + 2 / 12, "feet"),
  15486. default: true
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(5 + 10 / 12, "feet"),
  15495. weight: math.unit(264, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/gault/front.svg",
  15499. extra: 161 / 140,
  15500. bottom: 0.028
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(5 + 10 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/shard/front.svg",
  15521. extra: 273 / 238,
  15522. bottom: 0.02
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(3 + 6 / 12, "feet"),
  15530. default: true
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(5 + 11 / 12, "feet"),
  15539. weight: math.unit(146, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/ashe/front.svg",
  15543. extra: 400 / 373,
  15544. bottom: 0.01
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(5 + 11 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(5 + 5 / 12, "feet"),
  15561. weight: math.unit(135, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/beatrix/front.svg",
  15565. extra: 392 / 379,
  15566. bottom: 0.01
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(6, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6 + 2/12, "feet"),
  15583. weight: math.unit(135, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/ignatius/front.svg",
  15587. extra: 1380/1259,
  15588. bottom: 27/1407
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(6 + 2/12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6 + 2 / 12, "feet"),
  15605. weight: math.unit(138, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/mei-li/front.svg",
  15609. extra: 237 / 229,
  15610. bottom: 0.03
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(2 + 4 / 12, "feet"),
  15627. weight: math.unit(62, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/puru/front.svg",
  15631. extra: 206 / 149,
  15632. bottom: 0.06
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(2 + 4 / 12, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15646. {
  15647. anthro: {
  15648. height: math.unit(5 + 8/12, "feet"),
  15649. weight: math.unit(200, "lb"),
  15650. energyNeed: math.unit(2000, "kcal"),
  15651. name: "Anthro",
  15652. image: {
  15653. source: "./media/characters/kee/anthro.svg",
  15654. extra: 3251/3184,
  15655. bottom: 250/3501
  15656. }
  15657. },
  15658. taur: {
  15659. height: math.unit(11, "feet"),
  15660. weight: math.unit(500, "lb"),
  15661. energyNeed: math.unit(5000, "kcal"),
  15662. name: "Taur",
  15663. image: {
  15664. source: "./media/characters/kee/taur.svg",
  15665. extra: 1362/1320,
  15666. bottom: 83/1445
  15667. }
  15668. },
  15669. },
  15670. [
  15671. {
  15672. name: "Normal",
  15673. height: math.unit(5 + 8/12, "feet"),
  15674. default: true
  15675. },
  15676. {
  15677. name: "Macro",
  15678. height: math.unit(35, "feet")
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15684. {
  15685. anthro: {
  15686. height: math.unit(7, "feet"),
  15687. weight: math.unit(190, "lb"),
  15688. name: "Anthro",
  15689. image: {
  15690. source: "./media/characters/cobalt-dracha/anthro.svg",
  15691. extra: 231 / 225,
  15692. bottom: 0.04
  15693. }
  15694. },
  15695. feral: {
  15696. height: math.unit(9 + 7 / 12, "feet"),
  15697. weight: math.unit(294, "lb"),
  15698. name: "Feral",
  15699. image: {
  15700. source: "./media/characters/cobalt-dracha/feral.svg",
  15701. extra: 692 / 633,
  15702. bottom: 0.05
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(7, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15716. {
  15717. fallen: {
  15718. height: math.unit(11 + 8 / 12, "feet"),
  15719. weight: math.unit(485, "lb"),
  15720. name: "Java (Fallen)",
  15721. rename: true,
  15722. image: {
  15723. source: "./media/characters/java/fallen.svg",
  15724. extra: 226 / 208,
  15725. bottom: 0.005
  15726. }
  15727. },
  15728. godkin: {
  15729. height: math.unit(10 + 6 / 12, "feet"),
  15730. weight: math.unit(328, "lb"),
  15731. name: "Java (Godkin)",
  15732. rename: true,
  15733. image: {
  15734. source: "./media/characters/java/godkin.svg",
  15735. extra: 1104/1068,
  15736. bottom: 36/1140
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(11 + 8 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(5 + 9 / 12, "feet"),
  15753. weight: math.unit(170, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/purna/front.svg",
  15757. extra: 239 / 229,
  15758. bottom: 0.01
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(5 + 9 / 12, "feet"),
  15766. default: true
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(5 + 9 / 12, "feet"),
  15775. weight: math.unit(142, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/kuva/front.svg",
  15779. extra: 281 / 271,
  15780. bottom: 0.006
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(5 + 9 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15794. {
  15795. anthro: {
  15796. height: math.unit(9 + 2 / 12, "feet"),
  15797. weight: math.unit(270, "lb"),
  15798. name: "Anthro",
  15799. image: {
  15800. source: "./media/characters/embra/anthro.svg",
  15801. extra: 200 / 187,
  15802. bottom: 0.02
  15803. }
  15804. },
  15805. feral: {
  15806. height: math.unit(18 + 8 / 12, "feet"),
  15807. weight: math.unit(576, "lb"),
  15808. name: "Feral",
  15809. image: {
  15810. source: "./media/characters/embra/feral.svg",
  15811. extra: 152 / 137,
  15812. bottom: 0.037
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(9 + 2 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15826. {
  15827. anthro: {
  15828. height: math.unit(10 + 9 / 12, "feet"),
  15829. weight: math.unit(224, "lb"),
  15830. name: "Anthro",
  15831. image: {
  15832. source: "./media/characters/grottos/anthro.svg",
  15833. extra: 350 / 332,
  15834. bottom: 0.045
  15835. }
  15836. },
  15837. feral: {
  15838. height: math.unit(20 + 7 / 12, "feet"),
  15839. weight: math.unit(629, "lb"),
  15840. name: "Feral",
  15841. image: {
  15842. source: "./media/characters/grottos/feral.svg",
  15843. extra: 207 / 190,
  15844. bottom: 0.05
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(10 + 9 / 12, "feet"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15858. {
  15859. anthro: {
  15860. height: math.unit(9 + 6 / 12, "feet"),
  15861. weight: math.unit(298, "lb"),
  15862. name: "Anthro",
  15863. image: {
  15864. source: "./media/characters/frifna/anthro.svg",
  15865. extra: 282 / 269,
  15866. bottom: 0.015
  15867. }
  15868. },
  15869. feral: {
  15870. height: math.unit(16 + 2 / 12, "feet"),
  15871. weight: math.unit(624, "lb"),
  15872. name: "Feral",
  15873. image: {
  15874. source: "./media/characters/frifna/feral.svg"
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(9 + 6 / 12, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6 + 2 / 12, "feet"),
  15891. weight: math.unit(168, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/elise/front.svg",
  15895. extra: 276 / 271
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(6 + 2 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(5 + 10 / 12, "feet"),
  15912. weight: math.unit(210, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/glade/front.svg",
  15916. extra: 258 / 247,
  15917. bottom: 0.008
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(5 + 10 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(5 + 10 / 12, "feet"),
  15934. weight: math.unit(129, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/rina/front.svg",
  15938. extra: 266 / 255,
  15939. bottom: 0.005
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(5 + 10 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(6 + 1 / 12, "feet"),
  15956. weight: math.unit(192, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/veronica/front.svg",
  15960. extra: 319 / 309,
  15961. bottom: 0.005
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(6 + 1 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(9 + 3 / 12, "feet"),
  15978. weight: math.unit(1100, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/braxton/front.svg",
  15982. extra: 1057 / 984,
  15983. bottom: 0.05
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(9 + 3 / 12, "feet")
  15991. },
  15992. {
  15993. name: "Giant",
  15994. height: math.unit(300, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(700, "feet")
  16000. },
  16001. {
  16002. name: "Megamacro",
  16003. height: math.unit(6000, "feet")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6 + 7 / 12, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/blue-feyonics/front.svg",
  16016. extra: 1403 / 1306,
  16017. bottom: 0.047
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(6 + 7 / 12, "feet"),
  16025. default: true
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(1.8, "meters"),
  16034. weight: math.unit(60, "kg"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/maxwell/front.svg",
  16038. extra: 2060 / 1873
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Micro",
  16045. height: math.unit(1, "mm")
  16046. },
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(1.8, "meter"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(30, "meters")
  16055. },
  16056. {
  16057. name: "Megamacro",
  16058. height: math.unit(10, "km")
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(150, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/jack/front.svg",
  16071. extra: 1754 / 1640,
  16072. bottom: 0.01
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(80000, "feet"),
  16080. default: true
  16081. },
  16082. {
  16083. name: "Max size",
  16084. height: math.unit(10, "lightyears")
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16090. {
  16091. urban: {
  16092. height: math.unit(5, "feet"),
  16093. weight: math.unit(240, "lb"),
  16094. name: "Urban",
  16095. image: {
  16096. source: "./media/characters/cafat/urban.svg",
  16097. extra: 1223/1126,
  16098. bottom: 205/1428
  16099. }
  16100. },
  16101. summer: {
  16102. height: math.unit(5, "feet"),
  16103. weight: math.unit(240, "lb"),
  16104. name: "Summer",
  16105. image: {
  16106. source: "./media/characters/cafat/summer.svg",
  16107. extra: 1223/1126,
  16108. bottom: 205/1428
  16109. }
  16110. },
  16111. winter: {
  16112. height: math.unit(5, "feet"),
  16113. weight: math.unit(240, "lb"),
  16114. name: "Winter",
  16115. image: {
  16116. source: "./media/characters/cafat/winter.svg",
  16117. extra: 1223/1126,
  16118. bottom: 205/1428
  16119. }
  16120. },
  16121. lingerie: {
  16122. height: math.unit(5, "feet"),
  16123. weight: math.unit(240, "lb"),
  16124. name: "Lingerie",
  16125. image: {
  16126. source: "./media/characters/cafat/lingerie.svg",
  16127. extra: 1223/1126,
  16128. bottom: 205/1428
  16129. }
  16130. },
  16131. upright: {
  16132. height: math.unit(6.3, "feet"),
  16133. weight: math.unit(240, "lb"),
  16134. name: "Upright",
  16135. image: {
  16136. source: "./media/characters/cafat/upright.svg",
  16137. bottom: 0.01
  16138. }
  16139. },
  16140. uprightFull: {
  16141. height: math.unit(6.3, "feet"),
  16142. weight: math.unit(240, "lb"),
  16143. name: "Upright (Full)",
  16144. image: {
  16145. source: "./media/characters/cafat/upright-full.svg",
  16146. bottom: 0.01
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Small",
  16153. height: math.unit(5, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Large",
  16158. height: math.unit(13, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/verin-raharra/front.svg",
  16171. extra: 5019 / 4835,
  16172. bottom: 0.023
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7 + 5 / 12, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Upsized",
  16184. height: math.unit(20, "feet")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(7, "feet"),
  16193. weight: math.unit(230, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/nakata/front.svg",
  16197. extra: 1.005,
  16198. bottom: 0.01
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(7, "feet"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Big",
  16210. height: math.unit(14, "feet")
  16211. },
  16212. {
  16213. name: "Macro",
  16214. height: math.unit(400, "feet")
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(4.91, "feet"),
  16223. weight: math.unit(100, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/lily/front.svg",
  16227. extra: 1585 / 1415,
  16228. bottom: 0.02
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(4.91, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16242. {
  16243. laying: {
  16244. height: math.unit(4 + 4 / 12, "feet"),
  16245. weight: math.unit(600, "lb"),
  16246. name: "Laying",
  16247. image: {
  16248. source: "./media/characters/sheila/laying.svg",
  16249. extra: 1333 / 1265,
  16250. bottom: 0.16
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(4 + 4 / 12, "feet"),
  16258. default: true
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(190, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/sax/front.svg",
  16271. extra: 1187 / 973,
  16272. bottom: 0.042
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Micro",
  16279. height: math.unit(4, "inches"),
  16280. default: true
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(6, "feet"),
  16289. weight: math.unit(150, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/pandora/front.svg",
  16293. extra: 2720 / 2556,
  16294. bottom: 0.015
  16295. }
  16296. },
  16297. back: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Back",
  16301. image: {
  16302. source: "./media/characters/pandora/back.svg",
  16303. extra: 2720 / 2556,
  16304. bottom: 0.01
  16305. }
  16306. },
  16307. beans: {
  16308. height: math.unit(6 / 8, "feet"),
  16309. name: "Beans",
  16310. image: {
  16311. source: "./media/characters/pandora/beans.svg"
  16312. }
  16313. },
  16314. collar: {
  16315. height: math.unit(0.31, "feet"),
  16316. name: "Collar",
  16317. image: {
  16318. source: "./media/characters/pandora/collar.svg"
  16319. }
  16320. },
  16321. skirt: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Skirt",
  16325. image: {
  16326. source: "./media/characters/pandora/skirt.svg",
  16327. extra: 1622 / 1525,
  16328. bottom: 0.015
  16329. }
  16330. },
  16331. hoodie: {
  16332. height: math.unit(6, "feet"),
  16333. weight: math.unit(150, "lb"),
  16334. name: "Hoodie",
  16335. image: {
  16336. source: "./media/characters/pandora/hoodie.svg",
  16337. extra: 1622 / 1525,
  16338. bottom: 0.015
  16339. }
  16340. },
  16341. casual: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Casual",
  16345. image: {
  16346. source: "./media/characters/pandora/casual.svg",
  16347. extra: 1622 / 1525,
  16348. bottom: 0.015
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(6, "feet")
  16356. },
  16357. {
  16358. name: "Big Steppy",
  16359. height: math.unit(1, "km"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Galactic Steppy",
  16364. height: math.unit(2, "gigameters")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16370. {
  16371. side: {
  16372. height: math.unit(10, "feet"),
  16373. weight: math.unit(800, "kg"),
  16374. name: "Side",
  16375. image: {
  16376. source: "./media/characters/venio-darcony/side.svg",
  16377. extra: 1373 / 1003,
  16378. bottom: 0.037
  16379. }
  16380. },
  16381. front: {
  16382. height: math.unit(19, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/front.svg"
  16387. }
  16388. },
  16389. back: {
  16390. height: math.unit(19, "feet"),
  16391. weight: math.unit(800, "kg"),
  16392. name: "Back",
  16393. image: {
  16394. source: "./media/characters/venio-darcony/back.svg"
  16395. }
  16396. },
  16397. sideNsfw: {
  16398. height: math.unit(10, "feet"),
  16399. weight: math.unit(800, "kg"),
  16400. name: "Side (NSFW)",
  16401. image: {
  16402. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16403. extra: 1373 / 1003,
  16404. bottom: 0.037
  16405. }
  16406. },
  16407. frontNsfw: {
  16408. height: math.unit(19, "feet"),
  16409. weight: math.unit(800, "kg"),
  16410. name: "Front (NSFW)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16413. }
  16414. },
  16415. backNsfw: {
  16416. height: math.unit(19, "feet"),
  16417. weight: math.unit(800, "kg"),
  16418. name: "Back (NSFW)",
  16419. image: {
  16420. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16421. }
  16422. },
  16423. sideArmored: {
  16424. height: math.unit(10, "feet"),
  16425. weight: math.unit(800, "kg"),
  16426. name: "Side (Armored)",
  16427. image: {
  16428. source: "./media/characters/venio-darcony/side-armored.svg",
  16429. extra: 1373 / 1003,
  16430. bottom: 0.037
  16431. }
  16432. },
  16433. frontArmored: {
  16434. height: math.unit(19, "feet"),
  16435. weight: math.unit(900, "kg"),
  16436. name: "Front (Armored)",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/front-armored.svg"
  16439. }
  16440. },
  16441. backArmored: {
  16442. height: math.unit(19, "feet"),
  16443. weight: math.unit(900, "kg"),
  16444. name: "Back (Armored)",
  16445. image: {
  16446. source: "./media/characters/venio-darcony/back-armored.svg"
  16447. }
  16448. },
  16449. sword: {
  16450. height: math.unit(10, "feet"),
  16451. weight: math.unit(50, "lb"),
  16452. name: "Sword",
  16453. image: {
  16454. source: "./media/characters/venio-darcony/sword.svg"
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(10, "feet")
  16462. },
  16463. {
  16464. name: "Macro",
  16465. height: math.unit(130, "feet"),
  16466. default: true
  16467. },
  16468. {
  16469. name: "Macro+",
  16470. height: math.unit(240, "feet")
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16476. {
  16477. front: {
  16478. height: math.unit(6, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/veski/front.svg",
  16483. extra: 1299 / 1225,
  16484. bottom: 0.04
  16485. }
  16486. },
  16487. back: {
  16488. height: math.unit(6, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Back",
  16491. image: {
  16492. source: "./media/characters/veski/back.svg",
  16493. extra: 1299 / 1225,
  16494. bottom: 0.008
  16495. }
  16496. },
  16497. maw: {
  16498. height: math.unit(1.5 * 1.21, "feet"),
  16499. name: "Maw",
  16500. image: {
  16501. source: "./media/characters/veski/maw.svg"
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Macro",
  16508. height: math.unit(2, "km"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(5 + 7 / 12, "feet"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/isabelle/front.svg",
  16521. extra: 2130 / 1976,
  16522. bottom: 0.05
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Supermicro",
  16529. height: math.unit(10, "micrometers")
  16530. },
  16531. {
  16532. name: "Micro",
  16533. height: math.unit(1, "inch")
  16534. },
  16535. {
  16536. name: "Tiny",
  16537. height: math.unit(5, "inches")
  16538. },
  16539. {
  16540. name: "Standard",
  16541. height: math.unit(5 + 7 / 12, "inches")
  16542. },
  16543. {
  16544. name: "Macro",
  16545. height: math.unit(80, "meters"),
  16546. default: true
  16547. },
  16548. {
  16549. name: "Megamacro",
  16550. height: math.unit(250, "meters")
  16551. },
  16552. {
  16553. name: "Gigamacro",
  16554. height: math.unit(5, "km")
  16555. },
  16556. {
  16557. name: "Cosmic",
  16558. height: math.unit(2.5e6, "miles")
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(6, "feet"),
  16567. weight: math.unit(150, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/hanzo/front.svg",
  16571. extra: 374 / 344,
  16572. bottom: 0.02
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(8, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(7, "feet"),
  16589. weight: math.unit(130, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/anna/front.svg",
  16593. extra: 169 / 145,
  16594. bottom: 0.06
  16595. }
  16596. },
  16597. full: {
  16598. height: math.unit(4.96, "feet"),
  16599. weight: math.unit(220, "lb"),
  16600. name: "Full",
  16601. image: {
  16602. source: "./media/characters/anna/full.svg",
  16603. extra: 138 / 114,
  16604. bottom: 0.15
  16605. }
  16606. },
  16607. tongue: {
  16608. height: math.unit(2.53, "feet"),
  16609. name: "Tongue",
  16610. image: {
  16611. source: "./media/characters/anna/tongue.svg"
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(7, "feet"),
  16619. default: true
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16625. {
  16626. front: {
  16627. height: math.unit(7, "feet"),
  16628. weight: math.unit(150, "lb"),
  16629. name: "Front",
  16630. image: {
  16631. source: "./media/characters/ian-corvid/front.svg",
  16632. extra: 150 / 142,
  16633. bottom: 0.02
  16634. }
  16635. },
  16636. back: {
  16637. height: math.unit(7, "feet"),
  16638. weight: math.unit(150, "lb"),
  16639. name: "Back",
  16640. image: {
  16641. source: "./media/characters/ian-corvid/back.svg",
  16642. extra: 150 / 143,
  16643. bottom: 0.01
  16644. }
  16645. },
  16646. stomping: {
  16647. height: math.unit(7, "feet"),
  16648. weight: math.unit(150, "lb"),
  16649. name: "Stomping",
  16650. image: {
  16651. source: "./media/characters/ian-corvid/stomping.svg",
  16652. extra: 76 / 72
  16653. }
  16654. },
  16655. sitting: {
  16656. height: math.unit(7 / 1.8, "feet"),
  16657. weight: math.unit(150, "lb"),
  16658. name: "Sitting",
  16659. image: {
  16660. source: "./media/characters/ian-corvid/sitting.svg",
  16661. extra: 1400 / 1269,
  16662. bottom: 0.15
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Tiny Microw",
  16669. height: math.unit(1, "inch")
  16670. },
  16671. {
  16672. name: "Microw",
  16673. height: math.unit(6, "inches")
  16674. },
  16675. {
  16676. name: "Crow",
  16677. height: math.unit(7 + 1 / 12, "feet"),
  16678. default: true
  16679. },
  16680. {
  16681. name: "Macrow",
  16682. height: math.unit(176, "feet")
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(5 + 7 / 12, "feet"),
  16691. weight: math.unit(147, "lb"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/natalie-kellon/front.svg",
  16695. extra: 1214 / 1141,
  16696. bottom: 0.02
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Micro",
  16703. height: math.unit(1 / 16, "inch")
  16704. },
  16705. {
  16706. name: "Tiny",
  16707. height: math.unit(4, "inches")
  16708. },
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(5 + 7 / 12, "feet"),
  16712. default: true
  16713. },
  16714. {
  16715. name: "Amazon",
  16716. height: math.unit(12, "feet")
  16717. },
  16718. {
  16719. name: "Giantess",
  16720. height: math.unit(160, "meters")
  16721. },
  16722. {
  16723. name: "Titaness",
  16724. height: math.unit(800, "meters")
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16730. {
  16731. front: {
  16732. height: math.unit(6, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/alluria/front.svg",
  16737. extra: 806 / 738,
  16738. bottom: 0.01
  16739. }
  16740. },
  16741. side: {
  16742. height: math.unit(6, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Side",
  16745. image: {
  16746. source: "./media/characters/alluria/side.svg",
  16747. extra: 800 / 750,
  16748. }
  16749. },
  16750. back: {
  16751. height: math.unit(6, "feet"),
  16752. weight: math.unit(150, "lb"),
  16753. name: "Back",
  16754. image: {
  16755. source: "./media/characters/alluria/back.svg",
  16756. extra: 806 / 738,
  16757. }
  16758. },
  16759. frontMaid: {
  16760. height: math.unit(6, "feet"),
  16761. weight: math.unit(150, "lb"),
  16762. name: "Front (Maid)",
  16763. image: {
  16764. source: "./media/characters/alluria/front-maid.svg",
  16765. extra: 806 / 738,
  16766. bottom: 0.01
  16767. }
  16768. },
  16769. sideMaid: {
  16770. height: math.unit(6, "feet"),
  16771. weight: math.unit(150, "lb"),
  16772. name: "Side (Maid)",
  16773. image: {
  16774. source: "./media/characters/alluria/side-maid.svg",
  16775. extra: 800 / 750,
  16776. bottom: 0.005
  16777. }
  16778. },
  16779. backMaid: {
  16780. height: math.unit(6, "feet"),
  16781. weight: math.unit(150, "lb"),
  16782. name: "Back (Maid)",
  16783. image: {
  16784. source: "./media/characters/alluria/back-maid.svg",
  16785. extra: 806 / 738,
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Micro",
  16792. height: math.unit(6, "inches"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/kyle/front.svg",
  16806. extra: 1069 / 962,
  16807. bottom: 77.228 / 1727.45
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Macro",
  16814. height: math.unit(150, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6, "feet"),
  16824. weight: math.unit(300, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/duncan/front.svg",
  16828. extra: 1650 / 1482,
  16829. bottom: 0.05
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(100, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(5 + 4 / 12, "feet"),
  16846. weight: math.unit(220, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/memory/front.svg",
  16850. extra: 3641 / 3545,
  16851. bottom: 0.03
  16852. }
  16853. },
  16854. back: {
  16855. height: math.unit(5 + 4 / 12, "feet"),
  16856. weight: math.unit(220, "lb"),
  16857. name: "Back",
  16858. image: {
  16859. source: "./media/characters/memory/back.svg",
  16860. extra: 3641 / 3545,
  16861. bottom: 0.025
  16862. }
  16863. },
  16864. frontSkirt: {
  16865. height: math.unit(5 + 4 / 12, "feet"),
  16866. weight: math.unit(220, "lb"),
  16867. name: "Front (Skirt)",
  16868. image: {
  16869. source: "./media/characters/memory/front-skirt.svg",
  16870. extra: 3641 / 3545,
  16871. bottom: 0.03
  16872. }
  16873. },
  16874. frontDress: {
  16875. height: math.unit(5 + 4 / 12, "feet"),
  16876. weight: math.unit(220, "lb"),
  16877. name: "Front (Dress)",
  16878. image: {
  16879. source: "./media/characters/memory/front-dress.svg",
  16880. extra: 3641 / 3545,
  16881. bottom: 0.03
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Micro",
  16888. height: math.unit(6, "inches"),
  16889. default: true
  16890. },
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 4 / 12, "feet")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(4 + 11 / 12, "feet"),
  16902. weight: math.unit(100, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/luno/front.svg",
  16906. extra: 1535 / 1487,
  16907. bottom: 0.03
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Micro",
  16914. height: math.unit(3, "inches")
  16915. },
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(4 + 11 / 12, "feet"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(300, "feet")
  16924. },
  16925. {
  16926. name: "Megamacro",
  16927. height: math.unit(700, "miles")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(6 + 2 / 12, "feet"),
  16936. weight: math.unit(170, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/jamesy/front.svg",
  16940. extra: 440 / 382,
  16941. bottom: 0.005
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(3, "inches")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(6 + 2 / 12, "feet"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(300, "feet")
  16958. },
  16959. {
  16960. name: "Megamacro",
  16961. height: math.unit(700, "miles")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6, "feet"),
  16970. weight: math.unit(160, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/mark/front.svg",
  16974. extra: 3300 / 3100,
  16975. bottom: 136.42 / 3440.47
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Macro",
  16982. height: math.unit(120, "meters")
  16983. },
  16984. {
  16985. name: "Bigger Macro",
  16986. height: math.unit(350, "meters")
  16987. },
  16988. {
  16989. name: "Megamacro",
  16990. height: math.unit(8, "km"),
  16991. default: true
  16992. },
  16993. {
  16994. name: "Continental",
  16995. height: math.unit(4550, "km")
  16996. },
  16997. {
  16998. name: "Planetary",
  16999. height: math.unit(65000, "km")
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(6, "feet"),
  17008. weight: math.unit(400, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/mac/front.svg",
  17012. extra: 1048 / 987.7,
  17013. bottom: 60 / 1107.6,
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(500, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(5 + 2 / 12, "feet"),
  17030. weight: math.unit(190, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/bari/front.svg",
  17034. extra: 3156 / 2880,
  17035. bottom: 0.03
  17036. }
  17037. },
  17038. back: {
  17039. height: math.unit(5 + 2 / 12, "feet"),
  17040. weight: math.unit(190, "lb"),
  17041. name: "Back",
  17042. image: {
  17043. source: "./media/characters/bari/back.svg",
  17044. extra: 3260 / 2834,
  17045. bottom: 0.025
  17046. }
  17047. },
  17048. frontPlush: {
  17049. height: math.unit(5 + 2 / 12, "feet"),
  17050. weight: math.unit(190, "lb"),
  17051. name: "Front (Plush)",
  17052. image: {
  17053. source: "./media/characters/bari/front-plush.svg",
  17054. extra: 1112 / 1061,
  17055. bottom: 0.002
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Micro",
  17062. height: math.unit(3, "inches")
  17063. },
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(5 + 2 / 12, "feet"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(20, "feet")
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(6 + 1 / 12, "feet"),
  17080. weight: math.unit(275, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/hunter-misha-raven/front.svg"
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Mortal",
  17090. height: math.unit(6 + 1 / 12, "feet")
  17091. },
  17092. {
  17093. name: "Divine",
  17094. height: math.unit(1.12134e34, "parsecs"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(6 + 3 / 12, "feet"),
  17104. weight: math.unit(220, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/max-calore/front.svg",
  17108. extra: 1700 / 1648,
  17109. bottom: 0.01
  17110. }
  17111. },
  17112. back: {
  17113. height: math.unit(6 + 3 / 12, "feet"),
  17114. weight: math.unit(220, "lb"),
  17115. name: "Back",
  17116. image: {
  17117. source: "./media/characters/max-calore/back.svg",
  17118. extra: 1700 / 1648,
  17119. bottom: 0.01
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(6 + 3 / 12, "feet"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17133. {
  17134. side: {
  17135. height: math.unit(2 + 8 / 12, "feet"),
  17136. weight: math.unit(99, "lb"),
  17137. name: "Side",
  17138. image: {
  17139. source: "./media/characters/aspen/side.svg",
  17140. extra: 152 / 138,
  17141. bottom: 0.032
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(2 + 8 / 12, "feet"),
  17149. default: true
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17155. {
  17156. side: {
  17157. height: math.unit(3 + 2 / 12, "feet"),
  17158. weight: math.unit(224, "lb"),
  17159. name: "Side",
  17160. image: {
  17161. source: "./media/characters/sheila-feral-wolf/side.svg",
  17162. extra: 179 / 166,
  17163. bottom: 0.03
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(3 + 2 / 12, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17177. {
  17178. side: {
  17179. height: math.unit(1 + 9 / 12, "feet"),
  17180. weight: math.unit(38, "lb"),
  17181. name: "Side",
  17182. image: {
  17183. source: "./media/characters/michelle/side.svg",
  17184. extra: 147 / 136.7,
  17185. bottom: 0.03
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(1 + 9 / 12, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(1.54, "feet"),
  17202. weight: math.unit(50, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/nino/front.svg"
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(1.54, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(1, "feet"),
  17222. weight: math.unit(16, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/viola/front.svg"
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(1, "feet"),
  17233. default: true
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(6 + 5 / 12, "feet"),
  17242. weight: math.unit(580, "lb"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/atlas/front.svg",
  17246. extra: 298.5 / 290,
  17247. bottom: 0.015
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(6 + 5 / 12, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17261. {
  17262. side: {
  17263. height: math.unit(1 + 10 / 12, "feet"),
  17264. weight: math.unit(25, "lb"),
  17265. name: "Side",
  17266. image: {
  17267. source: "./media/characters/davy/side.svg",
  17268. extra: 200 / 170,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(1 + 10 / 12, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17283. {
  17284. side: {
  17285. height: math.unit(4 + 8 / 12, "feet"),
  17286. weight: math.unit(166, "lb"),
  17287. name: "Side",
  17288. image: {
  17289. source: "./media/characters/fiona/side.svg",
  17290. extra: 232 / 220,
  17291. bottom: 0.03
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(4 + 8 / 12, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17305. {
  17306. front: {
  17307. height: math.unit(3, "feet"),
  17308. weight: math.unit(100, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/lyla/front.svg",
  17312. bottom: 0.1
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(3, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17326. {
  17327. side: {
  17328. height: math.unit(1.8, "feet"),
  17329. weight: math.unit(44, "lb"),
  17330. name: "Side",
  17331. image: {
  17332. source: "./media/characters/perseus/side.svg",
  17333. bottom: 0.21
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(1.8, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17347. {
  17348. side: {
  17349. height: math.unit(4 + 2 / 12, "feet"),
  17350. weight: math.unit(20, "lb"),
  17351. name: "Side",
  17352. image: {
  17353. source: "./media/characters/remus/side.svg"
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(4 + 2 / 12, "feet"),
  17361. default: true
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(4 + 11 / 12, "feet"),
  17370. weight: math.unit(114, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/raf/front.svg",
  17374. extra: 1504/1339,
  17375. bottom: 26/1530
  17376. }
  17377. },
  17378. side: {
  17379. height: math.unit(4 + 11 / 12, "feet"),
  17380. weight: math.unit(114, "lb"),
  17381. name: "Side",
  17382. image: {
  17383. source: "./media/characters/raf/side.svg",
  17384. extra: 1466/1316,
  17385. bottom: 29/1495
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Micro",
  17392. height: math.unit(2, "inches")
  17393. },
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(4 + 11 / 12, "feet"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Macro",
  17401. height: math.unit(70, "feet")
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(1.5, "meters"),
  17410. weight: math.unit(68, "kg"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/liam-einarr/front.svg",
  17414. extra: 2822 / 2666
  17415. }
  17416. },
  17417. back: {
  17418. height: math.unit(1.5, "meters"),
  17419. weight: math.unit(68, "kg"),
  17420. name: "Back",
  17421. image: {
  17422. source: "./media/characters/liam-einarr/back.svg",
  17423. extra: 2822 / 2666,
  17424. bottom: 0.015
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(1.5, "meters"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Macro",
  17436. height: math.unit(150, "meters")
  17437. },
  17438. {
  17439. name: "Megamacro",
  17440. height: math.unit(35, "km")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(6, "feet"),
  17449. weight: math.unit(75, "kg"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/linda/front.svg",
  17453. extra: 930 / 874,
  17454. bottom: 0.004
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(6, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(6 + 8 / 12, "feet"),
  17471. weight: math.unit(220, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/caylex/front.svg",
  17475. extra: 821 / 772,
  17476. bottom: 0.07
  17477. }
  17478. },
  17479. back: {
  17480. height: math.unit(6 + 8 / 12, "feet"),
  17481. weight: math.unit(220, "lb"),
  17482. name: "Back",
  17483. image: {
  17484. source: "./media/characters/caylex/back.svg",
  17485. extra: 821 / 772,
  17486. bottom: 0.022
  17487. }
  17488. },
  17489. hand: {
  17490. height: math.unit(1.25, "feet"),
  17491. name: "Hand",
  17492. image: {
  17493. source: "./media/characters/caylex/hand.svg"
  17494. }
  17495. },
  17496. foot: {
  17497. height: math.unit(1.6, "feet"),
  17498. name: "Foot",
  17499. image: {
  17500. source: "./media/characters/caylex/foot.svg"
  17501. }
  17502. },
  17503. armored: {
  17504. height: math.unit(6 + 8 / 12, "feet"),
  17505. weight: math.unit(250, "lb"),
  17506. name: "Armored",
  17507. image: {
  17508. source: "./media/characters/caylex/armored.svg",
  17509. extra: 1420 / 1310,
  17510. bottom: 0.045
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(6 + 8 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Normal+",
  17522. height: math.unit(12, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(7 + 6 / 12, "feet"),
  17531. weight: math.unit(288, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/alana/front.svg",
  17535. extra: 679 / 653,
  17536. bottom: 22.5 / 701
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(7 + 6 / 12, "feet")
  17544. },
  17545. {
  17546. name: "Large",
  17547. height: math.unit(50, "feet")
  17548. },
  17549. {
  17550. name: "Macro",
  17551. height: math.unit(100, "feet"),
  17552. default: true
  17553. },
  17554. {
  17555. name: "Macro+",
  17556. height: math.unit(200, "feet")
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(6 + 1 / 12, "feet"),
  17565. weight: math.unit(210, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/hasani/front.svg",
  17569. extra: 244 / 232,
  17570. bottom: 0.01
  17571. }
  17572. },
  17573. back: {
  17574. height: math.unit(6 + 1 / 12, "feet"),
  17575. weight: math.unit(210, "lb"),
  17576. name: "Back",
  17577. image: {
  17578. source: "./media/characters/hasani/back.svg",
  17579. extra: 244 / 232,
  17580. bottom: 0.01
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(6 + 1 / 12, "feet")
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(175, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(1.82, "meters"),
  17601. weight: math.unit(140, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/nita/front.svg",
  17605. extra: 2473 / 2363,
  17606. bottom: 0.01
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(1.82, "m")
  17614. },
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(300, "m")
  17618. },
  17619. {
  17620. name: "Mistake Canon",
  17621. height: math.unit(0.5, "miles"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Big Mistake",
  17626. height: math.unit(13, "miles")
  17627. },
  17628. {
  17629. name: "Playing God",
  17630. height: math.unit(2450, "miles")
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(4, "feet"),
  17639. weight: math.unit(120, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/shiriko/front.svg",
  17643. extra: 970/934,
  17644. bottom: 5/975
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(4, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17658. {
  17659. front: {
  17660. height: math.unit(6, "feet"),
  17661. name: "front",
  17662. image: {
  17663. source: "./media/characters/deja/front.svg",
  17664. extra: 926 / 840,
  17665. bottom: 0.07
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Planck Length",
  17672. height: math.unit(1.6e-35, "meters")
  17673. },
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(30.48, "meters"),
  17677. default: true
  17678. },
  17679. {
  17680. name: "Universal",
  17681. height: math.unit(8.8e26, "meters")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17687. {
  17688. side: {
  17689. height: math.unit(8, "feet"),
  17690. weight: math.unit(6300, "lb"),
  17691. name: "Side",
  17692. image: {
  17693. source: "./media/characters/anima/side.svg",
  17694. bottom: 0.035
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(8, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(8, "feet"),
  17711. weight: math.unit(350, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/bianca/front.svg",
  17715. extra: 234 / 225,
  17716. bottom: 0.03
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(8, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(6, "feet"),
  17733. weight: math.unit(150, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/adinia/front.svg",
  17737. extra: 1845 / 1672,
  17738. bottom: 0.02
  17739. }
  17740. },
  17741. back: {
  17742. height: math.unit(6, "feet"),
  17743. weight: math.unit(150, "lb"),
  17744. name: "Back",
  17745. image: {
  17746. source: "./media/characters/adinia/back.svg",
  17747. extra: 1845 / 1672,
  17748. bottom: 0.002
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(11 + 5 / 12, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(3, "meters"),
  17765. weight: math.unit(200, "kg"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/lykasa/front.svg",
  17769. extra: 1076 / 976,
  17770. bottom: 0.06
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(3, "meters")
  17778. },
  17779. {
  17780. name: "Kaiju",
  17781. height: math.unit(120, "meters"),
  17782. default: true
  17783. },
  17784. {
  17785. name: "Mega Kaiju",
  17786. height: math.unit(240, "km")
  17787. },
  17788. {
  17789. name: "Giga Kaiju",
  17790. height: math.unit(400, "megameters")
  17791. },
  17792. {
  17793. name: "Tera Kaiju",
  17794. height: math.unit(800, "gigameters")
  17795. },
  17796. {
  17797. name: "Kaiju Dragon Goddess",
  17798. height: math.unit(26, "zettaparsecs")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17804. {
  17805. side: {
  17806. height: math.unit(283 / 124 * 6, "feet"),
  17807. weight: math.unit(35000, "lb"),
  17808. name: "Side",
  17809. image: {
  17810. source: "./media/characters/malfaren/side.svg",
  17811. extra: 2500 / 1010,
  17812. bottom: 0.01
  17813. }
  17814. },
  17815. front: {
  17816. height: math.unit(22.36, "feet"),
  17817. weight: math.unit(35000, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/malfaren/front.svg",
  17821. extra: 1631 / 1476,
  17822. bottom: 0.01
  17823. }
  17824. },
  17825. maw: {
  17826. height: math.unit(6.9, "feet"),
  17827. name: "Maw",
  17828. image: {
  17829. source: "./media/characters/malfaren/maw.svg"
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Big",
  17836. height: math.unit(283 / 162 * 6, "feet"),
  17837. },
  17838. {
  17839. name: "Bigger",
  17840. height: math.unit(283 / 124 * 6, "feet")
  17841. },
  17842. {
  17843. name: "Massive",
  17844. height: math.unit(283 / 92 * 6, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "👀💦",
  17849. height: math.unit(283 / 73 * 6, "feet"),
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(1.7, "m"),
  17858. weight: math.unit(70, "kg"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/kernel/front.svg",
  17862. extra: 222 / 210,
  17863. bottom: 0.007
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Nano",
  17870. height: math.unit(17, "micrometers")
  17871. },
  17872. {
  17873. name: "Micro",
  17874. height: math.unit(1.7, "mm")
  17875. },
  17876. {
  17877. name: "Small",
  17878. height: math.unit(1.7, "cm")
  17879. },
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(1.7, "m"),
  17883. default: true
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17889. {
  17890. front: {
  17891. height: math.unit(1.75, "meters"),
  17892. weight: math.unit(65, "kg"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/jayne-folest/front.svg",
  17896. extra: 2115 / 2007,
  17897. bottom: 0.02
  17898. }
  17899. },
  17900. back: {
  17901. height: math.unit(1.75, "meters"),
  17902. weight: math.unit(65, "kg"),
  17903. name: "Back",
  17904. image: {
  17905. source: "./media/characters/jayne-folest/back.svg",
  17906. extra: 2115 / 2007,
  17907. bottom: 0.005
  17908. }
  17909. },
  17910. frontClothed: {
  17911. height: math.unit(1.75, "meters"),
  17912. weight: math.unit(65, "kg"),
  17913. name: "Front (Clothed)",
  17914. image: {
  17915. source: "./media/characters/jayne-folest/front-clothed.svg",
  17916. extra: 2115 / 2007,
  17917. bottom: 0.035
  17918. }
  17919. },
  17920. hand: {
  17921. height: math.unit(1 / 1.260, "feet"),
  17922. name: "Hand",
  17923. image: {
  17924. source: "./media/characters/jayne-folest/hand.svg"
  17925. }
  17926. },
  17927. foot: {
  17928. height: math.unit(1 / 0.918, "feet"),
  17929. name: "Foot",
  17930. image: {
  17931. source: "./media/characters/jayne-folest/foot.svg"
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Micro",
  17938. height: math.unit(4, "cm")
  17939. },
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(1.75, "meters")
  17943. },
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(47.5, "meters"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(180, "cm"),
  17956. weight: math.unit(70, "kg"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/algier/front.svg",
  17960. extra: 596 / 572,
  17961. bottom: 0.04
  17962. }
  17963. },
  17964. back: {
  17965. height: math.unit(180, "cm"),
  17966. weight: math.unit(70, "kg"),
  17967. name: "Back",
  17968. image: {
  17969. source: "./media/characters/algier/back.svg",
  17970. extra: 596 / 572,
  17971. bottom: 0.025
  17972. }
  17973. },
  17974. frontdressed: {
  17975. height: math.unit(180, "cm"),
  17976. weight: math.unit(150, "kg"),
  17977. name: "Front-dressed",
  17978. image: {
  17979. source: "./media/characters/algier/front-dressed.svg",
  17980. extra: 596 / 572,
  17981. bottom: 0.038
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(5, "cm")
  17989. },
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(180, "cm"),
  17993. default: true
  17994. },
  17995. {
  17996. name: "Macro",
  17997. height: math.unit(64, "m")
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18003. {
  18004. upright: {
  18005. height: math.unit(7, "feet"),
  18006. weight: math.unit(300, "lb"),
  18007. name: "Upright",
  18008. image: {
  18009. source: "./media/characters/pretzel/upright.svg",
  18010. extra: 534 / 522,
  18011. bottom: 0.065
  18012. }
  18013. },
  18014. sprawling: {
  18015. height: math.unit(3.75, "feet"),
  18016. weight: math.unit(300, "lb"),
  18017. name: "Sprawling",
  18018. image: {
  18019. source: "./media/characters/pretzel/sprawling.svg",
  18020. extra: 314 / 281,
  18021. bottom: 0.1
  18022. }
  18023. },
  18024. tongue: {
  18025. height: math.unit(2, "feet"),
  18026. name: "Tongue",
  18027. image: {
  18028. source: "./media/characters/pretzel/tongue.svg"
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(7, "feet"),
  18036. default: true
  18037. },
  18038. {
  18039. name: "Oversized",
  18040. height: math.unit(15, "feet")
  18041. },
  18042. {
  18043. name: "Huge",
  18044. height: math.unit(30, "feet")
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(250, "feet")
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18054. {
  18055. sideFront: {
  18056. height: math.unit(5 + 2 / 12, "feet"),
  18057. weight: math.unit(120, "lb"),
  18058. name: "Front Side",
  18059. image: {
  18060. source: "./media/characters/roxi/side-front.svg",
  18061. extra: 2924 / 2717,
  18062. bottom: 0.08
  18063. }
  18064. },
  18065. sideBack: {
  18066. height: math.unit(5 + 2 / 12, "feet"),
  18067. weight: math.unit(120, "lb"),
  18068. name: "Back Side",
  18069. image: {
  18070. source: "./media/characters/roxi/side-back.svg",
  18071. extra: 2904 / 2693,
  18072. bottom: 0.06
  18073. }
  18074. },
  18075. front: {
  18076. height: math.unit(5 + 2 / 12, "feet"),
  18077. weight: math.unit(120, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/roxi/front.svg",
  18081. extra: 2028 / 1907,
  18082. bottom: 0.01
  18083. }
  18084. },
  18085. frontAlt: {
  18086. height: math.unit(5 + 2 / 12, "feet"),
  18087. weight: math.unit(120, "lb"),
  18088. name: "Front (Alt)",
  18089. image: {
  18090. source: "./media/characters/roxi/front-alt.svg",
  18091. extra: 1828 / 1798,
  18092. bottom: 0.01
  18093. }
  18094. },
  18095. sitting: {
  18096. height: math.unit(2.8, "feet"),
  18097. weight: math.unit(120, "lb"),
  18098. name: "Sitting",
  18099. image: {
  18100. source: "./media/characters/roxi/sitting.svg",
  18101. extra: 2660 / 2462,
  18102. bottom: 0.1
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(5 + 2 / 12, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18116. {
  18117. side: {
  18118. height: math.unit(55, "feet"),
  18119. weight: math.unit(153, "tons"),
  18120. name: "Side",
  18121. image: {
  18122. source: "./media/characters/shadow/side.svg",
  18123. extra: 701 / 628,
  18124. bottom: 0.02
  18125. }
  18126. },
  18127. flying: {
  18128. height: math.unit(145, "feet"),
  18129. weight: math.unit(153, "tons"),
  18130. name: "Flying",
  18131. image: {
  18132. source: "./media/characters/shadow/flying.svg"
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(55, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(6, "feet"),
  18149. weight: math.unit(200, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/marcie/front.svg",
  18153. extra: 960 / 876,
  18154. bottom: 58 / 1017.87
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Macro",
  18161. height: math.unit(1, "mile"),
  18162. default: true
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(7, "feet"),
  18171. weight: math.unit(200, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/kachina/front.svg",
  18175. extra: 1290.68 / 1119,
  18176. bottom: 36.5 / 1327.18
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(7, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18190. {
  18191. looking: {
  18192. height: math.unit(2, "meters"),
  18193. weight: math.unit(300, "kg"),
  18194. name: "Looking",
  18195. image: {
  18196. source: "./media/characters/kash/looking.svg",
  18197. extra: 474 / 344,
  18198. bottom: 0.03
  18199. }
  18200. },
  18201. side: {
  18202. height: math.unit(2, "meters"),
  18203. weight: math.unit(300, "kg"),
  18204. name: "Side",
  18205. image: {
  18206. source: "./media/characters/kash/side.svg",
  18207. extra: 302 / 251,
  18208. bottom: 0.03
  18209. }
  18210. },
  18211. front: {
  18212. height: math.unit(2, "meters"),
  18213. weight: math.unit(300, "kg"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/kash/front.svg",
  18217. extra: 495 / 360,
  18218. bottom: 0.015
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(2, "meters"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Big",
  18230. height: math.unit(3, "meters")
  18231. },
  18232. {
  18233. name: "Large",
  18234. height: math.unit(5, "meters")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18240. {
  18241. feeding: {
  18242. height: math.unit(6.7, "feet"),
  18243. weight: math.unit(350, "lb"),
  18244. name: "Feeding",
  18245. image: {
  18246. source: "./media/characters/lalim/feeding.svg",
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(6.7, "feet"),
  18254. default: true
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(9.5, "feet"),
  18263. weight: math.unit(600, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/de'vout/front.svg",
  18267. extra: 1443 / 1328,
  18268. bottom: 0.025
  18269. }
  18270. },
  18271. back: {
  18272. height: math.unit(9.5, "feet"),
  18273. weight: math.unit(600, "lb"),
  18274. name: "Back",
  18275. image: {
  18276. source: "./media/characters/de'vout/back.svg",
  18277. extra: 1443 / 1328
  18278. }
  18279. },
  18280. frontDressed: {
  18281. height: math.unit(9.5, "feet"),
  18282. weight: math.unit(600, "lb"),
  18283. name: "Front (Dressed",
  18284. image: {
  18285. source: "./media/characters/de'vout/front-dressed.svg",
  18286. extra: 1443 / 1328,
  18287. bottom: 0.025
  18288. }
  18289. },
  18290. backDressed: {
  18291. height: math.unit(9.5, "feet"),
  18292. weight: math.unit(600, "lb"),
  18293. name: "Back (Dressed",
  18294. image: {
  18295. source: "./media/characters/de'vout/back-dressed.svg",
  18296. extra: 1443 / 1328
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(9.5, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(8, "feet"),
  18313. weight: math.unit(225, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/talana/front.svg",
  18317. extra: 1410 / 1300,
  18318. bottom: 0.015
  18319. }
  18320. },
  18321. frontDressed: {
  18322. height: math.unit(8, "feet"),
  18323. weight: math.unit(225, "lb"),
  18324. name: "Front (Dressed",
  18325. image: {
  18326. source: "./media/characters/talana/front-dressed.svg",
  18327. extra: 1410 / 1300,
  18328. bottom: 0.015
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(8, "feet"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18342. {
  18343. side: {
  18344. height: math.unit(7.2, "feet"),
  18345. weight: math.unit(150, "lb"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/xeauvok/side.svg",
  18349. extra: 1975 / 1523,
  18350. bottom: 0.07
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(7.2, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18364. {
  18365. side: {
  18366. height: math.unit(10, "feet"),
  18367. weight: math.unit(900, "kg"),
  18368. name: "Side",
  18369. image: {
  18370. source: "./media/characters/zara/side.svg",
  18371. extra: 504 / 498
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(10, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18385. {
  18386. side: {
  18387. height: math.unit(6, "feet"),
  18388. weight: math.unit(150, "lb"),
  18389. name: "Side",
  18390. image: {
  18391. source: "./media/characters/richard-dragon/side.svg",
  18392. extra: 845 / 340,
  18393. bottom: 0.017
  18394. }
  18395. },
  18396. maw: {
  18397. height: math.unit(2.97, "feet"),
  18398. name: "Maw",
  18399. image: {
  18400. source: "./media/characters/richard-dragon/maw.svg"
  18401. }
  18402. },
  18403. },
  18404. [
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(4, "feet"),
  18412. weight: math.unit(100, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/richard-smeargle/front.svg",
  18416. extra: 2952 / 2820,
  18417. bottom: 0.028
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(4, "feet"),
  18425. default: true
  18426. },
  18427. {
  18428. name: "Dynamax",
  18429. height: math.unit(20, "meters")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(6, "feet"),
  18438. weight: math.unit(110, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/klay/front.svg",
  18442. extra: 962 / 883,
  18443. bottom: 0.04
  18444. }
  18445. },
  18446. back: {
  18447. height: math.unit(6, "feet"),
  18448. weight: math.unit(110, "lb"),
  18449. name: "Back",
  18450. image: {
  18451. source: "./media/characters/klay/back.svg",
  18452. extra: 962 / 883
  18453. }
  18454. },
  18455. beans: {
  18456. height: math.unit(1.15, "feet"),
  18457. name: "Beans",
  18458. image: {
  18459. source: "./media/characters/klay/beans.svg"
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(6, "inches")
  18467. },
  18468. {
  18469. name: "Mini",
  18470. height: math.unit(3, "feet")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(6, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Big",
  18479. height: math.unit(25, "feet")
  18480. },
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(100, "feet")
  18484. },
  18485. {
  18486. name: "Megamacro",
  18487. height: math.unit(400, "feet")
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(160, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/marcus/front.svg",
  18500. extra: 734 / 676,
  18501. bottom: 0.03
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Little",
  18508. height: math.unit(6, "feet")
  18509. },
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(110, "feet"),
  18513. default: true
  18514. },
  18515. {
  18516. name: "Macro",
  18517. height: math.unit(250, "feet")
  18518. },
  18519. {
  18520. name: "Megamacro",
  18521. height: math.unit(1000, "feet")
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(7, "feet"),
  18530. weight: math.unit(275, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/claude-delroute/front.svg",
  18534. extra: 902/827,
  18535. bottom: 26/928
  18536. }
  18537. },
  18538. side: {
  18539. height: math.unit(7, "feet"),
  18540. weight: math.unit(275, "lb"),
  18541. name: "Side",
  18542. image: {
  18543. source: "./media/characters/claude-delroute/side.svg",
  18544. extra: 908/853,
  18545. bottom: 16/924
  18546. }
  18547. },
  18548. back: {
  18549. height: math.unit(7, "feet"),
  18550. weight: math.unit(275, "lb"),
  18551. name: "Back",
  18552. image: {
  18553. source: "./media/characters/claude-delroute/back.svg",
  18554. extra: 911/829,
  18555. bottom: 18/929
  18556. }
  18557. },
  18558. maw: {
  18559. height: math.unit(0.6407, "meters"),
  18560. name: "Maw",
  18561. image: {
  18562. source: "./media/characters/claude-delroute/maw.svg"
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(7, "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Lorge",
  18574. height: math.unit(20, "feet")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(8 + 4 / 12, "feet"),
  18583. weight: math.unit(600, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/dragonien/front.svg",
  18587. extra: 100 / 94,
  18588. bottom: 3.3 / 103.3445
  18589. }
  18590. },
  18591. back: {
  18592. height: math.unit(8 + 4 / 12, "feet"),
  18593. weight: math.unit(600, "lb"),
  18594. name: "Back",
  18595. image: {
  18596. source: "./media/characters/dragonien/back.svg",
  18597. extra: 776 / 746,
  18598. bottom: 6.4 / 782.0616
  18599. }
  18600. },
  18601. foot: {
  18602. height: math.unit(1.54, "feet"),
  18603. name: "Foot",
  18604. image: {
  18605. source: "./media/characters/dragonien/foot.svg",
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(8 + 4 / 12, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(200, "feet")
  18618. },
  18619. {
  18620. name: "Megamacro",
  18621. height: math.unit(1, "mile")
  18622. },
  18623. {
  18624. name: "Gigamacro",
  18625. height: math.unit(1000, "miles")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(5 + 2 / 12, "feet"),
  18634. weight: math.unit(110, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/desta/front.svg",
  18638. extra: 767 / 726,
  18639. bottom: 11.7 / 779
  18640. }
  18641. },
  18642. back: {
  18643. height: math.unit(5 + 2 / 12, "feet"),
  18644. weight: math.unit(110, "lb"),
  18645. name: "Back",
  18646. image: {
  18647. source: "./media/characters/desta/back.svg",
  18648. extra: 777 / 728,
  18649. bottom: 6 / 784
  18650. }
  18651. },
  18652. frontAlt: {
  18653. height: math.unit(5 + 2 / 12, "feet"),
  18654. weight: math.unit(110, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/desta/front-alt.svg",
  18658. extra: 1482 / 1417
  18659. }
  18660. },
  18661. side: {
  18662. height: math.unit(5 + 2 / 12, "feet"),
  18663. weight: math.unit(110, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/desta/side.svg",
  18667. extra: 2579 / 2491,
  18668. bottom: 0.053
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Micro",
  18675. height: math.unit(6, "inches")
  18676. },
  18677. {
  18678. name: "Normal",
  18679. height: math.unit(5 + 2 / 12, "feet"),
  18680. default: true
  18681. },
  18682. {
  18683. name: "Macro",
  18684. height: math.unit(62, "feet")
  18685. },
  18686. {
  18687. name: "Megamacro",
  18688. height: math.unit(1800, "feet")
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(10, "feet"),
  18697. weight: math.unit(700, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/storm-alystar/front.svg",
  18701. extra: 2112 / 1898,
  18702. bottom: 0.034
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Micro",
  18709. height: math.unit(3.5, "inches")
  18710. },
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(10, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Macro",
  18718. height: math.unit(400, "feet")
  18719. },
  18720. {
  18721. name: "Deific",
  18722. height: math.unit(60, "miles")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18728. {
  18729. front: {
  18730. height: math.unit(2.35, "meters"),
  18731. weight: math.unit(119, "kg"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/ilia/front.svg",
  18735. extra: 1285 / 1255,
  18736. bottom: 0.06
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(2.35, "meters")
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(140, "meters"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Megamacro",
  18752. height: math.unit(100, "miles")
  18753. },
  18754. ]
  18755. ))
  18756. characterMakers.push(() => makeCharacter(
  18757. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18758. {
  18759. front: {
  18760. height: math.unit(6 + 5 / 12, "feet"),
  18761. weight: math.unit(190, "lb"),
  18762. name: "Front",
  18763. image: {
  18764. source: "./media/characters/kingdead/front.svg",
  18765. extra: 1228 / 1177
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Micro",
  18772. height: math.unit(7, "inches")
  18773. },
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(6 + 5 / 12, "feet")
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(150, "feet"),
  18781. default: true
  18782. },
  18783. {
  18784. name: "Megamacro",
  18785. height: math.unit(200, "miles")
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(8, "feet"),
  18794. weight: math.unit(600, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/kyrehx/front.svg",
  18798. extra: 1195 / 1095,
  18799. bottom: 0.034
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Micro",
  18806. height: math.unit(2, "inches")
  18807. },
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(8, "feet"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(255, "feet")
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18824. weight: math.unit(184, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/xang/front.svg",
  18828. extra: 845 / 755
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Macro",
  18840. height: math.unit(0.935 * 146, "feet")
  18841. },
  18842. {
  18843. name: "Megamacro",
  18844. height: math.unit(0.935 * 3, "miles")
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18850. {
  18851. frontDressed: {
  18852. height: math.unit(5 + 7 / 12, "feet"),
  18853. weight: math.unit(140, "lb"),
  18854. name: "Front (Dressed)",
  18855. image: {
  18856. source: "./media/characters/doc-weardno/front-dressed.svg",
  18857. extra: 263 / 234
  18858. }
  18859. },
  18860. backDressed: {
  18861. height: math.unit(5 + 7 / 12, "feet"),
  18862. weight: math.unit(140, "lb"),
  18863. name: "Back (Dressed)",
  18864. image: {
  18865. source: "./media/characters/doc-weardno/back-dressed.svg",
  18866. extra: 266 / 238
  18867. }
  18868. },
  18869. front: {
  18870. height: math.unit(5 + 7 / 12, "feet"),
  18871. weight: math.unit(140, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/doc-weardno/front.svg",
  18875. extra: 254 / 233
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Micro",
  18882. height: math.unit(3, "inches")
  18883. },
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(5 + 7 / 12, "feet"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(25, "feet")
  18892. },
  18893. {
  18894. name: "Megamacro",
  18895. height: math.unit(2, "miles")
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(6 + 2 / 12, "feet"),
  18904. weight: math.unit(153, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/seth-whilst/front.svg",
  18908. bottom: 0.07
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Micro",
  18915. height: math.unit(5, "inches")
  18916. },
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(6 + 2 / 12, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(3, "inches"),
  18929. weight: math.unit(8, "grams"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/pocket-jabari/front.svg",
  18933. extra: 1024 / 974,
  18934. bottom: 0.039
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Minimicro",
  18941. height: math.unit(8, "mm")
  18942. },
  18943. {
  18944. name: "Micro",
  18945. height: math.unit(3, "inches"),
  18946. default: true
  18947. },
  18948. {
  18949. name: "Normal",
  18950. height: math.unit(3, "feet")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(15, "feet"),
  18959. weight: math.unit(3280, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/sapphy/front.svg",
  18963. extra: 671 / 577,
  18964. bottom: 0.085
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(15, "feet"),
  18969. weight: math.unit(3280, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/sapphy/back.svg",
  18973. extra: 631 / 607,
  18974. bottom: 0.045
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(15, "feet")
  18982. },
  18983. {
  18984. name: "Casual Macro",
  18985. height: math.unit(120, "feet")
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(2150, "feet"),
  18990. default: true
  18991. },
  18992. {
  18993. name: "Megamacro",
  18994. height: math.unit(8, "miles")
  18995. },
  18996. {
  18997. name: "Galaxy Mom",
  18998. height: math.unit(6, "megalightyears")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(6, "feet"),
  19007. weight: math.unit(170, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/kiro/front.svg",
  19011. extra: 1064 / 1012,
  19012. bottom: 0.052
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Micro",
  19019. height: math.unit(6, "inches")
  19020. },
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(6, "feet"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Macro",
  19028. height: math.unit(72, "feet")
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(5 + 9 / 12, "feet"),
  19037. weight: math.unit(175, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/irishfox/front.svg",
  19041. extra: 1912 / 1680,
  19042. bottom: 0.02
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Nano",
  19049. height: math.unit(1, "mm")
  19050. },
  19051. {
  19052. name: "Micro",
  19053. height: math.unit(2, "inches")
  19054. },
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(5 + 9 / 12, "feet"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "Macro",
  19062. height: math.unit(45, "feet")
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(6 + 1 / 12, "feet"),
  19071. weight: math.unit(75, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/aronai-sieyes/front.svg",
  19075. extra: 1532/1450,
  19076. bottom: 42/1574
  19077. }
  19078. },
  19079. side: {
  19080. height: math.unit(6 + 1 / 12, "feet"),
  19081. weight: math.unit(75, "lb"),
  19082. name: "Side",
  19083. image: {
  19084. source: "./media/characters/aronai-sieyes/side.svg",
  19085. extra: 1422/1365,
  19086. bottom: 148/1570
  19087. }
  19088. },
  19089. back: {
  19090. height: math.unit(6 + 1 / 12, "feet"),
  19091. weight: math.unit(75, "lb"),
  19092. name: "Back",
  19093. image: {
  19094. source: "./media/characters/aronai-sieyes/back.svg",
  19095. extra: 1526/1464,
  19096. bottom: 51/1577
  19097. }
  19098. },
  19099. dressed: {
  19100. height: math.unit(6 + 1 / 12, "feet"),
  19101. weight: math.unit(75, "lb"),
  19102. name: "Dressed",
  19103. image: {
  19104. source: "./media/characters/aronai-sieyes/dressed.svg",
  19105. extra: 1559/1483,
  19106. bottom: 39/1598
  19107. }
  19108. },
  19109. slit: {
  19110. height: math.unit(1.3, "feet"),
  19111. name: "Slit",
  19112. image: {
  19113. source: "./media/characters/aronai-sieyes/slit.svg"
  19114. }
  19115. },
  19116. slitSpread: {
  19117. height: math.unit(0.9, "feet"),
  19118. name: "Slit (Spread)",
  19119. image: {
  19120. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19121. }
  19122. },
  19123. rump: {
  19124. height: math.unit(1.3, "feet"),
  19125. name: "Rump",
  19126. image: {
  19127. source: "./media/characters/aronai-sieyes/rump.svg"
  19128. }
  19129. },
  19130. maw: {
  19131. height: math.unit(1.25, "feet"),
  19132. name: "Maw",
  19133. image: {
  19134. source: "./media/characters/aronai-sieyes/maw.svg"
  19135. }
  19136. },
  19137. feral: {
  19138. height: math.unit(18, "feet"),
  19139. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19140. name: "Feral",
  19141. image: {
  19142. source: "./media/characters/aronai-sieyes/feral.svg",
  19143. extra: 1530 / 1240,
  19144. bottom: 0.035
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Micro",
  19151. height: math.unit(2, "inches")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(6 + 1 / 12, "feet"),
  19156. default: true
  19157. }
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(12, "feet"),
  19165. weight: math.unit(410, "kg"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/xuna/front.svg",
  19169. extra: 2184 / 1980
  19170. }
  19171. },
  19172. side: {
  19173. height: math.unit(12, "feet"),
  19174. weight: math.unit(410, "kg"),
  19175. name: "Side",
  19176. image: {
  19177. source: "./media/characters/xuna/side.svg",
  19178. extra: 2184 / 1980
  19179. }
  19180. },
  19181. back: {
  19182. height: math.unit(12, "feet"),
  19183. weight: math.unit(410, "kg"),
  19184. name: "Back",
  19185. image: {
  19186. source: "./media/characters/xuna/back.svg",
  19187. extra: 2184 / 1980
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Nano glow",
  19194. height: math.unit(10, "nm")
  19195. },
  19196. {
  19197. name: "Micro floof",
  19198. height: math.unit(0.3, "m")
  19199. },
  19200. {
  19201. name: "Huggable softy boi",
  19202. height: math.unit(3.6576, "m"),
  19203. default: true
  19204. },
  19205. {
  19206. name: "Admirable floof",
  19207. height: math.unit(80, "meters")
  19208. },
  19209. {
  19210. name: "Gentle macro",
  19211. height: math.unit(300, "meters")
  19212. },
  19213. {
  19214. name: "Very careful floof",
  19215. height: math.unit(3200, "meters")
  19216. },
  19217. {
  19218. name: "The mega floof",
  19219. height: math.unit(36000, "meters")
  19220. },
  19221. {
  19222. name: "Giga-fur-Wicker",
  19223. height: math.unit(4800000, "meters")
  19224. },
  19225. {
  19226. name: "Licky world",
  19227. height: math.unit(20000000, "meters")
  19228. },
  19229. {
  19230. name: "Floofy cyan sun",
  19231. height: math.unit(1500000000, "meters")
  19232. },
  19233. {
  19234. name: "Milky Wicker",
  19235. height: math.unit(1000000000000000000000, "meters")
  19236. },
  19237. {
  19238. name: "The observing Wicker",
  19239. height: math.unit(999999999999999999999999999, "meters")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(5 + 9 / 12, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/arokha-sieyes/front.svg",
  19252. extra: 1425 / 1284,
  19253. bottom: 0.05
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(5 + 9 / 12, "feet")
  19261. },
  19262. {
  19263. name: "Macro",
  19264. height: math.unit(30, "meters"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6, "feet"),
  19274. weight: math.unit(180, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/arokh-sieyes/front.svg",
  19278. extra: 1830 / 1769,
  19279. bottom: 0.01
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(6, "feet")
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(30, "meters"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19297. {
  19298. side: {
  19299. height: math.unit(13 + 1 / 12, "feet"),
  19300. weight: math.unit(8.5, "tonnes"),
  19301. name: "Side",
  19302. image: {
  19303. source: "./media/characters/goldeneye/side.svg",
  19304. extra: 1182 / 778,
  19305. bottom: 0.067
  19306. }
  19307. },
  19308. paw: {
  19309. height: math.unit(3.4, "feet"),
  19310. name: "Paw",
  19311. image: {
  19312. source: "./media/characters/goldeneye/paw.svg"
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(13 + 1 / 12, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19326. {
  19327. front: {
  19328. height: math.unit(6 + 1 / 12, "feet"),
  19329. weight: math.unit(210, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/leonardo-lycheborne/front.svg",
  19333. extra: 776/723,
  19334. bottom: 34/810
  19335. }
  19336. },
  19337. side: {
  19338. height: math.unit(6 + 1 / 12, "feet"),
  19339. weight: math.unit(210, "lb"),
  19340. name: "Side",
  19341. image: {
  19342. source: "./media/characters/leonardo-lycheborne/side.svg",
  19343. extra: 780/728,
  19344. bottom: 12/792
  19345. }
  19346. },
  19347. back: {
  19348. height: math.unit(6 + 1 / 12, "feet"),
  19349. weight: math.unit(210, "lb"),
  19350. name: "Back",
  19351. image: {
  19352. source: "./media/characters/leonardo-lycheborne/back.svg",
  19353. extra: 775/721,
  19354. bottom: 17/792
  19355. }
  19356. },
  19357. hand: {
  19358. height: math.unit(1.08, "feet"),
  19359. name: "Hand",
  19360. image: {
  19361. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19362. }
  19363. },
  19364. foot: {
  19365. height: math.unit(1.32, "feet"),
  19366. name: "Foot",
  19367. image: {
  19368. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19369. }
  19370. },
  19371. maw: {
  19372. height: math.unit(1, "feet"),
  19373. name: "Maw",
  19374. image: {
  19375. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19376. }
  19377. },
  19378. were: {
  19379. height: math.unit(20, "feet"),
  19380. weight: math.unit(7800, "lb"),
  19381. name: "Were",
  19382. image: {
  19383. source: "./media/characters/leonardo-lycheborne/were.svg",
  19384. extra: 1224/1165,
  19385. bottom: 72/1296
  19386. }
  19387. },
  19388. feral: {
  19389. height: math.unit(7.5, "feet"),
  19390. weight: math.unit(600, "lb"),
  19391. name: "Feral",
  19392. image: {
  19393. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19394. extra: 797/702,
  19395. bottom: 139/936
  19396. }
  19397. },
  19398. taur: {
  19399. height: math.unit(11, "feet"),
  19400. weight: math.unit(3300, "lb"),
  19401. name: "Taur",
  19402. image: {
  19403. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19404. extra: 1271/1197,
  19405. bottom: 47/1318
  19406. }
  19407. },
  19408. barghest: {
  19409. height: math.unit(11, "feet"),
  19410. weight: math.unit(1300, "lb"),
  19411. name: "Barghest",
  19412. image: {
  19413. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19414. extra: 1291/1204,
  19415. bottom: 37/1328
  19416. }
  19417. },
  19418. dick: {
  19419. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19420. name: "Dick",
  19421. image: {
  19422. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19423. }
  19424. },
  19425. dickWere: {
  19426. height: math.unit((20) / 3.8, "feet"),
  19427. name: "Dick (Were)",
  19428. image: {
  19429. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(6 + 1 / 12, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(10, "feet"),
  19446. weight: math.unit(350, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/jet/front.svg",
  19450. extra: 2050 / 1980,
  19451. bottom: 0.013
  19452. }
  19453. },
  19454. back: {
  19455. height: math.unit(10, "feet"),
  19456. weight: math.unit(350, "lb"),
  19457. name: "Back",
  19458. image: {
  19459. source: "./media/characters/jet/back.svg",
  19460. extra: 2050 / 1980,
  19461. bottom: 0.013
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Micro",
  19468. height: math.unit(6, "inches")
  19469. },
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(10, "feet"),
  19473. default: true
  19474. },
  19475. {
  19476. name: "Macro",
  19477. height: math.unit(100, "feet")
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(15, "feet"),
  19486. weight: math.unit(2800, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/tanarath/front.svg",
  19490. extra: 2392 / 2220,
  19491. bottom: 0.03
  19492. }
  19493. },
  19494. back: {
  19495. height: math.unit(15, "feet"),
  19496. weight: math.unit(2800, "lb"),
  19497. name: "Back",
  19498. image: {
  19499. source: "./media/characters/tanarath/back.svg",
  19500. extra: 2392 / 2220,
  19501. bottom: 0.03
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(15, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(7 + 1 / 12, "feet"),
  19518. weight: math.unit(175, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/patty-cattybatty/front.svg",
  19522. extra: 908 / 874,
  19523. bottom: 0.025
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Micro",
  19530. height: math.unit(1, "inch")
  19531. },
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(7 + 1 / 12, "feet")
  19535. },
  19536. {
  19537. name: "Mini Macro",
  19538. height: math.unit(155, "feet")
  19539. },
  19540. {
  19541. name: "Macro",
  19542. height: math.unit(1077, "feet")
  19543. },
  19544. {
  19545. name: "Mega Macro",
  19546. height: math.unit(47650, "feet"),
  19547. default: true
  19548. },
  19549. {
  19550. name: "Giga Macro",
  19551. height: math.unit(440, "miles")
  19552. },
  19553. {
  19554. name: "Tera Macro",
  19555. height: math.unit(8700, "miles")
  19556. },
  19557. {
  19558. name: "Planetary Macro",
  19559. height: math.unit(32700, "miles")
  19560. },
  19561. {
  19562. name: "Solar Macro",
  19563. height: math.unit(550000, "miles")
  19564. },
  19565. {
  19566. name: "Celestial Macro",
  19567. height: math.unit(2.5, "AU")
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(4 + 5 / 12, "feet"),
  19576. weight: math.unit(90, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/cappu/front.svg",
  19580. extra: 1247 / 1152,
  19581. bottom: 0.012
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(4 + 5 / 12, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19595. {
  19596. frontDressed: {
  19597. height: math.unit(70, "cm"),
  19598. weight: math.unit(6, "kg"),
  19599. name: "Front (Dressed)",
  19600. image: {
  19601. source: "./media/characters/sebi/front-dressed.svg",
  19602. extra: 713.5 / 686.5,
  19603. bottom: 0.003
  19604. }
  19605. },
  19606. front: {
  19607. height: math.unit(70, "cm"),
  19608. weight: math.unit(5, "kg"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/sebi/front.svg",
  19612. extra: 713.5 / 686.5,
  19613. bottom: 0.003
  19614. }
  19615. }
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(70, "cm"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(8, "meters")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(6, "feet"),
  19634. weight: math.unit(150, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/typhek/front.svg",
  19638. extra: 1948 / 1929,
  19639. bottom: 0.025
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(6, "feet"),
  19644. weight: math.unit(150, "lb"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/typhek/side.svg",
  19648. extra: 2034 / 2010,
  19649. bottom: 0.003
  19650. }
  19651. },
  19652. back: {
  19653. height: math.unit(6, "feet"),
  19654. weight: math.unit(150, "lb"),
  19655. name: "Back",
  19656. image: {
  19657. source: "./media/characters/typhek/back.svg",
  19658. extra: 2005 / 1978,
  19659. bottom: 0.004
  19660. }
  19661. },
  19662. palm: {
  19663. height: math.unit(1.2, "feet"),
  19664. name: "Palm",
  19665. image: {
  19666. source: "./media/characters/typhek/palm.svg"
  19667. }
  19668. },
  19669. fist: {
  19670. height: math.unit(1.1, "feet"),
  19671. name: "Fist",
  19672. image: {
  19673. source: "./media/characters/typhek/fist.svg"
  19674. }
  19675. },
  19676. foot: {
  19677. height: math.unit(1.57, "feet"),
  19678. name: "Foot",
  19679. image: {
  19680. source: "./media/characters/typhek/foot.svg"
  19681. }
  19682. },
  19683. sole: {
  19684. height: math.unit(2.05, "feet"),
  19685. name: "Sole",
  19686. image: {
  19687. source: "./media/characters/typhek/sole.svg"
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Macro",
  19694. height: math.unit(40, "stories"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Megamacro",
  19699. height: math.unit(1, "mile")
  19700. },
  19701. {
  19702. name: "Gigamacro",
  19703. height: math.unit(4000, "solarradii")
  19704. },
  19705. {
  19706. name: "Universal",
  19707. height: math.unit(1.1, "universes")
  19708. }
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19713. {
  19714. side: {
  19715. height: math.unit(5 + 7 / 12, "feet"),
  19716. weight: math.unit(150, "lb"),
  19717. name: "Side",
  19718. image: {
  19719. source: "./media/characters/kassy/side.svg",
  19720. extra: 1280 / 1225,
  19721. bottom: 0.002
  19722. }
  19723. },
  19724. front: {
  19725. height: math.unit(5 + 7 / 12, "feet"),
  19726. weight: math.unit(150, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/kassy/front.svg",
  19730. extra: 1280 / 1225,
  19731. bottom: 0.025
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(5 + 7 / 12, "feet"),
  19736. weight: math.unit(150, "lb"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/kassy/back.svg",
  19740. extra: 1280 / 1225,
  19741. bottom: 0.002
  19742. }
  19743. },
  19744. foot: {
  19745. height: math.unit(1.266, "feet"),
  19746. name: "Foot",
  19747. image: {
  19748. source: "./media/characters/kassy/foot.svg"
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 7 / 12, "feet")
  19756. },
  19757. {
  19758. name: "Macro",
  19759. height: math.unit(137, "feet"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(1, "mile")
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(6 + 1 / 12, "feet"),
  19773. weight: math.unit(200, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/neil/front.svg",
  19777. extra: 1326 / 1250,
  19778. bottom: 0.023
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(6 + 1 / 12, "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(200, "feet")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(5 + 9 / 12, "feet"),
  19799. weight: math.unit(190, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/atticus/front.svg",
  19803. extra: 2934 / 2785,
  19804. bottom: 0.025
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(5 + 9 / 12, "feet"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(180, "feet")
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19822. {
  19823. side: {
  19824. height: math.unit(9, "feet"),
  19825. weight: math.unit(650, "lb"),
  19826. name: "Side",
  19827. image: {
  19828. source: "./media/characters/milo/side.svg",
  19829. extra: 2644 / 2310,
  19830. bottom: 0.032
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(9, "feet"),
  19838. default: true
  19839. },
  19840. {
  19841. name: "Macro",
  19842. height: math.unit(300, "feet")
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19848. {
  19849. side: {
  19850. height: math.unit(8, "meters"),
  19851. weight: math.unit(90000, "kg"),
  19852. name: "Side",
  19853. image: {
  19854. source: "./media/characters/ijzer/side.svg",
  19855. extra: 2756 / 1600,
  19856. bottom: 0.01
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Small",
  19863. height: math.unit(3, "meters")
  19864. },
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(8, "meters"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Normal+",
  19872. height: math.unit(10, "meters")
  19873. },
  19874. {
  19875. name: "Bigger",
  19876. height: math.unit(24, "meters")
  19877. },
  19878. {
  19879. name: "Huge",
  19880. height: math.unit(80, "meters")
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(6 + 2 / 12, "feet"),
  19889. weight: math.unit(153, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/luca-cervicum/front.svg",
  19893. extra: 370 / 327,
  19894. bottom: 0.015
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(6 + 2 / 12, "feet"),
  19899. weight: math.unit(153, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/luca-cervicum/back.svg",
  19903. extra: 367 / 333,
  19904. bottom: 0.005
  19905. }
  19906. },
  19907. frontGear: {
  19908. height: math.unit(6 + 2 / 12, "feet"),
  19909. weight: math.unit(173, "lb"),
  19910. name: "Front (Gear)",
  19911. image: {
  19912. source: "./media/characters/luca-cervicum/front-gear.svg",
  19913. extra: 377 / 333,
  19914. bottom: 0.006
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(6 + 2 / 12, "feet"),
  19922. default: true
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19928. {
  19929. front: {
  19930. height: math.unit(6 + 1 / 12, "feet"),
  19931. weight: math.unit(304, "lb"),
  19932. name: "Front",
  19933. image: {
  19934. source: "./media/characters/oliver/front.svg",
  19935. extra: 157 / 143,
  19936. bottom: 0.08
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(6 + 1 / 12, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19950. {
  19951. front: {
  19952. height: math.unit(5 + 7 / 12, "feet"),
  19953. weight: math.unit(140, "lb"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/shane/front.svg",
  19957. extra: 304 / 289,
  19958. bottom: 0.005
  19959. }
  19960. },
  19961. },
  19962. [
  19963. {
  19964. name: "Normal",
  19965. height: math.unit(5 + 7 / 12, "feet"),
  19966. default: true
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19972. {
  19973. front: {
  19974. height: math.unit(5 + 9 / 12, "feet"),
  19975. weight: math.unit(178, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/shin/front.svg",
  19979. extra: 159 / 151,
  19980. bottom: 0.015
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Normal",
  19987. height: math.unit(5 + 9 / 12, "feet"),
  19988. default: true
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19994. {
  19995. front: {
  19996. height: math.unit(5 + 10 / 12, "feet"),
  19997. weight: math.unit(168, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/xerxes/front.svg",
  20001. extra: 282 / 260,
  20002. bottom: 0.045
  20003. }
  20004. },
  20005. },
  20006. [
  20007. {
  20008. name: "Normal",
  20009. height: math.unit(5 + 10 / 12, "feet"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(6 + 7 / 12, "feet"),
  20019. weight: math.unit(208, "lb"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/chaska/front.svg",
  20023. extra: 332 / 319,
  20024. bottom: 0.015
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(6 + 7 / 12, "feet"),
  20032. default: true
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(5 + 8 / 12, "feet"),
  20041. weight: math.unit(208, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/enuk/front.svg",
  20045. extra: 437 / 406,
  20046. bottom: 0.02
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(5 + 8 / 12, "feet"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(5 + 10 / 12, "feet"),
  20063. weight: math.unit(252, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/bruun/front.svg",
  20067. extra: 197 / 187,
  20068. bottom: 0.012
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(5 + 10 / 12, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(6 + 10 / 12, "feet"),
  20085. weight: math.unit(255, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/alexeev/front.svg",
  20089. extra: 213 / 200,
  20090. bottom: 0.05
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(6 + 10 / 12, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(2 + 8 / 12, "feet"),
  20107. weight: math.unit(22, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/evelyn/front.svg",
  20111. extra: 208 / 180
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(2 + 8 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 9 / 12, "feet"),
  20128. weight: math.unit(139, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/inca/front.svg",
  20132. extra: 294 / 291,
  20133. bottom: 0.03
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 9 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(6 + 3 / 12, "feet"),
  20150. weight: math.unit(185, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/mera/front.svg",
  20154. extra: 291 / 277,
  20155. bottom: 0.03
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(6 + 3 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(6 + 7 / 12, "feet"),
  20172. weight: math.unit(160, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/ceres/front.svg",
  20176. extra: 1023 / 950,
  20177. bottom: 0.027
  20178. }
  20179. },
  20180. back: {
  20181. height: math.unit(6 + 7 / 12, "feet"),
  20182. weight: math.unit(160, "lb"),
  20183. name: "Back",
  20184. image: {
  20185. source: "./media/characters/ceres/back.svg",
  20186. extra: 1023 / 950
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(6 + 7 / 12, "feet"),
  20194. default: true
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(5 + 10 / 12, "feet"),
  20203. weight: math.unit(150, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/kris/front.svg",
  20207. extra: 885 / 803,
  20208. bottom: 0.03
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(5 + 10 / 12, "feet"),
  20216. default: true
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(7, "feet"),
  20225. weight: math.unit(120, "kg"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/taluthus/front.svg",
  20229. extra: 903 / 833,
  20230. bottom: 0.015
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(7, "feet"),
  20238. default: true
  20239. },
  20240. {
  20241. name: "Macro",
  20242. height: math.unit(300, "feet")
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 9 / 12, "feet"),
  20251. weight: math.unit(145, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/dawn/front.svg",
  20255. extra: 2094 / 2016,
  20256. bottom: 0.025
  20257. }
  20258. },
  20259. back: {
  20260. height: math.unit(5 + 9 / 12, "feet"),
  20261. weight: math.unit(160, "lb"),
  20262. name: "Back",
  20263. image: {
  20264. source: "./media/characters/dawn/back.svg",
  20265. extra: 2112 / 2080,
  20266. bottom: 0.005
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(6 + 7 / 12, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20280. {
  20281. anthro: {
  20282. height: math.unit(8 + 3 / 12, "feet"),
  20283. weight: math.unit(450, "lb"),
  20284. name: "Anthro",
  20285. image: {
  20286. source: "./media/characters/arador/anthro.svg",
  20287. extra: 1835 / 1718,
  20288. bottom: 0.025
  20289. }
  20290. },
  20291. feral: {
  20292. height: math.unit(4, "feet"),
  20293. weight: math.unit(200, "lb"),
  20294. name: "Feral",
  20295. image: {
  20296. source: "./media/characters/arador/feral.svg",
  20297. extra: 1683 / 1514,
  20298. bottom: 0.07
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(8 + 3 / 12, "feet")
  20306. },
  20307. {
  20308. name: "Macro",
  20309. height: math.unit(82.5, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(5 + 10 / 12, "feet"),
  20319. weight: math.unit(125, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/dharsi/front.svg",
  20323. extra: 716 / 630,
  20324. bottom: 0.035
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Nano",
  20331. height: math.unit(100, "nm")
  20332. },
  20333. {
  20334. name: "Micro",
  20335. height: math.unit(2, "inches")
  20336. },
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(5 + 10 / 12, "feet"),
  20340. default: true
  20341. },
  20342. {
  20343. name: "Macro",
  20344. height: math.unit(1000, "feet")
  20345. },
  20346. {
  20347. name: "Megamacro",
  20348. height: math.unit(10, "miles")
  20349. },
  20350. {
  20351. name: "Gigamacro",
  20352. height: math.unit(3000, "miles")
  20353. },
  20354. {
  20355. name: "Teramacro",
  20356. height: math.unit(500000, "miles")
  20357. },
  20358. {
  20359. name: "Teramacro+",
  20360. height: math.unit(30, "galaxies")
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(6, "feet"),
  20369. weight: math.unit(150, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/deathy/front.svg",
  20373. extra: 1552 / 1463,
  20374. bottom: 0.025
  20375. }
  20376. },
  20377. side: {
  20378. height: math.unit(6, "feet"),
  20379. weight: math.unit(150, "lb"),
  20380. name: "Side",
  20381. image: {
  20382. source: "./media/characters/deathy/side.svg",
  20383. extra: 1604 / 1455,
  20384. bottom: 0.025
  20385. }
  20386. },
  20387. back: {
  20388. height: math.unit(6, "feet"),
  20389. weight: math.unit(150, "lb"),
  20390. name: "Back",
  20391. image: {
  20392. source: "./media/characters/deathy/back.svg",
  20393. extra: 1580 / 1463,
  20394. bottom: 0.005
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Micro",
  20401. height: math.unit(5, "millimeters")
  20402. },
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 5 / 12, "feet"),
  20406. default: true
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20412. {
  20413. front: {
  20414. height: math.unit(16, "feet"),
  20415. weight: math.unit(4000, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/juniper/front.svg",
  20419. bottom: 0.04
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(16, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(6, "feet"),
  20436. weight: math.unit(150, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/hipster/front.svg",
  20440. extra: 1312 / 1209,
  20441. bottom: 0.025
  20442. }
  20443. },
  20444. back: {
  20445. height: math.unit(6, "feet"),
  20446. weight: math.unit(150, "lb"),
  20447. name: "Back",
  20448. image: {
  20449. source: "./media/characters/hipster/back.svg",
  20450. extra: 1281 / 1196,
  20451. bottom: 0.01
  20452. }
  20453. },
  20454. },
  20455. [
  20456. {
  20457. name: "Micro",
  20458. height: math.unit(1, "mm")
  20459. },
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(4, "inches"),
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(500, "feet")
  20468. },
  20469. {
  20470. name: "Megamacro",
  20471. height: math.unit(1000, "miles")
  20472. },
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(6, "feet"),
  20480. weight: math.unit(150, "lb"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/tendirmuldr/front.svg",
  20484. extra: 1878 / 1772,
  20485. bottom: 0.015
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Megamacro",
  20492. height: math.unit(1500, "miles"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20499. {
  20500. front: {
  20501. height: math.unit(14, "feet"),
  20502. weight: math.unit(12000, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/mort/front.svg",
  20506. extra: 365 / 318,
  20507. bottom: 0.01
  20508. }
  20509. },
  20510. side: {
  20511. height: math.unit(14, "feet"),
  20512. weight: math.unit(12000, "lb"),
  20513. name: "Side",
  20514. image: {
  20515. source: "./media/characters/mort/side.svg",
  20516. extra: 365 / 318,
  20517. bottom: 0.052
  20518. },
  20519. default: true
  20520. },
  20521. back: {
  20522. height: math.unit(14, "feet"),
  20523. weight: math.unit(12000, "lb"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/mort/back.svg",
  20527. extra: 371 / 332,
  20528. bottom: 0.18
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(14, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20542. {
  20543. front: {
  20544. height: math.unit(8, "feet"),
  20545. weight: math.unit(1, "ton"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/lycoa/front.svg",
  20549. extra: 1875 / 1789,
  20550. bottom: 0.022
  20551. }
  20552. },
  20553. back: {
  20554. height: math.unit(8, "feet"),
  20555. weight: math.unit(1, "ton"),
  20556. name: "Back",
  20557. image: {
  20558. source: "./media/characters/lycoa/back.svg",
  20559. extra: 1835 / 1781,
  20560. bottom: 0.03
  20561. }
  20562. },
  20563. head: {
  20564. height: math.unit(2.1, "feet"),
  20565. name: "Head",
  20566. image: {
  20567. source: "./media/characters/lycoa/head.svg"
  20568. }
  20569. },
  20570. tailmaw: {
  20571. height: math.unit(1.9, "feet"),
  20572. name: "Tailmaw",
  20573. image: {
  20574. source: "./media/characters/lycoa/tailmaw.svg"
  20575. }
  20576. },
  20577. tentacles: {
  20578. height: math.unit(2.1, "feet"),
  20579. name: "Tentacles",
  20580. image: {
  20581. source: "./media/characters/lycoa/tentacles.svg"
  20582. }
  20583. },
  20584. dick: {
  20585. height: math.unit(1.73, "feet"),
  20586. name: "Dick",
  20587. image: {
  20588. source: "./media/characters/lycoa/dick.svg"
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(8, "feet"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(30, "feet")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20606. {
  20607. front: {
  20608. height: math.unit(4 + 2 / 12, "feet"),
  20609. weight: math.unit(70, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/naldara/front.svg",
  20613. extra: 841 / 720,
  20614. bottom: 0.04
  20615. }
  20616. },
  20617. naga: {
  20618. height: math.unit(23, "feet"),
  20619. weight: math.unit(15000, "kg"),
  20620. name: "Naga",
  20621. image: {
  20622. source: "./media/characters/naldara/naga.svg",
  20623. extra: 3290 / 2959,
  20624. bottom: 124 / 3432
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(4 + 2 / 12, "feet"),
  20632. default: true
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(13 + 7 / 12, "feet"),
  20641. weight: math.unit(1500, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/briar/front.svg",
  20645. extra: 626 / 596,
  20646. bottom: 0.08
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(13 + 7 / 12, "feet"),
  20654. default: true
  20655. },
  20656. ]
  20657. ))
  20658. characterMakers.push(() => makeCharacter(
  20659. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20660. {
  20661. side: {
  20662. height: math.unit(10, "feet"),
  20663. weight: math.unit(500, "lb"),
  20664. name: "Side",
  20665. image: {
  20666. source: "./media/characters/vanguard/side.svg",
  20667. extra: 502 / 425,
  20668. bottom: 0.087
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(10, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(7.5, "feet"),
  20685. weight: math.unit(2, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/artemis/front.svg",
  20689. extra: 1192 / 1075,
  20690. bottom: 0.07
  20691. }
  20692. },
  20693. frontNsfw: {
  20694. height: math.unit(7.5, "feet"),
  20695. weight: math.unit(2, "lb"),
  20696. name: "Front (NSFW)",
  20697. image: {
  20698. source: "./media/characters/artemis/front-nsfw.svg",
  20699. extra: 1192 / 1075,
  20700. bottom: 0.07
  20701. }
  20702. },
  20703. frontNsfwer: {
  20704. height: math.unit(7.5, "feet"),
  20705. weight: math.unit(2, "lb"),
  20706. name: "Front (NSFW-er)",
  20707. image: {
  20708. source: "./media/characters/artemis/front-nsfwer.svg",
  20709. extra: 1192 / 1075,
  20710. bottom: 0.07
  20711. }
  20712. },
  20713. side: {
  20714. height: math.unit(7.5, "feet"),
  20715. weight: math.unit(2, "lb"),
  20716. name: "Side",
  20717. image: {
  20718. source: "./media/characters/artemis/side.svg",
  20719. extra: 1192 / 1075,
  20720. bottom: 0.07
  20721. }
  20722. },
  20723. sideNsfw: {
  20724. height: math.unit(7.5, "feet"),
  20725. weight: math.unit(2, "lb"),
  20726. name: "Side (NSFW)",
  20727. image: {
  20728. source: "./media/characters/artemis/side-nsfw.svg",
  20729. extra: 1192 / 1075,
  20730. bottom: 0.07
  20731. }
  20732. },
  20733. sideNsfwer: {
  20734. height: math.unit(7.5, "feet"),
  20735. weight: math.unit(2, "lb"),
  20736. name: "Side (NSFW-er)",
  20737. image: {
  20738. source: "./media/characters/artemis/side-nsfwer.svg",
  20739. extra: 1192 / 1075,
  20740. bottom: 0.07
  20741. }
  20742. },
  20743. maw: {
  20744. height: math.unit(1.1, "feet"),
  20745. name: "Maw",
  20746. image: {
  20747. source: "./media/characters/artemis/maw.svg"
  20748. }
  20749. },
  20750. stomach: {
  20751. height: math.unit(0.95, "feet"),
  20752. name: "Stomach",
  20753. image: {
  20754. source: "./media/characters/artemis/stomach.svg"
  20755. }
  20756. },
  20757. dickCanine: {
  20758. height: math.unit(1, "feet"),
  20759. name: "Dick (Canine)",
  20760. image: {
  20761. source: "./media/characters/artemis/dick-canine.svg"
  20762. }
  20763. },
  20764. dickEquine: {
  20765. height: math.unit(0.85, "feet"),
  20766. name: "Dick (Equine)",
  20767. image: {
  20768. source: "./media/characters/artemis/dick-equine.svg"
  20769. }
  20770. },
  20771. dickExotic: {
  20772. height: math.unit(0.85, "feet"),
  20773. name: "Dick (Exotic)",
  20774. image: {
  20775. source: "./media/characters/artemis/dick-exotic.svg"
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(7.5, "feet"),
  20783. default: true
  20784. },
  20785. {
  20786. name: "Enlarged",
  20787. height: math.unit(12, "feet")
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(5 + 3 / 12, "feet"),
  20796. weight: math.unit(160, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/kira/front.svg",
  20800. extra: 906 / 786,
  20801. bottom: 0.01
  20802. }
  20803. },
  20804. back: {
  20805. height: math.unit(5 + 3 / 12, "feet"),
  20806. weight: math.unit(160, "lb"),
  20807. name: "Back",
  20808. image: {
  20809. source: "./media/characters/kira/back.svg",
  20810. extra: 882 / 757,
  20811. bottom: 0.005
  20812. }
  20813. },
  20814. frontDressed: {
  20815. height: math.unit(5 + 3 / 12, "feet"),
  20816. weight: math.unit(160, "lb"),
  20817. name: "Front (Dressed)",
  20818. image: {
  20819. source: "./media/characters/kira/front-dressed.svg",
  20820. extra: 906 / 786,
  20821. bottom: 0.01
  20822. }
  20823. },
  20824. beans: {
  20825. height: math.unit(0.92, "feet"),
  20826. name: "Beans",
  20827. image: {
  20828. source: "./media/characters/kira/beans.svg"
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5 + 3 / 12, "feet"),
  20836. default: true
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20842. {
  20843. front: {
  20844. height: math.unit(5 + 4 / 12, "feet"),
  20845. weight: math.unit(145, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/scramble/front.svg",
  20849. extra: 763 / 727,
  20850. bottom: 0.05
  20851. }
  20852. },
  20853. back: {
  20854. height: math.unit(5 + 4 / 12, "feet"),
  20855. weight: math.unit(145, "lb"),
  20856. name: "Back",
  20857. image: {
  20858. source: "./media/characters/scramble/back.svg",
  20859. extra: 826 / 737,
  20860. bottom: 0.002
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(5 + 4 / 12, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20874. {
  20875. side: {
  20876. height: math.unit(6 + 2 / 12, "feet"),
  20877. weight: math.unit(190, "lb"),
  20878. name: "Side",
  20879. image: {
  20880. source: "./media/characters/biscuit/side.svg",
  20881. extra: 858 / 791,
  20882. bottom: 0.044
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(6 + 2 / 12, "feet"),
  20890. default: true
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20896. {
  20897. front: {
  20898. height: math.unit(5 + 2 / 12, "feet"),
  20899. weight: math.unit(120, "lb"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/poffin/front.svg",
  20903. extra: 786 / 680,
  20904. bottom: 0.005
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(5 + 2 / 12, "feet"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(6 + 3 / 12, "feet"),
  20921. weight: math.unit(519, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/dhari/front.svg",
  20925. extra: 1048 / 946,
  20926. bottom: 0.015
  20927. }
  20928. },
  20929. back: {
  20930. height: math.unit(6 + 3 / 12, "feet"),
  20931. weight: math.unit(519, "lb"),
  20932. name: "Back",
  20933. image: {
  20934. source: "./media/characters/dhari/back.svg",
  20935. extra: 1048 / 931,
  20936. bottom: 0.005
  20937. }
  20938. },
  20939. frontDressed: {
  20940. height: math.unit(6 + 3 / 12, "feet"),
  20941. weight: math.unit(519, "lb"),
  20942. name: "Front (Dressed)",
  20943. image: {
  20944. source: "./media/characters/dhari/front-dressed.svg",
  20945. extra: 1713 / 1546,
  20946. bottom: 0.02
  20947. }
  20948. },
  20949. backDressed: {
  20950. height: math.unit(6 + 3 / 12, "feet"),
  20951. weight: math.unit(519, "lb"),
  20952. name: "Back (Dressed)",
  20953. image: {
  20954. source: "./media/characters/dhari/back-dressed.svg",
  20955. extra: 1699 / 1537,
  20956. bottom: 0.01
  20957. }
  20958. },
  20959. maw: {
  20960. height: math.unit(0.95, "feet"),
  20961. name: "Maw",
  20962. image: {
  20963. source: "./media/characters/dhari/maw.svg"
  20964. }
  20965. },
  20966. wereFront: {
  20967. height: math.unit(12 + 8 / 12, "feet"),
  20968. weight: math.unit(4000, "lb"),
  20969. name: "Front (Were)",
  20970. image: {
  20971. source: "./media/characters/dhari/were-front.svg",
  20972. extra: 1065 / 969,
  20973. bottom: 0.015
  20974. }
  20975. },
  20976. wereBack: {
  20977. height: math.unit(12 + 8 / 12, "feet"),
  20978. weight: math.unit(4000, "lb"),
  20979. name: "Back (Were)",
  20980. image: {
  20981. source: "./media/characters/dhari/were-back.svg",
  20982. extra: 1065 / 969,
  20983. bottom: 0.012
  20984. }
  20985. },
  20986. wereMaw: {
  20987. height: math.unit(0.625, "meters"),
  20988. name: "Maw (Were)",
  20989. image: {
  20990. source: "./media/characters/dhari/were-maw.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(6 + 3 / 12, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21004. {
  21005. anthro: {
  21006. height: math.unit(5 + 7 / 12, "feet"),
  21007. weight: math.unit(175, "lb"),
  21008. name: "Anthro",
  21009. image: {
  21010. source: "./media/characters/rena-dyne/anthro.svg",
  21011. extra: 1849 / 1785,
  21012. bottom: 0.005
  21013. }
  21014. },
  21015. taur: {
  21016. height: math.unit(15 + 6 / 12, "feet"),
  21017. weight: math.unit(8000, "lb"),
  21018. name: "Taur",
  21019. image: {
  21020. source: "./media/characters/rena-dyne/taur.svg",
  21021. extra: 2315 / 2234,
  21022. bottom: 0.033
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 7 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(8, "feet"),
  21039. weight: math.unit(600, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/weremeep/front.svg",
  21043. extra: 967 / 862,
  21044. bottom: 0.01
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(8, "feet"),
  21052. default: true
  21053. },
  21054. {
  21055. name: "Lorg",
  21056. height: math.unit(12, "feet")
  21057. },
  21058. {
  21059. name: "Oh Lawd She Comin'",
  21060. height: math.unit(20, "feet")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21066. {
  21067. front: {
  21068. height: math.unit(4, "feet"),
  21069. weight: math.unit(90, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/reza/front.svg",
  21073. extra: 1183 / 1111,
  21074. bottom: 0.017
  21075. }
  21076. },
  21077. back: {
  21078. height: math.unit(4, "feet"),
  21079. weight: math.unit(90, "lb"),
  21080. name: "Back",
  21081. image: {
  21082. source: "./media/characters/reza/back.svg",
  21083. extra: 1183 / 1111,
  21084. bottom: 0.01
  21085. }
  21086. },
  21087. drake: {
  21088. height: math.unit(30, "feet"),
  21089. weight: math.unit(246960, "lb"),
  21090. name: "Drake",
  21091. image: {
  21092. source: "./media/characters/reza/drake.svg",
  21093. extra: 2350 / 2024,
  21094. bottom: 60.7 / 2403
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(4, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21108. {
  21109. side: {
  21110. height: math.unit(15, "feet"),
  21111. weight: math.unit(14, "tons"),
  21112. name: "Side",
  21113. image: {
  21114. source: "./media/characters/athea/side.svg",
  21115. extra: 960 / 540,
  21116. bottom: 0.003
  21117. }
  21118. },
  21119. sitting: {
  21120. height: math.unit(6 * 2.85, "feet"),
  21121. weight: math.unit(14, "tons"),
  21122. name: "Sitting",
  21123. image: {
  21124. source: "./media/characters/athea/sitting.svg",
  21125. extra: 621 / 581,
  21126. bottom: 0.075
  21127. }
  21128. },
  21129. maw: {
  21130. height: math.unit(7.59498031496063, "feet"),
  21131. name: "Maw",
  21132. image: {
  21133. source: "./media/characters/athea/maw.svg"
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Lap Cat",
  21140. height: math.unit(2.5, "feet")
  21141. },
  21142. {
  21143. name: "Minimacro",
  21144. height: math.unit(15, "feet"),
  21145. default: true
  21146. },
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(120, "feet")
  21150. },
  21151. {
  21152. name: "Macro+",
  21153. height: math.unit(640, "feet")
  21154. },
  21155. {
  21156. name: "Colossus",
  21157. height: math.unit(2.2, "miles")
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21163. {
  21164. front: {
  21165. height: math.unit(8 + 8 / 12, "feet"),
  21166. weight: math.unit(130, "kg"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/seroko/front.svg",
  21170. extra: 1385 / 1280,
  21171. bottom: 0.025
  21172. }
  21173. },
  21174. back: {
  21175. height: math.unit(8 + 8 / 12, "feet"),
  21176. weight: math.unit(130, "kg"),
  21177. name: "Back",
  21178. image: {
  21179. source: "./media/characters/seroko/back.svg",
  21180. extra: 1369 / 1238,
  21181. bottom: 0.018
  21182. }
  21183. },
  21184. frontDressed: {
  21185. height: math.unit(8 + 8 / 12, "feet"),
  21186. weight: math.unit(130, "kg"),
  21187. name: "Front (Dressed)",
  21188. image: {
  21189. source: "./media/characters/seroko/front-dressed.svg",
  21190. extra: 1366 / 1275,
  21191. bottom: 0.03
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(8 + 8 / 12, "feet"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21205. {
  21206. front: {
  21207. height: math.unit(5.5, "feet"),
  21208. weight: math.unit(160, "lb"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/quatzi/front.svg",
  21212. extra: 2346 / 2242,
  21213. bottom: 0.015
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(5.5, "feet"),
  21221. default: true
  21222. },
  21223. {
  21224. name: "Big",
  21225. height: math.unit(7.7, "feet")
  21226. },
  21227. ]
  21228. ))
  21229. characterMakers.push(() => makeCharacter(
  21230. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21231. {
  21232. front: {
  21233. height: math.unit(5 + 11 / 12, "feet"),
  21234. weight: math.unit(180, "lb"),
  21235. name: "Front",
  21236. image: {
  21237. source: "./media/characters/sen/front.svg",
  21238. extra: 1321 / 1254,
  21239. bottom: 0.015
  21240. }
  21241. },
  21242. side: {
  21243. height: math.unit(5 + 11 / 12, "feet"),
  21244. weight: math.unit(180, "lb"),
  21245. name: "Side",
  21246. image: {
  21247. source: "./media/characters/sen/side.svg",
  21248. extra: 1321 / 1254,
  21249. bottom: 0.007
  21250. }
  21251. },
  21252. back: {
  21253. height: math.unit(5 + 11 / 12, "feet"),
  21254. weight: math.unit(180, "lb"),
  21255. name: "Back",
  21256. image: {
  21257. source: "./media/characters/sen/back.svg",
  21258. extra: 1321 / 1254
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(5 + 11 / 12, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(166.6, "cm"),
  21275. weight: math.unit(66.6, "kg"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/fruity/front.svg",
  21279. extra: 1510 / 1386,
  21280. bottom: 0.04
  21281. }
  21282. },
  21283. back: {
  21284. height: math.unit(166.6, "cm"),
  21285. weight: math.unit(66.6, "lb"),
  21286. name: "Back",
  21287. image: {
  21288. source: "./media/characters/fruity/back.svg",
  21289. extra: 1563 / 1435,
  21290. bottom: 0.005
  21291. }
  21292. },
  21293. },
  21294. [
  21295. {
  21296. name: "Normal",
  21297. height: math.unit(166.6, "cm"),
  21298. default: true
  21299. },
  21300. {
  21301. name: "Demonic",
  21302. height: math.unit(166.6, "feet")
  21303. },
  21304. ]
  21305. ))
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21308. {
  21309. side: {
  21310. height: math.unit(10, "feet"),
  21311. weight: math.unit(500, "lb"),
  21312. name: "Side",
  21313. image: {
  21314. source: "./media/characters/zost/side.svg",
  21315. extra: 966 / 880,
  21316. bottom: 0.075
  21317. }
  21318. },
  21319. mawFront: {
  21320. height: math.unit(1.08, "meters"),
  21321. name: "Maw (Front)",
  21322. image: {
  21323. source: "./media/characters/zost/maw-front.svg"
  21324. }
  21325. },
  21326. mawSide: {
  21327. height: math.unit(2.66, "feet"),
  21328. name: "Maw (Side)",
  21329. image: {
  21330. source: "./media/characters/zost/maw-side.svg"
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(10, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(5 + 4 / 12, "feet"),
  21347. weight: math.unit(120, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/luci/front.svg",
  21351. extra: 1985 / 1884,
  21352. bottom: 0.04
  21353. }
  21354. },
  21355. back: {
  21356. height: math.unit(5 + 4 / 12, "feet"),
  21357. weight: math.unit(120, "lb"),
  21358. name: "Back",
  21359. image: {
  21360. source: "./media/characters/luci/back.svg",
  21361. extra: 1892 / 1791,
  21362. bottom: 0.002
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(5 + 4 / 12, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(1500, "feet"),
  21379. weight: math.unit(3.8e6, "tons"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/2th/front.svg",
  21383. extra: 3489 / 3350,
  21384. bottom: 0.1
  21385. }
  21386. },
  21387. foot: {
  21388. height: math.unit(461, "feet"),
  21389. name: "Foot",
  21390. image: {
  21391. source: "./media/characters/2th/foot.svg"
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "\"Micro\"",
  21398. height: math.unit(15 + 7 / 12, "feet")
  21399. },
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(1500, "feet"),
  21403. default: true
  21404. },
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(5000, "feet")
  21408. },
  21409. {
  21410. name: "Megamacro",
  21411. height: math.unit(15, "miles")
  21412. },
  21413. {
  21414. name: "Gigamacro",
  21415. height: math.unit(4000, "miles")
  21416. },
  21417. {
  21418. name: "Galactic",
  21419. height: math.unit(50, "AU")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(5 + 6 / 12, "feet"),
  21428. weight: math.unit(220, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/amethyst/front.svg",
  21432. extra: 2078 / 2040,
  21433. bottom: 0.045
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(5 + 6 / 12, "feet"),
  21438. weight: math.unit(220, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/amethyst/back.svg",
  21442. extra: 2021 / 1989,
  21443. bottom: 0.02
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(5 + 6 / 12, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(4 + 11 / 12, "feet"),
  21460. weight: math.unit(120, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/yumi-akiyama/front.svg",
  21464. extra: 1327 / 1235,
  21465. bottom: 0.02
  21466. }
  21467. },
  21468. back: {
  21469. height: math.unit(4 + 11 / 12, "feet"),
  21470. weight: math.unit(120, "lb"),
  21471. name: "Back",
  21472. image: {
  21473. source: "./media/characters/yumi-akiyama/back.svg",
  21474. extra: 1287 / 1245,
  21475. bottom: 0.002
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Galactic",
  21482. height: math.unit(50, "galaxies"),
  21483. default: true
  21484. },
  21485. {
  21486. name: "Universal",
  21487. height: math.unit(100, "universes")
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(8, "feet"),
  21496. weight: math.unit(500, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/rifter-yrmori/front.svg",
  21500. extra: 1180 / 1125,
  21501. bottom: 0.02
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(8, "feet"),
  21506. weight: math.unit(500, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/rifter-yrmori/back.svg",
  21510. extra: 1190 / 1145,
  21511. bottom: 0.001
  21512. }
  21513. },
  21514. wings: {
  21515. height: math.unit(7.75, "feet"),
  21516. weight: math.unit(500, "lb"),
  21517. name: "Wings",
  21518. image: {
  21519. source: "./media/characters/rifter-yrmori/wings.svg",
  21520. extra: 1357 / 1285
  21521. }
  21522. },
  21523. maw: {
  21524. height: math.unit(0.8, "feet"),
  21525. name: "Maw",
  21526. image: {
  21527. source: "./media/characters/rifter-yrmori/maw.svg"
  21528. }
  21529. },
  21530. mawfront: {
  21531. height: math.unit(1.45, "feet"),
  21532. name: "Maw (Front)",
  21533. image: {
  21534. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(8, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Macro",
  21546. height: math.unit(42, "meters")
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21552. {
  21553. were: {
  21554. height: math.unit(25 + 6 / 12, "feet"),
  21555. weight: math.unit(10000, "lb"),
  21556. name: "Were",
  21557. image: {
  21558. source: "./media/characters/tahajin/were.svg",
  21559. extra: 801 / 770,
  21560. bottom: 0.042
  21561. }
  21562. },
  21563. aquatic: {
  21564. height: math.unit(6 + 4 / 12, "feet"),
  21565. weight: math.unit(160, "lb"),
  21566. name: "Aquatic",
  21567. image: {
  21568. source: "./media/characters/tahajin/aquatic.svg",
  21569. extra: 572 / 542,
  21570. bottom: 0.04
  21571. }
  21572. },
  21573. chow: {
  21574. height: math.unit(8 + 11 / 12, "feet"),
  21575. weight: math.unit(450, "lb"),
  21576. name: "Chow",
  21577. image: {
  21578. source: "./media/characters/tahajin/chow.svg",
  21579. extra: 660 / 640,
  21580. bottom: 0.015
  21581. }
  21582. },
  21583. demiNaga: {
  21584. height: math.unit(6 + 8 / 12, "feet"),
  21585. weight: math.unit(300, "lb"),
  21586. name: "Demi Naga",
  21587. image: {
  21588. source: "./media/characters/tahajin/demi-naga.svg",
  21589. extra: 643 / 615,
  21590. bottom: 0.1
  21591. }
  21592. },
  21593. data: {
  21594. height: math.unit(5, "inches"),
  21595. weight: math.unit(0.1, "lb"),
  21596. name: "Data",
  21597. image: {
  21598. source: "./media/characters/tahajin/data.svg"
  21599. }
  21600. },
  21601. fluu: {
  21602. height: math.unit(5 + 7 / 12, "feet"),
  21603. weight: math.unit(140, "lb"),
  21604. name: "Fluu",
  21605. image: {
  21606. source: "./media/characters/tahajin/fluu.svg",
  21607. extra: 628 / 592,
  21608. bottom: 0.02
  21609. }
  21610. },
  21611. starWarrior: {
  21612. height: math.unit(4 + 5 / 12, "feet"),
  21613. weight: math.unit(50, "lb"),
  21614. name: "Star Warrior",
  21615. image: {
  21616. source: "./media/characters/tahajin/star-warrior.svg"
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(25 + 6 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(8, "feet"),
  21633. weight: math.unit(350, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/gabira/front.svg",
  21637. extra: 608 / 580,
  21638. bottom: 0.03
  21639. }
  21640. },
  21641. back: {
  21642. height: math.unit(8, "feet"),
  21643. weight: math.unit(350, "lb"),
  21644. name: "Back",
  21645. image: {
  21646. source: "./media/characters/gabira/back.svg",
  21647. extra: 608 / 580,
  21648. bottom: 0.03
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(8, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(5 + 3 / 12, "feet"),
  21665. weight: math.unit(137, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/sasha-katraine/front.svg",
  21669. bottom: 0.045
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Micro",
  21676. height: math.unit(5, "inches")
  21677. },
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(5 + 3 / 12, "feet"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21687. {
  21688. side: {
  21689. height: math.unit(4, "inches"),
  21690. weight: math.unit(200, "grams"),
  21691. name: "Side",
  21692. image: {
  21693. source: "./media/characters/der/side.svg",
  21694. extra: 719 / 400,
  21695. bottom: 30.6 / 749.9187
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Micro",
  21702. height: math.unit(4, "inches"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21709. {
  21710. side: {
  21711. height: math.unit(30, "meters"),
  21712. weight: math.unit(700, "tonnes"),
  21713. name: "Side",
  21714. image: {
  21715. source: "./media/characters/fixerdragon/side.svg",
  21716. extra: (1293.0514 - 116.03) / 1106.86,
  21717. bottom: 116.03 / 1293.0514
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Planck",
  21724. height: math.unit(1.6e-35, "meters")
  21725. },
  21726. {
  21727. name: "Micro",
  21728. height: math.unit(0.4, "meters")
  21729. },
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(30, "meters"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Megamacro",
  21737. height: math.unit(1.2, "megameters")
  21738. },
  21739. {
  21740. name: "Teramacro",
  21741. height: math.unit(130, "terameters")
  21742. },
  21743. {
  21744. name: "Yottamacro",
  21745. height: math.unit(6200, "yottameters")
  21746. },
  21747. ]
  21748. ));
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(8, "feet"),
  21754. weight: math.unit(250, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/kite/front.svg",
  21758. extra: 2796 / 2659,
  21759. bottom: 0.002
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(8, "feet"),
  21767. default: true
  21768. },
  21769. {
  21770. name: "Macro",
  21771. height: math.unit(360, "feet")
  21772. },
  21773. {
  21774. name: "Megamacro",
  21775. height: math.unit(1500, "feet")
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(5 + 11/12, "feet"),
  21784. weight: math.unit(170, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/poojawa-vynar/front.svg",
  21788. extra: 1735/1585,
  21789. bottom: 96/1831
  21790. }
  21791. },
  21792. back: {
  21793. height: math.unit(5 + 11/12, "feet"),
  21794. weight: math.unit(170, "lb"),
  21795. name: "Back",
  21796. image: {
  21797. source: "./media/characters/poojawa-vynar/back.svg",
  21798. extra: 1749/1607,
  21799. bottom: 28/1777
  21800. }
  21801. },
  21802. male: {
  21803. height: math.unit(5 + 11/12, "feet"),
  21804. weight: math.unit(170, "lb"),
  21805. name: "Male",
  21806. image: {
  21807. source: "./media/characters/poojawa-vynar/male.svg",
  21808. extra: 1855/1713,
  21809. bottom: 63/1918
  21810. }
  21811. },
  21812. taur: {
  21813. height: math.unit(5 + 11/12, "feet"),
  21814. weight: math.unit(170, "lb"),
  21815. name: "Taur",
  21816. image: {
  21817. source: "./media/characters/poojawa-vynar/taur.svg",
  21818. extra: 1151/1059,
  21819. bottom: 356/1507
  21820. }
  21821. },
  21822. frontDressed: {
  21823. height: math.unit(5 + 11/12, "feet"),
  21824. weight: math.unit(170, "lb"),
  21825. name: "Front (Dressed)",
  21826. image: {
  21827. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21828. extra: 1735/1585,
  21829. bottom: 96/1831
  21830. }
  21831. },
  21832. backDressed: {
  21833. height: math.unit(5 + 11/12, "feet"),
  21834. weight: math.unit(170, "lb"),
  21835. name: "Back (Dressed)",
  21836. image: {
  21837. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21838. extra: 1749/1607,
  21839. bottom: 28/1777
  21840. }
  21841. },
  21842. maleDressed: {
  21843. height: math.unit(5 + 11/12, "feet"),
  21844. weight: math.unit(170, "lb"),
  21845. name: "Male (Dressed)",
  21846. image: {
  21847. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21848. extra: 1855/1713,
  21849. bottom: 63/1918
  21850. }
  21851. },
  21852. taurDressed: {
  21853. height: math.unit(5 + 11/12, "feet"),
  21854. weight: math.unit(170, "lb"),
  21855. name: "Taur (Dressed)",
  21856. image: {
  21857. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21858. extra: 1151/1059,
  21859. bottom: 356/1507
  21860. }
  21861. },
  21862. maw: {
  21863. height: math.unit(1.46, "feet"),
  21864. name: "Maw",
  21865. image: {
  21866. source: "./media/characters/poojawa-vynar/maw.svg"
  21867. }
  21868. },
  21869. head: {
  21870. height: math.unit(2.34, "feet"),
  21871. name: "Head",
  21872. image: {
  21873. source: "./media/characters/poojawa-vynar/head.svg"
  21874. }
  21875. },
  21876. paw: {
  21877. height: math.unit(1.61, "feet"),
  21878. name: "Paw",
  21879. image: {
  21880. source: "./media/characters/poojawa-vynar/paw.svg"
  21881. }
  21882. },
  21883. pawToering: {
  21884. height: math.unit(1.72, "feet"),
  21885. name: "Paw (Toering)",
  21886. image: {
  21887. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21888. }
  21889. },
  21890. toering: {
  21891. height: math.unit(2.9, "inches"),
  21892. name: "Toering",
  21893. image: {
  21894. source: "./media/characters/poojawa-vynar/toering.svg"
  21895. }
  21896. },
  21897. shaft: {
  21898. height: math.unit(0.625, "feet"),
  21899. name: "Shaft",
  21900. image: {
  21901. source: "./media/characters/poojawa-vynar/shaft.svg"
  21902. }
  21903. },
  21904. spade: {
  21905. height: math.unit(0.42, "feet"),
  21906. name: "Spade",
  21907. image: {
  21908. source: "./media/characters/poojawa-vynar/spade.svg"
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Shortstack",
  21915. height: math.unit(4, "feet")
  21916. },
  21917. {
  21918. name: "Normal",
  21919. height: math.unit(5 + 11 / 12, "feet"),
  21920. default: true
  21921. },
  21922. {
  21923. name: "Tauric",
  21924. height: math.unit(4, "meters")
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21930. {
  21931. front: {
  21932. height: math.unit(293, "meters"),
  21933. weight: math.unit(70400, "tons"),
  21934. name: "Front",
  21935. image: {
  21936. source: "./media/characters/violette/front.svg",
  21937. extra: 1227 / 1180,
  21938. bottom: 0.005
  21939. }
  21940. },
  21941. back: {
  21942. height: math.unit(293, "meters"),
  21943. weight: math.unit(70400, "tons"),
  21944. name: "Back",
  21945. image: {
  21946. source: "./media/characters/violette/back.svg",
  21947. extra: 1227 / 1180,
  21948. bottom: 0.005
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(293, "meters"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(1050, "feet"),
  21965. weight: math.unit(200000, "tons"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/alessandra/front.svg",
  21969. extra: 960 / 912,
  21970. bottom: 0.06
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(1050, "feet")
  21978. },
  21979. {
  21980. name: "Macro+",
  21981. height: math.unit(900, "meters"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(5, "feet"),
  21991. weight: math.unit(187, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/person/front.svg",
  21995. extra: 3087 / 2945,
  21996. bottom: 91 / 3181
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Micro",
  22003. height: math.unit(3, "inches")
  22004. },
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(5, "feet"),
  22008. default: true
  22009. },
  22010. {
  22011. name: "Macro",
  22012. height: math.unit(90, "feet")
  22013. },
  22014. {
  22015. name: "Max Size",
  22016. height: math.unit(280, "feet")
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22022. {
  22023. front: {
  22024. height: math.unit(4.5, "meters"),
  22025. weight: math.unit(3200, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/ty/front.svg",
  22029. extra: 1038 / 960,
  22030. bottom: 31.156 / 1068
  22031. }
  22032. },
  22033. back: {
  22034. height: math.unit(4.5, "meters"),
  22035. weight: math.unit(3200, "lb"),
  22036. name: "Back",
  22037. image: {
  22038. source: "./media/characters/ty/back.svg",
  22039. extra: 1044 / 966,
  22040. bottom: 7.48 / 1049
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(4.5, "meters"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(5 + 4 / 12, "feet"),
  22057. weight: math.unit(115, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/rocky/front.svg",
  22061. extra: 1012 / 975,
  22062. bottom: 54 / 1066
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(5 + 4 / 12, "feet"),
  22070. default: true
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22076. {
  22077. upright: {
  22078. height: math.unit(6, "meters"),
  22079. weight: math.unit(4000, "kg"),
  22080. name: "Upright",
  22081. image: {
  22082. source: "./media/characters/ruin/upright.svg",
  22083. extra: 668 / 661,
  22084. bottom: 42 / 799.8396
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(6, "meters"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(5, "feet"),
  22101. weight: math.unit(106, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/robin/front.svg",
  22105. extra: 862 / 799,
  22106. bottom: 42.4 / 914.8856
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(5, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22120. {
  22121. side: {
  22122. height: math.unit(3, "feet"),
  22123. weight: math.unit(225, "lb"),
  22124. name: "Side",
  22125. image: {
  22126. source: "./media/characters/saian/side.svg",
  22127. extra: 566 / 356,
  22128. bottom: 79.7 / 643
  22129. }
  22130. },
  22131. maw: {
  22132. height: math.unit(2.85, "feet"),
  22133. name: "Maw",
  22134. image: {
  22135. source: "./media/characters/saian/maw.svg"
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(3, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22149. {
  22150. side: {
  22151. height: math.unit(8, "feet"),
  22152. weight: math.unit(300, "lb"),
  22153. name: "Side",
  22154. image: {
  22155. source: "./media/characters/equus-silvermane/side.svg",
  22156. extra: 2176 / 2050,
  22157. bottom: 65.7 / 2245
  22158. }
  22159. },
  22160. front: {
  22161. height: math.unit(8, "feet"),
  22162. weight: math.unit(300, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/equus-silvermane/front.svg",
  22166. extra: 4633 / 4400,
  22167. bottom: 71.3 / 4706.915
  22168. }
  22169. },
  22170. sideStepping: {
  22171. height: math.unit(8, "feet"),
  22172. weight: math.unit(300, "lb"),
  22173. name: "Side (Stepping)",
  22174. image: {
  22175. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22176. extra: 1968 / 1860,
  22177. bottom: 16.4 / 1989
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(8, "feet")
  22185. },
  22186. {
  22187. name: "Minimacro",
  22188. height: math.unit(75, "feet"),
  22189. default: true
  22190. },
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(150, "feet")
  22194. },
  22195. {
  22196. name: "Macro+",
  22197. height: math.unit(1000, "feet")
  22198. },
  22199. {
  22200. name: "Megamacro",
  22201. height: math.unit(1, "mile")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22207. {
  22208. side: {
  22209. height: math.unit(20, "feet"),
  22210. weight: math.unit(30000, "kg"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/windar/side.svg",
  22214. extra: 1491 / 1248,
  22215. bottom: 82.56 / 1568
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(20, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22229. {
  22230. side: {
  22231. height: math.unit(15.66, "feet"),
  22232. weight: math.unit(150, "lb"),
  22233. name: "Side",
  22234. image: {
  22235. source: "./media/characters/melody/side.svg",
  22236. extra: 1097 / 944,
  22237. bottom: 11.8 / 1109
  22238. }
  22239. },
  22240. sideOutfit: {
  22241. height: math.unit(15.66, "feet"),
  22242. weight: math.unit(150, "lb"),
  22243. name: "Side (Outfit)",
  22244. image: {
  22245. source: "./media/characters/melody/side-outfit.svg",
  22246. extra: 1097 / 944,
  22247. bottom: 11.8 / 1109
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(15.66, "feet"),
  22255. default: true
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(8, "feet"),
  22264. weight: math.unit(325, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/windera/front.svg",
  22268. extra: 3180 / 2845,
  22269. bottom: 178 / 3365
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(8, "feet"),
  22277. default: true
  22278. },
  22279. ]
  22280. ))
  22281. characterMakers.push(() => makeCharacter(
  22282. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22283. {
  22284. front: {
  22285. height: math.unit(28.75, "feet"),
  22286. weight: math.unit(2000, "kg"),
  22287. name: "Front",
  22288. image: {
  22289. source: "./media/characters/sonear/front.svg",
  22290. extra: 1041.1 / 964.9,
  22291. bottom: 53.7 / 1096.6
  22292. }
  22293. },
  22294. },
  22295. [
  22296. {
  22297. name: "Normal",
  22298. height: math.unit(28.75, "feet"),
  22299. default: true
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22305. {
  22306. side: {
  22307. height: math.unit(25.5, "feet"),
  22308. weight: math.unit(23000, "kg"),
  22309. name: "Side",
  22310. image: {
  22311. source: "./media/characters/kanara/side.svg"
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(25.5, "feet"),
  22319. default: true
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22325. {
  22326. side: {
  22327. height: math.unit(10, "feet"),
  22328. weight: math.unit(1000, "kg"),
  22329. name: "Side",
  22330. image: {
  22331. source: "./media/characters/ereus/side.svg",
  22332. extra: 1157 / 959,
  22333. bottom: 153 / 1312.5
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(10, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22347. {
  22348. side: {
  22349. height: math.unit(4.5, "feet"),
  22350. weight: math.unit(500, "lb"),
  22351. name: "Side",
  22352. image: {
  22353. source: "./media/characters/e-ter/side.svg",
  22354. extra: 1550 / 1248,
  22355. bottom: 146 / 1694
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(4.5, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22369. {
  22370. side: {
  22371. height: math.unit(9.7, "feet"),
  22372. weight: math.unit(4000, "kg"),
  22373. name: "Side",
  22374. image: {
  22375. source: "./media/characters/yamie/side.svg"
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(9.7, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(50, "feet"),
  22392. weight: math.unit(50000, "kg"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/anders/front.svg",
  22396. extra: 570 / 539,
  22397. bottom: 14.7 / 586.7
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Large",
  22404. height: math.unit(50, "feet")
  22405. },
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(2000, "feet"),
  22409. default: true
  22410. },
  22411. {
  22412. name: "Megamacro",
  22413. height: math.unit(12, "miles")
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22419. {
  22420. front: {
  22421. height: math.unit(7 + 2 / 12, "feet"),
  22422. weight: math.unit(300, "lb"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/reban/front.svg",
  22426. extra: 1287/1212,
  22427. bottom: 148/1435
  22428. }
  22429. },
  22430. head: {
  22431. height: math.unit(1.95, "feet"),
  22432. name: "Head",
  22433. image: {
  22434. source: "./media/characters/reban/head.svg"
  22435. }
  22436. },
  22437. maw: {
  22438. height: math.unit(0.95, "feet"),
  22439. name: "Maw",
  22440. image: {
  22441. source: "./media/characters/reban/maw.svg"
  22442. }
  22443. },
  22444. foot: {
  22445. height: math.unit(1.65, "feet"),
  22446. name: "Foot",
  22447. image: {
  22448. source: "./media/characters/reban/foot.svg"
  22449. }
  22450. },
  22451. dick: {
  22452. height: math.unit(7 / 5, "feet"),
  22453. name: "Dick",
  22454. image: {
  22455. source: "./media/characters/reban/dick.svg"
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Natural Height",
  22462. height: math.unit(7 + 2 / 12, "feet")
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(500, "feet"),
  22467. default: true
  22468. },
  22469. {
  22470. name: "Canon Height",
  22471. height: math.unit(50, "AU")
  22472. },
  22473. ]
  22474. ))
  22475. characterMakers.push(() => makeCharacter(
  22476. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22477. {
  22478. front: {
  22479. height: math.unit(6, "feet"),
  22480. weight: math.unit(150, "lb"),
  22481. name: "Front",
  22482. image: {
  22483. source: "./media/characters/terrance-keayes/front.svg",
  22484. extra: 1.005,
  22485. bottom: 151 / 1615
  22486. }
  22487. },
  22488. side: {
  22489. height: math.unit(6, "feet"),
  22490. weight: math.unit(150, "lb"),
  22491. name: "Side",
  22492. image: {
  22493. source: "./media/characters/terrance-keayes/side.svg",
  22494. extra: 1.005,
  22495. bottom: 129.4 / 1544
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(6, "feet"),
  22500. weight: math.unit(150, "lb"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/terrance-keayes/back.svg",
  22504. extra: 1.005,
  22505. bottom: 58.4 / 1557.3
  22506. }
  22507. },
  22508. dick: {
  22509. height: math.unit(6 * 0.208, "feet"),
  22510. name: "Dick",
  22511. image: {
  22512. source: "./media/characters/terrance-keayes/dick.svg"
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Canon Height",
  22519. height: math.unit(35, "miles"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(6, "feet"),
  22529. weight: math.unit(150, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/ofelia/front.svg",
  22533. extra: 1130/1117,
  22534. bottom: 91/1221
  22535. }
  22536. },
  22537. back: {
  22538. height: math.unit(6, "feet"),
  22539. weight: math.unit(150, "lb"),
  22540. name: "Back",
  22541. image: {
  22542. source: "./media/characters/ofelia/back.svg",
  22543. extra: 1172/1159,
  22544. bottom: 28/1200
  22545. }
  22546. },
  22547. maw: {
  22548. height: math.unit(1, "feet"),
  22549. name: "Maw",
  22550. image: {
  22551. source: "./media/characters/ofelia/maw.svg"
  22552. }
  22553. },
  22554. foot: {
  22555. height: math.unit(1.949, "feet"),
  22556. name: "Foot",
  22557. image: {
  22558. source: "./media/characters/ofelia/foot.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Canon Height",
  22565. height: math.unit(2000, "miles"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(150, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/samuel/front.svg",
  22579. extra: 265 / 258,
  22580. bottom: 2 / 266.1566
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Macro",
  22587. height: math.unit(100, "feet"),
  22588. default: true
  22589. },
  22590. {
  22591. name: "Full Size",
  22592. height: math.unit(1000, "miles")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(6, "feet"),
  22601. weight: math.unit(300, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/beishir-kiel/front.svg",
  22605. extra: 569 / 547,
  22606. bottom: 41.9 / 609
  22607. }
  22608. },
  22609. maw: {
  22610. height: math.unit(6 * 0.202, "feet"),
  22611. name: "Maw",
  22612. image: {
  22613. source: "./media/characters/beishir-kiel/maw.svg"
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Macro",
  22620. height: math.unit(300, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(5 + 7/12, "feet"),
  22630. weight: math.unit(120, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/logan-grey/front.svg",
  22634. extra: 1836/1738,
  22635. bottom: 108/1944
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(5 + 7/12, "feet"),
  22640. weight: math.unit(120, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/logan-grey/back.svg",
  22644. extra: 1880/1794,
  22645. bottom: 24/1904
  22646. }
  22647. },
  22648. frontSfw: {
  22649. height: math.unit(5 + 7/12, "feet"),
  22650. weight: math.unit(120, "lb"),
  22651. name: "Front (SFW)",
  22652. image: {
  22653. source: "./media/characters/logan-grey/front-sfw.svg",
  22654. extra: 1836/1738,
  22655. bottom: 108/1944
  22656. }
  22657. },
  22658. backSfw: {
  22659. height: math.unit(5 + 7/12, "feet"),
  22660. weight: math.unit(120, "lb"),
  22661. name: "Back (SFW)",
  22662. image: {
  22663. source: "./media/characters/logan-grey/back-sfw.svg",
  22664. extra: 1880/1794,
  22665. bottom: 24/1904
  22666. }
  22667. },
  22668. hands: {
  22669. height: math.unit(0.84, "feet"),
  22670. name: "Hands",
  22671. image: {
  22672. source: "./media/characters/logan-grey/hands.svg"
  22673. }
  22674. },
  22675. paws: {
  22676. height: math.unit(0.72, "feet"),
  22677. name: "Paws",
  22678. image: {
  22679. source: "./media/characters/logan-grey/paws.svg"
  22680. }
  22681. },
  22682. cock: {
  22683. height: math.unit(1.45, "feet"),
  22684. name: "Cock",
  22685. image: {
  22686. source: "./media/characters/logan-grey/cock.svg"
  22687. }
  22688. },
  22689. cockAlt: {
  22690. height: math.unit(1.437, "feet"),
  22691. name: "Cock (alt)",
  22692. image: {
  22693. source: "./media/characters/logan-grey/cock-alt.svg"
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(5 + 8 / 12, "feet")
  22701. },
  22702. {
  22703. name: "The 500 Foot Femboy",
  22704. height: math.unit(500, "feet"),
  22705. default: true
  22706. },
  22707. {
  22708. name: "Megmacro",
  22709. height: math.unit(20, "miles")
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(8 + 2 / 12, "feet"),
  22718. weight: math.unit(275, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/draganta/front.svg",
  22722. extra: 1177 / 1135,
  22723. bottom: 33.46 / 1212.1
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(8 + 6 / 12, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(150, "feet")
  22736. },
  22737. {
  22738. name: "Megamacro",
  22739. height: math.unit(1000, "miles")
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22745. {
  22746. front: {
  22747. height: math.unit(1.72, "m"),
  22748. weight: math.unit(80, "lb"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/voski/front.svg",
  22752. extra: 2076.22 / 2022.4,
  22753. bottom: 102.7 / 2177.3866
  22754. }
  22755. },
  22756. frontNsfw: {
  22757. height: math.unit(1.72, "m"),
  22758. weight: math.unit(80, "lb"),
  22759. name: "Front (NSFW)",
  22760. image: {
  22761. source: "./media/characters/voski/front-nsfw.svg",
  22762. extra: 2076.22 / 2022.4,
  22763. bottom: 102.7 / 2177.3866
  22764. }
  22765. },
  22766. back: {
  22767. height: math.unit(1.72, "m"),
  22768. weight: math.unit(80, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/voski/back.svg",
  22772. extra: 2104 / 2051,
  22773. bottom: 10.45 / 2113.63
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(1.72, "m")
  22781. },
  22782. {
  22783. name: "Macro",
  22784. height: math.unit(55, "m"),
  22785. default: true
  22786. },
  22787. {
  22788. name: "Macro+",
  22789. height: math.unit(300, "m")
  22790. },
  22791. {
  22792. name: "Macro++",
  22793. height: math.unit(700, "m")
  22794. },
  22795. {
  22796. name: "Macro+++",
  22797. height: math.unit(4500, "m")
  22798. },
  22799. {
  22800. name: "Macro++++",
  22801. height: math.unit(45, "km")
  22802. },
  22803. {
  22804. name: "Macro+++++",
  22805. height: math.unit(1220, "km")
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(2.3, "m"),
  22814. weight: math.unit(304, "kg"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/icowom-lee/front.svg",
  22818. extra: 985 / 955,
  22819. bottom: 25.4 / 1012
  22820. }
  22821. },
  22822. fronttentacles: {
  22823. height: math.unit(2.3, "m"),
  22824. weight: math.unit(304, "kg"),
  22825. name: "Front-tentacles",
  22826. image: {
  22827. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22828. extra: 985 / 955,
  22829. bottom: 25.4 / 1012
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(2.3, "m"),
  22834. weight: math.unit(304, "kg"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/icowom-lee/back.svg",
  22838. extra: 975 / 954,
  22839. bottom: 9.5 / 985
  22840. }
  22841. },
  22842. backtentacles: {
  22843. height: math.unit(2.3, "m"),
  22844. weight: math.unit(304, "kg"),
  22845. name: "Back-tentacles",
  22846. image: {
  22847. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22848. extra: 975 / 954,
  22849. bottom: 9.5 / 985
  22850. }
  22851. },
  22852. frontDressed: {
  22853. height: math.unit(2.3, "m"),
  22854. weight: math.unit(304, "kg"),
  22855. name: "Front (Dressed)",
  22856. image: {
  22857. source: "./media/characters/icowom-lee/front-dressed.svg",
  22858. extra: 3076 / 2933,
  22859. bottom: 51.4 / 3125.1889
  22860. }
  22861. },
  22862. rump: {
  22863. height: math.unit(0.776, "meters"),
  22864. name: "Rump",
  22865. image: {
  22866. source: "./media/characters/icowom-lee/rump.svg"
  22867. }
  22868. },
  22869. genitals: {
  22870. height: math.unit(0.78, "meters"),
  22871. name: "Genitals",
  22872. image: {
  22873. source: "./media/characters/icowom-lee/genitals.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(2.3, "meters"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(94, "meters"),
  22886. default: true
  22887. },
  22888. ]
  22889. ))
  22890. characterMakers.push(() => makeCharacter(
  22891. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22892. {
  22893. front: {
  22894. height: math.unit(22, "meters"),
  22895. weight: math.unit(21000, "kg"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/shock-diamond/front.svg",
  22899. extra: 2204 / 2053,
  22900. bottom: 65 / 2239.47
  22901. }
  22902. },
  22903. frontNude: {
  22904. height: math.unit(22, "meters"),
  22905. weight: math.unit(21000, "kg"),
  22906. name: "Front (Nude)",
  22907. image: {
  22908. source: "./media/characters/shock-diamond/front-nude.svg",
  22909. extra: 2514 / 2285,
  22910. bottom: 13 / 2527.56
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(3, "meters")
  22918. },
  22919. {
  22920. name: "Macro",
  22921. height: math.unit(22, "meters"),
  22922. default: true
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(5 + 4 / 12, "feet"),
  22931. weight: math.unit(120, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/rory/front.svg",
  22935. extra: 1318/1241,
  22936. bottom: 42/1360
  22937. }
  22938. },
  22939. back: {
  22940. height: math.unit(5 + 4 / 12, "feet"),
  22941. weight: math.unit(120, "lb"),
  22942. name: "Back",
  22943. image: {
  22944. source: "./media/characters/rory/back.svg",
  22945. extra: 1318/1241,
  22946. bottom: 42/1360
  22947. }
  22948. },
  22949. butt: {
  22950. height: math.unit(1.74, "feet"),
  22951. name: "Butt",
  22952. image: {
  22953. source: "./media/characters/rory/butt.svg"
  22954. }
  22955. },
  22956. dick: {
  22957. height: math.unit(1.02, "feet"),
  22958. name: "Dick",
  22959. image: {
  22960. source: "./media/characters/rory/dick.svg"
  22961. }
  22962. },
  22963. paws: {
  22964. height: math.unit(1, "feet"),
  22965. name: "Paws",
  22966. image: {
  22967. source: "./media/characters/rory/paws.svg"
  22968. }
  22969. },
  22970. frontAlt: {
  22971. height: math.unit(5 + 4 / 12, "feet"),
  22972. weight: math.unit(120, "lb"),
  22973. name: "Front (Alt)",
  22974. image: {
  22975. source: "./media/characters/rory/front-alt.svg",
  22976. extra: 589 / 556,
  22977. bottom: 45.7 / 635.76
  22978. }
  22979. },
  22980. frontAltNude: {
  22981. height: math.unit(5 + 4 / 12, "feet"),
  22982. weight: math.unit(120, "lb"),
  22983. name: "Front (Alt, Nude)",
  22984. image: {
  22985. source: "./media/characters/rory/front-alt-nude.svg",
  22986. extra: 589 / 556,
  22987. bottom: 45.7 / 635.76
  22988. }
  22989. },
  22990. side: {
  22991. height: math.unit(5 + 4 / 12, "feet"),
  22992. weight: math.unit(120, "lb"),
  22993. name: "Side",
  22994. image: {
  22995. source: "./media/characters/rory/side.svg",
  22996. extra: 597 / 564,
  22997. bottom: 55 / 653
  22998. }
  22999. },
  23000. backAlt: {
  23001. height: math.unit(5 + 4 / 12, "feet"),
  23002. weight: math.unit(120, "lb"),
  23003. name: "Back (Alt)",
  23004. image: {
  23005. source: "./media/characters/rory/back-alt.svg",
  23006. extra: 620 / 585,
  23007. bottom: 8.86 / 630.43
  23008. }
  23009. },
  23010. dickAlt: {
  23011. height: math.unit(0.86, "feet"),
  23012. name: "Dick (Alt)",
  23013. image: {
  23014. source: "./media/characters/rory/dick-alt.svg"
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(5 + 4 / 12, "feet"),
  23022. default: true
  23023. },
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(100, "feet")
  23027. },
  23028. {
  23029. name: "Macro+",
  23030. height: math.unit(140, "feet")
  23031. },
  23032. {
  23033. name: "Macro++",
  23034. height: math.unit(300, "feet")
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23040. {
  23041. front: {
  23042. height: math.unit(5 + 9 / 12, "feet"),
  23043. weight: math.unit(190, "lb"),
  23044. name: "Front",
  23045. image: {
  23046. source: "./media/characters/sprisk/front.svg",
  23047. extra: 1225 / 1180,
  23048. bottom: 42.7 / 1266.4
  23049. }
  23050. },
  23051. frontNsfw: {
  23052. height: math.unit(5 + 9 / 12, "feet"),
  23053. weight: math.unit(190, "lb"),
  23054. name: "Front (NSFW)",
  23055. image: {
  23056. source: "./media/characters/sprisk/front-nsfw.svg",
  23057. extra: 1225 / 1180,
  23058. bottom: 42.7 / 1266.4
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(5 + 9 / 12, "feet"),
  23063. weight: math.unit(190, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/sprisk/back.svg",
  23067. extra: 1247 / 1200,
  23068. bottom: 5.6 / 1253.04
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Tiny",
  23075. height: math.unit(2, "inches")
  23076. },
  23077. {
  23078. name: "Normal",
  23079. height: math.unit(5 + 9 / 12, "feet"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Mini Macro",
  23084. height: math.unit(18, "feet")
  23085. },
  23086. {
  23087. name: "Macro",
  23088. height: math.unit(100, "feet")
  23089. },
  23090. {
  23091. name: "MACRO",
  23092. height: math.unit(50, "miles")
  23093. },
  23094. {
  23095. name: "M A C R O",
  23096. height: math.unit(300, "miles")
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23102. {
  23103. side: {
  23104. height: math.unit(15.6, "meters"),
  23105. weight: math.unit(700000, "kg"),
  23106. name: "Side",
  23107. image: {
  23108. source: "./media/characters/bunsen/side.svg",
  23109. extra: 1644 / 358
  23110. }
  23111. },
  23112. foot: {
  23113. height: math.unit(1.611 * 1644 / 358, "meter"),
  23114. name: "Foot",
  23115. image: {
  23116. source: "./media/characters/bunsen/foot.svg"
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Small",
  23123. height: math.unit(10, "feet")
  23124. },
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(15.6, "meters"),
  23128. default: true
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(4 + 11 / 12, "feet"),
  23137. weight: math.unit(140, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/sesh/front.svg",
  23141. extra: 3420 / 3231,
  23142. bottom: 72 / 3949.5
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(4 + 11 / 12, "feet")
  23150. },
  23151. {
  23152. name: "Grown",
  23153. height: math.unit(15, "feet"),
  23154. default: true
  23155. },
  23156. {
  23157. name: "Macro",
  23158. height: math.unit(1500, "feet")
  23159. },
  23160. {
  23161. name: "Megamacro",
  23162. height: math.unit(30, "miles")
  23163. },
  23164. {
  23165. name: "Continental",
  23166. height: math.unit(3000, "miles")
  23167. },
  23168. {
  23169. name: "Gravity Mass",
  23170. height: math.unit(300000, "miles")
  23171. },
  23172. {
  23173. name: "Planet Buster",
  23174. height: math.unit(30000000, "miles")
  23175. },
  23176. {
  23177. name: "Big",
  23178. height: math.unit(3000000000, "miles")
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(9, "feet"),
  23187. weight: math.unit(350, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/pepper/front.svg",
  23191. extra: 1448 / 1312,
  23192. bottom: 9.4 / 1457.88
  23193. }
  23194. },
  23195. back: {
  23196. height: math.unit(9, "feet"),
  23197. weight: math.unit(350, "lb"),
  23198. name: "Back",
  23199. image: {
  23200. source: "./media/characters/pepper/back.svg",
  23201. extra: 1423 / 1300,
  23202. bottom: 4.6 / 1429
  23203. }
  23204. },
  23205. maw: {
  23206. height: math.unit(0.932, "feet"),
  23207. name: "Maw",
  23208. image: {
  23209. source: "./media/characters/pepper/maw.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(9, "feet"),
  23217. default: true
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(6, "feet"),
  23226. weight: math.unit(150, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/maelstrom/front.svg",
  23230. extra: 2100 / 1883,
  23231. bottom: 94 / 2196.7
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Less Kaiju",
  23238. height: math.unit(200, "feet")
  23239. },
  23240. {
  23241. name: "Kaiju",
  23242. height: math.unit(400, "feet"),
  23243. default: true
  23244. },
  23245. {
  23246. name: "Kaiju-er",
  23247. height: math.unit(600, "feet")
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(6 + 5 / 12, "feet"),
  23256. weight: math.unit(180, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/lexir/front.svg",
  23260. extra: 180 / 172,
  23261. bottom: 12 / 192
  23262. }
  23263. },
  23264. back: {
  23265. height: math.unit(6 + 5 / 12, "feet"),
  23266. weight: math.unit(180, "lb"),
  23267. name: "Back",
  23268. image: {
  23269. source: "./media/characters/lexir/back.svg",
  23270. extra: 183.84 / 175.5,
  23271. bottom: 3.1 / 187
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Very Smal",
  23278. height: math.unit(1, "nm")
  23279. },
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(6 + 5 / 12, "feet"),
  23283. default: true
  23284. },
  23285. {
  23286. name: "Macro",
  23287. height: math.unit(1, "mile")
  23288. },
  23289. {
  23290. name: "Megamacro",
  23291. height: math.unit(50, "miles")
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(1.5, "meters"),
  23300. weight: math.unit(100, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/maksio/front.svg",
  23304. extra: 1549 / 1531,
  23305. bottom: 123.7 / 1674.5429
  23306. }
  23307. },
  23308. back: {
  23309. height: math.unit(1.5, "meters"),
  23310. weight: math.unit(100, "lb"),
  23311. name: "Back",
  23312. image: {
  23313. source: "./media/characters/maksio/back.svg",
  23314. extra: 1541 / 1509,
  23315. bottom: 97 / 1639
  23316. }
  23317. },
  23318. hand: {
  23319. height: math.unit(0.621, "feet"),
  23320. name: "Hand",
  23321. image: {
  23322. source: "./media/characters/maksio/hand.svg"
  23323. }
  23324. },
  23325. foot: {
  23326. height: math.unit(1.611, "feet"),
  23327. name: "Foot",
  23328. image: {
  23329. source: "./media/characters/maksio/foot.svg"
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Shrunken",
  23336. height: math.unit(10, "cm")
  23337. },
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(150, "cm"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(100, "feet"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/erza-bear/front.svg",
  23353. extra: 2449 / 2390,
  23354. bottom: 46 / 2494
  23355. }
  23356. },
  23357. back: {
  23358. height: math.unit(100, "feet"),
  23359. name: "Back",
  23360. image: {
  23361. source: "./media/characters/erza-bear/back.svg",
  23362. extra: 2489 / 2430,
  23363. bottom: 85.4 / 2480
  23364. }
  23365. },
  23366. tail: {
  23367. height: math.unit(42, "feet"),
  23368. name: "Tail",
  23369. image: {
  23370. source: "./media/characters/erza-bear/tail.svg"
  23371. }
  23372. },
  23373. tongue: {
  23374. height: math.unit(8, "feet"),
  23375. name: "Tongue",
  23376. image: {
  23377. source: "./media/characters/erza-bear/tongue.svg"
  23378. }
  23379. },
  23380. dick: {
  23381. height: math.unit(10.5, "feet"),
  23382. name: "Dick",
  23383. image: {
  23384. source: "./media/characters/erza-bear/dick.svg"
  23385. }
  23386. },
  23387. dickVertical: {
  23388. height: math.unit(16.9, "feet"),
  23389. name: "Dick (Vertical)",
  23390. image: {
  23391. source: "./media/characters/erza-bear/dick-vertical.svg"
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(100, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(172, "cm"),
  23408. weight: math.unit(73, "kg"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/violet-flor/front.svg",
  23412. extra: 1530 / 1442,
  23413. bottom: 61.9 / 1588.8
  23414. }
  23415. },
  23416. back: {
  23417. height: math.unit(180, "cm"),
  23418. weight: math.unit(73, "kg"),
  23419. name: "Back",
  23420. image: {
  23421. source: "./media/characters/violet-flor/back.svg",
  23422. extra: 1692 / 1630,
  23423. bottom: 20 / 1712
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(172, "cm"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(220, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/lynn-rhea/front.svg",
  23444. extra: 310 / 273
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(6, "feet"),
  23449. weight: math.unit(220, "lb"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/lynn-rhea/back.svg",
  23453. extra: 310 / 273
  23454. }
  23455. },
  23456. dicks: {
  23457. height: math.unit(0.9, "feet"),
  23458. name: "Dicks",
  23459. image: {
  23460. source: "./media/characters/lynn-rhea/dicks.svg"
  23461. }
  23462. },
  23463. slit: {
  23464. height: math.unit(0.4, "feet"),
  23465. name: "Slit",
  23466. image: {
  23467. source: "./media/characters/lynn-rhea/slit.svg"
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Micro",
  23474. height: math.unit(1, "inch")
  23475. },
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(60, "feet"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Megamacro",
  23483. height: math.unit(2, "miles")
  23484. },
  23485. {
  23486. name: "Gigamacro",
  23487. height: math.unit(3, "earths")
  23488. },
  23489. {
  23490. name: "Galactic",
  23491. height: math.unit(0.8, "galaxies")
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23497. {
  23498. front: {
  23499. height: math.unit(1600, "feet"),
  23500. weight: math.unit(85758785169, "kg"),
  23501. name: "Front",
  23502. image: {
  23503. source: "./media/characters/valathos/front.svg",
  23504. extra: 1451 / 1339
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(1600, "feet"),
  23512. default: true
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(7 + 5 / 12, "feet"),
  23521. weight: math.unit(300, "lb"),
  23522. name: "Front",
  23523. image: {
  23524. source: "./media/characters/azula/front.svg",
  23525. extra: 3208 / 2880,
  23526. bottom: 80.2 / 3277
  23527. }
  23528. },
  23529. back: {
  23530. height: math.unit(7 + 5 / 12, "feet"),
  23531. weight: math.unit(300, "lb"),
  23532. name: "Back",
  23533. image: {
  23534. source: "./media/characters/azula/back.svg",
  23535. extra: 3169 / 2822,
  23536. bottom: 150.6 / 3321
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(7 + 5 / 12, "feet"),
  23544. default: true
  23545. },
  23546. {
  23547. name: "Big",
  23548. height: math.unit(20, "feet")
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23554. {
  23555. front: {
  23556. height: math.unit(5 + 1 / 12, "feet"),
  23557. weight: math.unit(110, "lb"),
  23558. name: "Front",
  23559. image: {
  23560. source: "./media/characters/rupert/front.svg",
  23561. extra: 1549 / 1495,
  23562. bottom: 54.2 / 1604.4
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(5 + 1 / 12, "feet"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23576. {
  23577. front: {
  23578. height: math.unit(8 + 4 / 12, "feet"),
  23579. weight: math.unit(350, "lb"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/sheera-castellar/front.svg",
  23583. extra: 1957 / 1894,
  23584. bottom: 26.97 / 1975.017
  23585. }
  23586. },
  23587. side: {
  23588. height: math.unit(8 + 4 / 12, "feet"),
  23589. weight: math.unit(350, "lb"),
  23590. name: "Side",
  23591. image: {
  23592. source: "./media/characters/sheera-castellar/side.svg",
  23593. extra: 1957 / 1894
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(8 + 4 / 12, "feet"),
  23598. weight: math.unit(350, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/sheera-castellar/back.svg",
  23602. extra: 1957 / 1894
  23603. }
  23604. },
  23605. angled: {
  23606. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23607. weight: math.unit(350, "lb"),
  23608. name: "Angled",
  23609. image: {
  23610. source: "./media/characters/sheera-castellar/angled.svg",
  23611. extra: 1807 / 1707,
  23612. bottom: 68 / 1875
  23613. }
  23614. },
  23615. genitals: {
  23616. height: math.unit(2.2, "feet"),
  23617. name: "Genitals",
  23618. image: {
  23619. source: "./media/characters/sheera-castellar/genitals.svg"
  23620. }
  23621. },
  23622. taur: {
  23623. height: math.unit(10 + 6/12, "feet"),
  23624. name: "Taur",
  23625. image: {
  23626. source: "./media/characters/sheera-castellar/taur.svg",
  23627. extra: 2017/1909,
  23628. bottom: 185/2202
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Normal",
  23635. height: math.unit(8 + 4 / 12, "feet")
  23636. },
  23637. {
  23638. name: "Macro",
  23639. height: math.unit(150, "feet"),
  23640. default: true
  23641. },
  23642. {
  23643. name: "Macro+",
  23644. height: math.unit(800, "feet")
  23645. },
  23646. ]
  23647. ))
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(6, "feet"),
  23653. weight: math.unit(150, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/jaipur/front.svg",
  23657. extra: 3860 / 3731,
  23658. bottom: 287 / 4140
  23659. }
  23660. },
  23661. back: {
  23662. height: math.unit(6, "feet"),
  23663. weight: math.unit(150, "lb"),
  23664. name: "Back",
  23665. image: {
  23666. source: "./media/characters/jaipur/back.svg",
  23667. extra: 4060 / 3930,
  23668. bottom: 151 / 4200
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(1.85, "meters"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(150, "meters")
  23681. },
  23682. {
  23683. name: "Macro+",
  23684. height: math.unit(0.5, "miles")
  23685. },
  23686. {
  23687. name: "Macro++",
  23688. height: math.unit(2.5, "miles")
  23689. },
  23690. {
  23691. name: "Macro+++",
  23692. height: math.unit(12, "miles")
  23693. },
  23694. {
  23695. name: "Macro++++",
  23696. height: math.unit(120, "miles")
  23697. },
  23698. {
  23699. name: "Macro+++++",
  23700. height: math.unit(1200, "miles")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(6, "feet"),
  23709. weight: math.unit(150, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/sheila-wolf/front.svg",
  23713. extra: 1931 / 1808,
  23714. bottom: 29.5 / 1960
  23715. }
  23716. },
  23717. dick: {
  23718. height: math.unit(1.464, "feet"),
  23719. name: "Dick",
  23720. image: {
  23721. source: "./media/characters/sheila-wolf/dick.svg"
  23722. }
  23723. },
  23724. muzzle: {
  23725. height: math.unit(0.513, "feet"),
  23726. name: "Muzzle",
  23727. image: {
  23728. source: "./media/characters/sheila-wolf/muzzle.svg"
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Macro",
  23735. height: math.unit(70, "feet"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(32, "meters"),
  23745. weight: math.unit(300000, "kg"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/almor/front.svg",
  23749. extra: 1408 / 1322,
  23750. bottom: 94.6 / 1506.5
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Macro",
  23757. height: math.unit(32, "meters"),
  23758. default: true
  23759. },
  23760. ]
  23761. ))
  23762. characterMakers.push(() => makeCharacter(
  23763. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23764. {
  23765. front: {
  23766. height: math.unit(7, "feet"),
  23767. weight: math.unit(200, "lb"),
  23768. name: "Front",
  23769. image: {
  23770. source: "./media/characters/silver/front.svg",
  23771. extra: 472.1 / 450.5,
  23772. bottom: 26.5 / 499.424
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(7, "feet"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(800, "feet")
  23785. },
  23786. {
  23787. name: "Megamacro",
  23788. height: math.unit(250, "miles")
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(6, "feet"),
  23797. weight: math.unit(150, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/pliskin/front.svg",
  23801. extra: 1469 / 1359,
  23802. bottom: 70 / 1540
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Micro",
  23809. height: math.unit(3, "inches")
  23810. },
  23811. {
  23812. name: "Normal",
  23813. height: math.unit(5 + 11 / 12, "feet"),
  23814. default: true
  23815. },
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(120, "feet")
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(6, "feet"),
  23827. weight: math.unit(150, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/sammy/front.svg",
  23831. extra: 1193 / 1089,
  23832. bottom: 30.5 / 1226
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(1700, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Examacro",
  23844. height: math.unit(2.5e9, "lightyears")
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(21, "meters"),
  23853. weight: math.unit(12, "tonnes"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/kuru/front.svg",
  23857. extra: 4301 / 3785,
  23858. bottom: 371.3 / 4691
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Macro",
  23865. height: math.unit(21, "meters"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(23, "meters"),
  23875. weight: math.unit(12.2, "tonnes"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/rakka/front.svg",
  23879. extra: 4670 / 4169,
  23880. bottom: 301 / 4968.7
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(23, "meters"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23894. {
  23895. front: {
  23896. height: math.unit(6, "feet"),
  23897. weight: math.unit(150, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/rhys-feline/front.svg",
  23901. extra: 2488 / 2308,
  23902. bottom: 35.67 / 2519.19
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Really Small",
  23909. height: math.unit(1, "nm")
  23910. },
  23911. {
  23912. name: "Micro",
  23913. height: math.unit(4, "inches")
  23914. },
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(4 + 10 / 12, "feet"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Macro",
  23922. height: math.unit(100, "feet")
  23923. },
  23924. {
  23925. name: "Megamacto",
  23926. height: math.unit(50, "miles")
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23932. {
  23933. side: {
  23934. height: math.unit(30, "feet"),
  23935. weight: math.unit(35000, "kg"),
  23936. name: "Side",
  23937. image: {
  23938. source: "./media/characters/alydar/side.svg",
  23939. extra: 234 / 222,
  23940. bottom: 6.5 / 241
  23941. }
  23942. },
  23943. front: {
  23944. height: math.unit(30, "feet"),
  23945. weight: math.unit(35000, "kg"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/alydar/front.svg",
  23949. extra: 223.37 / 210.2,
  23950. bottom: 22.3 / 246.76
  23951. }
  23952. },
  23953. top: {
  23954. height: math.unit(64.54, "feet"),
  23955. weight: math.unit(35000, "kg"),
  23956. name: "Top",
  23957. image: {
  23958. source: "./media/characters/alydar/top.svg"
  23959. }
  23960. },
  23961. anthro: {
  23962. height: math.unit(30, "feet"),
  23963. weight: math.unit(9000, "kg"),
  23964. name: "Anthro",
  23965. image: {
  23966. source: "./media/characters/alydar/anthro.svg",
  23967. extra: 432 / 421,
  23968. bottom: 7.18 / 440
  23969. }
  23970. },
  23971. maw: {
  23972. height: math.unit(11.693, "feet"),
  23973. name: "Maw",
  23974. image: {
  23975. source: "./media/characters/alydar/maw.svg"
  23976. }
  23977. },
  23978. head: {
  23979. height: math.unit(11.693, "feet"),
  23980. name: "Head",
  23981. image: {
  23982. source: "./media/characters/alydar/head.svg"
  23983. }
  23984. },
  23985. headAlt: {
  23986. height: math.unit(12.861, "feet"),
  23987. name: "Head (Alt)",
  23988. image: {
  23989. source: "./media/characters/alydar/head-alt.svg"
  23990. }
  23991. },
  23992. wing: {
  23993. height: math.unit(20.712, "feet"),
  23994. name: "Wing",
  23995. image: {
  23996. source: "./media/characters/alydar/wing.svg"
  23997. }
  23998. },
  23999. wingFeather: {
  24000. height: math.unit(9.662, "feet"),
  24001. name: "Wing Feather",
  24002. image: {
  24003. source: "./media/characters/alydar/wing-feather.svg"
  24004. }
  24005. },
  24006. countourFeather: {
  24007. height: math.unit(4.154, "feet"),
  24008. name: "Contour Feather",
  24009. image: {
  24010. source: "./media/characters/alydar/contour-feather.svg"
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Diplomatic",
  24017. height: math.unit(13, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Small",
  24022. height: math.unit(30, "feet")
  24023. },
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(95, "feet"),
  24027. default: true
  24028. },
  24029. {
  24030. name: "Large",
  24031. height: math.unit(285, "feet")
  24032. },
  24033. {
  24034. name: "Incomprehensible",
  24035. height: math.unit(450, "megameters")
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24041. {
  24042. side: {
  24043. height: math.unit(11, "feet"),
  24044. weight: math.unit(1750, "kg"),
  24045. name: "Side",
  24046. image: {
  24047. source: "./media/characters/selicia/side.svg",
  24048. extra: 440 / 396,
  24049. bottom: 24.8 / 465.979
  24050. }
  24051. },
  24052. maw: {
  24053. height: math.unit(4.665, "feet"),
  24054. name: "Maw",
  24055. image: {
  24056. source: "./media/characters/selicia/maw.svg"
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Normal",
  24063. height: math.unit(11, "feet"),
  24064. default: true
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24070. {
  24071. side: {
  24072. height: math.unit(2 + 6 / 12, "feet"),
  24073. weight: math.unit(30, "lb"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/layla/side.svg",
  24077. extra: 244 / 188,
  24078. bottom: 18.2 / 262.1
  24079. }
  24080. },
  24081. back: {
  24082. height: math.unit(2 + 6 / 12, "feet"),
  24083. weight: math.unit(30, "lb"),
  24084. name: "Back",
  24085. image: {
  24086. source: "./media/characters/layla/back.svg",
  24087. extra: 308 / 241.5,
  24088. bottom: 8.9 / 316.8
  24089. }
  24090. },
  24091. cumming: {
  24092. height: math.unit(2 + 6 / 12, "feet"),
  24093. weight: math.unit(30, "lb"),
  24094. name: "Cumming",
  24095. image: {
  24096. source: "./media/characters/layla/cumming.svg",
  24097. extra: 342 / 279,
  24098. bottom: 595 / 938
  24099. }
  24100. },
  24101. dickFlaccid: {
  24102. height: math.unit(2.595, "feet"),
  24103. name: "Flaccid Genitals",
  24104. image: {
  24105. source: "./media/characters/layla/dick-flaccid.svg"
  24106. }
  24107. },
  24108. dickErect: {
  24109. height: math.unit(2.359, "feet"),
  24110. name: "Erect Genitals",
  24111. image: {
  24112. source: "./media/characters/layla/dick-erect.svg"
  24113. }
  24114. },
  24115. dragon: {
  24116. height: math.unit(40, "feet"),
  24117. name: "Dragon",
  24118. image: {
  24119. source: "./media/characters/layla/dragon.svg",
  24120. extra: 610/535,
  24121. bottom: 367/977
  24122. }
  24123. },
  24124. taur: {
  24125. height: math.unit(30, "feet"),
  24126. name: "Taur",
  24127. image: {
  24128. source: "./media/characters/layla/taur.svg",
  24129. extra: 1268/1199,
  24130. bottom: 112/1380
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(1, "inch")
  24138. },
  24139. {
  24140. name: "Small",
  24141. height: math.unit(1, "foot")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(2 + 6 / 12, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(200, "feet")
  24151. },
  24152. {
  24153. name: "Megamacro",
  24154. height: math.unit(1000, "miles")
  24155. },
  24156. {
  24157. name: "Planetary",
  24158. height: math.unit(8000, "miles")
  24159. },
  24160. {
  24161. name: "True Layla",
  24162. height: math.unit(200000 * 7, "multiverses")
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24168. {
  24169. back: {
  24170. height: math.unit(10.5, "feet"),
  24171. weight: math.unit(800, "lb"),
  24172. name: "Back",
  24173. image: {
  24174. source: "./media/characters/knox/back.svg",
  24175. extra: 1486 / 1089,
  24176. bottom: 107 / 1601.4
  24177. }
  24178. },
  24179. side: {
  24180. height: math.unit(10.5, "feet"),
  24181. weight: math.unit(800, "lb"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/knox/side.svg",
  24185. extra: 244 / 218,
  24186. bottom: 14 / 260
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Compact",
  24193. height: math.unit(10.5, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Dynamax",
  24198. height: math.unit(210, "feet")
  24199. },
  24200. {
  24201. name: "Full Macro",
  24202. height: math.unit(850, "feet")
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(28, "feet"),
  24211. weight: math.unit(10500, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/kayda/front.svg",
  24215. extra: 1536 / 1428,
  24216. bottom: 68.7 / 1603
  24217. }
  24218. },
  24219. back: {
  24220. height: math.unit(28, "feet"),
  24221. weight: math.unit(10500, "lb"),
  24222. name: "Back",
  24223. image: {
  24224. source: "./media/characters/kayda/back.svg",
  24225. extra: 1557 / 1464,
  24226. bottom: 39.5 / 1597.49
  24227. }
  24228. },
  24229. dick: {
  24230. height: math.unit(3.858, "feet"),
  24231. name: "Dick",
  24232. image: {
  24233. source: "./media/characters/kayda/dick.svg"
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(28, "feet"),
  24241. default: true
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(10 + 11 / 12, "feet"),
  24250. weight: math.unit(1400, "lb"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/brian/front.svg",
  24254. extra: 737 / 692,
  24255. bottom: 55.4 / 785
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(10 + 11 / 12, "feet"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(5 + 8 / 12, "feet"),
  24272. weight: math.unit(140, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/khemri/front.svg",
  24276. extra: 4780 / 4059,
  24277. bottom: 80.1 / 4859.25
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Micro",
  24284. height: math.unit(6, "inches")
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(5 + 8 / 12, "feet"),
  24289. default: true
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24295. {
  24296. front: {
  24297. height: math.unit(13, "feet"),
  24298. weight: math.unit(1700, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/felix-braveheart/front.svg",
  24302. extra: 1222 / 1157,
  24303. bottom: 53.2 / 1280
  24304. }
  24305. },
  24306. back: {
  24307. height: math.unit(13, "feet"),
  24308. weight: math.unit(1700, "lb"),
  24309. name: "Back",
  24310. image: {
  24311. source: "./media/characters/felix-braveheart/back.svg",
  24312. extra: 1277 / 1203,
  24313. bottom: 50.2 / 1327
  24314. }
  24315. },
  24316. feral: {
  24317. height: math.unit(6, "feet"),
  24318. weight: math.unit(400, "lb"),
  24319. name: "Feral",
  24320. image: {
  24321. source: "./media/characters/felix-braveheart/feral.svg",
  24322. extra: 682 / 625,
  24323. bottom: 6.9 / 688
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(13, "feet"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24337. {
  24338. side: {
  24339. height: math.unit(5 + 11 / 12, "feet"),
  24340. weight: math.unit(1400, "lb"),
  24341. name: "Side",
  24342. image: {
  24343. source: "./media/characters/shadow-blade/side.svg",
  24344. extra: 1726 / 1267,
  24345. bottom: 58.4 / 1785
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(5 + 11 / 12, "feet"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(1 + 6 / 12, "feet"),
  24362. weight: math.unit(25, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/karla-halldor/front.svg",
  24366. extra: 1459 / 1383,
  24367. bottom: 12 / 1472
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(1 + 6 / 12, "feet"),
  24375. default: true
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(6 + 2 / 12, "feet"),
  24384. weight: math.unit(160, "lb"),
  24385. name: "Front",
  24386. image: {
  24387. source: "./media/characters/ariam/front.svg",
  24388. extra: 1073/976,
  24389. bottom: 52/1125
  24390. }
  24391. },
  24392. back: {
  24393. height: math.unit(6 + 2/12, "feet"),
  24394. weight: math.unit(160, "lb"),
  24395. name: "Back",
  24396. image: {
  24397. source: "./media/characters/ariam/back.svg",
  24398. extra: 1103/1023,
  24399. bottom: 9/1112
  24400. }
  24401. },
  24402. dressed: {
  24403. height: math.unit(6 + 2/12, "feet"),
  24404. weight: math.unit(160, "lb"),
  24405. name: "Dressed",
  24406. image: {
  24407. source: "./media/characters/ariam/dressed.svg",
  24408. extra: 1099/1009,
  24409. bottom: 25/1124
  24410. }
  24411. },
  24412. squatting: {
  24413. height: math.unit(4.1, "feet"),
  24414. weight: math.unit(160, "lb"),
  24415. name: "Squatting",
  24416. image: {
  24417. source: "./media/characters/ariam/squatting.svg",
  24418. extra: 2617 / 2112,
  24419. bottom: 61.2 / 2681,
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(6 + 2 / 12, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Normal+",
  24431. height: math.unit(4, "meters")
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(50, "meters")
  24436. },
  24437. {
  24438. name: "Macro+",
  24439. height: math.unit(100, "meters")
  24440. },
  24441. {
  24442. name: "Megamacro",
  24443. height: math.unit(20, "km")
  24444. },
  24445. {
  24446. name: "Caretaker",
  24447. height: math.unit(444, "megameters")
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(1.67, "meters"),
  24456. weight: math.unit(140, "lb"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24460. extra: 438 / 410,
  24461. bottom: 0.75 / 439
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Shrunken",
  24468. height: math.unit(7.6, "cm")
  24469. },
  24470. {
  24471. name: "Human Scale",
  24472. height: math.unit(1.67, "meters")
  24473. },
  24474. {
  24475. name: "Wolxi Scale",
  24476. height: math.unit(36.7, "meters"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(1.73, "meters"),
  24486. weight: math.unit(240, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/izue-two-mothers/front.svg",
  24490. extra: 469 / 437,
  24491. bottom: 1.24 / 470.6
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Shrunken",
  24498. height: math.unit(7.86, "cm")
  24499. },
  24500. {
  24501. name: "Human Scale",
  24502. height: math.unit(1.73, "meters")
  24503. },
  24504. {
  24505. name: "Wolxi Scale",
  24506. height: math.unit(38, "meters"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(1.55, "meters"),
  24516. weight: math.unit(120, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/teeku-love-shack/front.svg",
  24520. extra: 387 / 362,
  24521. bottom: 1.51 / 388
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Shrunken",
  24528. height: math.unit(7, "cm")
  24529. },
  24530. {
  24531. name: "Human Scale",
  24532. height: math.unit(1.55, "meters")
  24533. },
  24534. {
  24535. name: "Wolxi Scale",
  24536. height: math.unit(34.1, "meters"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(1.83, "meters"),
  24546. weight: math.unit(135, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/dejma-the-red/front.svg",
  24550. extra: 480 / 458,
  24551. bottom: 1.8 / 482
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Shrunken",
  24558. height: math.unit(8.3, "cm")
  24559. },
  24560. {
  24561. name: "Human Scale",
  24562. height: math.unit(1.83, "meters")
  24563. },
  24564. {
  24565. name: "Wolxi Scale",
  24566. height: math.unit(40, "meters"),
  24567. default: true
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(1.78, "meters"),
  24576. weight: math.unit(65, "kg"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/aki/front.svg",
  24580. extra: 452 / 415
  24581. }
  24582. },
  24583. frontNsfw: {
  24584. height: math.unit(1.78, "meters"),
  24585. weight: math.unit(65, "kg"),
  24586. name: "Front (NSFW)",
  24587. image: {
  24588. source: "./media/characters/aki/front-nsfw.svg",
  24589. extra: 452 / 415
  24590. }
  24591. },
  24592. back: {
  24593. height: math.unit(1.78, "meters"),
  24594. weight: math.unit(65, "kg"),
  24595. name: "Back",
  24596. image: {
  24597. source: "./media/characters/aki/back.svg",
  24598. extra: 452 / 415
  24599. }
  24600. },
  24601. rump: {
  24602. height: math.unit(2.05, "feet"),
  24603. name: "Rump",
  24604. image: {
  24605. source: "./media/characters/aki/rump.svg"
  24606. }
  24607. },
  24608. dick: {
  24609. height: math.unit(0.95, "feet"),
  24610. name: "Dick",
  24611. image: {
  24612. source: "./media/characters/aki/dick.svg"
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Micro",
  24619. height: math.unit(15, "cm")
  24620. },
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(178, "cm"),
  24624. default: true
  24625. },
  24626. {
  24627. name: "Macro",
  24628. height: math.unit(214, "m")
  24629. },
  24630. {
  24631. name: "Macro+",
  24632. height: math.unit(534, "m")
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(5 + 5 / 12, "feet"),
  24641. weight: math.unit(120, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/ari/front.svg",
  24645. extra: 714.5 / 682,
  24646. bottom: 8 / 722.5
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Normal",
  24653. height: math.unit(5 + 5 / 12, "feet")
  24654. },
  24655. {
  24656. name: "Macro",
  24657. height: math.unit(100, "feet"),
  24658. default: true
  24659. },
  24660. {
  24661. name: "Megamacro",
  24662. height: math.unit(100, "miles")
  24663. },
  24664. {
  24665. name: "Gigamacro",
  24666. height: math.unit(80000, "miles")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24672. {
  24673. side: {
  24674. height: math.unit(9, "feet"),
  24675. weight: math.unit(400, "kg"),
  24676. name: "Side",
  24677. image: {
  24678. source: "./media/characters/bolt/side.svg",
  24679. extra: 1126 / 896,
  24680. bottom: 60 / 1187.3,
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Micro",
  24687. height: math.unit(5, "inches")
  24688. },
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(9, "feet"),
  24692. default: true
  24693. },
  24694. {
  24695. name: "Macro",
  24696. height: math.unit(700, "feet")
  24697. },
  24698. {
  24699. name: "Max Size",
  24700. height: math.unit(1.52e22, "yottameters")
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(4.53, "meters"),
  24709. weight: math.unit(3, "tons"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/draekon-sylviar/front.svg",
  24713. extra: 1228 / 1068,
  24714. bottom: 41 / 1270
  24715. }
  24716. },
  24717. tail: {
  24718. height: math.unit(1.772, "meter"),
  24719. name: "Tail",
  24720. image: {
  24721. source: "./media/characters/draekon-sylviar/tail.svg"
  24722. }
  24723. },
  24724. head: {
  24725. height: math.unit(1.331, "meter"),
  24726. name: "Head",
  24727. image: {
  24728. source: "./media/characters/draekon-sylviar/head.svg"
  24729. }
  24730. },
  24731. hand: {
  24732. height: math.unit(0.564, "meter"),
  24733. name: "Hand",
  24734. image: {
  24735. source: "./media/characters/draekon-sylviar/hand.svg"
  24736. }
  24737. },
  24738. foot: {
  24739. height: math.unit(0.621, "meter"),
  24740. name: "Foot",
  24741. image: {
  24742. source: "./media/characters/draekon-sylviar/foot.svg",
  24743. bottom: 32 / 324
  24744. }
  24745. },
  24746. dick: {
  24747. height: math.unit(61, "cm"),
  24748. name: "Dick",
  24749. image: {
  24750. source: "./media/characters/draekon-sylviar/dick.svg"
  24751. }
  24752. },
  24753. dickseparated: {
  24754. height: math.unit(61, "cm"),
  24755. name: "Dick-separated",
  24756. image: {
  24757. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Small",
  24764. height: math.unit(4.53 / 2, "meters"),
  24765. default: true
  24766. },
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(4.53, "meters"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "Large",
  24774. height: math.unit(4.53 * 2, "meters"),
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(6 + 2 / 12, "feet"),
  24783. weight: math.unit(180, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/brawler/front.svg",
  24787. extra: 3301 / 3027,
  24788. bottom: 138 / 3439
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(6 + 2 / 12, "feet"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(11, "feet"),
  24805. weight: math.unit(1000, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/alex/front.svg",
  24809. bottom: 44.5 / 620
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Micro",
  24816. height: math.unit(5, "inches")
  24817. },
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(11, "feet"),
  24821. default: true
  24822. },
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(9.5e9, "feet")
  24826. },
  24827. {
  24828. name: "Max Size",
  24829. height: math.unit(1.4e283, "yottameters")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24835. {
  24836. female: {
  24837. height: math.unit(29.9, "m"),
  24838. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24839. name: "Female",
  24840. image: {
  24841. source: "./media/characters/zenari/female.svg",
  24842. extra: 3281.6 / 3217,
  24843. bottom: 72.2 / 3353
  24844. }
  24845. },
  24846. male: {
  24847. height: math.unit(27.7, "m"),
  24848. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24849. name: "Male",
  24850. image: {
  24851. source: "./media/characters/zenari/male.svg",
  24852. extra: 3008 / 2991,
  24853. bottom: 54.6 / 3069
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(29.7, "meters"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24867. {
  24868. female: {
  24869. height: math.unit(23.8, "m"),
  24870. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24871. name: "Female",
  24872. image: {
  24873. source: "./media/characters/mactarian/female.svg",
  24874. extra: 2662 / 2569,
  24875. bottom: 73 / 2736
  24876. }
  24877. },
  24878. male: {
  24879. height: math.unit(23.8, "m"),
  24880. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24881. name: "Male",
  24882. image: {
  24883. source: "./media/characters/mactarian/male.svg",
  24884. extra: 2673 / 2600,
  24885. bottom: 76 / 2750
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Macro",
  24892. height: math.unit(23.8, "meters"),
  24893. default: true
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24899. {
  24900. female: {
  24901. height: math.unit(19.3, "m"),
  24902. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24903. name: "Female",
  24904. image: {
  24905. source: "./media/characters/umok/female.svg",
  24906. extra: 2186 / 2078,
  24907. bottom: 87 / 2277
  24908. }
  24909. },
  24910. male: {
  24911. height: math.unit(19.5, "m"),
  24912. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24913. name: "Male",
  24914. image: {
  24915. source: "./media/characters/umok/male.svg",
  24916. extra: 2233 / 2140,
  24917. bottom: 24.4 / 2258
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Macro",
  24924. height: math.unit(19.3, "meters"),
  24925. default: true
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24931. {
  24932. female: {
  24933. height: math.unit(26.15, "m"),
  24934. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24935. name: "Female",
  24936. image: {
  24937. source: "./media/characters/joraxian/female.svg",
  24938. extra: 2912 / 2824,
  24939. bottom: 36 / 2956
  24940. }
  24941. },
  24942. male: {
  24943. height: math.unit(25.4, "m"),
  24944. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24945. name: "Male",
  24946. image: {
  24947. source: "./media/characters/joraxian/male.svg",
  24948. extra: 2877 / 2721,
  24949. bottom: 82 / 2967
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(26.15, "meters"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24963. {
  24964. female: {
  24965. height: math.unit(21.6, "m"),
  24966. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24967. name: "Female",
  24968. image: {
  24969. source: "./media/characters/sthara/female.svg",
  24970. extra: 2516 / 2347,
  24971. bottom: 21.5 / 2537
  24972. }
  24973. },
  24974. male: {
  24975. height: math.unit(24, "m"),
  24976. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24977. name: "Male",
  24978. image: {
  24979. source: "./media/characters/sthara/male.svg",
  24980. extra: 2732 / 2607,
  24981. bottom: 23 / 2732
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Macro",
  24988. height: math.unit(21.6, "meters"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(6 + 4 / 12, "feet"),
  24998. weight: math.unit(175, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/luka-bryzant/front.svg",
  25002. extra: 311 / 289,
  25003. bottom: 4 / 315
  25004. }
  25005. },
  25006. back: {
  25007. height: math.unit(6 + 4 / 12, "feet"),
  25008. weight: math.unit(175, "lb"),
  25009. name: "Back",
  25010. image: {
  25011. source: "./media/characters/luka-bryzant/back.svg",
  25012. extra: 311 / 289,
  25013. bottom: 3.8 / 313.7
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Micro",
  25020. height: math.unit(10, "inches")
  25021. },
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(6 + 4 / 12, "feet"),
  25025. default: true
  25026. },
  25027. {
  25028. name: "Large",
  25029. height: math.unit(12, "feet")
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(5 + 7 / 12, "feet"),
  25038. weight: math.unit(185, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/aman-aquila/front.svg",
  25042. extra: 1013 / 976,
  25043. bottom: 45.6 / 1057
  25044. }
  25045. },
  25046. side: {
  25047. height: math.unit(5 + 7 / 12, "feet"),
  25048. weight: math.unit(185, "lb"),
  25049. name: "Side",
  25050. image: {
  25051. source: "./media/characters/aman-aquila/side.svg",
  25052. extra: 1054 / 1011,
  25053. bottom: 15 / 1070
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(5 + 7 / 12, "feet"),
  25058. weight: math.unit(185, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/aman-aquila/back.svg",
  25062. extra: 1026 / 970,
  25063. bottom: 12 / 1039
  25064. }
  25065. },
  25066. head: {
  25067. height: math.unit(1.211, "feet"),
  25068. name: "Head",
  25069. image: {
  25070. source: "./media/characters/aman-aquila/head.svg",
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Minimicro",
  25077. height: math.unit(0.057, "inches")
  25078. },
  25079. {
  25080. name: "Micro",
  25081. height: math.unit(7, "inches")
  25082. },
  25083. {
  25084. name: "Mini",
  25085. height: math.unit(3 + 7 / 12, "feet")
  25086. },
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(5 + 7 / 12, "feet"),
  25090. default: true
  25091. },
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(157 + 7 / 12, "feet")
  25095. },
  25096. {
  25097. name: "Megamacro",
  25098. height: math.unit(1557 + 7 / 12, "feet")
  25099. },
  25100. {
  25101. name: "Gigamacro",
  25102. height: math.unit(15557 + 7 / 12, "feet")
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(3 + 2 / 12, "inches"),
  25111. weight: math.unit(0.3, "ounces"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/hiphae/front.svg",
  25115. extra: 1931 / 1683,
  25116. bottom: 24 / 1955
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(3 + 1 / 2, "inches"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(5 + 10 / 12, "feet"),
  25133. weight: math.unit(165, "lb"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/nicky/front.svg",
  25137. extra: 3144 / 2886,
  25138. bottom: 45.6 / 3192
  25139. }
  25140. },
  25141. back: {
  25142. height: math.unit(5 + 10 / 12, "feet"),
  25143. weight: math.unit(165, "lb"),
  25144. name: "Back",
  25145. image: {
  25146. source: "./media/characters/nicky/back.svg",
  25147. extra: 3055 / 2804,
  25148. bottom: 28.4 / 3087
  25149. }
  25150. },
  25151. frontclothed: {
  25152. height: math.unit(5 + 10 / 12, "feet"),
  25153. weight: math.unit(165, "lb"),
  25154. name: "Front-clothed",
  25155. image: {
  25156. source: "./media/characters/nicky/front-clothed.svg",
  25157. extra: 3184.9 / 2926.9,
  25158. bottom: 86.5 / 3239.9
  25159. }
  25160. },
  25161. foot: {
  25162. height: math.unit(1.16, "feet"),
  25163. name: "Foot",
  25164. image: {
  25165. source: "./media/characters/nicky/foot.svg"
  25166. }
  25167. },
  25168. feet: {
  25169. height: math.unit(1.34, "feet"),
  25170. name: "Feet",
  25171. image: {
  25172. source: "./media/characters/nicky/feet.svg"
  25173. }
  25174. },
  25175. maw: {
  25176. height: math.unit(0.9, "feet"),
  25177. name: "Maw",
  25178. image: {
  25179. source: "./media/characters/nicky/maw.svg"
  25180. }
  25181. },
  25182. },
  25183. [
  25184. {
  25185. name: "Normal",
  25186. height: math.unit(5 + 10 / 12, "feet"),
  25187. default: true
  25188. },
  25189. {
  25190. name: "Macro",
  25191. height: math.unit(60, "feet")
  25192. },
  25193. {
  25194. name: "Megamacro",
  25195. height: math.unit(1, "mile")
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25201. {
  25202. side: {
  25203. height: math.unit(10, "feet"),
  25204. weight: math.unit(600, "lb"),
  25205. name: "Side",
  25206. image: {
  25207. source: "./media/characters/blair/side.svg",
  25208. bottom: 16.6 / 475,
  25209. extra: 458 / 431
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Micro",
  25216. height: math.unit(8, "inches")
  25217. },
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(10, "feet"),
  25221. default: true
  25222. },
  25223. {
  25224. name: "Macro",
  25225. height: math.unit(180, "feet")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(5 + 4 / 12, "feet"),
  25234. weight: math.unit(125, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/fisher/front.svg",
  25238. extra: 444 / 390,
  25239. bottom: 2 / 444.8
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Micro",
  25246. height: math.unit(4, "inches")
  25247. },
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(5 + 4 / 12, "feet"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(100, "feet")
  25256. },
  25257. ]
  25258. ))
  25259. characterMakers.push(() => makeCharacter(
  25260. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25261. {
  25262. front: {
  25263. height: math.unit(6.71, "feet"),
  25264. weight: math.unit(200, "lb"),
  25265. capacity: math.unit(1000000, "people"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/gliss/front.svg",
  25269. extra: 2347 / 2231,
  25270. bottom: 113 / 2462
  25271. }
  25272. },
  25273. hammerspaceSize: {
  25274. height: math.unit(6.71 * 717, "feet"),
  25275. weight: math.unit(200, "lb"),
  25276. capacity: math.unit(1000000, "people"),
  25277. name: "Hammerspace Size",
  25278. image: {
  25279. source: "./media/characters/gliss/front.svg",
  25280. extra: 2347 / 2231,
  25281. bottom: 113 / 2462
  25282. }
  25283. },
  25284. },
  25285. [
  25286. {
  25287. name: "Normal",
  25288. height: math.unit(6.71, "feet"),
  25289. default: true
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25295. {
  25296. side: {
  25297. height: math.unit(1.44, "m"),
  25298. weight: math.unit(80, "kg"),
  25299. name: "Side",
  25300. image: {
  25301. source: "./media/characters/dune-anderson/side.svg",
  25302. bottom: 49 / 1426
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Wolf-sized",
  25309. height: math.unit(1.44, "meters")
  25310. },
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(5.05, "meters"),
  25314. default: true
  25315. },
  25316. {
  25317. name: "Big",
  25318. height: math.unit(14.4, "meters")
  25319. },
  25320. {
  25321. name: "Huge",
  25322. height: math.unit(144, "meters")
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(7, "feet"),
  25331. weight: math.unit(425, "lb"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/hind/front.svg",
  25335. extra: 2091 / 1860,
  25336. bottom: 129 / 2220
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(7, "feet"),
  25341. weight: math.unit(425, "lb"),
  25342. name: "Back",
  25343. image: {
  25344. source: "./media/characters/hind/back.svg",
  25345. extra: 2091 / 1860,
  25346. bottom: 24.6 / 2309
  25347. }
  25348. },
  25349. tail: {
  25350. height: math.unit(2.8, "feet"),
  25351. name: "Tail",
  25352. image: {
  25353. source: "./media/characters/hind/tail.svg"
  25354. }
  25355. },
  25356. head: {
  25357. height: math.unit(2.55, "feet"),
  25358. name: "Head",
  25359. image: {
  25360. source: "./media/characters/hind/head.svg"
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "XS",
  25367. height: math.unit(0.7, "feet")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(7, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "XL",
  25376. height: math.unit(70, "feet")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(2.1, "meters"),
  25385. weight: math.unit(150, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/tharquench-sizestealer/front.svg",
  25389. extra: 1605/1470,
  25390. bottom: 36/1641
  25391. }
  25392. },
  25393. frontAlt: {
  25394. height: math.unit(2.1, "meters"),
  25395. weight: math.unit(150, "lb"),
  25396. name: "Front (Alt)",
  25397. image: {
  25398. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25399. extra: 2318 / 2063,
  25400. bottom: 93.4 / 2410
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Nano",
  25407. height: math.unit(1, "mm")
  25408. },
  25409. {
  25410. name: "Micro",
  25411. height: math.unit(1, "cm")
  25412. },
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(2.1, "meters"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(7 + 5 / 12, "feet"),
  25425. weight: math.unit(357, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/solex-draconov/front.svg",
  25429. extra: 1993 / 1865,
  25430. bottom: 117 / 2111
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Natural Height",
  25437. height: math.unit(7 + 5 / 12, "feet"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Macro",
  25442. height: math.unit(350, "feet")
  25443. },
  25444. {
  25445. name: "Macro+",
  25446. height: math.unit(1000, "feet")
  25447. },
  25448. {
  25449. name: "Megamacro",
  25450. height: math.unit(20, "km")
  25451. },
  25452. {
  25453. name: "Megamacro+",
  25454. height: math.unit(1000, "km")
  25455. },
  25456. {
  25457. name: "Gigamacro",
  25458. height: math.unit(2.5, "Gm")
  25459. },
  25460. {
  25461. name: "Teramacro",
  25462. height: math.unit(15, "Tm")
  25463. },
  25464. {
  25465. name: "Galactic",
  25466. height: math.unit(30, "Zm")
  25467. },
  25468. {
  25469. name: "Universal",
  25470. height: math.unit(21000, "Ym")
  25471. },
  25472. {
  25473. name: "Omniversal",
  25474. height: math.unit(9.861e50, "Ym")
  25475. },
  25476. {
  25477. name: "Existential",
  25478. height: math.unit(1e300, "meters")
  25479. },
  25480. ]
  25481. ))
  25482. characterMakers.push(() => makeCharacter(
  25483. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25484. {
  25485. side: {
  25486. height: math.unit(25, "feet"),
  25487. weight: math.unit(90000, "lb"),
  25488. name: "Side",
  25489. image: {
  25490. source: "./media/characters/mandarax/side.svg",
  25491. extra: 614 / 332,
  25492. bottom: 55 / 630
  25493. }
  25494. },
  25495. head: {
  25496. height: math.unit(11.4, "feet"),
  25497. name: "Head",
  25498. image: {
  25499. source: "./media/characters/mandarax/head.svg"
  25500. }
  25501. },
  25502. belly: {
  25503. height: math.unit(33, "feet"),
  25504. name: "Belly",
  25505. capacity: math.unit(500, "people"),
  25506. image: {
  25507. source: "./media/characters/mandarax/belly.svg"
  25508. }
  25509. },
  25510. dick: {
  25511. height: math.unit(8.46, "feet"),
  25512. name: "Dick",
  25513. image: {
  25514. source: "./media/characters/mandarax/dick.svg"
  25515. }
  25516. },
  25517. top: {
  25518. height: math.unit(28, "meters"),
  25519. name: "Top",
  25520. image: {
  25521. source: "./media/characters/mandarax/top.svg"
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(25, "feet"),
  25529. default: true
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(5, "feet"),
  25538. weight: math.unit(90, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/pixil/front.svg",
  25542. extra: 2000 / 1618,
  25543. bottom: 12.3 / 2011
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(5, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Megamacro",
  25555. height: math.unit(10, "miles"),
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(7 + 2 / 12, "feet"),
  25564. weight: math.unit(200, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/angel/front.svg",
  25568. extra: 1830 / 1737,
  25569. bottom: 22.6 / 1854,
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(7 + 2 / 12, "feet"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Macro",
  25581. height: math.unit(1000, "feet")
  25582. },
  25583. {
  25584. name: "Megamacro",
  25585. height: math.unit(2, "miles")
  25586. },
  25587. {
  25588. name: "Gigamacro",
  25589. height: math.unit(20, "earths")
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(5, "feet"),
  25598. weight: math.unit(180, "lb"),
  25599. name: "Front",
  25600. image: {
  25601. source: "./media/characters/mekana/front.svg",
  25602. extra: 1671 / 1605,
  25603. bottom: 3.5 / 1691
  25604. }
  25605. },
  25606. side: {
  25607. height: math.unit(5, "feet"),
  25608. weight: math.unit(180, "lb"),
  25609. name: "Side",
  25610. image: {
  25611. source: "./media/characters/mekana/side.svg",
  25612. extra: 1671 / 1605,
  25613. bottom: 3.5 / 1691
  25614. }
  25615. },
  25616. back: {
  25617. height: math.unit(5, "feet"),
  25618. weight: math.unit(180, "lb"),
  25619. name: "Back",
  25620. image: {
  25621. source: "./media/characters/mekana/back.svg",
  25622. extra: 1671 / 1605,
  25623. bottom: 3.5 / 1691
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(5, "feet"),
  25631. default: true
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(4 + 6 / 12, "feet"),
  25640. weight: math.unit(80, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/pixie/front.svg",
  25644. extra: 1924 / 1825,
  25645. bottom: 22.4 / 1946
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Normal",
  25652. height: math.unit(4 + 6 / 12, "feet"),
  25653. default: true
  25654. },
  25655. {
  25656. name: "Macro",
  25657. height: math.unit(40, "feet")
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(2.1, "meters"),
  25666. weight: math.unit(200, "lb"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/the-lascivious/front.svg",
  25670. extra: 1 / 0.893,
  25671. bottom: 3.5 / 573.7
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Human Scale",
  25678. height: math.unit(2.1, "meters")
  25679. },
  25680. {
  25681. name: "Wolxi Scale",
  25682. height: math.unit(46.2, "m"),
  25683. default: true
  25684. },
  25685. {
  25686. name: "Boinker of Buildings",
  25687. height: math.unit(10, "km")
  25688. },
  25689. {
  25690. name: "Shagger of Skyscrapers",
  25691. height: math.unit(40, "km")
  25692. },
  25693. {
  25694. name: "Banger of Boroughs",
  25695. height: math.unit(4000, "km")
  25696. },
  25697. {
  25698. name: "Screwer of States",
  25699. height: math.unit(100000, "km")
  25700. },
  25701. {
  25702. name: "Pounder of Planets",
  25703. height: math.unit(2000000, "km")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(6, "feet"),
  25712. weight: math.unit(150, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/aj/front.svg",
  25716. extra: 2039 / 1562,
  25717. bottom: 40 / 2079
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(11 + 6 / 12, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Megamacro",
  25729. height: math.unit(60, "megameters")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25735. {
  25736. side: {
  25737. height: math.unit(31 + 8 / 12, "feet"),
  25738. weight: math.unit(75000, "kg"),
  25739. name: "Side",
  25740. image: {
  25741. source: "./media/characters/koros/side.svg",
  25742. extra: 1442 / 1297,
  25743. bottom: 122.7 / 1562
  25744. }
  25745. },
  25746. dicksKingsCrown: {
  25747. height: math.unit(6, "feet"),
  25748. name: "Dicks (King's Crown)",
  25749. image: {
  25750. source: "./media/characters/koros/dicks-kings-crown.svg"
  25751. }
  25752. },
  25753. dicksTailSet: {
  25754. height: math.unit(3, "feet"),
  25755. name: "Dicks (Tail Set)",
  25756. image: {
  25757. source: "./media/characters/koros/dicks-tail-set.svg"
  25758. }
  25759. },
  25760. dickCumming: {
  25761. height: math.unit(7.98, "feet"),
  25762. name: "Dick (Cumming)",
  25763. image: {
  25764. source: "./media/characters/koros/dick-cumming.svg"
  25765. }
  25766. },
  25767. dicksBack: {
  25768. height: math.unit(5.9, "feet"),
  25769. name: "Dicks (Back)",
  25770. image: {
  25771. source: "./media/characters/koros/dicks-back.svg"
  25772. }
  25773. },
  25774. dicksFront: {
  25775. height: math.unit(3.72, "feet"),
  25776. name: "Dicks (Front)",
  25777. image: {
  25778. source: "./media/characters/koros/dicks-front.svg"
  25779. }
  25780. },
  25781. dicksPeeking: {
  25782. height: math.unit(3.0, "feet"),
  25783. name: "Dicks (Peeking)",
  25784. image: {
  25785. source: "./media/characters/koros/dicks-peeking.svg"
  25786. }
  25787. },
  25788. eye: {
  25789. height: math.unit(1.7, "feet"),
  25790. name: "Eye",
  25791. image: {
  25792. source: "./media/characters/koros/eye.svg"
  25793. }
  25794. },
  25795. headFront: {
  25796. height: math.unit(11.69, "feet"),
  25797. name: "Head (Front)",
  25798. image: {
  25799. source: "./media/characters/koros/head-front.svg"
  25800. }
  25801. },
  25802. headSide: {
  25803. height: math.unit(14, "feet"),
  25804. name: "Head (Side)",
  25805. image: {
  25806. source: "./media/characters/koros/head-side.svg"
  25807. }
  25808. },
  25809. leg: {
  25810. height: math.unit(17, "feet"),
  25811. name: "Leg",
  25812. image: {
  25813. source: "./media/characters/koros/leg.svg"
  25814. }
  25815. },
  25816. mawSide: {
  25817. height: math.unit(12.8, "feet"),
  25818. name: "Maw (Side)",
  25819. image: {
  25820. source: "./media/characters/koros/maw-side.svg"
  25821. }
  25822. },
  25823. mawSpitting: {
  25824. height: math.unit(17, "feet"),
  25825. name: "Maw (Spitting)",
  25826. image: {
  25827. source: "./media/characters/koros/maw-spitting.svg"
  25828. }
  25829. },
  25830. slit: {
  25831. height: math.unit(2.8, "feet"),
  25832. name: "Slit",
  25833. image: {
  25834. source: "./media/characters/koros/slit.svg"
  25835. }
  25836. },
  25837. stomach: {
  25838. height: math.unit(6.8, "feet"),
  25839. capacity: math.unit(20, "people"),
  25840. name: "Stomach",
  25841. image: {
  25842. source: "./media/characters/koros/stomach.svg"
  25843. }
  25844. },
  25845. wingspanBottom: {
  25846. height: math.unit(114, "feet"),
  25847. name: "Wingspan (Bottom)",
  25848. image: {
  25849. source: "./media/characters/koros/wingspan-bottom.svg"
  25850. }
  25851. },
  25852. wingspanTop: {
  25853. height: math.unit(104, "feet"),
  25854. name: "Wingspan (Top)",
  25855. image: {
  25856. source: "./media/characters/koros/wingspan-top.svg"
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(31 + 8 / 12, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(18 + 5 / 12, "feet"),
  25873. weight: math.unit(3750, "kg"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/vexx/front.svg",
  25877. extra: 426 / 396,
  25878. bottom: 31.5 / 458
  25879. }
  25880. },
  25881. maw: {
  25882. height: math.unit(6, "feet"),
  25883. name: "Maw",
  25884. image: {
  25885. source: "./media/characters/vexx/maw.svg"
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(18 + 5 / 12, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(17 + 6 / 12, "feet"),
  25902. weight: math.unit(150, "lb"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/baadra/front.svg",
  25906. extra: 3137 / 2890,
  25907. bottom: 168.4 / 3305
  25908. }
  25909. },
  25910. back: {
  25911. height: math.unit(17 + 6 / 12, "feet"),
  25912. weight: math.unit(150, "lb"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/baadra/back.svg",
  25916. extra: 3142 / 2890,
  25917. bottom: 220 / 3371
  25918. }
  25919. },
  25920. head: {
  25921. height: math.unit(5.45, "feet"),
  25922. name: "Head",
  25923. image: {
  25924. source: "./media/characters/baadra/head.svg"
  25925. }
  25926. },
  25927. headAngry: {
  25928. height: math.unit(4.95, "feet"),
  25929. name: "Head (Angry)",
  25930. image: {
  25931. source: "./media/characters/baadra/head-angry.svg"
  25932. }
  25933. },
  25934. headOpen: {
  25935. height: math.unit(6, "feet"),
  25936. name: "Head (Open)",
  25937. image: {
  25938. source: "./media/characters/baadra/head-open.svg"
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(17 + 6 / 12, "feet"),
  25946. default: true
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(7 + 3 / 12, "feet"),
  25955. weight: math.unit(180, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/juri/front.svg",
  25959. extra: 1401 / 1237,
  25960. bottom: 18.5 / 1418
  25961. }
  25962. },
  25963. side: {
  25964. height: math.unit(7 + 3 / 12, "feet"),
  25965. weight: math.unit(180, "lb"),
  25966. name: "Side",
  25967. image: {
  25968. source: "./media/characters/juri/side.svg",
  25969. extra: 1424 / 1242,
  25970. bottom: 18.5 / 1447
  25971. }
  25972. },
  25973. sitting: {
  25974. height: math.unit(6, "feet"),
  25975. weight: math.unit(180, "lb"),
  25976. name: "Sitting",
  25977. image: {
  25978. source: "./media/characters/juri/sitting.svg",
  25979. extra: 1270 / 1143,
  25980. bottom: 100 / 1343
  25981. }
  25982. },
  25983. back: {
  25984. height: math.unit(7 + 3 / 12, "feet"),
  25985. weight: math.unit(180, "lb"),
  25986. name: "Back",
  25987. image: {
  25988. source: "./media/characters/juri/back.svg",
  25989. extra: 1377 / 1240,
  25990. bottom: 23.7 / 1405
  25991. }
  25992. },
  25993. maw: {
  25994. height: math.unit(2.8, "feet"),
  25995. name: "Maw",
  25996. image: {
  25997. source: "./media/characters/juri/maw.svg"
  25998. }
  25999. },
  26000. stomach: {
  26001. height: math.unit(0.89, "feet"),
  26002. capacity: math.unit(4, "liters"),
  26003. name: "Stomach",
  26004. image: {
  26005. source: "./media/characters/juri/stomach.svg"
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(7 + 3 / 12, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26019. {
  26020. fox: {
  26021. height: math.unit(5 + 6 / 12, "feet"),
  26022. weight: math.unit(140, "lb"),
  26023. name: "Fox",
  26024. image: {
  26025. source: "./media/characters/maxene-sita/fox.svg",
  26026. extra: 146 / 138,
  26027. bottom: 2.1 / 148.19
  26028. }
  26029. },
  26030. foxLaying: {
  26031. height: math.unit(1.70, "feet"),
  26032. weight: math.unit(140, "lb"),
  26033. name: "Fox (Laying)",
  26034. image: {
  26035. source: "./media/characters/maxene-sita/fox-laying.svg",
  26036. extra: 910 / 572,
  26037. bottom: 71 / 981
  26038. }
  26039. },
  26040. kitsune: {
  26041. height: math.unit(10, "feet"),
  26042. weight: math.unit(800, "lb"),
  26043. name: "Kitsune",
  26044. image: {
  26045. source: "./media/characters/maxene-sita/kitsune.svg",
  26046. extra: 185 / 176,
  26047. bottom: 4.7 / 189.9
  26048. }
  26049. },
  26050. hellhound: {
  26051. height: math.unit(10, "feet"),
  26052. weight: math.unit(700, "lb"),
  26053. name: "Hellhound",
  26054. image: {
  26055. source: "./media/characters/maxene-sita/hellhound.svg",
  26056. extra: 1600 / 1545,
  26057. bottom: 81 / 1681
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(5 + 6 / 12, "feet"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26071. {
  26072. front: {
  26073. height: math.unit(3 + 4 / 12, "feet"),
  26074. weight: math.unit(70, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/maia/front.svg",
  26078. extra: 227 / 219.5,
  26079. bottom: 40 / 267
  26080. }
  26081. },
  26082. back: {
  26083. height: math.unit(3 + 4 / 12, "feet"),
  26084. weight: math.unit(70, "lb"),
  26085. name: "Back",
  26086. image: {
  26087. source: "./media/characters/maia/back.svg",
  26088. extra: 237 / 225
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(3 + 4 / 12, "feet"),
  26096. default: true
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(5 + 10 / 12, "feet"),
  26105. weight: math.unit(197, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/jabaro/front.svg",
  26109. extra: 225 / 216,
  26110. bottom: 5.06 / 230
  26111. }
  26112. },
  26113. back: {
  26114. height: math.unit(5 + 10 / 12, "feet"),
  26115. weight: math.unit(197, "lb"),
  26116. name: "Back",
  26117. image: {
  26118. source: "./media/characters/jabaro/back.svg",
  26119. extra: 225 / 219,
  26120. bottom: 1.9 / 227
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(5 + 10 / 12, "feet"),
  26128. default: true
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(5 + 8 / 12, "feet"),
  26137. weight: math.unit(139, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/risa/front.svg",
  26141. extra: 270 / 260,
  26142. bottom: 11.2 / 282
  26143. }
  26144. },
  26145. back: {
  26146. height: math.unit(5 + 8 / 12, "feet"),
  26147. weight: math.unit(139, "lb"),
  26148. name: "Back",
  26149. image: {
  26150. source: "./media/characters/risa/back.svg",
  26151. extra: 264 / 255,
  26152. bottom: 4 / 268
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Normal",
  26159. height: math.unit(5 + 8 / 12, "feet"),
  26160. default: true
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26166. {
  26167. front: {
  26168. height: math.unit(2 + 11 / 12, "feet"),
  26169. weight: math.unit(30, "lb"),
  26170. name: "Front",
  26171. image: {
  26172. source: "./media/characters/weatley/front.svg",
  26173. bottom: 10.7 / 414,
  26174. extra: 403.5 / 362
  26175. }
  26176. },
  26177. back: {
  26178. height: math.unit(2 + 11 / 12, "feet"),
  26179. weight: math.unit(30, "lb"),
  26180. name: "Back",
  26181. image: {
  26182. source: "./media/characters/weatley/back.svg",
  26183. bottom: 10.7 / 414,
  26184. extra: 403.5 / 362
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(2 + 11 / 12, "feet"),
  26192. default: true
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(5 + 2 / 12, "feet"),
  26201. weight: math.unit(50, "kg"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/mercury-crescent/front.svg",
  26205. extra: 1088 / 1033,
  26206. bottom: 18.9 / 1109
  26207. }
  26208. },
  26209. },
  26210. [
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(5 + 2 / 12, "feet"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26220. {
  26221. front: {
  26222. height: math.unit(2, "feet"),
  26223. weight: math.unit(15, "kg"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/diamond-jones/front.svg",
  26227. extra: 727/723,
  26228. bottom: 46/773
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "Normal",
  26235. height: math.unit(2, "feet"),
  26236. default: true
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26242. {
  26243. front: {
  26244. height: math.unit(3, "feet"),
  26245. weight: math.unit(30, "kg"),
  26246. name: "Front",
  26247. image: {
  26248. source: "./media/characters/sweet-bit/front.svg",
  26249. extra: 675 / 567,
  26250. bottom: 27.7 / 703
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(3, "feet"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26264. {
  26265. side: {
  26266. height: math.unit(9.178, "feet"),
  26267. weight: math.unit(500, "lb"),
  26268. name: "Side",
  26269. image: {
  26270. source: "./media/characters/umbrazen/side.svg",
  26271. extra: 1730 / 1473,
  26272. bottom: 34.6 / 1765
  26273. }
  26274. },
  26275. },
  26276. [
  26277. {
  26278. name: "Normal",
  26279. height: math.unit(9.178, "feet"),
  26280. default: true
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26286. {
  26287. front: {
  26288. height: math.unit(10, "feet"),
  26289. weight: math.unit(750, "lb"),
  26290. name: "Front",
  26291. image: {
  26292. source: "./media/characters/arlist/front.svg",
  26293. extra: 961 / 778,
  26294. bottom: 6.2 / 986
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(10, "feet"),
  26302. default: true
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(5 + 1 / 12, "feet"),
  26311. weight: math.unit(110, "lb"),
  26312. name: "Front",
  26313. image: {
  26314. source: "./media/characters/aradel/front.svg",
  26315. extra: 324 / 303,
  26316. bottom: 3.6 / 329.4
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(5 + 1 / 12, "feet"),
  26324. default: true
  26325. },
  26326. ]
  26327. ))
  26328. characterMakers.push(() => makeCharacter(
  26329. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26330. {
  26331. front: {
  26332. height: math.unit(3 + 8 / 12, "feet"),
  26333. weight: math.unit(50, "lb"),
  26334. name: "Front",
  26335. image: {
  26336. source: "./media/characters/serryn/front.svg",
  26337. extra: 1792 / 1656,
  26338. bottom: 43.5 / 1840
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(3 + 8 / 12, "feet"),
  26346. default: true
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(7 + 10 / 12, "feet"),
  26355. weight: math.unit(255, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/xavier-thyme/front.svg",
  26359. extra: 3733 / 3642,
  26360. bottom: 131 / 3869
  26361. }
  26362. },
  26363. frontRaven: {
  26364. height: math.unit(7 + 10 / 12, "feet"),
  26365. weight: math.unit(255, "lb"),
  26366. name: "Front (Raven)",
  26367. image: {
  26368. source: "./media/characters/xavier-thyme/front-raven.svg",
  26369. extra: 4385 / 3642,
  26370. bottom: 131 / 4517
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(7 + 10 / 12, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(1.6, "m"),
  26387. weight: math.unit(50, "kg"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/kiki/front.svg",
  26391. extra: 4682 / 3610,
  26392. bottom: 115 / 4777
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(1.6, "meters"),
  26400. default: true
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(50, "m"),
  26409. weight: math.unit(500, "tonnes"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/ryoko/front.svg",
  26413. extra: 4632 / 3926,
  26414. bottom: 193 / 4823
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(50, "meters"),
  26422. default: true
  26423. },
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(30, "m"),
  26431. weight: math.unit(22, "tonnes"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/elio/front.svg",
  26435. extra: 4582 / 3720,
  26436. bottom: 236 / 4828
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(30, "meters"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(6 + 3 / 12, "feet"),
  26453. weight: math.unit(120, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/azura/front.svg",
  26457. extra: 1149 / 1135,
  26458. bottom: 45 / 1194
  26459. }
  26460. },
  26461. frontClothed: {
  26462. height: math.unit(6 + 3 / 12, "feet"),
  26463. weight: math.unit(120, "lb"),
  26464. name: "Front (Clothed)",
  26465. image: {
  26466. source: "./media/characters/azura/front-clothed.svg",
  26467. extra: 1149 / 1135,
  26468. bottom: 45 / 1194
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(6 + 3 / 12, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(20 + 6 / 12, "feet")
  26481. },
  26482. {
  26483. name: "Megamacro",
  26484. height: math.unit(12, "miles")
  26485. },
  26486. {
  26487. name: "Gigamacro",
  26488. height: math.unit(10000, "miles")
  26489. },
  26490. {
  26491. name: "Teramacro",
  26492. height: math.unit(900000, "miles")
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(12, "feet"),
  26501. weight: math.unit(1, "ton"),
  26502. capacity: math.unit(660000, "gallons"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/zeus/front.svg",
  26506. extra: 5005 / 4717,
  26507. bottom: 363 / 5388
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Normal",
  26514. height: math.unit(12, "feet")
  26515. },
  26516. {
  26517. name: "Preferred Size",
  26518. height: math.unit(0.5, "miles"),
  26519. default: true
  26520. },
  26521. {
  26522. name: "Giga Horse",
  26523. height: math.unit(300, "miles")
  26524. },
  26525. {
  26526. name: "Riding Planets",
  26527. height: math.unit(30, "megameters")
  26528. },
  26529. {
  26530. name: "Cosmic Giant",
  26531. height: math.unit(3, "zettameters")
  26532. },
  26533. {
  26534. name: "Breeding God",
  26535. height: math.unit(9.92e22, "yottameters")
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26541. {
  26542. side: {
  26543. height: math.unit(9, "feet"),
  26544. weight: math.unit(1500, "kg"),
  26545. name: "Side",
  26546. image: {
  26547. source: "./media/characters/fang/side.svg",
  26548. extra: 924 / 866,
  26549. bottom: 47.5 / 972.3
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(9, "feet"),
  26557. default: true
  26558. },
  26559. {
  26560. name: "Macro",
  26561. height: math.unit(75 + 6 / 12, "feet")
  26562. },
  26563. {
  26564. name: "Teramacro",
  26565. height: math.unit(50000, "miles")
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(10, "feet"),
  26574. weight: math.unit(2, "tons"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/rekhit/front.svg",
  26578. extra: 2796 / 2590,
  26579. bottom: 225 / 3022
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(10, "feet"),
  26587. default: true
  26588. },
  26589. {
  26590. name: "Macro",
  26591. height: math.unit(500, "feet")
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(7 + 6.451 / 12, "feet"),
  26600. weight: math.unit(310, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/dahlia-verrick/front.svg",
  26604. extra: 1488 / 1365,
  26605. bottom: 6.2 / 1495
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(7 + 6.451 / 12, "feet"),
  26610. weight: math.unit(310, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/dahlia-verrick/back.svg",
  26614. extra: 1472 / 1351,
  26615. bottom: 5.28 / 1477
  26616. }
  26617. },
  26618. frontBusiness: {
  26619. height: math.unit(7 + 6.451 / 12, "feet"),
  26620. weight: math.unit(200, "lb"),
  26621. name: "Front (Business)",
  26622. image: {
  26623. source: "./media/characters/dahlia-verrick/front-business.svg",
  26624. extra: 1478 / 1381,
  26625. bottom: 5.5 / 1484
  26626. }
  26627. },
  26628. frontCasual: {
  26629. height: math.unit(7 + 6.451 / 12, "feet"),
  26630. weight: math.unit(200, "lb"),
  26631. name: "Front (Casual)",
  26632. image: {
  26633. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26634. extra: 1478 / 1381,
  26635. bottom: 5.5 / 1484
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Travel-Sized",
  26642. height: math.unit(7.45, "inches")
  26643. },
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(7 + 6.451 / 12, "feet"),
  26647. default: true
  26648. },
  26649. {
  26650. name: "Hitting the Town",
  26651. height: math.unit(37 + 8 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Stomp in the Suburbs",
  26655. height: math.unit(964 + 9.728 / 12, "feet")
  26656. },
  26657. {
  26658. name: "Sit on the City",
  26659. height: math.unit(61747 + 10.592 / 12, "feet")
  26660. },
  26661. {
  26662. name: "Glomp the Globe",
  26663. height: math.unit(252919327 + 4.832 / 12, "feet")
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(6 + 4 / 12, "feet"),
  26672. weight: math.unit(320, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/balina-mahigan/front.svg",
  26676. extra: 447 / 428,
  26677. bottom: 18 / 466
  26678. }
  26679. },
  26680. back: {
  26681. height: math.unit(6 + 4 / 12, "feet"),
  26682. weight: math.unit(320, "lb"),
  26683. name: "Back",
  26684. image: {
  26685. source: "./media/characters/balina-mahigan/back.svg",
  26686. extra: 445 / 428,
  26687. bottom: 4.07 / 448
  26688. }
  26689. },
  26690. arm: {
  26691. height: math.unit(1.88, "feet"),
  26692. name: "Arm",
  26693. image: {
  26694. source: "./media/characters/balina-mahigan/arm.svg"
  26695. }
  26696. },
  26697. backPort: {
  26698. height: math.unit(0.685, "feet"),
  26699. name: "Back Port",
  26700. image: {
  26701. source: "./media/characters/balina-mahigan/back-port.svg"
  26702. }
  26703. },
  26704. hoofpaw: {
  26705. height: math.unit(1.41, "feet"),
  26706. name: "Hoofpaw",
  26707. image: {
  26708. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26709. }
  26710. },
  26711. leftHandBack: {
  26712. height: math.unit(0.938, "feet"),
  26713. name: "Left Hand (Back)",
  26714. image: {
  26715. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26716. }
  26717. },
  26718. leftHandFront: {
  26719. height: math.unit(0.938, "feet"),
  26720. name: "Left Hand (Front)",
  26721. image: {
  26722. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26723. }
  26724. },
  26725. rightHandBack: {
  26726. height: math.unit(0.95, "feet"),
  26727. name: "Right Hand (Back)",
  26728. image: {
  26729. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26730. }
  26731. },
  26732. rightHandFront: {
  26733. height: math.unit(0.95, "feet"),
  26734. name: "Right Hand (Front)",
  26735. image: {
  26736. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(6 + 4 / 12, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(6, "feet"),
  26753. weight: math.unit(320, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/balina-mejeri/front.svg",
  26757. extra: 517 / 488,
  26758. bottom: 44.2 / 561
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(6 + 4 / 12, "feet")
  26766. },
  26767. {
  26768. name: "Business",
  26769. height: math.unit(155, "feet"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26776. {
  26777. kneeling: {
  26778. height: math.unit(6 + 4 / 12, "feet"),
  26779. weight: math.unit(300 * 20, "lb"),
  26780. name: "Kneeling",
  26781. image: {
  26782. source: "./media/characters/balbarian/kneeling.svg",
  26783. extra: 922 / 862,
  26784. bottom: 42.4 / 965
  26785. }
  26786. },
  26787. },
  26788. [
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(6 + 4 / 12, "feet")
  26792. },
  26793. {
  26794. name: "Treasured",
  26795. height: math.unit(18 + 9 / 12, "feet"),
  26796. default: true
  26797. },
  26798. {
  26799. name: "Macro",
  26800. height: math.unit(900, "feet")
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26806. {
  26807. front: {
  26808. height: math.unit(6 + 4 / 12, "feet"),
  26809. weight: math.unit(325, "lb"),
  26810. name: "Front",
  26811. image: {
  26812. source: "./media/characters/balina-amarini/front.svg",
  26813. extra: 415 / 403,
  26814. bottom: 19 / 433.4
  26815. }
  26816. },
  26817. back: {
  26818. height: math.unit(6 + 4 / 12, "feet"),
  26819. weight: math.unit(325, "lb"),
  26820. name: "Back",
  26821. image: {
  26822. source: "./media/characters/balina-amarini/back.svg",
  26823. extra: 415 / 403,
  26824. bottom: 13.5 / 432
  26825. }
  26826. },
  26827. overdrive: {
  26828. height: math.unit(6 + 4 / 12, "feet"),
  26829. weight: math.unit(400, "lb"),
  26830. name: "Overdrive",
  26831. image: {
  26832. source: "./media/characters/balina-amarini/overdrive.svg",
  26833. extra: 269 / 259,
  26834. bottom: 12 / 282
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Boom",
  26841. height: math.unit(9 + 10 / 12, "feet"),
  26842. default: true
  26843. },
  26844. {
  26845. name: "Macro",
  26846. height: math.unit(280, "feet")
  26847. },
  26848. ]
  26849. ))
  26850. characterMakers.push(() => makeCharacter(
  26851. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26852. {
  26853. goddess: {
  26854. height: math.unit(600, "feet"),
  26855. weight: math.unit(2000000, "tons"),
  26856. name: "Goddess",
  26857. image: {
  26858. source: "./media/characters/lady-kubwa/goddess.svg",
  26859. extra: 1240.5 / 1223,
  26860. bottom: 22 / 1263
  26861. }
  26862. },
  26863. goddesser: {
  26864. height: math.unit(900, "feet"),
  26865. weight: math.unit(20000000, "lb"),
  26866. name: "Goddess-er",
  26867. image: {
  26868. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26869. extra: 899 / 888,
  26870. bottom: 12.6 / 912
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Macro",
  26877. height: math.unit(600, "feet"),
  26878. default: true
  26879. },
  26880. {
  26881. name: "Megamacro",
  26882. height: math.unit(250, "miles")
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(7 + 7 / 12, "feet"),
  26891. weight: math.unit(250, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/tala-grovehorn/front.svg",
  26895. extra: 2636 / 2525,
  26896. bottom: 147 / 2781
  26897. }
  26898. },
  26899. back: {
  26900. height: math.unit(7 + 7 / 12, "feet"),
  26901. weight: math.unit(250, "lb"),
  26902. name: "Back",
  26903. image: {
  26904. source: "./media/characters/tala-grovehorn/back.svg",
  26905. extra: 2635 / 2539,
  26906. bottom: 100 / 2732.8
  26907. }
  26908. },
  26909. mouth: {
  26910. height: math.unit(1.15, "feet"),
  26911. name: "Mouth",
  26912. image: {
  26913. source: "./media/characters/tala-grovehorn/mouth.svg"
  26914. }
  26915. },
  26916. dick: {
  26917. height: math.unit(2.36, "feet"),
  26918. name: "Dick",
  26919. image: {
  26920. source: "./media/characters/tala-grovehorn/dick.svg"
  26921. }
  26922. },
  26923. slit: {
  26924. height: math.unit(0.61, "feet"),
  26925. name: "Slit",
  26926. image: {
  26927. source: "./media/characters/tala-grovehorn/slit.svg"
  26928. }
  26929. },
  26930. },
  26931. [
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26936. {
  26937. front: {
  26938. height: math.unit(7 + 7 / 12, "feet"),
  26939. weight: math.unit(225, "lb"),
  26940. name: "Front",
  26941. image: {
  26942. source: "./media/characters/epona/front.svg",
  26943. extra: 2445 / 2290,
  26944. bottom: 251 / 2696
  26945. }
  26946. },
  26947. back: {
  26948. height: math.unit(7 + 7 / 12, "feet"),
  26949. weight: math.unit(225, "lb"),
  26950. name: "Back",
  26951. image: {
  26952. source: "./media/characters/epona/back.svg",
  26953. extra: 2546 / 2408,
  26954. bottom: 44 / 2589
  26955. }
  26956. },
  26957. genitals: {
  26958. height: math.unit(1.5, "feet"),
  26959. name: "Genitals",
  26960. image: {
  26961. source: "./media/characters/epona/genitals.svg"
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(7 + 7 / 12, "feet"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(7, "feet"),
  26978. weight: math.unit(518, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/avia-bloodbourn/front.svg",
  26982. extra: 1466 / 1350,
  26983. bottom: 65 / 1527
  26984. }
  26985. },
  26986. },
  26987. [
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(9.35, "feet"),
  26995. weight: math.unit(600, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/amera/front.svg",
  26999. extra: 891 / 818,
  27000. bottom: 30 / 922.7
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(9.35, "feet"),
  27005. weight: math.unit(600, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/amera/back.svg",
  27009. extra: 876 / 824,
  27010. bottom: 6.8 / 884
  27011. }
  27012. },
  27013. dick: {
  27014. height: math.unit(2.14, "feet"),
  27015. name: "Dick",
  27016. image: {
  27017. source: "./media/characters/amera/dick.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(9.35, "feet"),
  27025. default: true
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27031. {
  27032. kneeling: {
  27033. height: math.unit(3 + 4 / 12, "feet"),
  27034. weight: math.unit(90, "lb"),
  27035. name: "Kneeling",
  27036. image: {
  27037. source: "./media/characters/rosewen/kneeling.svg",
  27038. extra: 1835 / 1571,
  27039. bottom: 27.7 / 1862
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(3 + 4 / 12, "feet"),
  27047. default: true
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(5 + 10 / 12, "feet"),
  27056. weight: math.unit(200, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/sabah/front.svg",
  27060. extra: 849 / 763,
  27061. bottom: 33.9 / 881
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(5 + 10 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27075. {
  27076. front: {
  27077. height: math.unit(3 + 5 / 12, "feet"),
  27078. weight: math.unit(40, "kg"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/purple-flame/front.svg",
  27082. extra: 1577 / 1412,
  27083. bottom: 97 / 1694
  27084. }
  27085. },
  27086. frontDressed: {
  27087. height: math.unit(3 + 5 / 12, "feet"),
  27088. weight: math.unit(40, "kg"),
  27089. name: "Front (Dressed)",
  27090. image: {
  27091. source: "./media/characters/purple-flame/front-dressed.svg",
  27092. extra: 1577 / 1412,
  27093. bottom: 97 / 1694
  27094. }
  27095. },
  27096. headphones: {
  27097. height: math.unit(0.85, "feet"),
  27098. name: "Headphones",
  27099. image: {
  27100. source: "./media/characters/purple-flame/headphones.svg"
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Really Small",
  27107. height: math.unit(5, "cm")
  27108. },
  27109. {
  27110. name: "Micro",
  27111. height: math.unit(1 + 5 / 12, "feet")
  27112. },
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(3 + 5 / 12, "feet"),
  27116. default: true
  27117. },
  27118. {
  27119. name: "Minimacro",
  27120. height: math.unit(125, "feet")
  27121. },
  27122. {
  27123. name: "Macro",
  27124. height: math.unit(0.5, "miles")
  27125. },
  27126. {
  27127. name: "Megamacro",
  27128. height: math.unit(50, "miles")
  27129. },
  27130. {
  27131. name: "Gigantic",
  27132. height: math.unit(750, "miles")
  27133. },
  27134. {
  27135. name: "Planetary",
  27136. height: math.unit(15000, "miles")
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(14, "feet"),
  27145. weight: math.unit(959, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/arsenal/front.svg",
  27149. extra: 2357 / 2157,
  27150. bottom: 93 / 2458
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(14, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(6, "feet"),
  27167. weight: math.unit(150, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/adira/front.svg",
  27171. extra: 1078 / 1029,
  27172. bottom: 87 / 1166
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Micro",
  27179. height: math.unit(4, "inches"),
  27180. default: true
  27181. },
  27182. {
  27183. name: "Macro",
  27184. height: math.unit(50, "feet")
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(16, "feet"),
  27193. weight: math.unit(1000, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/grim/front.svg",
  27197. extra: 622 / 614,
  27198. bottom: 18.1 / 642
  27199. }
  27200. },
  27201. back: {
  27202. height: math.unit(16, "feet"),
  27203. weight: math.unit(1000, "lb"),
  27204. name: "Back",
  27205. image: {
  27206. source: "./media/characters/grim/back.svg",
  27207. extra: 610.6 / 602,
  27208. bottom: 40.8 / 652
  27209. }
  27210. },
  27211. hunched: {
  27212. height: math.unit(9.75, "feet"),
  27213. weight: math.unit(1000, "lb"),
  27214. name: "Hunched",
  27215. image: {
  27216. source: "./media/characters/grim/hunched.svg",
  27217. extra: 304 / 297,
  27218. bottom: 35.4 / 394
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(16, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(2.3, "meters"),
  27235. weight: math.unit(300, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/sinja/front-sfw.svg",
  27239. extra: 1393 / 1294,
  27240. bottom: 70 / 1463
  27241. }
  27242. },
  27243. frontNsfw: {
  27244. height: math.unit(2.3, "meters"),
  27245. weight: math.unit(300, "lb"),
  27246. name: "Front (NSFW)",
  27247. image: {
  27248. source: "./media/characters/sinja/front-nsfw.svg",
  27249. extra: 1393 / 1294,
  27250. bottom: 70 / 1463
  27251. }
  27252. },
  27253. back: {
  27254. height: math.unit(2.3, "meters"),
  27255. weight: math.unit(300, "lb"),
  27256. name: "Back",
  27257. image: {
  27258. source: "./media/characters/sinja/back.svg",
  27259. extra: 1393 / 1294,
  27260. bottom: 70 / 1463
  27261. }
  27262. },
  27263. head: {
  27264. height: math.unit(1.771, "feet"),
  27265. name: "Head",
  27266. image: {
  27267. source: "./media/characters/sinja/head.svg"
  27268. }
  27269. },
  27270. slit: {
  27271. height: math.unit(0.8, "feet"),
  27272. name: "Slit",
  27273. image: {
  27274. source: "./media/characters/sinja/slit.svg"
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(2.3, "meters")
  27282. },
  27283. {
  27284. name: "Macro",
  27285. height: math.unit(91, "meters"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Megamacro",
  27290. height: math.unit(91440, "meters")
  27291. },
  27292. {
  27293. name: "Gigamacro",
  27294. height: math.unit(60960000, "meters")
  27295. },
  27296. {
  27297. name: "Teramacro",
  27298. height: math.unit(9144000000, "meters")
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(1.7, "meters"),
  27307. weight: math.unit(130, "lb"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/kyu/front.svg",
  27311. extra: 415 / 395,
  27312. bottom: 5 / 420
  27313. }
  27314. },
  27315. head: {
  27316. height: math.unit(1.75, "feet"),
  27317. name: "Head",
  27318. image: {
  27319. source: "./media/characters/kyu/head.svg"
  27320. }
  27321. },
  27322. foot: {
  27323. height: math.unit(0.81, "feet"),
  27324. name: "Foot",
  27325. image: {
  27326. source: "./media/characters/kyu/foot.svg"
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(1.7, "meters")
  27334. },
  27335. {
  27336. name: "Macro",
  27337. height: math.unit(131, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Megamacro",
  27342. height: math.unit(91440, "meters")
  27343. },
  27344. {
  27345. name: "Gigamacro",
  27346. height: math.unit(60960000, "meters")
  27347. },
  27348. {
  27349. name: "Teramacro",
  27350. height: math.unit(9144000000, "meters")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(7 + 1 / 12, "feet"),
  27359. weight: math.unit(250, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/joey/front.svg",
  27363. extra: 1791 / 1537,
  27364. bottom: 28 / 1816
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Micro",
  27371. height: math.unit(3, "inches")
  27372. },
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(7 + 1 / 12, "feet"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(165, "cm"),
  27385. weight: math.unit(140, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/sam-evans/front.svg",
  27389. extra: 3417 / 3230,
  27390. bottom: 41.3 / 3417
  27391. }
  27392. },
  27393. frontSixTails: {
  27394. height: math.unit(165, "cm"),
  27395. weight: math.unit(140, "lb"),
  27396. name: "Front-six-tails",
  27397. image: {
  27398. source: "./media/characters/sam-evans/front-six-tails.svg",
  27399. extra: 3417 / 3230,
  27400. bottom: 41.3 / 3417
  27401. }
  27402. },
  27403. back: {
  27404. height: math.unit(165, "cm"),
  27405. weight: math.unit(140, "lb"),
  27406. name: "Back",
  27407. image: {
  27408. source: "./media/characters/sam-evans/back.svg",
  27409. extra: 3227 / 3032,
  27410. bottom: 6.8 / 3234
  27411. }
  27412. },
  27413. face: {
  27414. height: math.unit(0.68, "feet"),
  27415. name: "Face",
  27416. image: {
  27417. source: "./media/characters/sam-evans/face.svg"
  27418. }
  27419. },
  27420. },
  27421. [
  27422. {
  27423. name: "Normal",
  27424. height: math.unit(165, "cm"),
  27425. default: true
  27426. },
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(100, "meters")
  27430. },
  27431. {
  27432. name: "Macro+",
  27433. height: math.unit(800, "meters")
  27434. },
  27435. {
  27436. name: "Macro++",
  27437. height: math.unit(3, "km")
  27438. },
  27439. {
  27440. name: "Macro+++",
  27441. height: math.unit(30, "km")
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27447. {
  27448. front: {
  27449. height: math.unit(10, "feet"),
  27450. weight: math.unit(750, "lb"),
  27451. name: "Front",
  27452. image: {
  27453. source: "./media/characters/juliet-a/front.svg",
  27454. extra: 1766 / 1720,
  27455. bottom: 43 / 1809
  27456. }
  27457. },
  27458. back: {
  27459. height: math.unit(10, "feet"),
  27460. weight: math.unit(750, "lb"),
  27461. name: "Back",
  27462. image: {
  27463. source: "./media/characters/juliet-a/back.svg",
  27464. extra: 1781 / 1734,
  27465. bottom: 35 / 1810,
  27466. }
  27467. },
  27468. },
  27469. [
  27470. {
  27471. name: "Normal",
  27472. height: math.unit(10, "feet"),
  27473. default: true
  27474. },
  27475. {
  27476. name: "Dragon Form",
  27477. height: math.unit(250, "feet")
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(1000, "feet")
  27482. },
  27483. {
  27484. name: "Megamacro",
  27485. height: math.unit(10000, "feet")
  27486. }
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27491. {
  27492. regular: {
  27493. height: math.unit(7 + 3 / 12, "feet"),
  27494. weight: math.unit(260, "lb"),
  27495. name: "Regular",
  27496. image: {
  27497. source: "./media/characters/wild/regular.svg",
  27498. extra: 97.45 / 92,
  27499. bottom: 6.8 / 104.3
  27500. }
  27501. },
  27502. biggums: {
  27503. height: math.unit(8 + 6 / 12, "feet"),
  27504. weight: math.unit(425, "lb"),
  27505. name: "Biggums",
  27506. image: {
  27507. source: "./media/characters/wild/biggums.svg",
  27508. extra: 97.45 / 92,
  27509. bottom: 7.5 / 132.34
  27510. }
  27511. },
  27512. mawRegular: {
  27513. height: math.unit(1.24, "feet"),
  27514. name: "Maw (Regular)",
  27515. image: {
  27516. source: "./media/characters/wild/maw.svg"
  27517. }
  27518. },
  27519. mawBiggums: {
  27520. height: math.unit(1.47, "feet"),
  27521. name: "Maw (Biggums)",
  27522. image: {
  27523. source: "./media/characters/wild/maw.svg"
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(7 + 3 / 12, "feet"),
  27531. default: true
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27537. {
  27538. front: {
  27539. height: math.unit(2.5, "meters"),
  27540. weight: math.unit(200, "kg"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/vidar/front.svg",
  27544. extra: 2994 / 2795,
  27545. bottom: 56 / 3061
  27546. }
  27547. },
  27548. back: {
  27549. height: math.unit(2.5, "meters"),
  27550. weight: math.unit(200, "kg"),
  27551. name: "Back",
  27552. image: {
  27553. source: "./media/characters/vidar/back.svg",
  27554. extra: 3131 / 2928,
  27555. bottom: 13.5 / 3141.5
  27556. }
  27557. },
  27558. feral: {
  27559. height: math.unit(2.5, "meters"),
  27560. weight: math.unit(2000, "kg"),
  27561. name: "Feral",
  27562. image: {
  27563. source: "./media/characters/vidar/feral.svg",
  27564. extra: 2790 / 1765,
  27565. bottom: 6 / 2796
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(2.5, "meters"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Macro",
  27577. height: math.unit(100, "meters")
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27583. {
  27584. front: {
  27585. height: math.unit(5 + 9 / 12, "feet"),
  27586. weight: math.unit(120, "lb"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/ash/front.svg",
  27590. extra: 2189 / 1961,
  27591. bottom: 5.2 / 2194
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(5 + 9 / 12, "feet"),
  27599. default: true
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(9, "feet"),
  27608. weight: math.unit(10000, "lb"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/gygabite/front.svg",
  27612. bottom: 31.7 / 537.8,
  27613. extra: 505 / 370
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(9, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(12, "feet"),
  27630. weight: math.unit(35000, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/p0tat0/front.svg",
  27634. extra: 1065 / 921,
  27635. bottom: 55.7 / 1121.25
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27649. {
  27650. side: {
  27651. height: math.unit(6.5, "feet"),
  27652. weight: math.unit(800, "lb"),
  27653. name: "Side",
  27654. image: {
  27655. source: "./media/characters/dusk/side.svg",
  27656. extra: 615 / 373,
  27657. bottom: 53 / 664
  27658. }
  27659. },
  27660. sitting: {
  27661. height: math.unit(7, "feet"),
  27662. weight: math.unit(800, "lb"),
  27663. name: "Sitting",
  27664. image: {
  27665. source: "./media/characters/dusk/sitting.svg",
  27666. extra: 753 / 425,
  27667. bottom: 33 / 774
  27668. }
  27669. },
  27670. head: {
  27671. height: math.unit(6.1, "feet"),
  27672. name: "Head",
  27673. image: {
  27674. source: "./media/characters/dusk/head.svg"
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(7, "feet"),
  27682. default: true
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27688. {
  27689. front: {
  27690. height: math.unit(15, "feet"),
  27691. weight: math.unit(7000, "lb"),
  27692. name: "Front",
  27693. image: {
  27694. source: "./media/characters/jay-direwolf/front.svg",
  27695. extra: 1810 / 1732,
  27696. bottom: 66 / 1892
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(15, "feet"),
  27704. default: true
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(4 + 9 / 12, "feet"),
  27713. weight: math.unit(130, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/anchovie/front.svg",
  27717. extra: 382 / 350,
  27718. bottom: 25 / 409
  27719. }
  27720. },
  27721. back: {
  27722. height: math.unit(4 + 9 / 12, "feet"),
  27723. weight: math.unit(130, "lb"),
  27724. name: "Back",
  27725. image: {
  27726. source: "./media/characters/anchovie/back.svg",
  27727. extra: 385 / 352,
  27728. bottom: 16.6 / 402
  27729. }
  27730. },
  27731. frontDressed: {
  27732. height: math.unit(4 + 9 / 12, "feet"),
  27733. weight: math.unit(130, "lb"),
  27734. name: "Front (Dressed)",
  27735. image: {
  27736. source: "./media/characters/anchovie/front-dressed.svg",
  27737. extra: 382 / 350,
  27738. bottom: 25 / 409
  27739. }
  27740. },
  27741. backDressed: {
  27742. height: math.unit(4 + 9 / 12, "feet"),
  27743. weight: math.unit(130, "lb"),
  27744. name: "Back (Dressed)",
  27745. image: {
  27746. source: "./media/characters/anchovie/back-dressed.svg",
  27747. extra: 385 / 352,
  27748. bottom: 16.6 / 402
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Micro",
  27755. height: math.unit(6.4, "inches")
  27756. },
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(4 + 9 / 12, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(2, "meters"),
  27769. weight: math.unit(180, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/acidrenamon/front.svg",
  27773. extra: 987 / 890,
  27774. bottom: 22.8 / 1009
  27775. }
  27776. },
  27777. back: {
  27778. height: math.unit(2, "meters"),
  27779. weight: math.unit(180, "lb"),
  27780. name: "Back",
  27781. image: {
  27782. source: "./media/characters/acidrenamon/back.svg",
  27783. extra: 983 / 891,
  27784. bottom: 8.4 / 992
  27785. }
  27786. },
  27787. head: {
  27788. height: math.unit(1.92, "feet"),
  27789. name: "Head",
  27790. image: {
  27791. source: "./media/characters/acidrenamon/head.svg"
  27792. }
  27793. },
  27794. rump: {
  27795. height: math.unit(1.72, "feet"),
  27796. name: "Rump",
  27797. image: {
  27798. source: "./media/characters/acidrenamon/rump.svg"
  27799. }
  27800. },
  27801. tail: {
  27802. height: math.unit(4.2, "feet"),
  27803. name: "Tail",
  27804. image: {
  27805. source: "./media/characters/acidrenamon/tail.svg"
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Normal",
  27812. height: math.unit(2, "meters"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Minimacro",
  27817. height: math.unit(7, "meters")
  27818. },
  27819. {
  27820. name: "Macro",
  27821. height: math.unit(200, "meters")
  27822. },
  27823. {
  27824. name: "Gigamacro",
  27825. height: math.unit(0.2, "earths")
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27831. {
  27832. front: {
  27833. height: math.unit(152, "feet"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/kenzie-lee/front.svg",
  27837. extra: 1869/1774,
  27838. bottom: 128/1997
  27839. }
  27840. },
  27841. side: {
  27842. height: math.unit(86, "feet"),
  27843. name: "Side",
  27844. image: {
  27845. source: "./media/characters/kenzie-lee/side.svg",
  27846. extra: 930/815,
  27847. bottom: 177/1107
  27848. }
  27849. },
  27850. paw: {
  27851. height: math.unit(15, "feet"),
  27852. name: "Paw",
  27853. image: {
  27854. source: "./media/characters/kenzie-lee/paw.svg"
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Micro",
  27861. height: math.unit(1.5, "inches")
  27862. },
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(152, "feet"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Megamacro",
  27870. height: math.unit(7, "miles")
  27871. },
  27872. {
  27873. name: "Gigamacro",
  27874. height: math.unit(8000, "miles")
  27875. },
  27876. ]
  27877. ))
  27878. characterMakers.push(() => makeCharacter(
  27879. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27880. {
  27881. side: {
  27882. height: math.unit(6, "feet"),
  27883. weight: math.unit(150, "lb"),
  27884. name: "Side",
  27885. image: {
  27886. source: "./media/characters/withers/side.svg",
  27887. extra: 1830 / 1728,
  27888. bottom: 96 / 1927
  27889. }
  27890. },
  27891. front: {
  27892. height: math.unit(6, "feet"),
  27893. weight: math.unit(150, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/withers/front.svg",
  27897. extra: 1514 / 1438,
  27898. bottom: 118 / 1632
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Macro",
  27905. height: math.unit(168, "feet"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Megamacro",
  27910. height: math.unit(15, "miles")
  27911. }
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(6 + 7 / 12, "feet"),
  27919. weight: math.unit(250, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/nemoskii/front.svg",
  27923. extra: 2270 / 1734,
  27924. bottom: 86 / 2354
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(6 + 7 / 12, "feet"),
  27929. weight: math.unit(250, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/nemoskii/back.svg",
  27933. extra: 1845 / 1788,
  27934. bottom: 10.5 / 1852
  27935. }
  27936. },
  27937. head: {
  27938. height: math.unit(1.31, "feet"),
  27939. name: "Head",
  27940. image: {
  27941. source: "./media/characters/nemoskii/head.svg"
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Micro",
  27948. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27949. },
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(6 + 7 / 12, "feet"),
  27953. default: true
  27954. },
  27955. {
  27956. name: "Macro",
  27957. height: math.unit((6 + 7 / 12) * 150, "feet")
  27958. },
  27959. {
  27960. name: "Macro+",
  27961. height: math.unit((6 + 7 / 12) * 500, "feet")
  27962. },
  27963. {
  27964. name: "Megamacro",
  27965. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(1, "mile"),
  27974. weight: math.unit(265261.9, "lb"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/shui/front.svg",
  27978. extra: 1633 / 1564,
  27979. bottom: 91.5 / 1726
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Macro",
  27986. height: math.unit(1, "mile"),
  27987. default: true
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27993. {
  27994. front: {
  27995. height: math.unit(12 + 6 / 12, "feet"),
  27996. weight: math.unit(1342, "lb"),
  27997. name: "Front",
  27998. image: {
  27999. source: "./media/characters/arokh-takakura/front.svg",
  28000. extra: 1089 / 1043,
  28001. bottom: 77.4 / 1176.7
  28002. }
  28003. },
  28004. back: {
  28005. height: math.unit(12 + 6 / 12, "feet"),
  28006. weight: math.unit(1342, "lb"),
  28007. name: "Back",
  28008. image: {
  28009. source: "./media/characters/arokh-takakura/back.svg",
  28010. extra: 1046 / 1019,
  28011. bottom: 102 / 1150
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Big",
  28018. height: math.unit(12 + 6 / 12, "feet"),
  28019. default: true
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(5 + 6 / 12, "feet"),
  28028. weight: math.unit(150, "lb"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/theo/front.svg",
  28032. extra: 1184 / 1131,
  28033. bottom: 7.4 / 1191
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Micro",
  28040. height: math.unit(5, "inches")
  28041. },
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(5 + 6 / 12, "feet"),
  28045. default: true
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(5 + 9 / 12, "feet"),
  28054. weight: math.unit(130, "lb"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/cecelia-swift/front.svg",
  28058. extra: 502 / 484,
  28059. bottom: 23 / 523
  28060. }
  28061. },
  28062. back: {
  28063. height: math.unit(5 + 9 / 12, "feet"),
  28064. weight: math.unit(130, "lb"),
  28065. name: "Back",
  28066. image: {
  28067. source: "./media/characters/cecelia-swift/back.svg",
  28068. extra: 499 / 485,
  28069. bottom: 12 / 511
  28070. }
  28071. },
  28072. head: {
  28073. height: math.unit(0.90, "feet"),
  28074. name: "Head",
  28075. image: {
  28076. source: "./media/characters/cecelia-swift/head.svg"
  28077. }
  28078. },
  28079. rump: {
  28080. height: math.unit(1.75, "feet"),
  28081. name: "Rump",
  28082. image: {
  28083. source: "./media/characters/cecelia-swift/rump.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(5 + 9 / 12, "feet"),
  28091. default: true
  28092. },
  28093. {
  28094. name: "Big",
  28095. height: math.unit(50, "feet")
  28096. },
  28097. {
  28098. name: "Macro",
  28099. height: math.unit(100, "feet")
  28100. },
  28101. {
  28102. name: "Macro+",
  28103. height: math.unit(500, "feet")
  28104. },
  28105. {
  28106. name: "Macro++",
  28107. height: math.unit(1000, "feet")
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28113. {
  28114. front: {
  28115. height: math.unit(6, "feet"),
  28116. weight: math.unit(150, "lb"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/kaunan/front.svg",
  28120. extra: 2890 / 2523,
  28121. bottom: 49 / 2939
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(150, "feet"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(175, "cm"),
  28138. weight: math.unit(60, "kg"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/fei/front.svg",
  28142. extra: 1873/1723,
  28143. bottom: 53/1926
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Mortal",
  28150. height: math.unit(175, "cm")
  28151. },
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(3500, "m"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Stroll",
  28159. height: math.unit(17.5, "km")
  28160. },
  28161. {
  28162. name: "Showoff",
  28163. height: math.unit(175, "km")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28169. {
  28170. front: {
  28171. height: math.unit(7, "feet"),
  28172. weight: math.unit(1000, "kg"),
  28173. name: "Front",
  28174. image: {
  28175. source: "./media/characters/edrax/front.svg",
  28176. extra: 2838 / 2550,
  28177. bottom: 130 / 2968
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Small",
  28184. height: math.unit(7, "feet")
  28185. },
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(1500, "meters")
  28189. },
  28190. {
  28191. name: "Mega",
  28192. height: math.unit(12000000, "km"),
  28193. default: true
  28194. },
  28195. {
  28196. name: "Megamacro",
  28197. height: math.unit(10600000, "lightyears")
  28198. },
  28199. {
  28200. name: "Hypermacro",
  28201. height: math.unit(256, "yottameters")
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(10, "feet"),
  28210. weight: math.unit(750, "lb"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/clove/front.svg",
  28214. extra: 1918/1751,
  28215. bottom: 52/1970
  28216. }
  28217. },
  28218. back: {
  28219. height: math.unit(10, "feet"),
  28220. weight: math.unit(750, "lb"),
  28221. name: "Back",
  28222. image: {
  28223. source: "./media/characters/clove/back.svg",
  28224. extra: 1912/1747,
  28225. bottom: 50/1962
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(10, "feet"),
  28233. default: true
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(4, "feet"),
  28242. weight: math.unit(50, "lb"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/alex-rabbit/front.svg",
  28246. extra: 507 / 458,
  28247. bottom: 18.5 / 527
  28248. }
  28249. },
  28250. back: {
  28251. height: math.unit(4, "feet"),
  28252. weight: math.unit(50, "lb"),
  28253. name: "Back",
  28254. image: {
  28255. source: "./media/characters/alex-rabbit/back.svg",
  28256. extra: 502 / 460,
  28257. bottom: 18.9 / 521
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(4, "feet"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(1 + 3 / 12, "feet"),
  28274. weight: math.unit(80, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/zander-rose/front.svg",
  28278. extra: 916 / 797,
  28279. bottom: 17 / 933
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(1 + 3 / 12, "feet"),
  28284. weight: math.unit(80, "lb"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/zander-rose/back.svg",
  28288. extra: 903 / 779,
  28289. bottom: 31 / 934
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Normal",
  28296. height: math.unit(1 + 3 / 12, "feet"),
  28297. default: true
  28298. },
  28299. ]
  28300. ))
  28301. characterMakers.push(() => makeCharacter(
  28302. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28303. {
  28304. anthro: {
  28305. height: math.unit(6, "feet"),
  28306. weight: math.unit(150, "lb"),
  28307. name: "Anthro",
  28308. image: {
  28309. source: "./media/characters/razz/anthro.svg",
  28310. extra: 1437 / 1343,
  28311. bottom: 48 / 1485
  28312. }
  28313. },
  28314. feral: {
  28315. height: math.unit(6, "feet"),
  28316. weight: math.unit(150, "lb"),
  28317. name: "Feral",
  28318. image: {
  28319. source: "./media/characters/razz/feral.svg",
  28320. extra: 2569 / 1385,
  28321. bottom: 95 / 2664
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(6, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(9 + 4 / 12, "feet"),
  28338. weight: math.unit(500, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/morrigan/front.svg",
  28342. extra: 2707 / 2579,
  28343. bottom: 156 / 2863
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(9 + 4 / 12, "feet"),
  28351. default: true
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(5, "stories"),
  28360. weight: math.unit(4000, "lb"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/jenene/front.svg",
  28364. extra: 1780 / 1710,
  28365. bottom: 57 / 1837
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(5, "stories"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28379. {
  28380. taurSfw: {
  28381. height: math.unit(10, "meters"),
  28382. weight: math.unit(17500, "kg"),
  28383. name: "Taur",
  28384. image: {
  28385. source: "./media/characters/faey/taur-sfw.svg",
  28386. extra: 1200 / 968,
  28387. bottom: 41 / 1241
  28388. }
  28389. },
  28390. chestmaw: {
  28391. height: math.unit(2.01, "meters"),
  28392. name: "Chestmaw",
  28393. image: {
  28394. source: "./media/characters/faey/chestmaw.svg"
  28395. }
  28396. },
  28397. foot: {
  28398. height: math.unit(2.43, "meters"),
  28399. name: "Foot",
  28400. image: {
  28401. source: "./media/characters/faey/foot.svg"
  28402. }
  28403. },
  28404. jaws: {
  28405. height: math.unit(1.66, "meters"),
  28406. name: "Jaws",
  28407. image: {
  28408. source: "./media/characters/faey/jaws.svg"
  28409. }
  28410. },
  28411. tongues: {
  28412. height: math.unit(2.01, "meters"),
  28413. name: "Tongues",
  28414. image: {
  28415. source: "./media/characters/faey/tongues.svg"
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Small",
  28422. height: math.unit(10, "meters"),
  28423. default: true
  28424. },
  28425. {
  28426. name: "Big",
  28427. height: math.unit(500000, "km")
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(7, "feet"),
  28436. weight: math.unit(275, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/roku/front.svg",
  28440. extra: 903 / 878,
  28441. bottom: 37 / 940
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(7, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(500, "feet")
  28454. },
  28455. {
  28456. name: "Megamacro",
  28457. height: math.unit(200, "miles")
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(6 + 2 / 12, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/lira/front.svg",
  28470. extra: 1727 / 1605,
  28471. bottom: 26 / 1753
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(6 + 2 / 12, "feet"),
  28476. weight: math.unit(150, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/lira/back.svg",
  28480. extra: 1713/1621,
  28481. bottom: 20/1733
  28482. }
  28483. },
  28484. hand: {
  28485. height: math.unit(0.75, "feet"),
  28486. name: "Hand",
  28487. image: {
  28488. source: "./media/characters/lira/hand.svg"
  28489. }
  28490. },
  28491. maw: {
  28492. height: math.unit(0.65, "feet"),
  28493. name: "Maw",
  28494. image: {
  28495. source: "./media/characters/lira/maw.svg"
  28496. }
  28497. },
  28498. pawDigi: {
  28499. height: math.unit(1.6, "feet"),
  28500. name: "Paw Digi",
  28501. image: {
  28502. source: "./media/characters/lira/paw-digi.svg"
  28503. }
  28504. },
  28505. pawPlanti: {
  28506. height: math.unit(1.4, "feet"),
  28507. name: "Paw Planti",
  28508. image: {
  28509. source: "./media/characters/lira/paw-planti.svg"
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(6 + 2 / 12, "feet"),
  28517. default: true
  28518. },
  28519. {
  28520. name: "Macro",
  28521. height: math.unit(100, "feet")
  28522. },
  28523. {
  28524. name: "Macro²",
  28525. height: math.unit(1600, "feet")
  28526. },
  28527. {
  28528. name: "Planetary",
  28529. height: math.unit(20, "earths")
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(6, "feet"),
  28538. weight: math.unit(150, "lb"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/hadjet/front.svg",
  28542. extra: 1480 / 1346,
  28543. bottom: 26 / 1506
  28544. }
  28545. },
  28546. frontNsfw: {
  28547. height: math.unit(6, "feet"),
  28548. weight: math.unit(150, "lb"),
  28549. name: "Front (NSFW)",
  28550. image: {
  28551. source: "./media/characters/hadjet/front-nsfw.svg",
  28552. extra: 1440 / 1358,
  28553. bottom: 52 / 1492
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(10, "stories"),
  28561. default: true
  28562. },
  28563. {
  28564. name: "Megamacro",
  28565. height: math.unit(1.5, "miles")
  28566. },
  28567. {
  28568. name: "Megamacro+",
  28569. height: math.unit(5, "miles")
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28575. {
  28576. side: {
  28577. height: math.unit(106, "feet"),
  28578. weight: math.unit(500, "tonnes"),
  28579. name: "Side",
  28580. image: {
  28581. source: "./media/characters/kodran/side.svg",
  28582. extra: 553 / 480,
  28583. bottom: 33 / 586
  28584. }
  28585. },
  28586. front: {
  28587. height: math.unit(132, "feet"),
  28588. weight: math.unit(500, "tonnes"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/kodran/front.svg",
  28592. extra: 667 / 643,
  28593. bottom: 42 / 709
  28594. }
  28595. },
  28596. flying: {
  28597. height: math.unit(350, "feet"),
  28598. weight: math.unit(500, "tonnes"),
  28599. name: "Flying",
  28600. image: {
  28601. source: "./media/characters/kodran/flying.svg"
  28602. }
  28603. },
  28604. foot: {
  28605. height: math.unit(33, "feet"),
  28606. name: "Foot",
  28607. image: {
  28608. source: "./media/characters/kodran/foot.svg"
  28609. }
  28610. },
  28611. footFront: {
  28612. height: math.unit(19, "feet"),
  28613. name: "Foot (Front)",
  28614. image: {
  28615. source: "./media/characters/kodran/foot-front.svg",
  28616. extra: 261 / 261,
  28617. bottom: 91 / 352
  28618. }
  28619. },
  28620. headFront: {
  28621. height: math.unit(53, "feet"),
  28622. name: "Head (Front)",
  28623. image: {
  28624. source: "./media/characters/kodran/head-front.svg"
  28625. }
  28626. },
  28627. headSide: {
  28628. height: math.unit(65, "feet"),
  28629. name: "Head (Side)",
  28630. image: {
  28631. source: "./media/characters/kodran/head-side.svg"
  28632. }
  28633. },
  28634. throat: {
  28635. height: math.unit(79, "feet"),
  28636. name: "Throat",
  28637. image: {
  28638. source: "./media/characters/kodran/throat.svg"
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Large",
  28645. height: math.unit(106, "feet"),
  28646. default: true
  28647. },
  28648. ]
  28649. ))
  28650. characterMakers.push(() => makeCharacter(
  28651. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28652. {
  28653. side: {
  28654. height: math.unit(11, "feet"),
  28655. weight: math.unit(150, "lb"),
  28656. name: "Side",
  28657. image: {
  28658. source: "./media/characters/pyxaron/side.svg",
  28659. extra: 305 / 195,
  28660. bottom: 17 / 322
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(11, "feet"),
  28668. default: true
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(6, "feet"),
  28677. weight: math.unit(150, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/meep/front.svg",
  28681. extra: 88 / 80,
  28682. bottom: 6 / 94
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Fun Sized",
  28689. height: math.unit(2, "inches"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Friend Sized",
  28694. height: math.unit(8, "inches")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(15, "feet"),
  28703. weight: math.unit(2500, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/holly-rabbit/front.svg",
  28707. extra: 1433 / 1233,
  28708. bottom: 125 / 1558
  28709. }
  28710. },
  28711. dick: {
  28712. height: math.unit(4.6, "feet"),
  28713. name: "Dick",
  28714. image: {
  28715. source: "./media/characters/holly-rabbit/dick.svg"
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(15, "feet"),
  28723. default: true
  28724. },
  28725. {
  28726. name: "Macro",
  28727. height: math.unit(250, "feet")
  28728. },
  28729. {
  28730. name: "Macro+",
  28731. height: math.unit(2500, "feet")
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(3.02, "meters"),
  28740. weight: math.unit(500, "kg"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/drena/front.svg",
  28744. extra: 282 / 243,
  28745. bottom: 8 / 290
  28746. }
  28747. },
  28748. side: {
  28749. height: math.unit(3.02, "meters"),
  28750. weight: math.unit(500, "kg"),
  28751. name: "Side",
  28752. image: {
  28753. source: "./media/characters/drena/side.svg",
  28754. extra: 280 / 245,
  28755. bottom: 10 / 290
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(3.02, "meters"),
  28760. weight: math.unit(500, "kg"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/drena/back.svg",
  28764. extra: 278 / 243,
  28765. bottom: 2 / 280
  28766. }
  28767. },
  28768. foot: {
  28769. height: math.unit(0.75, "meters"),
  28770. name: "Foot",
  28771. image: {
  28772. source: "./media/characters/drena/foot.svg"
  28773. }
  28774. },
  28775. maw: {
  28776. height: math.unit(0.82, "meters"),
  28777. name: "Maw",
  28778. image: {
  28779. source: "./media/characters/drena/maw.svg"
  28780. }
  28781. },
  28782. rump: {
  28783. height: math.unit(0.93, "meters"),
  28784. name: "Rump",
  28785. image: {
  28786. source: "./media/characters/drena/rump.svg"
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(3.02, "meters"),
  28794. default: true
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(6 + 4 / 12, "feet"),
  28803. weight: math.unit(250, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/remmyzilla/front.svg",
  28807. extra: 4033 / 3588,
  28808. bottom: 123 / 4156
  28809. }
  28810. },
  28811. back: {
  28812. height: math.unit(6 + 4 / 12, "feet"),
  28813. weight: math.unit(250, "lb"),
  28814. name: "Back",
  28815. image: {
  28816. source: "./media/characters/remmyzilla/back.svg",
  28817. extra: 2687 / 2555,
  28818. bottom: 48 / 2735
  28819. }
  28820. },
  28821. paw: {
  28822. height: math.unit(1.73, "feet"),
  28823. name: "Paw",
  28824. image: {
  28825. source: "./media/characters/remmyzilla/paw.svg"
  28826. }
  28827. },
  28828. maw: {
  28829. height: math.unit(1.73, "feet"),
  28830. name: "Maw",
  28831. image: {
  28832. source: "./media/characters/remmyzilla/maw.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(6 + 4 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Minimacro",
  28843. height: math.unit(12 + 8 / 12, "feet")
  28844. },
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(640, "feet"),
  28848. default: true
  28849. },
  28850. {
  28851. name: "Megamacro",
  28852. height: math.unit(6400, "feet")
  28853. },
  28854. {
  28855. name: "Gigamacro",
  28856. height: math.unit(64000, "miles")
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(2.5, "meters"),
  28865. weight: math.unit(300, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/lawrence/front.svg",
  28869. extra: 357 / 335,
  28870. bottom: 30 / 387
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(2.5, "meters"),
  28875. weight: math.unit(300, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/lawrence/back.svg",
  28879. extra: 357 / 338,
  28880. bottom: 16 / 373
  28881. }
  28882. },
  28883. head: {
  28884. height: math.unit(0.9, "meter"),
  28885. name: "Head",
  28886. image: {
  28887. source: "./media/characters/lawrence/head.svg"
  28888. }
  28889. },
  28890. maw: {
  28891. height: math.unit(0.7, "meter"),
  28892. name: "Maw",
  28893. image: {
  28894. source: "./media/characters/lawrence/maw.svg"
  28895. }
  28896. },
  28897. footBottom: {
  28898. height: math.unit(0.5, "meter"),
  28899. name: "Foot (Bottom)",
  28900. image: {
  28901. source: "./media/characters/lawrence/foot-bottom.svg"
  28902. }
  28903. },
  28904. footTop: {
  28905. height: math.unit(0.5, "meter"),
  28906. name: "Foot (Top)",
  28907. image: {
  28908. source: "./media/characters/lawrence/foot-top.svg"
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Normal",
  28915. height: math.unit(2.5, "meters"),
  28916. default: true
  28917. },
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(95, "meters")
  28921. },
  28922. {
  28923. name: "Megamacro",
  28924. height: math.unit(150, "km")
  28925. },
  28926. ]
  28927. ))
  28928. characterMakers.push(() => makeCharacter(
  28929. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28930. {
  28931. front: {
  28932. height: math.unit(4.2, "meters"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/sydney/front.svg",
  28936. extra: 1323 / 1277,
  28937. bottom: 111 / 1434
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(4.2, "meters"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28951. {
  28952. back: {
  28953. height: math.unit(201, "feet"),
  28954. name: "Back",
  28955. image: {
  28956. source: "./media/characters/jessica/back.svg",
  28957. extra: 273 / 259,
  28958. bottom: 7 / 280
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(201, "feet"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Megamacro",
  28970. height: math.unit(8, "miles")
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28976. {
  28977. side: {
  28978. height: math.unit(5.6, "m"),
  28979. weight: math.unit(8000, "kg"),
  28980. name: "Side",
  28981. image: {
  28982. source: "./media/characters/victoria/side.svg",
  28983. extra: 1542/1229,
  28984. bottom: 124/1666
  28985. }
  28986. },
  28987. maw: {
  28988. height: math.unit(7.14, "feet"),
  28989. name: "Maw",
  28990. image: {
  28991. source: "./media/characters/victoria/maw.svg"
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(5.6, "m"),
  28999. default: true
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29005. {
  29006. front: {
  29007. height: math.unit(5 + 6 / 12, "feet"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/cat/front.svg",
  29011. extra: 1449/1295,
  29012. bottom: 34/1483
  29013. },
  29014. form: "cat",
  29015. default: true
  29016. },
  29017. back: {
  29018. height: math.unit(5 + 6 / 12, "feet"),
  29019. name: "Back",
  29020. image: {
  29021. source: "./media/characters/cat/back.svg",
  29022. extra: 1466/1301,
  29023. bottom: 19/1485
  29024. },
  29025. form: "cat"
  29026. },
  29027. taur: {
  29028. height: math.unit(7, "feet"),
  29029. name: "Taur",
  29030. image: {
  29031. source: "./media/characters/cat/taur.svg",
  29032. extra: 1389/1233,
  29033. bottom: 83/1472
  29034. },
  29035. form: "taur",
  29036. default: true
  29037. },
  29038. lucarioFront: {
  29039. height: math.unit(4, "feet"),
  29040. name: "Lucario (Front)",
  29041. image: {
  29042. source: "./media/characters/cat/lucario-front.svg",
  29043. extra: 1149/1019,
  29044. bottom: 84/1233
  29045. },
  29046. form: "lucario",
  29047. default: true
  29048. },
  29049. lucarioBack: {
  29050. height: math.unit(4, "feet"),
  29051. name: "Lucario (Back)",
  29052. image: {
  29053. source: "./media/characters/cat/lucario-back.svg",
  29054. extra: 1190/1059,
  29055. bottom: 33/1223
  29056. },
  29057. form: "lucario"
  29058. },
  29059. megaLucario: {
  29060. height: math.unit(4, "feet"),
  29061. name: "Mega Lucario",
  29062. image: {
  29063. source: "./media/characters/cat/mega-lucario.svg",
  29064. extra: 1515 / 1319,
  29065. bottom: 63 / 1578
  29066. },
  29067. form: "lucario"
  29068. },
  29069. nickit: {
  29070. height: math.unit(2, "feet"),
  29071. name: "Nickit",
  29072. image: {
  29073. source: "./media/characters/cat/nickit.svg",
  29074. extra: 1980 / 1585,
  29075. bottom: 102 / 2082
  29076. },
  29077. form: "nickit",
  29078. default: true
  29079. },
  29080. lopunnyFront: {
  29081. height: math.unit(5, "feet"),
  29082. name: "Lopunny (Front)",
  29083. image: {
  29084. source: "./media/characters/cat/lopunny-front.svg",
  29085. extra: 1782 / 1469,
  29086. bottom: 38 / 1820
  29087. },
  29088. form: "lopunny",
  29089. default: true
  29090. },
  29091. lopunnyBack: {
  29092. height: math.unit(5, "feet"),
  29093. name: "Lopunny (Back)",
  29094. image: {
  29095. source: "./media/characters/cat/lopunny-back.svg",
  29096. extra: 1660 / 1490,
  29097. bottom: 25 / 1685
  29098. },
  29099. form: "lopunny"
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Really small",
  29105. height: math.unit(1, "nm")
  29106. },
  29107. {
  29108. name: "Micro",
  29109. height: math.unit(5, "inches")
  29110. },
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(5 + 6 / 12, "feet"),
  29114. default: true
  29115. },
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(50, "feet")
  29119. },
  29120. {
  29121. name: "Macro+",
  29122. height: math.unit(150, "feet")
  29123. },
  29124. {
  29125. name: "Megamacro",
  29126. height: math.unit(100, "miles")
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(63.4, "meters"),
  29135. weight: math.unit(3.28349e+6, "kilograms"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/kirina-violet/front.svg",
  29139. extra: 2812 / 2725,
  29140. bottom: 0 / 2812
  29141. }
  29142. },
  29143. back: {
  29144. height: math.unit(63.4, "meters"),
  29145. weight: math.unit(3.28349e+6, "kilograms"),
  29146. name: "Back",
  29147. image: {
  29148. source: "./media/characters/kirina-violet/back.svg",
  29149. extra: 2812 / 2725,
  29150. bottom: 0 / 2812
  29151. }
  29152. },
  29153. mouth: {
  29154. height: math.unit(4.35, "meters"),
  29155. name: "Mouth",
  29156. image: {
  29157. source: "./media/characters/kirina-violet/mouth.svg"
  29158. }
  29159. },
  29160. paw: {
  29161. height: math.unit(5.6, "meters"),
  29162. name: "Paw",
  29163. image: {
  29164. source: "./media/characters/kirina-violet/paw.svg"
  29165. }
  29166. },
  29167. tail: {
  29168. height: math.unit(18, "meters"),
  29169. name: "Tail",
  29170. image: {
  29171. source: "./media/characters/kirina-violet/tail.svg"
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(63.4, "meters"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(75, "feet"),
  29188. name: "Front",
  29189. image: {
  29190. source: "./media/characters/cat-gigachu/front.svg",
  29191. extra: 1239/1027,
  29192. bottom: 32/1271
  29193. }
  29194. },
  29195. back: {
  29196. height: math.unit(75, "feet"),
  29197. name: "Back",
  29198. image: {
  29199. source: "./media/characters/cat-gigachu/back.svg",
  29200. extra: 1229/1030,
  29201. bottom: 9/1238
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Dynamax",
  29208. height: math.unit(75, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(6, "feet"),
  29218. weight: math.unit(150, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/sfaiyan/front.svg",
  29222. extra: 999 / 978,
  29223. bottom: 5 / 1004
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(1.82, "meters")
  29231. },
  29232. {
  29233. name: "Giant",
  29234. height: math.unit(2.27, "km"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(179, "cm"),
  29244. weight: math.unit(100, "kg"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/raunehkeli/front.svg",
  29248. extra: 1934 / 1926,
  29249. bottom: 0 / 1934
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(179, "cm")
  29257. },
  29258. {
  29259. name: "Maximum",
  29260. height: math.unit(575, "meters"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(6, "feet"),
  29270. weight: math.unit(150, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29274. extra: 2625 / 2518,
  29275. bottom: 60 / 2685
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(6 + 2 / 12, "feet")
  29283. },
  29284. {
  29285. name: "Macro",
  29286. height: math.unit(1180, "feet"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(5 + 6 / 12, "feet"),
  29296. weight: math.unit(108, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/lilith-zott/front.svg",
  29300. extra: 2510 / 2238,
  29301. bottom: 100 / 2610
  29302. }
  29303. },
  29304. frontDressed: {
  29305. height: math.unit(5 + 6 / 12, "feet"),
  29306. weight: math.unit(108, "lb"),
  29307. name: "Front (Dressed)",
  29308. image: {
  29309. source: "./media/characters/lilith-zott/front-dressed.svg",
  29310. extra: 2510 / 2238,
  29311. bottom: 100 / 2610
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(5 + 6 / 12, "feet")
  29319. },
  29320. {
  29321. name: "Macro",
  29322. height: math.unit(1030, "feet"),
  29323. default: true
  29324. },
  29325. ]
  29326. ))
  29327. characterMakers.push(() => makeCharacter(
  29328. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29329. {
  29330. front: {
  29331. height: math.unit(6, "feet"),
  29332. weight: math.unit(150, "lb"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29336. extra: 2567 / 2435,
  29337. bottom: 39 / 2606
  29338. }
  29339. },
  29340. frontSuper: {
  29341. height: math.unit(6, "feet"),
  29342. name: "Front (Super)",
  29343. image: {
  29344. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29345. extra: 2567 / 2435,
  29346. bottom: 39 / 2606
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(5 + 10 / 12, "feet")
  29354. },
  29355. {
  29356. name: "Macro",
  29357. height: math.unit(1100, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(100, "miles"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/sona/front.svg",
  29370. extra: 2433 / 2201,
  29371. bottom: 53 / 2486
  29372. }
  29373. },
  29374. foot: {
  29375. height: math.unit(16.1, "miles"),
  29376. name: "Foot",
  29377. image: {
  29378. source: "./media/characters/sona/foot.svg"
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Macro",
  29385. height: math.unit(100, "miles"),
  29386. default: true
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(6, "feet"),
  29395. weight: math.unit(150, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/bailey/front.svg",
  29399. extra: 1778 / 1724,
  29400. bottom: 30 / 1808
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Micro",
  29407. height: math.unit(4, "inches")
  29408. },
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(5 + 5 / 12, "feet"),
  29412. default: true
  29413. },
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(250, "feet")
  29417. },
  29418. {
  29419. name: "Megamacro",
  29420. height: math.unit(100, "miles")
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(5 + 2 / 12, "feet"),
  29429. weight: math.unit(120, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/snaps/front.svg",
  29433. extra: 2370 / 2177,
  29434. bottom: 48 / 2418
  29435. }
  29436. },
  29437. back: {
  29438. height: math.unit(5 + 2 / 12, "feet"),
  29439. weight: math.unit(120, "lb"),
  29440. name: "Back",
  29441. image: {
  29442. source: "./media/characters/snaps/back.svg",
  29443. extra: 2408 / 2258,
  29444. bottom: 15 / 2423
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Micro",
  29451. height: math.unit(9, "inches")
  29452. },
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(5 + 2 / 12, "feet"),
  29456. default: true
  29457. },
  29458. {
  29459. name: "Mini Macro",
  29460. height: math.unit(10, "feet")
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(1.8, "meters"),
  29469. weight: math.unit(85, "kg"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/azteck/front.svg",
  29473. extra: 2815 / 2625,
  29474. bottom: 89 / 2904
  29475. }
  29476. },
  29477. back: {
  29478. height: math.unit(1.8, "meters"),
  29479. weight: math.unit(85, "kg"),
  29480. name: "Back",
  29481. image: {
  29482. source: "./media/characters/azteck/back.svg",
  29483. extra: 2856 / 2648,
  29484. bottom: 85 / 2941
  29485. }
  29486. },
  29487. frontDressed: {
  29488. height: math.unit(1.8, "meters"),
  29489. weight: math.unit(85, "kg"),
  29490. name: "Front (Dressed)",
  29491. image: {
  29492. source: "./media/characters/azteck/front-dressed.svg",
  29493. extra: 2147 / 2003,
  29494. bottom: 68 / 2215
  29495. }
  29496. },
  29497. head: {
  29498. height: math.unit(0.47, "meters"),
  29499. weight: math.unit(85, "kg"),
  29500. name: "Head",
  29501. image: {
  29502. source: "./media/characters/azteck/head.svg"
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Bite sized",
  29509. height: math.unit(16, "cm")
  29510. },
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(1.8, "meters"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(6, "feet"),
  29523. weight: math.unit(150, "lb"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/pidge/front.svg",
  29527. extra: 620 / 588,
  29528. bottom: 9 / 629
  29529. }
  29530. },
  29531. back: {
  29532. height: math.unit(6, "feet"),
  29533. weight: math.unit(150, "lb"),
  29534. name: "Back",
  29535. image: {
  29536. source: "./media/characters/pidge/back.svg",
  29537. extra: 620 / 588,
  29538. bottom: 9 / 629
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Macro",
  29545. height: math.unit(1, "mile"),
  29546. default: true
  29547. },
  29548. ]
  29549. ))
  29550. characterMakers.push(() => makeCharacter(
  29551. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29552. {
  29553. front: {
  29554. height: math.unit(6, "feet"),
  29555. weight: math.unit(150, "lb"),
  29556. name: "Front",
  29557. image: {
  29558. source: "./media/characters/en/front.svg",
  29559. extra: 1697 / 1563,
  29560. bottom: 103 / 1800
  29561. }
  29562. },
  29563. back: {
  29564. height: math.unit(6, "feet"),
  29565. weight: math.unit(150, "lb"),
  29566. name: "Back",
  29567. image: {
  29568. source: "./media/characters/en/back.svg",
  29569. extra: 1700 / 1570,
  29570. bottom: 51 / 1751
  29571. }
  29572. },
  29573. frontDressed: {
  29574. height: math.unit(6, "feet"),
  29575. weight: math.unit(150, "lb"),
  29576. name: "Front (Dressed)",
  29577. image: {
  29578. source: "./media/characters/en/front-dressed.svg",
  29579. extra: 1697 / 1563,
  29580. bottom: 103 / 1800
  29581. }
  29582. },
  29583. backDressed: {
  29584. height: math.unit(6, "feet"),
  29585. weight: math.unit(150, "lb"),
  29586. name: "Back (Dressed)",
  29587. image: {
  29588. source: "./media/characters/en/back-dressed.svg",
  29589. extra: 1700 / 1570,
  29590. bottom: 51 / 1751
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Macro",
  29597. height: math.unit(210, "feet"),
  29598. default: true
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(150, "lb"),
  29608. name: "Front",
  29609. image: {
  29610. source: "./media/characters/haze-orris/front.svg",
  29611. extra: 3975 / 3525,
  29612. bottom: 137 / 4112
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Micro",
  29619. height: math.unit(150, "mm"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(150, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/casselene-yaro/front.svg",
  29633. extra: 4721 / 4541,
  29634. bottom: 82 / 4803
  29635. }
  29636. },
  29637. back: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(150, "lb"),
  29640. name: "Back",
  29641. image: {
  29642. source: "./media/characters/casselene-yaro/back.svg",
  29643. extra: 4569 / 4377,
  29644. bottom: 69 / 4638
  29645. }
  29646. },
  29647. frontDressed: {
  29648. height: math.unit(6, "feet"),
  29649. weight: math.unit(150, "lb"),
  29650. name: "Front-dressed",
  29651. image: {
  29652. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29653. extra: 4721 / 4541,
  29654. bottom: 82 / 4803
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Macro",
  29661. height: math.unit(190, "feet"),
  29662. default: true
  29663. },
  29664. ]
  29665. ))
  29666. characterMakers.push(() => makeCharacter(
  29667. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29668. {
  29669. front: {
  29670. height: math.unit(6, "feet"),
  29671. weight: math.unit(150, "lb"),
  29672. name: "Front",
  29673. image: {
  29674. source: "./media/characters/myra-rue-delore/front.svg",
  29675. extra: 1340 / 1308,
  29676. bottom: 67 / 1407
  29677. }
  29678. },
  29679. back: {
  29680. height: math.unit(6, "feet"),
  29681. weight: math.unit(150, "lb"),
  29682. name: "Back",
  29683. image: {
  29684. source: "./media/characters/myra-rue-delore/back.svg",
  29685. extra: 1341 / 1310,
  29686. bottom: 40 / 1381
  29687. }
  29688. },
  29689. frontDressed: {
  29690. height: math.unit(6, "feet"),
  29691. weight: math.unit(150, "lb"),
  29692. name: "Front (Dressed)",
  29693. image: {
  29694. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29695. extra: 1340 / 1308,
  29696. bottom: 67 / 1407
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Macro",
  29703. height: math.unit(150, "feet"),
  29704. default: true
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(10, "feet"),
  29713. weight: math.unit(15015, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/fem!plat/front.svg",
  29717. extra: 2799 / 2604,
  29718. bottom: 149 / 2948
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Normal",
  29725. height: math.unit(10, "feet"),
  29726. default: true
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(100, "feet")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(1000, "feet")
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(15 + 5 / 12, "feet"),
  29743. weight: math.unit(4600, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/neapolitan-ananassa/front.svg",
  29747. extra: 2903 / 2736,
  29748. bottom: 0 / 2903
  29749. }
  29750. },
  29751. side: {
  29752. height: math.unit(15 + 5 / 12, "feet"),
  29753. weight: math.unit(4600, "lb"),
  29754. name: "Side",
  29755. image: {
  29756. source: "./media/characters/neapolitan-ananassa/side.svg",
  29757. extra: 2925 / 2719,
  29758. bottom: 0 / 2925
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(15 + 5 / 12, "feet"),
  29763. weight: math.unit(4600, "lb"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/neapolitan-ananassa/back.svg",
  29767. extra: 2903 / 2736,
  29768. bottom: 0 / 2903
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(15 + 5 / 12, "feet"),
  29776. default: true
  29777. },
  29778. {
  29779. name: "Post-Millenium",
  29780. height: math.unit(35 + 5 / 12, "feet")
  29781. },
  29782. {
  29783. name: "Post-Era",
  29784. height: math.unit(450 + 5 / 12, "feet")
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(300, "meters"),
  29793. weight: math.unit(125000, "tonnes"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/pazuzu/front.svg",
  29797. extra: 877 / 794,
  29798. bottom: 47 / 924
  29799. }
  29800. },
  29801. },
  29802. [
  29803. {
  29804. name: "Macro",
  29805. height: math.unit(300, "meters"),
  29806. default: true
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29812. {
  29813. side: {
  29814. height: math.unit(10 + 7 / 12, "feet"),
  29815. weight: math.unit(2.5, "tons"),
  29816. name: "Side",
  29817. image: {
  29818. source: "./media/characters/aasha/side.svg",
  29819. extra: 1345 / 1245,
  29820. bottom: 111 / 1456
  29821. }
  29822. },
  29823. back: {
  29824. height: math.unit(10 + 7 / 12, "feet"),
  29825. weight: math.unit(2.5, "tons"),
  29826. name: "Back",
  29827. image: {
  29828. source: "./media/characters/aasha/back.svg",
  29829. extra: 1133 / 1057,
  29830. bottom: 257 / 1390
  29831. }
  29832. },
  29833. },
  29834. [
  29835. {
  29836. name: "Normal",
  29837. height: math.unit(10 + 7 / 12, "feet"),
  29838. default: true
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(6 + 3 / 12, "feet"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/nevan/front.svg",
  29850. extra: 704 / 704,
  29851. bottom: 28 / 732
  29852. }
  29853. },
  29854. back: {
  29855. height: math.unit(6 + 3 / 12, "feet"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/nevan/back.svg",
  29859. extra: 714 / 714,
  29860. bottom: 21 / 735
  29861. }
  29862. },
  29863. frontFlaccid: {
  29864. height: math.unit(6 + 3 / 12, "feet"),
  29865. name: "Front (Flaccid)",
  29866. image: {
  29867. source: "./media/characters/nevan/front-flaccid.svg",
  29868. extra: 704 / 704,
  29869. bottom: 28 / 732
  29870. }
  29871. },
  29872. frontErect: {
  29873. height: math.unit(6 + 3 / 12, "feet"),
  29874. name: "Front (Erect)",
  29875. image: {
  29876. source: "./media/characters/nevan/front-erect.svg",
  29877. extra: 704 / 704,
  29878. bottom: 28 / 732
  29879. }
  29880. },
  29881. backFlaccid: {
  29882. height: math.unit(6 + 3 / 12, "feet"),
  29883. name: "Back (Flaccid)",
  29884. image: {
  29885. source: "./media/characters/nevan/back-flaccid.svg",
  29886. extra: 714 / 714,
  29887. bottom: 21 / 735
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(6 + 3 / 12, "feet"),
  29895. default: true
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29901. {
  29902. front: {
  29903. height: math.unit(4, "feet"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/arhan/front.svg",
  29907. extra: 3368 / 3133,
  29908. bottom: 0 / 3368
  29909. }
  29910. },
  29911. side: {
  29912. height: math.unit(4, "feet"),
  29913. name: "Side",
  29914. image: {
  29915. source: "./media/characters/arhan/side.svg",
  29916. extra: 3347 / 3105,
  29917. bottom: 0 / 3347
  29918. }
  29919. },
  29920. tongue: {
  29921. height: math.unit(1.42, "feet"),
  29922. name: "Tongue",
  29923. image: {
  29924. source: "./media/characters/arhan/tongue.svg"
  29925. }
  29926. },
  29927. head: {
  29928. height: math.unit(0.85, "feet"),
  29929. name: "Head",
  29930. image: {
  29931. source: "./media/characters/arhan/head.svg"
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(4, "feet"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(5 + 7.5 / 12, "feet"),
  29948. weight: math.unit(120, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/digi-duncan/front.svg",
  29952. extra: 330 / 326,
  29953. bottom: 16 / 346
  29954. }
  29955. },
  29956. side: {
  29957. height: math.unit(5 + 7.5 / 12, "feet"),
  29958. weight: math.unit(120, "lb"),
  29959. name: "Side",
  29960. image: {
  29961. source: "./media/characters/digi-duncan/side.svg",
  29962. extra: 341 / 337,
  29963. bottom: 1 / 342
  29964. }
  29965. },
  29966. back: {
  29967. height: math.unit(5 + 7.5 / 12, "feet"),
  29968. weight: math.unit(120, "lb"),
  29969. name: "Back",
  29970. image: {
  29971. source: "./media/characters/digi-duncan/back.svg",
  29972. extra: 330 / 326,
  29973. bottom: 12 / 342
  29974. }
  29975. },
  29976. },
  29977. [
  29978. {
  29979. name: "Speck",
  29980. height: math.unit(0.25, "mm")
  29981. },
  29982. {
  29983. name: "Micro",
  29984. height: math.unit(5, "mm")
  29985. },
  29986. {
  29987. name: "Tiny",
  29988. height: math.unit(0.5, "inches"),
  29989. default: true
  29990. },
  29991. {
  29992. name: "Human",
  29993. height: math.unit(5 + 7.5 / 12, "feet")
  29994. },
  29995. {
  29996. name: "Minigiant",
  29997. height: math.unit(8 + 5.25, "feet")
  29998. },
  29999. {
  30000. name: "Giant",
  30001. height: math.unit(2000, "feet")
  30002. },
  30003. {
  30004. name: "Mega",
  30005. height: math.unit(371.1, "miles")
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(2, "meters"),
  30014. weight: math.unit(350, "kg"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30018. extra: 898 / 838,
  30019. bottom: 9 / 907
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Micro",
  30026. height: math.unit(8, "meters")
  30027. },
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(50, "meters"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(500, "meters")
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(6 + 6 / 12, "feet"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/khardesh/front.svg",
  30047. extra: 1788/1596,
  30048. bottom: 66/1854
  30049. }
  30050. },
  30051. back: {
  30052. height: math.unit(6 + 6 / 12, "feet"),
  30053. name: "Back",
  30054. image: {
  30055. source: "./media/characters/khardesh/back.svg",
  30056. extra: 1781/1584,
  30057. bottom: 68/1849
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(6 + 6 / 12, "feet"),
  30065. default: true
  30066. },
  30067. {
  30068. name: "Normal+",
  30069. height: math.unit(4, "meters")
  30070. },
  30071. {
  30072. name: "Macro",
  30073. height: math.unit(50, "meters")
  30074. },
  30075. {
  30076. name: "Macro+",
  30077. height: math.unit(100, "meters")
  30078. },
  30079. {
  30080. name: "Megamacro",
  30081. height: math.unit(20, "km")
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(150, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/kosho/front.svg",
  30094. extra: 1847 / 1847,
  30095. bottom: 86 / 1933
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Second-stage micro",
  30102. height: math.unit(0.5, "inches")
  30103. },
  30104. {
  30105. name: "First-stage micro",
  30106. height: math.unit(6, "inches")
  30107. },
  30108. {
  30109. name: "Normal",
  30110. height: math.unit(6, "feet"),
  30111. default: true
  30112. },
  30113. {
  30114. name: "First-stage macro",
  30115. height: math.unit(72, "feet")
  30116. },
  30117. {
  30118. name: "Second-stage macro",
  30119. height: math.unit(864, "feet")
  30120. },
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30125. {
  30126. normal: {
  30127. height: math.unit(4 + 6 / 12, "feet"),
  30128. name: "Normal",
  30129. image: {
  30130. source: "./media/characters/hydra/normal.svg",
  30131. extra: 2833 / 2634,
  30132. bottom: 68 / 2901
  30133. }
  30134. },
  30135. smol: {
  30136. height: math.unit(0.705, "inches"),
  30137. name: "Smol",
  30138. image: {
  30139. source: "./media/characters/hydra/smol.svg",
  30140. extra: 2715 / 2540,
  30141. bottom: 0 / 2715
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Normal",
  30148. height: math.unit(4 + 6 / 12, "feet"),
  30149. default: true
  30150. }
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(0.6, "cm"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/daz/front.svg",
  30161. extra: 1682 / 1164,
  30162. bottom: 42 / 1724
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(0.6, "cm"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(6, "feet"),
  30179. weight: math.unit(235, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/theo-pangolin/front.svg",
  30183. extra: 1996 / 1969,
  30184. bottom: 115 / 2111
  30185. }
  30186. },
  30187. back: {
  30188. height: math.unit(6, "feet"),
  30189. weight: math.unit(235, "lb"),
  30190. name: "Back",
  30191. image: {
  30192. source: "./media/characters/theo-pangolin/back.svg",
  30193. extra: 1979 / 1979,
  30194. bottom: 40 / 2019
  30195. }
  30196. },
  30197. feral: {
  30198. height: math.unit(2, "feet"),
  30199. weight: math.unit(30, "lb"),
  30200. name: "Feral",
  30201. image: {
  30202. source: "./media/characters/theo-pangolin/feral.svg",
  30203. extra: 803 / 791,
  30204. bottom: 181 / 984
  30205. }
  30206. },
  30207. footFive: {
  30208. height: math.unit(1.43, "feet"),
  30209. name: "Foot (Five Toes)",
  30210. image: {
  30211. source: "./media/characters/theo-pangolin/foot-five.svg"
  30212. }
  30213. },
  30214. footFour: {
  30215. height: math.unit(1.43, "feet"),
  30216. name: "Foot (Four Toes)",
  30217. image: {
  30218. source: "./media/characters/theo-pangolin/foot-four.svg"
  30219. }
  30220. },
  30221. handFour: {
  30222. height: math.unit(0.81, "feet"),
  30223. name: "Hand (Four Fingers)",
  30224. image: {
  30225. source: "./media/characters/theo-pangolin/hand-four.svg"
  30226. }
  30227. },
  30228. handThree: {
  30229. height: math.unit(0.81, "feet"),
  30230. name: "Hand (Three Fingers)",
  30231. image: {
  30232. source: "./media/characters/theo-pangolin/hand-three.svg"
  30233. }
  30234. },
  30235. headFront: {
  30236. height: math.unit(1.37, "feet"),
  30237. name: "Head (Front)",
  30238. image: {
  30239. source: "./media/characters/theo-pangolin/head-front.svg"
  30240. }
  30241. },
  30242. headSide: {
  30243. height: math.unit(1.43, "feet"),
  30244. name: "Head (Side)",
  30245. image: {
  30246. source: "./media/characters/theo-pangolin/head-side.svg"
  30247. }
  30248. },
  30249. tongue: {
  30250. height: math.unit(2.29, "feet"),
  30251. name: "Tongue",
  30252. image: {
  30253. source: "./media/characters/theo-pangolin/tongue.svg"
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Normal",
  30260. height: math.unit(6, "feet")
  30261. },
  30262. {
  30263. name: "Macro",
  30264. height: math.unit(400, "feet"),
  30265. default: true
  30266. },
  30267. ]
  30268. ))
  30269. characterMakers.push(() => makeCharacter(
  30270. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30271. {
  30272. front: {
  30273. height: math.unit(6, "inches"),
  30274. weight: math.unit(0.036, "kg"),
  30275. name: "Front",
  30276. image: {
  30277. source: "./media/characters/renée/front.svg",
  30278. extra: 900 / 886,
  30279. bottom: 8 / 908
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Nano",
  30286. height: math.unit(1, "nm")
  30287. },
  30288. {
  30289. name: "Micro",
  30290. height: math.unit(1, "mm")
  30291. },
  30292. {
  30293. name: "Normal",
  30294. height: math.unit(6, "inches")
  30295. },
  30296. {
  30297. name: "Macro",
  30298. height: math.unit(2000, "feet"),
  30299. default: true
  30300. },
  30301. {
  30302. name: "Megamacro",
  30303. height: math.unit(2, "km")
  30304. },
  30305. {
  30306. name: "Gigamacro",
  30307. height: math.unit(2000, "km")
  30308. },
  30309. {
  30310. name: "Teramacro",
  30311. height: math.unit(250000, "km")
  30312. },
  30313. ]
  30314. ))
  30315. characterMakers.push(() => makeCharacter(
  30316. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30317. {
  30318. front: {
  30319. height: math.unit(4, "meters"),
  30320. weight: math.unit(150, "kg"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/caledvwlch/front.svg",
  30324. extra: 1760 / 1551,
  30325. bottom: 28 / 1788
  30326. }
  30327. },
  30328. side: {
  30329. height: math.unit(4, "meters"),
  30330. weight: math.unit(150, "kg"),
  30331. name: "Side",
  30332. image: {
  30333. source: "./media/characters/caledvwlch/side.svg",
  30334. extra: 1605 / 1536,
  30335. bottom: 31 / 1636
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(4, "meters"),
  30340. weight: math.unit(150, "kg"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/caledvwlch/back.svg",
  30344. extra: 1635 / 1565,
  30345. bottom: 27 / 1662
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "\"Incognito\"",
  30352. height: math.unit(4, "meters")
  30353. },
  30354. {
  30355. name: "Small rampage",
  30356. height: math.unit(600, "meters")
  30357. },
  30358. {
  30359. name: "Mega",
  30360. height: math.unit(30, "km")
  30361. },
  30362. {
  30363. name: "Home-size",
  30364. height: math.unit(50, "km"),
  30365. default: true
  30366. },
  30367. {
  30368. name: "Giga",
  30369. height: math.unit(300, "km")
  30370. },
  30371. {
  30372. name: "Lounging",
  30373. height: math.unit(11000, "km")
  30374. },
  30375. {
  30376. name: "Planet snacking",
  30377. height: math.unit(2000000, "km")
  30378. },
  30379. ]
  30380. ))
  30381. characterMakers.push(() => makeCharacter(
  30382. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30383. {
  30384. front: {
  30385. height: math.unit(6, "feet"),
  30386. weight: math.unit(215, "lb"),
  30387. name: "Front",
  30388. image: {
  30389. source: "./media/characters/sapphire-svell/front.svg",
  30390. extra: 495 / 455,
  30391. bottom: 20 / 515
  30392. }
  30393. },
  30394. back: {
  30395. height: math.unit(6, "feet"),
  30396. weight: math.unit(216, "lb"),
  30397. name: "Back",
  30398. image: {
  30399. source: "./media/characters/sapphire-svell/back.svg",
  30400. extra: 497 / 477,
  30401. bottom: 7 / 504
  30402. }
  30403. },
  30404. maw: {
  30405. height: math.unit(1.57, "feet"),
  30406. name: "Maw",
  30407. image: {
  30408. source: "./media/characters/sapphire-svell/maw.svg"
  30409. }
  30410. },
  30411. foot: {
  30412. height: math.unit(1.07, "feet"),
  30413. name: "Foot",
  30414. image: {
  30415. source: "./media/characters/sapphire-svell/foot.svg"
  30416. }
  30417. },
  30418. toering: {
  30419. height: math.unit(1.7, "inch"),
  30420. name: "Toering",
  30421. image: {
  30422. source: "./media/characters/sapphire-svell/toering.svg"
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(300, "feet"),
  30430. default: true
  30431. },
  30432. {
  30433. name: "Augmented",
  30434. height: math.unit(1250, "feet")
  30435. },
  30436. {
  30437. name: "Unleashed",
  30438. height: math.unit(3000, "feet")
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30444. {
  30445. side: {
  30446. height: math.unit(2 + 3 / 12, "feet"),
  30447. weight: math.unit(110, "lb"),
  30448. name: "Side",
  30449. image: {
  30450. source: "./media/characters/glitch-flux/side.svg",
  30451. extra: 997 / 805,
  30452. bottom: 20 / 1017
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(2 + 3 / 12, "feet"),
  30460. default: true
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30466. {
  30467. front: {
  30468. height: math.unit(4, "meters"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/mid/front.svg",
  30472. extra: 507 / 476,
  30473. bottom: 17 / 524
  30474. }
  30475. },
  30476. back: {
  30477. height: math.unit(4, "meters"),
  30478. name: "Back",
  30479. image: {
  30480. source: "./media/characters/mid/back.svg",
  30481. extra: 519 / 487,
  30482. bottom: 7 / 526
  30483. }
  30484. },
  30485. stuck: {
  30486. height: math.unit(2.2, "meters"),
  30487. name: "Stuck",
  30488. image: {
  30489. source: "./media/characters/mid/stuck.svg",
  30490. extra: 1951 / 1869,
  30491. bottom: 88 / 2039
  30492. }
  30493. }
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(4, "meters"),
  30499. default: true
  30500. },
  30501. {
  30502. name: "Big",
  30503. height: math.unit(10, "meters")
  30504. },
  30505. {
  30506. name: "Macro",
  30507. height: math.unit(800, "meters")
  30508. },
  30509. {
  30510. name: "Megamacro",
  30511. height: math.unit(100, "km")
  30512. },
  30513. {
  30514. name: "Overgrown",
  30515. height: math.unit(1, "parsec")
  30516. },
  30517. ]
  30518. ))
  30519. characterMakers.push(() => makeCharacter(
  30520. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30521. {
  30522. front: {
  30523. height: math.unit(2.5, "meters"),
  30524. weight: math.unit(225, "kg"),
  30525. name: "Front",
  30526. image: {
  30527. source: "./media/characters/iris/front.svg",
  30528. extra: 3348 / 3251,
  30529. bottom: 205 / 3553
  30530. }
  30531. },
  30532. maw: {
  30533. height: math.unit(0.56, "meter"),
  30534. name: "Maw",
  30535. image: {
  30536. source: "./media/characters/iris/maw.svg"
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Mewter cat",
  30543. height: math.unit(1.2, "meters")
  30544. },
  30545. {
  30546. name: "Minimacro",
  30547. height: math.unit(2.5, "meters"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "Macro",
  30552. height: math.unit(180, "meters")
  30553. },
  30554. {
  30555. name: "Megamacro",
  30556. height: math.unit(2746, "meters")
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(6, "feet"),
  30565. weight: math.unit(135, "lb"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/axel/front.svg",
  30569. extra: 908 / 908,
  30570. bottom: 58 / 966
  30571. }
  30572. },
  30573. side: {
  30574. height: math.unit(6, "feet"),
  30575. weight: math.unit(135, "lb"),
  30576. name: "Side",
  30577. image: {
  30578. source: "./media/characters/axel/side.svg",
  30579. extra: 958 / 958,
  30580. bottom: 11 / 969
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(6, "feet"),
  30585. weight: math.unit(135, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/axel/back.svg",
  30589. extra: 887 / 887,
  30590. bottom: 34 / 921
  30591. }
  30592. },
  30593. head: {
  30594. height: math.unit(1.07, "feet"),
  30595. name: "Head",
  30596. image: {
  30597. source: "./media/characters/axel/head.svg"
  30598. }
  30599. },
  30600. beak: {
  30601. height: math.unit(1.4, "feet"),
  30602. name: "Beak",
  30603. image: {
  30604. source: "./media/characters/axel/beak.svg"
  30605. }
  30606. },
  30607. beakSide: {
  30608. height: math.unit(1.4, "feet"),
  30609. name: "Beak Side",
  30610. image: {
  30611. source: "./media/characters/axel/beak-side.svg"
  30612. }
  30613. },
  30614. sheath: {
  30615. height: math.unit(0.5, "feet"),
  30616. name: "Sheath",
  30617. image: {
  30618. source: "./media/characters/axel/sheath.svg"
  30619. }
  30620. },
  30621. dick: {
  30622. height: math.unit(0.98, "feet"),
  30623. name: "Dick",
  30624. image: {
  30625. source: "./media/characters/axel/dick.svg"
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Macro",
  30632. height: math.unit(68, "meters"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(3.5, "meters"),
  30642. weight: math.unit(1200, "kg"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/joanna/front.svg",
  30646. extra: 1596 / 1488,
  30647. bottom: 29 / 1625
  30648. }
  30649. },
  30650. back: {
  30651. height: math.unit(3.5, "meters"),
  30652. weight: math.unit(1200, "kg"),
  30653. name: "Back",
  30654. image: {
  30655. source: "./media/characters/joanna/back.svg",
  30656. extra: 1594 / 1495,
  30657. bottom: 26 / 1620
  30658. }
  30659. },
  30660. frontShorts: {
  30661. height: math.unit(3.5, "meters"),
  30662. weight: math.unit(1200, "kg"),
  30663. name: "Front (Shorts)",
  30664. image: {
  30665. source: "./media/characters/joanna/front-shorts.svg",
  30666. extra: 1596 / 1488,
  30667. bottom: 29 / 1625
  30668. }
  30669. },
  30670. frontBiker: {
  30671. height: math.unit(3.5, "meters"),
  30672. weight: math.unit(1200, "kg"),
  30673. name: "Front (Biker)",
  30674. image: {
  30675. source: "./media/characters/joanna/front-biker.svg",
  30676. extra: 1596 / 1488,
  30677. bottom: 29 / 1625
  30678. }
  30679. },
  30680. backBiker: {
  30681. height: math.unit(3.5, "meters"),
  30682. weight: math.unit(1200, "kg"),
  30683. name: "Back (Biker)",
  30684. image: {
  30685. source: "./media/characters/joanna/back-biker.svg",
  30686. extra: 1594 / 1495,
  30687. bottom: 88 / 1682
  30688. }
  30689. },
  30690. bikeLeft: {
  30691. height: math.unit(2.4, "meters"),
  30692. weight: math.unit(1600, "kg"),
  30693. name: "Bike (Left)",
  30694. image: {
  30695. source: "./media/characters/joanna/bike-left.svg",
  30696. extra: 720 / 720,
  30697. bottom: 8 / 728
  30698. }
  30699. },
  30700. bikeRight: {
  30701. height: math.unit(2.4, "meters"),
  30702. weight: math.unit(1600, "kg"),
  30703. name: "Bike (Right)",
  30704. image: {
  30705. source: "./media/characters/joanna/bike-right.svg",
  30706. extra: 720 / 720,
  30707. bottom: 8 / 728
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Incognito",
  30714. height: math.unit(3.5, "meters")
  30715. },
  30716. {
  30717. name: "Casual Big",
  30718. height: math.unit(200, "meters")
  30719. },
  30720. {
  30721. name: "Macro",
  30722. height: math.unit(600, "meters")
  30723. },
  30724. {
  30725. name: "Original",
  30726. height: math.unit(20, "km"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Giga",
  30731. height: math.unit(400, "km")
  30732. },
  30733. {
  30734. name: "Lounging",
  30735. height: math.unit(1500, "km")
  30736. },
  30737. {
  30738. name: "Planetary",
  30739. height: math.unit(200000, "km")
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30745. {
  30746. front: {
  30747. height: math.unit(6, "feet"),
  30748. weight: math.unit(150, "lb"),
  30749. name: "Front",
  30750. image: {
  30751. source: "./media/characters/hugo-sigil/front.svg",
  30752. extra: 522 / 500,
  30753. bottom: 2 / 524
  30754. }
  30755. },
  30756. back: {
  30757. height: math.unit(6, "feet"),
  30758. weight: math.unit(150, "lb"),
  30759. name: "Back",
  30760. image: {
  30761. source: "./media/characters/hugo-sigil/back.svg",
  30762. extra: 519 / 495,
  30763. bottom: 5 / 524
  30764. }
  30765. },
  30766. maw: {
  30767. height: math.unit(1.4, "feet"),
  30768. weight: math.unit(150, "lb"),
  30769. name: "Maw",
  30770. image: {
  30771. source: "./media/characters/hugo-sigil/maw.svg"
  30772. }
  30773. },
  30774. feet: {
  30775. height: math.unit(1.56, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Feet",
  30778. image: {
  30779. source: "./media/characters/hugo-sigil/feet.svg",
  30780. extra: 177 / 177,
  30781. bottom: 12 / 189
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Normal",
  30788. height: math.unit(6, "feet")
  30789. },
  30790. {
  30791. name: "Macro",
  30792. height: math.unit(200, "feet"),
  30793. default: true
  30794. },
  30795. ]
  30796. ))
  30797. characterMakers.push(() => makeCharacter(
  30798. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30799. {
  30800. front: {
  30801. height: math.unit(6, "feet"),
  30802. weight: math.unit(150, "lb"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/peri/front.svg",
  30806. extra: 2354 / 2233,
  30807. bottom: 49 / 2403
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Really Small",
  30814. height: math.unit(1, "nm")
  30815. },
  30816. {
  30817. name: "Micro",
  30818. height: math.unit(4, "inches")
  30819. },
  30820. {
  30821. name: "Normal",
  30822. height: math.unit(7, "inches"),
  30823. default: true
  30824. },
  30825. {
  30826. name: "Macro",
  30827. height: math.unit(400, "feet")
  30828. },
  30829. {
  30830. name: "Megamacro",
  30831. height: math.unit(100, "miles")
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30837. {
  30838. frontSlim: {
  30839. height: math.unit(7, "feet"),
  30840. name: "Front (Slim)",
  30841. image: {
  30842. source: "./media/characters/issilora/front-slim.svg",
  30843. extra: 529 / 449,
  30844. bottom: 53 / 582
  30845. }
  30846. },
  30847. sideSlim: {
  30848. height: math.unit(7, "feet"),
  30849. name: "Side (Slim)",
  30850. image: {
  30851. source: "./media/characters/issilora/side-slim.svg",
  30852. extra: 570 / 480,
  30853. bottom: 30 / 600
  30854. }
  30855. },
  30856. backSlim: {
  30857. height: math.unit(7, "feet"),
  30858. name: "Back (Slim)",
  30859. image: {
  30860. source: "./media/characters/issilora/back-slim.svg",
  30861. extra: 537 / 455,
  30862. bottom: 46 / 583
  30863. }
  30864. },
  30865. frontBuff: {
  30866. height: math.unit(7, "feet"),
  30867. name: "Front (Buff)",
  30868. image: {
  30869. source: "./media/characters/issilora/front-buff.svg",
  30870. extra: 2310 / 2035,
  30871. bottom: 335 / 2645
  30872. }
  30873. },
  30874. head: {
  30875. height: math.unit(1.94, "feet"),
  30876. name: "Head",
  30877. image: {
  30878. source: "./media/characters/issilora/head.svg"
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Minimum",
  30885. height: math.unit(7, "feet")
  30886. },
  30887. {
  30888. name: "Comfortable",
  30889. height: math.unit(17, "feet")
  30890. },
  30891. {
  30892. name: "Fun Size",
  30893. height: math.unit(47, "feet")
  30894. },
  30895. {
  30896. name: "Natural Macro",
  30897. height: math.unit(137, "feet"),
  30898. default: true
  30899. },
  30900. {
  30901. name: "Maximum Kaiju",
  30902. height: math.unit(397, "feet")
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30908. {
  30909. front: {
  30910. height: math.unit(50 + 9/12, "feet"),
  30911. weight: math.unit(32.8, "tons"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/irb'iiritaahn/front.svg",
  30915. extra: 1878/1826,
  30916. bottom: 326/2204
  30917. }
  30918. },
  30919. back: {
  30920. height: math.unit(50 + 9/12, "feet"),
  30921. weight: math.unit(32.8, "tons"),
  30922. name: "Back",
  30923. image: {
  30924. source: "./media/characters/irb'iiritaahn/back.svg",
  30925. extra: 2052/2018,
  30926. bottom: 152/2204
  30927. }
  30928. },
  30929. head: {
  30930. height: math.unit(12.86, "feet"),
  30931. name: "Head",
  30932. image: {
  30933. source: "./media/characters/irb'iiritaahn/head.svg"
  30934. }
  30935. },
  30936. maw: {
  30937. height: math.unit(9.66, "feet"),
  30938. name: "Maw",
  30939. image: {
  30940. source: "./media/characters/irb'iiritaahn/maw.svg"
  30941. }
  30942. },
  30943. frontDick: {
  30944. height: math.unit(8.78461, "feet"),
  30945. name: "Front Dick",
  30946. image: {
  30947. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30948. }
  30949. },
  30950. rearDick: {
  30951. height: math.unit(8.78461, "feet"),
  30952. name: "Rear Dick",
  30953. image: {
  30954. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30955. }
  30956. },
  30957. rearDickUnfolded: {
  30958. height: math.unit(8.78, "feet"),
  30959. name: "Rear Dick (Unfolded)",
  30960. image: {
  30961. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30962. }
  30963. },
  30964. wings: {
  30965. height: math.unit(43, "feet"),
  30966. name: "Wings",
  30967. image: {
  30968. source: "./media/characters/irb'iiritaahn/wings.svg"
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Macro",
  30975. height: math.unit(50 + 9/12, "feet"),
  30976. default: true
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(205, "cm"),
  30985. weight: math.unit(102, "kg"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/irbisgreif/front.svg",
  30989. extra: 785/706,
  30990. bottom: 13/798
  30991. }
  30992. },
  30993. back: {
  30994. height: math.unit(205, "cm"),
  30995. weight: math.unit(102, "kg"),
  30996. name: "Back",
  30997. image: {
  30998. source: "./media/characters/irbisgreif/back.svg",
  30999. extra: 713/701,
  31000. bottom: 26/739
  31001. }
  31002. },
  31003. frontDressed: {
  31004. height: math.unit(216, "cm"),
  31005. weight: math.unit(102, "kg"),
  31006. name: "Front-dressed",
  31007. image: {
  31008. source: "./media/characters/irbisgreif/front-dressed.svg",
  31009. extra: 902/776,
  31010. bottom: 14/916
  31011. }
  31012. },
  31013. sideDressed: {
  31014. height: math.unit(195, "cm"),
  31015. weight: math.unit(102, "kg"),
  31016. name: "Side-dressed",
  31017. image: {
  31018. source: "./media/characters/irbisgreif/side-dressed.svg",
  31019. extra: 788/688,
  31020. bottom: 21/809
  31021. }
  31022. },
  31023. backDressed: {
  31024. height: math.unit(216, "cm"),
  31025. weight: math.unit(102, "kg"),
  31026. name: "Back-dressed",
  31027. image: {
  31028. source: "./media/characters/irbisgreif/back-dressed.svg",
  31029. extra: 901/783,
  31030. bottom: 10/911
  31031. }
  31032. },
  31033. dick: {
  31034. height: math.unit(0.49, "feet"),
  31035. name: "Dick",
  31036. image: {
  31037. source: "./media/characters/irbisgreif/dick.svg"
  31038. }
  31039. },
  31040. wingTop: {
  31041. height: math.unit(1.93 , "feet"),
  31042. name: "Wing-top",
  31043. image: {
  31044. source: "./media/characters/irbisgreif/wing-top.svg"
  31045. }
  31046. },
  31047. wingBottom: {
  31048. height: math.unit(1.93 , "feet"),
  31049. name: "Wing-bottom",
  31050. image: {
  31051. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(216, "cm"),
  31059. default: true
  31060. },
  31061. ]
  31062. ))
  31063. characterMakers.push(() => makeCharacter(
  31064. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31065. {
  31066. front: {
  31067. height: math.unit(6, "feet"),
  31068. weight: math.unit(150, "lb"),
  31069. name: "Front",
  31070. image: {
  31071. source: "./media/characters/pride/front.svg",
  31072. extra: 1299/1230,
  31073. bottom: 18/1317
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Normal",
  31080. height: math.unit(7, "feet")
  31081. },
  31082. {
  31083. name: "Mini-macro",
  31084. height: math.unit(11, "feet")
  31085. },
  31086. {
  31087. name: "Macro",
  31088. height: math.unit(15, "meters"),
  31089. default: true
  31090. },
  31091. {
  31092. name: "Macro+",
  31093. height: math.unit(40, "meters")
  31094. },
  31095. ]
  31096. ))
  31097. characterMakers.push(() => makeCharacter(
  31098. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31099. {
  31100. front: {
  31101. height: math.unit(4 + 2 / 12, "feet"),
  31102. weight: math.unit(95, "lb"),
  31103. name: "Front",
  31104. image: {
  31105. source: "./media/characters/vaelophis-nyx/front.svg",
  31106. extra: 2532/2330,
  31107. bottom: 0/2532
  31108. }
  31109. },
  31110. back: {
  31111. height: math.unit(4 + 2 / 12, "feet"),
  31112. weight: math.unit(95, "lb"),
  31113. name: "Back",
  31114. image: {
  31115. source: "./media/characters/vaelophis-nyx/back.svg",
  31116. extra: 2484/2361,
  31117. bottom: 0/2484
  31118. }
  31119. },
  31120. feralSide: {
  31121. height: math.unit(2 + 1/12, "feet"),
  31122. weight: math.unit(20, "lb"),
  31123. name: "Feral (Side)",
  31124. image: {
  31125. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31126. extra: 1721/1581,
  31127. bottom: 70/1791
  31128. }
  31129. },
  31130. feralLazing: {
  31131. height: math.unit(1.08, "feet"),
  31132. weight: math.unit(20, "lb"),
  31133. name: "Feral (Lazing)",
  31134. image: {
  31135. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31136. extra: 822/822,
  31137. bottom: 248/1070
  31138. }
  31139. },
  31140. ear: {
  31141. height: math.unit(0.416, "feet"),
  31142. name: "Ear",
  31143. image: {
  31144. source: "./media/characters/vaelophis-nyx/ear.svg"
  31145. }
  31146. },
  31147. eye: {
  31148. height: math.unit(0.0748, "feet"),
  31149. name: "Eye",
  31150. image: {
  31151. source: "./media/characters/vaelophis-nyx/eye.svg"
  31152. }
  31153. },
  31154. mouth: {
  31155. height: math.unit(0.378, "feet"),
  31156. name: "Mouth",
  31157. image: {
  31158. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31159. }
  31160. },
  31161. spade: {
  31162. height: math.unit(0.55, "feet"),
  31163. name: "Spade",
  31164. image: {
  31165. source: "./media/characters/vaelophis-nyx/spade.svg"
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Normal",
  31172. height: math.unit(4 + 2/12, "feet"),
  31173. default: true
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31179. {
  31180. front: {
  31181. height: math.unit(7, "feet"),
  31182. weight: math.unit(231, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/flux/front.svg",
  31186. extra: 919/871,
  31187. bottom: 0/919
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(7, "feet"),
  31192. weight: math.unit(231, "lb"),
  31193. name: "Back",
  31194. image: {
  31195. source: "./media/characters/flux/back.svg",
  31196. extra: 1040/992,
  31197. bottom: 0/1040
  31198. }
  31199. },
  31200. frontDressed: {
  31201. height: math.unit(7, "feet"),
  31202. weight: math.unit(231, "lb"),
  31203. name: "Front (Dressed)",
  31204. image: {
  31205. source: "./media/characters/flux/front-dressed.svg",
  31206. extra: 919/871,
  31207. bottom: 0/919
  31208. }
  31209. },
  31210. feralSide: {
  31211. height: math.unit(5, "feet"),
  31212. weight: math.unit(150, "lb"),
  31213. name: "Feral (Side)",
  31214. image: {
  31215. source: "./media/characters/flux/feral-side.svg",
  31216. extra: 598/528,
  31217. bottom: 28/626
  31218. }
  31219. },
  31220. head: {
  31221. height: math.unit(1.585, "feet"),
  31222. name: "Head",
  31223. image: {
  31224. source: "./media/characters/flux/head.svg"
  31225. }
  31226. },
  31227. headSide: {
  31228. height: math.unit(1.74, "feet"),
  31229. name: "Head (Side)",
  31230. image: {
  31231. source: "./media/characters/flux/head-side.svg"
  31232. }
  31233. },
  31234. headSideFire: {
  31235. height: math.unit(1.76, "feet"),
  31236. name: "Head (Side, Fire)",
  31237. image: {
  31238. source: "./media/characters/flux/head-side-fire.svg"
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(7, "feet"),
  31246. default: true
  31247. },
  31248. ]
  31249. ))
  31250. characterMakers.push(() => makeCharacter(
  31251. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31252. {
  31253. front: {
  31254. height: math.unit(9, "feet"),
  31255. weight: math.unit(1012, "lb"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/ulfra-lupae/front.svg",
  31259. extra: 1083/1011,
  31260. bottom: 67/1150
  31261. }
  31262. },
  31263. },
  31264. [
  31265. {
  31266. name: "Micro",
  31267. height: math.unit(6, "inches")
  31268. },
  31269. {
  31270. name: "Socializing",
  31271. height: math.unit(6 + 5/12, "feet")
  31272. },
  31273. {
  31274. name: "Normal",
  31275. height: math.unit(9, "feet"),
  31276. default: true
  31277. },
  31278. {
  31279. name: "Macro",
  31280. height: math.unit(150, "feet")
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(5 + 2/12, "feet"),
  31289. weight: math.unit(120, "lb"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/timber/front.svg",
  31293. extra: 2814/2705,
  31294. bottom: 181/2995
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(5 + 2/12, "feet"),
  31302. default: true
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(5 + 7/12, "feet"),
  31311. weight: math.unit(220, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/nicki/front.svg",
  31315. extra: 453/419,
  31316. bottom: 7/460
  31317. }
  31318. },
  31319. frontAlt: {
  31320. height: math.unit(5 + 7/12, "feet"),
  31321. weight: math.unit(220, "lb"),
  31322. name: "Front-alt",
  31323. image: {
  31324. source: "./media/characters/nicki/front-alt.svg",
  31325. extra: 435/411,
  31326. bottom: 12/447
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(5 + 7/12, "feet"),
  31331. weight: math.unit(220, "lb"),
  31332. name: "Back",
  31333. image: {
  31334. source: "./media/characters/nicki/back.svg",
  31335. extra: 440/413,
  31336. bottom: 19/459
  31337. }
  31338. },
  31339. taur: {
  31340. height: math.unit(7 + 6/12, "feet"),
  31341. weight: math.unit(700, "lb"),
  31342. name: "Taur",
  31343. image: {
  31344. source: "./media/characters/nicki/taur.svg",
  31345. extra: 975/773,
  31346. bottom: 0/975
  31347. }
  31348. },
  31349. frontNsfw: {
  31350. height: math.unit(5 + 7/12, "feet"),
  31351. weight: math.unit(220, "lb"),
  31352. name: "Front (NSFW)",
  31353. image: {
  31354. source: "./media/characters/nicki/front-nsfw.svg",
  31355. extra: 453/419,
  31356. bottom: 7/460
  31357. }
  31358. },
  31359. frontNsfwAlt: {
  31360. height: math.unit(5 + 7/12, "feet"),
  31361. weight: math.unit(220, "lb"),
  31362. name: "Front (Alt, NSFW)",
  31363. image: {
  31364. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31365. extra: 435/411,
  31366. bottom: 12/447
  31367. }
  31368. },
  31369. backNsfw: {
  31370. height: math.unit(5 + 7/12, "feet"),
  31371. weight: math.unit(220, "lb"),
  31372. name: "Back (NSFW)",
  31373. image: {
  31374. source: "./media/characters/nicki/back-nsfw.svg",
  31375. extra: 440/413,
  31376. bottom: 19/459
  31377. }
  31378. },
  31379. head: {
  31380. height: math.unit(2.1, "feet"),
  31381. name: "Head",
  31382. image: {
  31383. source: "./media/characters/nicki/head.svg"
  31384. }
  31385. },
  31386. paw: {
  31387. height: math.unit(1.88, "feet"),
  31388. name: "Paw",
  31389. image: {
  31390. source: "./media/characters/nicki/paw.svg"
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(5 + 7/12, "feet"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(7 + 10/12, "feet"),
  31407. weight: math.unit(3.5, "tons"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/lee/front.svg",
  31411. extra: 1773/1615,
  31412. bottom: 86/1859
  31413. }
  31414. },
  31415. hand: {
  31416. height: math.unit(1.78, "feet"),
  31417. name: "Hand",
  31418. image: {
  31419. source: "./media/characters/lee/hand.svg"
  31420. }
  31421. },
  31422. maw: {
  31423. height: math.unit(1.18, "feet"),
  31424. name: "Maw",
  31425. image: {
  31426. source: "./media/characters/lee/maw.svg"
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Normal",
  31433. height: math.unit(7 + 10/12, "feet"),
  31434. default: true
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31440. {
  31441. front: {
  31442. height: math.unit(9, "feet"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/guti/front.svg",
  31446. extra: 4551/4355,
  31447. bottom: 123/4674
  31448. }
  31449. },
  31450. tongue: {
  31451. height: math.unit(1, "feet"),
  31452. name: "Tongue",
  31453. image: {
  31454. source: "./media/characters/guti/tongue.svg"
  31455. }
  31456. },
  31457. paw: {
  31458. height: math.unit(1.18, "feet"),
  31459. name: "Paw",
  31460. image: {
  31461. source: "./media/characters/guti/paw.svg"
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(9, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31475. {
  31476. side: {
  31477. height: math.unit(5, "meters"),
  31478. name: "Side",
  31479. image: {
  31480. source: "./media/characters/vesper/side.svg",
  31481. extra: 1605/1518,
  31482. bottom: 0/1605
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Small",
  31489. height: math.unit(5, "meters")
  31490. },
  31491. {
  31492. name: "Sage",
  31493. height: math.unit(100, "meters"),
  31494. default: true
  31495. },
  31496. {
  31497. name: "Fun Size",
  31498. height: math.unit(600, "meters")
  31499. },
  31500. {
  31501. name: "Goddess",
  31502. height: math.unit(20000, "km")
  31503. },
  31504. {
  31505. name: "Maximum",
  31506. height: math.unit(5, "galaxies")
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(6 + 3/12, "feet"),
  31515. weight: math.unit(190, "lb"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/gawain/front.svg",
  31519. extra: 2222/2139,
  31520. bottom: 90/2312
  31521. }
  31522. },
  31523. back: {
  31524. height: math.unit(6 + 3/12, "feet"),
  31525. weight: math.unit(190, "lb"),
  31526. name: "Back",
  31527. image: {
  31528. source: "./media/characters/gawain/back.svg",
  31529. extra: 2199/2111,
  31530. bottom: 73/2272
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(6 + 3/12, "feet"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31544. {
  31545. side: {
  31546. height: math.unit(3.5, "meters"),
  31547. weight: math.unit(16000, "lb"),
  31548. name: "Side",
  31549. image: {
  31550. source: "./media/characters/dascalti/side.svg",
  31551. extra: 392/273,
  31552. bottom: 47/439
  31553. }
  31554. },
  31555. breath: {
  31556. height: math.unit(7.4, "feet"),
  31557. name: "Breath",
  31558. image: {
  31559. source: "./media/characters/dascalti/breath.svg"
  31560. }
  31561. },
  31562. fed: {
  31563. height: math.unit(3.6, "meters"),
  31564. weight: math.unit(16000, "lb"),
  31565. name: "Fed",
  31566. image: {
  31567. source: "./media/characters/dascalti/fed.svg",
  31568. extra: 1419/820,
  31569. bottom: 95/1514
  31570. }
  31571. },
  31572. },
  31573. [
  31574. {
  31575. name: "Normal",
  31576. height: math.unit(3.5, "meters"),
  31577. default: true
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(3 + 5/12, "feet"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/mauve/front.svg",
  31589. extra: 1126/1033,
  31590. bottom: 65/1191
  31591. }
  31592. },
  31593. side: {
  31594. height: math.unit(3 + 5/12, "feet"),
  31595. name: "Side",
  31596. image: {
  31597. source: "./media/characters/mauve/side.svg",
  31598. extra: 1089/1001,
  31599. bottom: 29/1118
  31600. }
  31601. },
  31602. back: {
  31603. height: math.unit(3 + 5/12, "feet"),
  31604. name: "Back",
  31605. image: {
  31606. source: "./media/characters/mauve/back.svg",
  31607. extra: 1173/1053,
  31608. bottom: 109/1282
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(3 + 5/12, "feet"),
  31616. default: true
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31622. {
  31623. front: {
  31624. height: math.unit(6 + 3/12, "feet"),
  31625. weight: math.unit(430, "lb"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/carlos/front.svg",
  31629. extra: 1964/1913,
  31630. bottom: 70/2034
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(6 + 3/12, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31644. {
  31645. back: {
  31646. height: math.unit(5 + 10/12, "feet"),
  31647. weight: math.unit(200, "lb"),
  31648. name: "Back",
  31649. image: {
  31650. source: "./media/characters/jax/back.svg",
  31651. extra: 764/739,
  31652. bottom: 25/789
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(5 + 10/12, "feet"),
  31660. default: true
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(8, "feet"),
  31669. weight: math.unit(250, "lb"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/eikthynir/front.svg",
  31673. extra: 1332/1166,
  31674. bottom: 82/1414
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(8, "feet"),
  31679. weight: math.unit(250, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/eikthynir/back.svg",
  31683. extra: 1342/1190,
  31684. bottom: 19/1361
  31685. }
  31686. },
  31687. dick: {
  31688. height: math.unit(2.35, "feet"),
  31689. name: "Dick",
  31690. image: {
  31691. source: "./media/characters/eikthynir/dick.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(8, "feet"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(99, "meters"),
  31708. weight: math.unit(13000, "tons"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/zlmos/front.svg",
  31712. extra: 2202/1992,
  31713. bottom: 315/2517
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Macro",
  31720. height: math.unit(99, "meters"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(6 + 5/12, "feet"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/purri/front.svg",
  31733. extra: 1698/1610,
  31734. bottom: 32/1730
  31735. }
  31736. },
  31737. frontAlt: {
  31738. height: math.unit(6 + 5/12, "feet"),
  31739. name: "Front (Alt)",
  31740. image: {
  31741. source: "./media/characters/purri/front-alt.svg",
  31742. extra: 450/420,
  31743. bottom: 26/476
  31744. }
  31745. },
  31746. boots: {
  31747. height: math.unit(5.5, "feet"),
  31748. name: "Boots",
  31749. image: {
  31750. source: "./media/characters/purri/boots.svg",
  31751. extra: 905/853,
  31752. bottom: 18/923
  31753. }
  31754. },
  31755. lying: {
  31756. height: math.unit(2, "feet"),
  31757. name: "Lying",
  31758. image: {
  31759. source: "./media/characters/purri/lying.svg",
  31760. extra: 940/843,
  31761. bottom: 146/1086
  31762. }
  31763. },
  31764. devious: {
  31765. height: math.unit(1.77, "feet"),
  31766. name: "Devious",
  31767. image: {
  31768. source: "./media/characters/purri/devious.svg",
  31769. extra: 1440/1155,
  31770. bottom: 147/1587
  31771. }
  31772. },
  31773. bean: {
  31774. height: math.unit(1.94, "feet"),
  31775. name: "Bean",
  31776. image: {
  31777. source: "./media/characters/purri/bean.svg"
  31778. }
  31779. },
  31780. },
  31781. [
  31782. {
  31783. name: "Micro",
  31784. height: math.unit(1, "mm")
  31785. },
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(6 + 5/12, "feet"),
  31789. default: true
  31790. },
  31791. {
  31792. name: "Macro :3c",
  31793. height: math.unit(2, "miles")
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31799. {
  31800. front: {
  31801. height: math.unit(6 + 2/12, "feet"),
  31802. weight: math.unit(250, "lb"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/moonlight/front.svg",
  31806. extra: 1044/908,
  31807. bottom: 56/1100
  31808. }
  31809. },
  31810. feral: {
  31811. height: math.unit(3 + 1/12, "feet"),
  31812. weight: math.unit(50, "kg"),
  31813. name: "Feral",
  31814. image: {
  31815. source: "./media/characters/moonlight/feral.svg",
  31816. extra: 3705/2791,
  31817. bottom: 145/3850
  31818. }
  31819. },
  31820. paw: {
  31821. height: math.unit(1, "feet"),
  31822. name: "Paw",
  31823. image: {
  31824. source: "./media/characters/moonlight/paw.svg"
  31825. }
  31826. },
  31827. paws: {
  31828. height: math.unit(0.98, "feet"),
  31829. name: "Paws",
  31830. image: {
  31831. source: "./media/characters/moonlight/paws.svg",
  31832. extra: 939/939,
  31833. bottom: 50/989
  31834. }
  31835. },
  31836. mouth: {
  31837. height: math.unit(0.48, "feet"),
  31838. name: "Mouth",
  31839. image: {
  31840. source: "./media/characters/moonlight/mouth.svg"
  31841. }
  31842. },
  31843. dick: {
  31844. height: math.unit(1.46, "feet"),
  31845. name: "Dick",
  31846. image: {
  31847. source: "./media/characters/moonlight/dick.svg"
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Normal",
  31854. height: math.unit(6 + 2/12, "feet"),
  31855. default: true
  31856. },
  31857. {
  31858. name: "Macro",
  31859. height: math.unit(300, "feet")
  31860. },
  31861. {
  31862. name: "Macro+",
  31863. height: math.unit(1, "mile")
  31864. },
  31865. {
  31866. name: "Mt. Moon",
  31867. height: math.unit(5, "miles")
  31868. },
  31869. {
  31870. name: "Megamacro",
  31871. height: math.unit(15, "miles")
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31877. {
  31878. back: {
  31879. height: math.unit(6, "feet"),
  31880. weight: math.unit(150, "lb"),
  31881. name: "Back",
  31882. image: {
  31883. source: "./media/characters/sylen/back.svg",
  31884. extra: 1335/1273,
  31885. bottom: 107/1442
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(5 + 5/12, "feet")
  31893. },
  31894. {
  31895. name: "Megamacro",
  31896. height: math.unit(3, "miles"),
  31897. default: true
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(190, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/huttser/front.svg",
  31910. extra: 1152/1058,
  31911. bottom: 23/1175
  31912. }
  31913. },
  31914. side: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(190, "lb"),
  31917. name: "Side",
  31918. image: {
  31919. source: "./media/characters/huttser/side.svg",
  31920. extra: 1174/1065,
  31921. bottom: 18/1192
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(190, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/huttser/back.svg",
  31930. extra: 1158/1056,
  31931. bottom: 12/1170
  31932. }
  31933. },
  31934. },
  31935. [
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31940. {
  31941. side: {
  31942. height: math.unit(12 + 9/12, "feet"),
  31943. weight: math.unit(15000, "lb"),
  31944. name: "Side",
  31945. image: {
  31946. source: "./media/characters/faan/side.svg",
  31947. extra: 2747/2697,
  31948. bottom: 0/2747
  31949. }
  31950. },
  31951. front: {
  31952. height: math.unit(12 + 9/12, "feet"),
  31953. weight: math.unit(15000, "lb"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/faan/front.svg",
  31957. extra: 607/571,
  31958. bottom: 24/631
  31959. }
  31960. },
  31961. head: {
  31962. height: math.unit(2.85, "feet"),
  31963. name: "Head",
  31964. image: {
  31965. source: "./media/characters/faan/head.svg"
  31966. }
  31967. },
  31968. headAlt: {
  31969. height: math.unit(3.13, "feet"),
  31970. name: "Head-alt",
  31971. image: {
  31972. source: "./media/characters/faan/head-alt.svg"
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Normal",
  31979. height: math.unit(12 + 9/12, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(6, "feet"),
  31989. weight: math.unit(300, "lb"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/tanio/front.svg",
  31993. extra: 711/673,
  31994. bottom: 25/736
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Normal",
  32001. height: math.unit(6, "feet"),
  32002. default: true
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(3, "inches"),
  32011. name: "Front",
  32012. image: {
  32013. source: "./media/characters/noboru/front.svg",
  32014. extra: 1039/932,
  32015. bottom: 18/1057
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Micro",
  32022. height: math.unit(3, "inches"),
  32023. default: true
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(1.85, "meters"),
  32032. weight: math.unit(80, "kg"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/daniel-barrett/front.svg",
  32036. extra: 355/337,
  32037. bottom: 9/364
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Pico",
  32044. height: math.unit(0.0433, "mm")
  32045. },
  32046. {
  32047. name: "Nano",
  32048. height: math.unit(1.5, "mm")
  32049. },
  32050. {
  32051. name: "Micro",
  32052. height: math.unit(5.3, "cm"),
  32053. default: true
  32054. },
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(1.85, "meters")
  32058. },
  32059. {
  32060. name: "Macro",
  32061. height: math.unit(64.7, "meters")
  32062. },
  32063. {
  32064. name: "Megamacro",
  32065. height: math.unit(2.26, "km")
  32066. },
  32067. {
  32068. name: "Gigamacro",
  32069. height: math.unit(79, "km")
  32070. },
  32071. {
  32072. name: "Teramacro",
  32073. height: math.unit(2765, "km")
  32074. },
  32075. {
  32076. name: "Petamacro",
  32077. height: math.unit(96678, "km")
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32083. {
  32084. front: {
  32085. height: math.unit(30, "meters"),
  32086. weight: math.unit(400, "tons"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/zeel/front.svg",
  32090. extra: 2599/2599,
  32091. bottom: 226/2825
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Macro",
  32098. height: math.unit(30, "meters"),
  32099. default: true
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32105. {
  32106. front: {
  32107. height: math.unit(6 + 7/12, "feet"),
  32108. weight: math.unit(210, "lb"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/tarn/front.svg",
  32112. extra: 3517/3220,
  32113. bottom: 91/3608
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(6 + 7/12, "feet"),
  32118. weight: math.unit(210, "lb"),
  32119. name: "Back",
  32120. image: {
  32121. source: "./media/characters/tarn/back.svg",
  32122. extra: 3566/3241,
  32123. bottom: 34/3600
  32124. }
  32125. },
  32126. dick: {
  32127. height: math.unit(1.65, "feet"),
  32128. name: "Dick",
  32129. image: {
  32130. source: "./media/characters/tarn/dick.svg"
  32131. }
  32132. },
  32133. paw: {
  32134. height: math.unit(1.80, "feet"),
  32135. name: "Paw",
  32136. image: {
  32137. source: "./media/characters/tarn/paw.svg"
  32138. }
  32139. },
  32140. tongue: {
  32141. height: math.unit(0.97, "feet"),
  32142. name: "Tongue",
  32143. image: {
  32144. source: "./media/characters/tarn/tongue.svg"
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Micro",
  32151. height: math.unit(4, "inches")
  32152. },
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(6 + 7/12, "feet"),
  32156. default: true
  32157. },
  32158. {
  32159. name: "Macro",
  32160. height: math.unit(300, "feet")
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32166. {
  32167. front: {
  32168. height: math.unit(5 + 7/12, "feet"),
  32169. weight: math.unit(80, "kg"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32173. extra: 3023/2865,
  32174. bottom: 33/3056
  32175. }
  32176. },
  32177. back: {
  32178. height: math.unit(5 + 7/12, "feet"),
  32179. weight: math.unit(80, "kg"),
  32180. name: "Back",
  32181. image: {
  32182. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32183. extra: 3020/2886,
  32184. bottom: 30/3050
  32185. }
  32186. },
  32187. dick: {
  32188. height: math.unit(0.98, "feet"),
  32189. name: "Dick",
  32190. image: {
  32191. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32192. }
  32193. },
  32194. anatomy: {
  32195. height: math.unit(2.86, "feet"),
  32196. name: "Anatomy",
  32197. image: {
  32198. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Really Small",
  32205. height: math.unit(2, "inches")
  32206. },
  32207. {
  32208. name: "Micro",
  32209. height: math.unit(5.583, "inches")
  32210. },
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(5 + 7/12, "feet"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Macro",
  32218. height: math.unit(67, "feet")
  32219. },
  32220. {
  32221. name: "Megamacro",
  32222. height: math.unit(134, "feet")
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32228. {
  32229. front: {
  32230. height: math.unit(9, "feet"),
  32231. weight: math.unit(120, "lb"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/sally/front.svg",
  32235. extra: 1506/1349,
  32236. bottom: 66/1572
  32237. }
  32238. },
  32239. },
  32240. [
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(9, "feet"),
  32244. default: true
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(8, "feet"),
  32253. weight: math.unit(900, "lb"),
  32254. name: "Front",
  32255. image: {
  32256. source: "./media/characters/owen/front.svg",
  32257. extra: 1761/1657,
  32258. bottom: 74/1835
  32259. }
  32260. },
  32261. side: {
  32262. height: math.unit(8, "feet"),
  32263. weight: math.unit(900, "lb"),
  32264. name: "Side",
  32265. image: {
  32266. source: "./media/characters/owen/side.svg",
  32267. extra: 1797/1734,
  32268. bottom: 30/1827
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(8, "feet"),
  32273. weight: math.unit(900, "lb"),
  32274. name: "Back",
  32275. image: {
  32276. source: "./media/characters/owen/back.svg",
  32277. extra: 1796/1706,
  32278. bottom: 59/1855
  32279. }
  32280. },
  32281. maw: {
  32282. height: math.unit(1.76, "feet"),
  32283. name: "Maw",
  32284. image: {
  32285. source: "./media/characters/owen/maw.svg"
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(8, "feet"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32299. {
  32300. front: {
  32301. height: math.unit(4, "feet"),
  32302. weight: math.unit(400, "lb"),
  32303. name: "Front",
  32304. image: {
  32305. source: "./media/characters/ryth/front.svg",
  32306. extra: 1920/1748,
  32307. bottom: 42/1962
  32308. }
  32309. },
  32310. back: {
  32311. height: math.unit(4, "feet"),
  32312. weight: math.unit(400, "lb"),
  32313. name: "Back",
  32314. image: {
  32315. source: "./media/characters/ryth/back.svg",
  32316. extra: 1897/1690,
  32317. bottom: 89/1986
  32318. }
  32319. },
  32320. mouth: {
  32321. height: math.unit(1.39, "feet"),
  32322. name: "Mouth",
  32323. image: {
  32324. source: "./media/characters/ryth/mouth.svg"
  32325. }
  32326. },
  32327. tailmaw: {
  32328. height: math.unit(1.23, "feet"),
  32329. name: "Tailmaw",
  32330. image: {
  32331. source: "./media/characters/ryth/tailmaw.svg"
  32332. }
  32333. },
  32334. goia: {
  32335. height: math.unit(4, "meters"),
  32336. weight: math.unit(10800, "lb"),
  32337. name: "Goia",
  32338. image: {
  32339. source: "./media/characters/ryth/goia.svg",
  32340. extra: 745/640,
  32341. bottom: 107/852
  32342. }
  32343. },
  32344. goiaFront: {
  32345. height: math.unit(4, "meters"),
  32346. weight: math.unit(10800, "lb"),
  32347. name: "Goia (Front)",
  32348. image: {
  32349. source: "./media/characters/ryth/goia-front.svg",
  32350. extra: 750/586,
  32351. bottom: 114/864
  32352. }
  32353. },
  32354. goiaMaw: {
  32355. height: math.unit(5.55, "feet"),
  32356. name: "Goia Maw",
  32357. image: {
  32358. source: "./media/characters/ryth/goia-maw.svg"
  32359. }
  32360. },
  32361. goiaForepaw: {
  32362. height: math.unit(3.5, "feet"),
  32363. name: "Goia Forepaw",
  32364. image: {
  32365. source: "./media/characters/ryth/goia-forepaw.svg"
  32366. }
  32367. },
  32368. goiaHindpaw: {
  32369. height: math.unit(5.55, "feet"),
  32370. name: "Goia Hindpaw",
  32371. image: {
  32372. source: "./media/characters/ryth/goia-hindpaw.svg"
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(4, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(7, "feet"),
  32389. weight: math.unit(180, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/necrolance/front.svg",
  32393. extra: 1062/947,
  32394. bottom: 41/1103
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(7, "feet"),
  32399. weight: math.unit(180, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/necrolance/back.svg",
  32403. extra: 1045/984,
  32404. bottom: 14/1059
  32405. }
  32406. },
  32407. wing: {
  32408. height: math.unit(2.67, "feet"),
  32409. name: "Wing",
  32410. image: {
  32411. source: "./media/characters/necrolance/wing.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Normal",
  32418. height: math.unit(7, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32425. {
  32426. front: {
  32427. height: math.unit(76, "meters"),
  32428. weight: math.unit(30000, "tons"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/tyler/front.svg",
  32432. extra: 1640/1640,
  32433. bottom: 114/1754
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Macro",
  32440. height: math.unit(76, "meters"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(4 + 11/12, "feet"),
  32450. weight: math.unit(132, "lb"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/icey/front.svg",
  32454. extra: 2750/2550,
  32455. bottom: 33/2783
  32456. }
  32457. },
  32458. back: {
  32459. height: math.unit(4 + 11/12, "feet"),
  32460. weight: math.unit(132, "lb"),
  32461. name: "Back",
  32462. image: {
  32463. source: "./media/characters/icey/back.svg",
  32464. extra: 2624/2481,
  32465. bottom: 35/2659
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(4 + 11/12, "feet"),
  32473. default: true
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(100, "feet"),
  32482. weight: math.unit(0, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/smile/front.svg",
  32486. extra: 2983/2912,
  32487. bottom: 162/3145
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(100, "feet"),
  32492. weight: math.unit(0, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/smile/back.svg",
  32496. extra: 3143/3031,
  32497. bottom: 91/3234
  32498. }
  32499. },
  32500. head: {
  32501. height: math.unit(26.3, "feet"),
  32502. weight: math.unit(0, "lb"),
  32503. name: "Head",
  32504. image: {
  32505. source: "./media/characters/smile/head.svg"
  32506. }
  32507. },
  32508. collar: {
  32509. height: math.unit(5.3, "feet"),
  32510. weight: math.unit(0, "lb"),
  32511. name: "Collar",
  32512. image: {
  32513. source: "./media/characters/smile/collar.svg"
  32514. }
  32515. },
  32516. },
  32517. [
  32518. {
  32519. name: "Macro",
  32520. height: math.unit(100, "feet"),
  32521. default: true
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32527. {
  32528. dragon: {
  32529. height: math.unit(26, "feet"),
  32530. weight: math.unit(36, "tons"),
  32531. name: "Dragon",
  32532. image: {
  32533. source: "./media/characters/arimphae/dragon.svg",
  32534. extra: 1574/983,
  32535. bottom: 357/1931
  32536. }
  32537. },
  32538. drake: {
  32539. height: math.unit(9, "feet"),
  32540. weight: math.unit(1.5, "tons"),
  32541. name: "Drake",
  32542. image: {
  32543. source: "./media/characters/arimphae/drake.svg",
  32544. extra: 1120/925,
  32545. bottom: 435/1555
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Small",
  32552. height: math.unit(26*5/9, "feet")
  32553. },
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(26, "feet"),
  32557. default: true
  32558. },
  32559. ]
  32560. ))
  32561. characterMakers.push(() => makeCharacter(
  32562. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32563. {
  32564. front: {
  32565. height: math.unit(8 + 9/12, "feet"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/xander/front.svg",
  32569. extra: 1237/974,
  32570. bottom: 94/1331
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(8 + 9/12, "feet"),
  32578. default: true
  32579. },
  32580. {
  32581. name: "Gaze Grabber",
  32582. height: math.unit(13 + 8/12, "feet")
  32583. },
  32584. {
  32585. name: "Jaw Dropper",
  32586. height: math.unit(27, "feet")
  32587. },
  32588. {
  32589. name: "Show Stopper",
  32590. height: math.unit(136, "feet")
  32591. },
  32592. {
  32593. name: "Superstar",
  32594. height: math.unit(1.9e6, "miles")
  32595. },
  32596. ]
  32597. ))
  32598. characterMakers.push(() => makeCharacter(
  32599. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32600. {
  32601. side: {
  32602. height: math.unit(2100, "feet"),
  32603. name: "Side",
  32604. image: {
  32605. source: "./media/characters/osiris/side.svg",
  32606. extra: 1105/939,
  32607. bottom: 167/1272
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "Macro",
  32614. height: math.unit(2100, "feet"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32621. {
  32622. front: {
  32623. height: math.unit(6 + 8/12, "feet"),
  32624. weight: math.unit(225, "lb"),
  32625. name: "Front",
  32626. image: {
  32627. source: "./media/characters/rhys-londe/front.svg",
  32628. extra: 2258/2141,
  32629. bottom: 188/2446
  32630. }
  32631. },
  32632. back: {
  32633. height: math.unit(6 + 8/12, "feet"),
  32634. weight: math.unit(225, "lb"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/rhys-londe/back.svg",
  32638. extra: 2237/2137,
  32639. bottom: 63/2300
  32640. }
  32641. },
  32642. frontNsfw: {
  32643. height: math.unit(6 + 8/12, "feet"),
  32644. weight: math.unit(225, "lb"),
  32645. name: "Front (NSFW)",
  32646. image: {
  32647. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32648. extra: 2258/2141,
  32649. bottom: 188/2446
  32650. }
  32651. },
  32652. backNsfw: {
  32653. height: math.unit(6 + 8/12, "feet"),
  32654. weight: math.unit(225, "lb"),
  32655. name: "Back (NSFW)",
  32656. image: {
  32657. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32658. extra: 2237/2137,
  32659. bottom: 63/2300
  32660. }
  32661. },
  32662. dick: {
  32663. height: math.unit(30, "inches"),
  32664. name: "Dick",
  32665. image: {
  32666. source: "./media/characters/rhys-londe/dick.svg"
  32667. }
  32668. },
  32669. maw: {
  32670. height: math.unit(1.6, "feet"),
  32671. name: "Maw",
  32672. image: {
  32673. source: "./media/characters/rhys-londe/maw.svg"
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Normal",
  32680. height: math.unit(6 + 8/12, "feet"),
  32681. default: true
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32687. {
  32688. front: {
  32689. height: math.unit(3 + 10/12, "feet"),
  32690. weight: math.unit(90, "lb"),
  32691. name: "Front",
  32692. image: {
  32693. source: "./media/characters/taivas-ensim/front.svg",
  32694. extra: 1327/1216,
  32695. bottom: 96/1423
  32696. }
  32697. },
  32698. back: {
  32699. height: math.unit(3 + 10/12, "feet"),
  32700. weight: math.unit(90, "lb"),
  32701. name: "Back",
  32702. image: {
  32703. source: "./media/characters/taivas-ensim/back.svg",
  32704. extra: 1355/1247,
  32705. bottom: 11/1366
  32706. }
  32707. },
  32708. frontNsfw: {
  32709. height: math.unit(3 + 10/12, "feet"),
  32710. weight: math.unit(90, "lb"),
  32711. name: "Front (NSFW)",
  32712. image: {
  32713. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32714. extra: 1327/1216,
  32715. bottom: 96/1423
  32716. }
  32717. },
  32718. backNsfw: {
  32719. height: math.unit(3 + 10/12, "feet"),
  32720. weight: math.unit(90, "lb"),
  32721. name: "Back (NSFW)",
  32722. image: {
  32723. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32724. extra: 1355/1247,
  32725. bottom: 11/1366
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(3 + 10/12, "feet"),
  32733. default: true
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(9 + 6/12, "feet"),
  32742. weight: math.unit(940, "lb"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/byliss/front.svg",
  32746. extra: 1327/1290,
  32747. bottom: 82/1409
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(9 + 6/12, "feet"),
  32752. weight: math.unit(940, "lb"),
  32753. name: "Back",
  32754. image: {
  32755. source: "./media/characters/byliss/back.svg",
  32756. extra: 1376/1349,
  32757. bottom: 9/1385
  32758. }
  32759. },
  32760. frontNsfw: {
  32761. height: math.unit(9 + 6/12, "feet"),
  32762. weight: math.unit(940, "lb"),
  32763. name: "Front (NSFW)",
  32764. image: {
  32765. source: "./media/characters/byliss/front-nsfw.svg",
  32766. extra: 1327/1290,
  32767. bottom: 82/1409
  32768. }
  32769. },
  32770. backNsfw: {
  32771. height: math.unit(9 + 6/12, "feet"),
  32772. weight: math.unit(940, "lb"),
  32773. name: "Back (NSFW)",
  32774. image: {
  32775. source: "./media/characters/byliss/back-nsfw.svg",
  32776. extra: 1376/1349,
  32777. bottom: 9/1385
  32778. }
  32779. },
  32780. },
  32781. [
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(9 + 6/12, "feet"),
  32785. default: true
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32791. {
  32792. front: {
  32793. height: math.unit(5 + 2/12, "feet"),
  32794. weight: math.unit(200, "lb"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/noraly/front.svg",
  32798. extra: 4985/4773,
  32799. bottom: 150/5135
  32800. }
  32801. },
  32802. full: {
  32803. height: math.unit(5 + 2/12, "feet"),
  32804. weight: math.unit(164, "lb"),
  32805. name: "Full",
  32806. image: {
  32807. source: "./media/characters/noraly/full.svg",
  32808. extra: 1114/1059,
  32809. bottom: 35/1149
  32810. }
  32811. },
  32812. fuller: {
  32813. height: math.unit(5 + 2/12, "feet"),
  32814. weight: math.unit(230, "lb"),
  32815. name: "Fuller",
  32816. image: {
  32817. source: "./media/characters/noraly/fuller.svg",
  32818. extra: 1114/1059,
  32819. bottom: 35/1149
  32820. }
  32821. },
  32822. fullest: {
  32823. height: math.unit(5 + 2/12, "feet"),
  32824. weight: math.unit(300, "lb"),
  32825. name: "Fullest",
  32826. image: {
  32827. source: "./media/characters/noraly/fullest.svg",
  32828. extra: 1114/1059,
  32829. bottom: 35/1149
  32830. }
  32831. },
  32832. },
  32833. [
  32834. {
  32835. name: "Normal",
  32836. height: math.unit(5 + 2/12, "feet"),
  32837. default: true
  32838. },
  32839. ]
  32840. ))
  32841. characterMakers.push(() => makeCharacter(
  32842. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32843. {
  32844. front: {
  32845. height: math.unit(5 + 2/12, "feet"),
  32846. weight: math.unit(210, "lb"),
  32847. name: "Front",
  32848. image: {
  32849. source: "./media/characters/pera/front.svg",
  32850. extra: 1560/1531,
  32851. bottom: 165/1725
  32852. }
  32853. },
  32854. back: {
  32855. height: math.unit(5 + 2/12, "feet"),
  32856. weight: math.unit(210, "lb"),
  32857. name: "Back",
  32858. image: {
  32859. source: "./media/characters/pera/back.svg",
  32860. extra: 1523/1493,
  32861. bottom: 152/1675
  32862. }
  32863. },
  32864. dick: {
  32865. height: math.unit(2.4, "feet"),
  32866. name: "Dick",
  32867. image: {
  32868. source: "./media/characters/pera/dick.svg"
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(5 + 2/12, "feet"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(12, "feet"),
  32885. weight: math.unit(3200, "lb"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/julian/front.svg",
  32889. extra: 2962/2701,
  32890. bottom: 184/3146
  32891. }
  32892. },
  32893. maw: {
  32894. height: math.unit(5.35, "feet"),
  32895. name: "Maw",
  32896. image: {
  32897. source: "./media/characters/julian/maw.svg"
  32898. }
  32899. },
  32900. paw: {
  32901. height: math.unit(3.07, "feet"),
  32902. name: "Paw",
  32903. image: {
  32904. source: "./media/characters/julian/paw.svg"
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Default",
  32911. height: math.unit(12, "feet"),
  32912. default: true
  32913. },
  32914. {
  32915. name: "Big",
  32916. height: math.unit(50, "feet")
  32917. },
  32918. {
  32919. name: "Really Big",
  32920. height: math.unit(1, "mile")
  32921. },
  32922. {
  32923. name: "Extremely Big",
  32924. height: math.unit(100, "miles")
  32925. },
  32926. {
  32927. name: "Planet Hugger",
  32928. height: math.unit(200, "megameters")
  32929. },
  32930. {
  32931. name: "Unreasonably Big",
  32932. height: math.unit(1e300, "meters")
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32938. {
  32939. solgooleo: {
  32940. height: math.unit(4, "meters"),
  32941. weight: math.unit(6000*1.5, "kg"),
  32942. volume: math.unit(6000, "liters"),
  32943. name: "Solgooleo",
  32944. image: {
  32945. source: "./media/characters/pi/solgooleo.svg",
  32946. extra: 388/331,
  32947. bottom: 29/417
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Normal",
  32954. height: math.unit(4, "meters"),
  32955. default: true
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32961. {
  32962. front: {
  32963. height: math.unit(8, "feet"),
  32964. weight: math.unit(4, "tons"),
  32965. name: "Front",
  32966. image: {
  32967. source: "./media/characters/shaun/front.svg",
  32968. extra: 503/495,
  32969. bottom: 20/523
  32970. }
  32971. },
  32972. back: {
  32973. height: math.unit(8, "feet"),
  32974. weight: math.unit(4, "tons"),
  32975. name: "Back",
  32976. image: {
  32977. source: "./media/characters/shaun/back.svg",
  32978. extra: 487/480,
  32979. bottom: 20/507
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Lorg",
  32986. height: math.unit(8, "feet"),
  32987. default: true
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32993. {
  32994. frontAnthro: {
  32995. height: math.unit(7, "feet"),
  32996. name: "Front",
  32997. image: {
  32998. source: "./media/characters/sini/front-anthro.svg",
  32999. extra: 726/678,
  33000. bottom: 35/761
  33001. },
  33002. form: "anthro",
  33003. default: true
  33004. },
  33005. backAnthro: {
  33006. height: math.unit(7, "feet"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/sini/back-anthro.svg",
  33010. extra: 743/701,
  33011. bottom: 12/755
  33012. },
  33013. form: "anthro",
  33014. },
  33015. frontAnthroNsfw: {
  33016. height: math.unit(7, "feet"),
  33017. name: "Front (NSFW)",
  33018. image: {
  33019. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33020. extra: 726/678,
  33021. bottom: 35/761
  33022. },
  33023. form: "anthro"
  33024. },
  33025. backAnthroNsfw: {
  33026. height: math.unit(7, "feet"),
  33027. name: "Back (NSFW)",
  33028. image: {
  33029. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33030. extra: 743/701,
  33031. bottom: 12/755
  33032. },
  33033. form: "anthro",
  33034. },
  33035. mawAnthro: {
  33036. height: math.unit(2.14, "feet"),
  33037. name: "Maw",
  33038. image: {
  33039. source: "./media/characters/sini/maw-anthro.svg"
  33040. },
  33041. form: "anthro"
  33042. },
  33043. dick: {
  33044. height: math.unit(1.45, "feet"),
  33045. name: "Dick",
  33046. image: {
  33047. source: "./media/characters/sini/dick-anthro.svg"
  33048. },
  33049. form: "anthro"
  33050. },
  33051. feral: {
  33052. height: math.unit(16, "feet"),
  33053. name: "Feral",
  33054. image: {
  33055. source: "./media/characters/sini/feral.svg",
  33056. extra: 814/605,
  33057. bottom: 11/825
  33058. },
  33059. form: "feral",
  33060. default: true
  33061. },
  33062. feralNsfw: {
  33063. height: math.unit(16, "feet"),
  33064. name: "Feral (NSFW)",
  33065. image: {
  33066. source: "./media/characters/sini/feral-nsfw.svg",
  33067. extra: 814/605,
  33068. bottom: 11/825
  33069. },
  33070. form: "feral"
  33071. },
  33072. mawFeral: {
  33073. height: math.unit(5.66, "feet"),
  33074. name: "Maw",
  33075. image: {
  33076. source: "./media/characters/sini/maw-feral.svg"
  33077. },
  33078. form: "feral",
  33079. },
  33080. pawFeral: {
  33081. height: math.unit(5.17, "feet"),
  33082. name: "Paw",
  33083. image: {
  33084. source: "./media/characters/sini/paw-feral.svg"
  33085. },
  33086. form: "feral",
  33087. },
  33088. rumpFeral: {
  33089. height: math.unit(13.11, "feet"),
  33090. name: "Rump",
  33091. image: {
  33092. source: "./media/characters/sini/rump-feral.svg"
  33093. },
  33094. form: "feral",
  33095. },
  33096. dickFeral: {
  33097. height: math.unit(1, "feet"),
  33098. name: "Dick",
  33099. image: {
  33100. source: "./media/characters/sini/dick-feral.svg"
  33101. },
  33102. form: "feral",
  33103. },
  33104. eyeFeral: {
  33105. height: math.unit(1.23, "feet"),
  33106. name: "Eye",
  33107. image: {
  33108. source: "./media/characters/sini/eye-feral.svg"
  33109. },
  33110. form: "feral",
  33111. },
  33112. },
  33113. [
  33114. {
  33115. name: "Normal",
  33116. height: math.unit(7, "feet"),
  33117. default: true,
  33118. form: "anthro"
  33119. },
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(16, "feet"),
  33123. default: true,
  33124. form: "feral"
  33125. },
  33126. ],
  33127. {
  33128. "anthro": {
  33129. name: "Anthro",
  33130. default: true
  33131. },
  33132. "feral": {
  33133. name: "Feral",
  33134. }
  33135. }
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33139. {
  33140. side: {
  33141. height: math.unit(13, "meters"),
  33142. weight: math.unit(9072, "kg"),
  33143. name: "Side",
  33144. image: {
  33145. source: "./media/characters/raylldo/side.svg",
  33146. extra: 403/344,
  33147. bottom: 42/445
  33148. }
  33149. },
  33150. leaping: {
  33151. height: math.unit(12.3, "meters"),
  33152. weight: math.unit(9072, "kg"),
  33153. name: "Leaping",
  33154. image: {
  33155. source: "./media/characters/raylldo/leaping.svg",
  33156. extra: 470/249,
  33157. bottom: 13/483
  33158. }
  33159. },
  33160. flying: {
  33161. height: math.unit(18, "meters"),
  33162. weight: math.unit(9072, "kg"),
  33163. name: "Flying",
  33164. image: {
  33165. source: "./media/characters/raylldo/flying.svg"
  33166. }
  33167. },
  33168. head: {
  33169. height: math.unit(5.85, "meters"),
  33170. name: "Head",
  33171. image: {
  33172. source: "./media/characters/raylldo/head.svg"
  33173. }
  33174. },
  33175. maw: {
  33176. height: math.unit(5.32, "meters"),
  33177. name: "Maw",
  33178. image: {
  33179. source: "./media/characters/raylldo/maw.svg"
  33180. }
  33181. },
  33182. eye: {
  33183. height: math.unit(0.54, "meters"),
  33184. name: "Eye",
  33185. image: {
  33186. source: "./media/characters/raylldo/eye.svg"
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Normal",
  33193. height: math.unit(13, "meters"),
  33194. default: true
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33200. {
  33201. anthroFront: {
  33202. height: math.unit(9, "feet"),
  33203. weight: math.unit(600, "lb"),
  33204. name: "Anthro (Front)",
  33205. image: {
  33206. source: "./media/characters/glint/anthro-front.svg",
  33207. extra: 1097/1018,
  33208. bottom: 28/1125
  33209. }
  33210. },
  33211. anthroBack: {
  33212. height: math.unit(9, "feet"),
  33213. weight: math.unit(600, "lb"),
  33214. name: "Anthro (Back)",
  33215. image: {
  33216. source: "./media/characters/glint/anthro-back.svg",
  33217. extra: 1154/997,
  33218. bottom: 36/1190
  33219. }
  33220. },
  33221. feral: {
  33222. height: math.unit(11, "feet"),
  33223. weight: math.unit(50000, "lb"),
  33224. name: "Feral",
  33225. image: {
  33226. source: "./media/characters/glint/feral.svg",
  33227. extra: 3035/1585,
  33228. bottom: 1169/4204
  33229. }
  33230. },
  33231. dickAnthro: {
  33232. height: math.unit(0.7, "meters"),
  33233. name: "Dick (Anthro)",
  33234. image: {
  33235. source: "./media/characters/glint/dick-anthro.svg"
  33236. }
  33237. },
  33238. dickFeral: {
  33239. height: math.unit(2.65, "meters"),
  33240. name: "Dick (Feral)",
  33241. image: {
  33242. source: "./media/characters/glint/dick-feral.svg"
  33243. }
  33244. },
  33245. slitHidden: {
  33246. height: math.unit(5.85, "meters"),
  33247. name: "Slit (Hidden)",
  33248. image: {
  33249. source: "./media/characters/glint/slit-hidden.svg"
  33250. }
  33251. },
  33252. slitErect: {
  33253. height: math.unit(5.85, "meters"),
  33254. name: "Slit (Erect)",
  33255. image: {
  33256. source: "./media/characters/glint/slit-erect.svg"
  33257. }
  33258. },
  33259. mawAnthro: {
  33260. height: math.unit(0.63, "meters"),
  33261. name: "Maw (Anthro)",
  33262. image: {
  33263. source: "./media/characters/glint/maw.svg"
  33264. }
  33265. },
  33266. mawFeral: {
  33267. height: math.unit(2.89, "meters"),
  33268. name: "Maw (Feral)",
  33269. image: {
  33270. source: "./media/characters/glint/maw.svg"
  33271. }
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(9, "feet"),
  33278. default: true
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33284. {
  33285. side: {
  33286. height: math.unit(15, "feet"),
  33287. weight: math.unit(5000, "kg"),
  33288. name: "Side",
  33289. image: {
  33290. source: "./media/characters/kairne/side.svg",
  33291. extra: 979/811,
  33292. bottom: 13/992
  33293. }
  33294. },
  33295. front: {
  33296. height: math.unit(15, "feet"),
  33297. weight: math.unit(5000, "kg"),
  33298. name: "Front",
  33299. image: {
  33300. source: "./media/characters/kairne/front.svg",
  33301. extra: 908/814,
  33302. bottom: 26/934
  33303. }
  33304. },
  33305. sideNsfw: {
  33306. height: math.unit(15, "feet"),
  33307. weight: math.unit(5000, "kg"),
  33308. name: "Side (NSFW)",
  33309. image: {
  33310. source: "./media/characters/kairne/side-nsfw.svg",
  33311. extra: 979/811,
  33312. bottom: 13/992
  33313. }
  33314. },
  33315. frontNsfw: {
  33316. height: math.unit(15, "feet"),
  33317. weight: math.unit(5000, "kg"),
  33318. name: "Front (NSFW)",
  33319. image: {
  33320. source: "./media/characters/kairne/front-nsfw.svg",
  33321. extra: 908/814,
  33322. bottom: 26/934
  33323. }
  33324. },
  33325. dickCaged: {
  33326. height: math.unit(0.65, "meters"),
  33327. name: "Dick-caged",
  33328. image: {
  33329. source: "./media/characters/kairne/dick-caged.svg"
  33330. }
  33331. },
  33332. dick: {
  33333. height: math.unit(0.79, "meters"),
  33334. name: "Dick",
  33335. image: {
  33336. source: "./media/characters/kairne/dick.svg"
  33337. }
  33338. },
  33339. genitals: {
  33340. height: math.unit(1.29, "meters"),
  33341. name: "Genitals",
  33342. image: {
  33343. source: "./media/characters/kairne/genitals.svg"
  33344. }
  33345. },
  33346. maw: {
  33347. height: math.unit(1.73, "meters"),
  33348. name: "Maw",
  33349. image: {
  33350. source: "./media/characters/kairne/maw.svg"
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(15, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(5 + 8/12, "feet"),
  33367. weight: math.unit(139, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/biscuit-jackal/front.svg",
  33371. extra: 2106/1961,
  33372. bottom: 58/2164
  33373. }
  33374. },
  33375. back: {
  33376. height: math.unit(5 + 8/12, "feet"),
  33377. weight: math.unit(139, "lb"),
  33378. name: "Back",
  33379. image: {
  33380. source: "./media/characters/biscuit-jackal/back.svg",
  33381. extra: 2132/1976,
  33382. bottom: 57/2189
  33383. }
  33384. },
  33385. werejackal: {
  33386. height: math.unit(6 + 3/12, "feet"),
  33387. weight: math.unit(188, "lb"),
  33388. name: "Werejackal",
  33389. image: {
  33390. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33391. extra: 2373/2178,
  33392. bottom: 53/2426
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(5 + 8/12, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(140, "cm"),
  33409. weight: math.unit(45, "kg"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/tayra-white/front.svg",
  33413. extra: 2229/2192,
  33414. bottom: 75/2304
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(140, "cm"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33428. {
  33429. front: {
  33430. height: math.unit(4 + 5/12, "feet"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/scoop/front.svg",
  33434. extra: 1257/1136,
  33435. bottom: 69/1326
  33436. }
  33437. },
  33438. back: {
  33439. height: math.unit(4 + 5/12, "feet"),
  33440. name: "Back",
  33441. image: {
  33442. source: "./media/characters/scoop/back.svg",
  33443. extra: 1321/1152,
  33444. bottom: 32/1353
  33445. }
  33446. },
  33447. maw: {
  33448. height: math.unit(0.68, "feet"),
  33449. name: "Maw",
  33450. image: {
  33451. source: "./media/characters/scoop/maw.svg"
  33452. }
  33453. },
  33454. },
  33455. [
  33456. {
  33457. name: "Really Small",
  33458. height: math.unit(1, "mm")
  33459. },
  33460. {
  33461. name: "Micro",
  33462. height: math.unit(1, "inch")
  33463. },
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(4 + 5/12, "feet"),
  33467. default: true
  33468. },
  33469. {
  33470. name: "Macro",
  33471. height: math.unit(200, "feet")
  33472. },
  33473. {
  33474. name: "Megamacro",
  33475. height: math.unit(3240, "feet")
  33476. },
  33477. {
  33478. name: "Teramacro",
  33479. height: math.unit(2500, "miles")
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(15 + 7/12, "feet"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/saphinara/front.svg",
  33491. extra: 604/546,
  33492. bottom: 19/623
  33493. }
  33494. },
  33495. side: {
  33496. height: math.unit(15 + 7/12, "feet"),
  33497. name: "Side",
  33498. image: {
  33499. source: "./media/characters/saphinara/side.svg",
  33500. extra: 605/547,
  33501. bottom: 6/611
  33502. }
  33503. },
  33504. back: {
  33505. height: math.unit(15 + 7/12, "feet"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/saphinara/back.svg",
  33509. extra: 591/531,
  33510. bottom: 13/604
  33511. }
  33512. },
  33513. frontTail: {
  33514. height: math.unit(15 + 7/12, "feet"),
  33515. name: "Front (Full Tail)",
  33516. image: {
  33517. source: "./media/characters/saphinara/front-tail.svg",
  33518. extra: 748/547,
  33519. bottom: 66/814
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(15 + 7/12, "feet"),
  33527. default: true
  33528. },
  33529. {
  33530. name: "Angry",
  33531. height: math.unit(30 + 6/12, "feet")
  33532. },
  33533. {
  33534. name: "Enraged",
  33535. height: math.unit(102 + 1/12, "feet")
  33536. },
  33537. ]
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33541. {
  33542. front: {
  33543. height: math.unit(6 + 8/12, "feet"),
  33544. weight: math.unit(300, "lb"),
  33545. name: "Front",
  33546. image: {
  33547. source: "./media/characters/jrain/front.svg",
  33548. extra: 3039/2865,
  33549. bottom: 399/3438
  33550. }
  33551. },
  33552. back: {
  33553. height: math.unit(6 + 8/12, "feet"),
  33554. weight: math.unit(300, "lb"),
  33555. name: "Back",
  33556. image: {
  33557. source: "./media/characters/jrain/back.svg",
  33558. extra: 3089/2938,
  33559. bottom: 172/3261
  33560. }
  33561. },
  33562. head: {
  33563. height: math.unit(2.14, "feet"),
  33564. name: "Head",
  33565. image: {
  33566. source: "./media/characters/jrain/head.svg"
  33567. }
  33568. },
  33569. maw: {
  33570. height: math.unit(1.77, "feet"),
  33571. name: "Maw",
  33572. image: {
  33573. source: "./media/characters/jrain/maw.svg"
  33574. }
  33575. },
  33576. leftHand: {
  33577. height: math.unit(1.1, "feet"),
  33578. name: "Left Hand",
  33579. image: {
  33580. source: "./media/characters/jrain/left-hand.svg"
  33581. }
  33582. },
  33583. rightHand: {
  33584. height: math.unit(1.1, "feet"),
  33585. name: "Right Hand",
  33586. image: {
  33587. source: "./media/characters/jrain/right-hand.svg"
  33588. }
  33589. },
  33590. eye: {
  33591. height: math.unit(0.35, "feet"),
  33592. name: "Eye",
  33593. image: {
  33594. source: "./media/characters/jrain/eye.svg"
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(6 + 8/12, "feet"),
  33602. default: true
  33603. },
  33604. {
  33605. name: "Casually Large",
  33606. height: math.unit(25, "feet")
  33607. },
  33608. {
  33609. name: "Giant",
  33610. height: math.unit(100, "feet")
  33611. },
  33612. {
  33613. name: "Kaiju",
  33614. height: math.unit(300, "feet")
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33620. {
  33621. dragon: {
  33622. height: math.unit(5, "meters"),
  33623. name: "Dragon",
  33624. image: {
  33625. source: "./media/characters/sabrina/dragon.svg",
  33626. extra: 3670 / 2365,
  33627. bottom: 333 / 4003
  33628. }
  33629. },
  33630. gryphon: {
  33631. height: math.unit(3, "meters"),
  33632. name: "Gryphon",
  33633. image: {
  33634. source: "./media/characters/sabrina/gryphon.svg",
  33635. extra: 1576 / 945,
  33636. bottom: 71 / 1647
  33637. }
  33638. },
  33639. snake: {
  33640. height: math.unit(12, "meters"),
  33641. name: "Snake",
  33642. image: {
  33643. source: "./media/characters/sabrina/snake.svg",
  33644. extra: 1758 / 1320,
  33645. bottom: 186 / 1944
  33646. }
  33647. },
  33648. collar: {
  33649. height: math.unit(1.86, "meters"),
  33650. name: "Collar",
  33651. image: {
  33652. source: "./media/characters/sabrina/collar.svg"
  33653. }
  33654. },
  33655. eye: {
  33656. height: math.unit(0.53, "meters"),
  33657. name: "Eye",
  33658. image: {
  33659. source: "./media/characters/sabrina/eye.svg"
  33660. }
  33661. },
  33662. foot: {
  33663. height: math.unit(1.86, "meters"),
  33664. name: "Foot",
  33665. image: {
  33666. source: "./media/characters/sabrina/foot.svg"
  33667. }
  33668. },
  33669. hand: {
  33670. height: math.unit(1.32, "meters"),
  33671. name: "Hand",
  33672. image: {
  33673. source: "./media/characters/sabrina/hand.svg"
  33674. }
  33675. },
  33676. head: {
  33677. height: math.unit(2.44, "meters"),
  33678. name: "Head",
  33679. image: {
  33680. source: "./media/characters/sabrina/head.svg"
  33681. }
  33682. },
  33683. headAngry: {
  33684. height: math.unit(2.44, "meters"),
  33685. name: "Head (Angry))",
  33686. image: {
  33687. source: "./media/characters/sabrina/head-angry.svg"
  33688. }
  33689. },
  33690. maw: {
  33691. height: math.unit(1.65, "meters"),
  33692. name: "Maw",
  33693. image: {
  33694. source: "./media/characters/sabrina/maw.svg"
  33695. }
  33696. },
  33697. spikes: {
  33698. height: math.unit(1.69, "meters"),
  33699. name: "Spikes",
  33700. image: {
  33701. source: "./media/characters/sabrina/spikes.svg"
  33702. }
  33703. },
  33704. stomach: {
  33705. height: math.unit(1.15, "meters"),
  33706. name: "Stomach",
  33707. image: {
  33708. source: "./media/characters/sabrina/stomach.svg"
  33709. }
  33710. },
  33711. tongue: {
  33712. height: math.unit(1.27, "meters"),
  33713. name: "Tongue",
  33714. image: {
  33715. source: "./media/characters/sabrina/tongue.svg"
  33716. }
  33717. },
  33718. wingDorsal: {
  33719. height: math.unit(4.85, "meters"),
  33720. name: "Wing (Dorsal)",
  33721. image: {
  33722. source: "./media/characters/sabrina/wing-dorsal.svg"
  33723. }
  33724. },
  33725. wingVentral: {
  33726. height: math.unit(4.85, "meters"),
  33727. name: "Wing (Ventral)",
  33728. image: {
  33729. source: "./media/characters/sabrina/wing-ventral.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(5, "meters"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33743. {
  33744. frontMaid: {
  33745. height: math.unit(5 + 5/12, "feet"),
  33746. weight: math.unit(130, "lb"),
  33747. name: "Front (Maid)",
  33748. image: {
  33749. source: "./media/characters/midnight-tales/front-maid.svg",
  33750. extra: 489/454,
  33751. bottom: 61/550
  33752. }
  33753. },
  33754. frontFormal: {
  33755. height: math.unit(5 + 5/12, "feet"),
  33756. weight: math.unit(130, "lb"),
  33757. name: "Front (Formal)",
  33758. image: {
  33759. source: "./media/characters/midnight-tales/front-formal.svg",
  33760. extra: 489/454,
  33761. bottom: 61/550
  33762. }
  33763. },
  33764. back: {
  33765. height: math.unit(5 + 5/12, "feet"),
  33766. weight: math.unit(130, "lb"),
  33767. name: "Back",
  33768. image: {
  33769. source: "./media/characters/midnight-tales/back.svg",
  33770. extra: 498/456,
  33771. bottom: 33/531
  33772. }
  33773. },
  33774. frontBeast: {
  33775. height: math.unit(40, "feet"),
  33776. weight: math.unit(64000, "lb"),
  33777. name: "Front (Beast)",
  33778. image: {
  33779. source: "./media/characters/midnight-tales/front-beast.svg",
  33780. extra: 927/860,
  33781. bottom: 53/980
  33782. }
  33783. },
  33784. backBeast: {
  33785. height: math.unit(40, "feet"),
  33786. weight: math.unit(64000, "lb"),
  33787. name: "Back (Beast)",
  33788. image: {
  33789. source: "./media/characters/midnight-tales/back-beast.svg",
  33790. extra: 929/855,
  33791. bottom: 16/945
  33792. }
  33793. },
  33794. footBeast: {
  33795. height: math.unit(6.7, "feet"),
  33796. name: "Foot (Beast)",
  33797. image: {
  33798. source: "./media/characters/midnight-tales/foot-beast.svg"
  33799. }
  33800. },
  33801. headBeast: {
  33802. height: math.unit(8, "feet"),
  33803. name: "Head (Beast)",
  33804. image: {
  33805. source: "./media/characters/midnight-tales/head-beast.svg"
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(5 + 5 / 12, "feet"),
  33813. default: true
  33814. },
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(25, "feet")
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(5 + 10/12, "feet"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/argon/front.svg",
  33829. extra: 2009/1935,
  33830. bottom: 118/2127
  33831. }
  33832. },
  33833. back: {
  33834. height: math.unit(5 + 10/12, "feet"),
  33835. name: "Back",
  33836. image: {
  33837. source: "./media/characters/argon/back.svg",
  33838. extra: 2047/1992,
  33839. bottom: 20/2067
  33840. }
  33841. },
  33842. frontDressed: {
  33843. height: math.unit(5 + 10/12, "feet"),
  33844. name: "Front (Dressed)",
  33845. image: {
  33846. source: "./media/characters/argon/front-dressed.svg",
  33847. extra: 2009/1935,
  33848. bottom: 118/2127
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(5 + 10/12, "feet"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(8 + 6/12, "feet"),
  33865. weight: math.unit(1150, "lb"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/kichi/front.svg",
  33869. extra: 1267/1164,
  33870. bottom: 61/1328
  33871. }
  33872. },
  33873. back: {
  33874. height: math.unit(8 + 6/12, "feet"),
  33875. weight: math.unit(1150, "lb"),
  33876. name: "Back",
  33877. image: {
  33878. source: "./media/characters/kichi/back.svg",
  33879. extra: 1273/1166,
  33880. bottom: 33/1306
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(8 + 6/12, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33894. {
  33895. front: {
  33896. height: math.unit(6, "feet"),
  33897. weight: math.unit(210, "lb"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/manetel-greyscale/front.svg",
  33901. extra: 350/312,
  33902. bottom: 8/358
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Micro",
  33909. height: math.unit(2, "inches")
  33910. },
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(6, "feet"),
  33914. default: true
  33915. },
  33916. {
  33917. name: "Minimacro",
  33918. height: math.unit(17, "feet")
  33919. },
  33920. {
  33921. name: "Macro",
  33922. height: math.unit(117, "feet")
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33928. {
  33929. side: {
  33930. height: math.unit(5 + 1/12, "feet"),
  33931. weight: math.unit(418, "lb"),
  33932. name: "Side",
  33933. image: {
  33934. source: "./media/characters/softpurr/side.svg",
  33935. extra: 1993/1945,
  33936. bottom: 134/2127
  33937. }
  33938. },
  33939. front: {
  33940. height: math.unit(5 + 1/12, "feet"),
  33941. weight: math.unit(418, "lb"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/softpurr/front.svg",
  33945. extra: 1950/1856,
  33946. bottom: 174/2124
  33947. }
  33948. },
  33949. paw: {
  33950. height: math.unit(1, "feet"),
  33951. name: "Paw",
  33952. image: {
  33953. source: "./media/characters/softpurr/paw.svg"
  33954. }
  33955. },
  33956. },
  33957. [
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(5 + 1/12, "feet"),
  33961. default: true
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(260, "meters"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/anahita/front.svg",
  33973. extra: 665/635,
  33974. bottom: 89/754
  33975. }
  33976. },
  33977. },
  33978. [
  33979. {
  33980. name: "Macro",
  33981. height: math.unit(260, "meters"),
  33982. default: true
  33983. },
  33984. ]
  33985. ))
  33986. characterMakers.push(() => makeCharacter(
  33987. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33988. {
  33989. front: {
  33990. height: math.unit(4 + 10/12, "feet"),
  33991. weight: math.unit(160, "lb"),
  33992. name: "Front",
  33993. image: {
  33994. source: "./media/characters/chip-mouse/front.svg",
  33995. extra: 3528/3408,
  33996. bottom: 0/3528
  33997. }
  33998. },
  33999. frontNsfw: {
  34000. height: math.unit(4 + 10/12, "feet"),
  34001. weight: math.unit(160, "lb"),
  34002. name: "Front (NSFW)",
  34003. image: {
  34004. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34005. extra: 3528/3408,
  34006. bottom: 0/3528
  34007. }
  34008. },
  34009. },
  34010. [
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(4 + 10/12, "feet"),
  34014. default: true
  34015. },
  34016. ]
  34017. ))
  34018. characterMakers.push(() => makeCharacter(
  34019. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34020. {
  34021. side: {
  34022. height: math.unit(10, "feet"),
  34023. weight: math.unit(14000, "lb"),
  34024. name: "Side",
  34025. image: {
  34026. source: "./media/characters/kremm/side.svg",
  34027. extra: 1390/1053,
  34028. bottom: 90/1480
  34029. }
  34030. },
  34031. gut: {
  34032. height: math.unit(5.8, "feet"),
  34033. name: "Gut",
  34034. image: {
  34035. source: "./media/characters/kremm/gut.svg"
  34036. }
  34037. },
  34038. ass: {
  34039. height: math.unit(6.1, "feet"),
  34040. name: "Ass",
  34041. image: {
  34042. source: "./media/characters/kremm/ass.svg"
  34043. }
  34044. },
  34045. jaws: {
  34046. height: math.unit(2.2, "feet"),
  34047. name: "Jaws",
  34048. image: {
  34049. source: "./media/characters/kremm/jaws.svg"
  34050. }
  34051. },
  34052. dick: {
  34053. height: math.unit(4.26, "feet"),
  34054. name: "Dick",
  34055. image: {
  34056. source: "./media/characters/kremm/dick.svg"
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(10, "feet"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34070. {
  34071. front: {
  34072. height: math.unit(30, "stories"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/kai/front.svg",
  34076. extra: 1892/1718,
  34077. bottom: 162/2054
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Macro",
  34084. height: math.unit(30, "stories"),
  34085. default: true
  34086. },
  34087. ]
  34088. ))
  34089. characterMakers.push(() => makeCharacter(
  34090. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34091. {
  34092. front: {
  34093. height: math.unit(6 + 4/12, "feet"),
  34094. weight: math.unit(145, "lb"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/sykes/front.svg",
  34098. extra: 1321 / 1187,
  34099. bottom: 66 / 1387
  34100. }
  34101. },
  34102. back: {
  34103. height: math.unit(6 + 4/12, "feet"),
  34104. weight: math.unit(145, "lb"),
  34105. name: "Back",
  34106. image: {
  34107. source: "./media/characters/sykes/back.svg",
  34108. extra: 1326/1181,
  34109. bottom: 31/1357
  34110. }
  34111. },
  34112. handBack: {
  34113. height: math.unit(0.9, "feet"),
  34114. name: "Hand (Back)",
  34115. image: {
  34116. source: "./media/characters/sykes/hand-back.svg"
  34117. }
  34118. },
  34119. handFront: {
  34120. height: math.unit(0.839, "feet"),
  34121. name: "Hand (Front)",
  34122. image: {
  34123. source: "./media/characters/sykes/hand-front.svg"
  34124. }
  34125. },
  34126. leftFoot: {
  34127. height: math.unit(1.2, "feet"),
  34128. name: "Foot (Left)",
  34129. image: {
  34130. source: "./media/characters/sykes/foot-left.svg"
  34131. }
  34132. },
  34133. rightFoot: {
  34134. height: math.unit(1.2, "feet"),
  34135. name: "Foot (Right)",
  34136. image: {
  34137. source: "./media/characters/sykes/foot-right.svg"
  34138. }
  34139. },
  34140. maw: {
  34141. height: math.unit(1.93, "feet"),
  34142. name: "Maw",
  34143. image: {
  34144. source: "./media/characters/sykes/maw.svg"
  34145. }
  34146. },
  34147. teeth: {
  34148. height: math.unit(0.51, "feet"),
  34149. name: "Teeth",
  34150. image: {
  34151. source: "./media/characters/sykes/teeth.svg"
  34152. }
  34153. },
  34154. tongue: {
  34155. height: math.unit(2.13, "feet"),
  34156. name: "Tongue",
  34157. image: {
  34158. source: "./media/characters/sykes/tongue.svg"
  34159. }
  34160. },
  34161. uvula: {
  34162. height: math.unit(0.16, "feet"),
  34163. name: "Uvula",
  34164. image: {
  34165. source: "./media/characters/sykes/uvula.svg"
  34166. }
  34167. },
  34168. collar: {
  34169. height: math.unit(0.287, "feet"),
  34170. name: "Collar",
  34171. image: {
  34172. source: "./media/characters/sykes/collar.svg"
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Shrunken",
  34179. height: math.unit(5, "inches")
  34180. },
  34181. {
  34182. name: "Normal",
  34183. height: math.unit(6 + 4 / 12, "feet"),
  34184. default: true
  34185. },
  34186. {
  34187. name: "Big",
  34188. height: math.unit(15, "feet")
  34189. },
  34190. ]
  34191. ))
  34192. characterMakers.push(() => makeCharacter(
  34193. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34194. {
  34195. front: {
  34196. height: math.unit(5 + 8/12, "feet"),
  34197. weight: math.unit(190, "lb"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/oven-otter/front.svg",
  34201. extra: 1809/1740,
  34202. bottom: 181/1990
  34203. }
  34204. },
  34205. back: {
  34206. height: math.unit(5 + 8/12, "feet"),
  34207. weight: math.unit(190, "lb"),
  34208. name: "Back",
  34209. image: {
  34210. source: "./media/characters/oven-otter/back.svg",
  34211. extra: 1709/1635,
  34212. bottom: 118/1827
  34213. }
  34214. },
  34215. hand: {
  34216. height: math.unit(1.07, "feet"),
  34217. name: "Hand",
  34218. image: {
  34219. source: "./media/characters/oven-otter/hand.svg"
  34220. }
  34221. },
  34222. beans: {
  34223. height: math.unit(1.74, "feet"),
  34224. name: "Beans",
  34225. image: {
  34226. source: "./media/characters/oven-otter/beans.svg"
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Micro",
  34233. height: math.unit(0.5, "inches")
  34234. },
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(5 + 8/12, "feet"),
  34238. default: true
  34239. },
  34240. {
  34241. name: "Macro",
  34242. height: math.unit(250, "feet")
  34243. },
  34244. {
  34245. name: "Really High",
  34246. height: math.unit(420, "feet")
  34247. },
  34248. ]
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34252. {
  34253. front: {
  34254. height: math.unit(5, "meters"),
  34255. weight: math.unit(292000000000000, "kg"),
  34256. name: "Front",
  34257. image: {
  34258. source: "./media/characters/devourer/front.svg",
  34259. extra: 1800/1733,
  34260. bottom: 211/2011
  34261. }
  34262. },
  34263. maw: {
  34264. height: math.unit(1.1, "meter"),
  34265. name: "Maw",
  34266. image: {
  34267. source: "./media/characters/devourer/maw.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Small",
  34274. height: math.unit(3, "meters")
  34275. },
  34276. {
  34277. name: "Large",
  34278. height: math.unit(5, "meters"),
  34279. default: true
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34285. {
  34286. front: {
  34287. height: math.unit(6, "feet"),
  34288. weight: math.unit(400, "lb"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/ellarby/front.svg",
  34292. extra: 1909/1763,
  34293. bottom: 80/1989
  34294. }
  34295. },
  34296. back: {
  34297. height: math.unit(6, "feet"),
  34298. weight: math.unit(400, "lb"),
  34299. name: "Back",
  34300. image: {
  34301. source: "./media/characters/ellarby/back.svg",
  34302. extra: 1914/1784,
  34303. bottom: 172/2086
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Mischief",
  34310. height: math.unit(18, "inches")
  34311. },
  34312. {
  34313. name: "Trouble",
  34314. height: math.unit(12, "feet")
  34315. },
  34316. {
  34317. name: "Havoc",
  34318. height: math.unit(200, "feet"),
  34319. default: true
  34320. },
  34321. {
  34322. name: "Pandemonium",
  34323. height: math.unit(1, "mile")
  34324. },
  34325. {
  34326. name: "Catastrophe",
  34327. height: math.unit(100, "miles")
  34328. },
  34329. ]
  34330. ))
  34331. characterMakers.push(() => makeCharacter(
  34332. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34333. {
  34334. front: {
  34335. height: math.unit(4.7, "meters"),
  34336. weight: math.unit(6500, "kg"),
  34337. name: "Front",
  34338. image: {
  34339. source: "./media/characters/vex/front.svg",
  34340. extra: 1288/1140,
  34341. bottom: 100/1388
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(4.7, "meters"),
  34349. default: true
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34355. {
  34356. normal: {
  34357. height: math.unit(6, "feet"),
  34358. weight: math.unit(350, "lb"),
  34359. name: "Normal",
  34360. image: {
  34361. source: "./media/characters/teshy/normal.svg",
  34362. extra: 1795/1735,
  34363. bottom: 16/1811
  34364. }
  34365. },
  34366. monsterFront: {
  34367. height: math.unit(12, "feet"),
  34368. weight: math.unit(4700, "lb"),
  34369. name: "Monster (Front)",
  34370. image: {
  34371. source: "./media/characters/teshy/monster-front.svg",
  34372. extra: 2042/2034,
  34373. bottom: 128/2170
  34374. }
  34375. },
  34376. monsterSide: {
  34377. height: math.unit(12, "feet"),
  34378. weight: math.unit(4700, "lb"),
  34379. name: "Monster (Side)",
  34380. image: {
  34381. source: "./media/characters/teshy/monster-side.svg",
  34382. extra: 2067/2056,
  34383. bottom: 70/2137
  34384. }
  34385. },
  34386. monsterBack: {
  34387. height: math.unit(12, "feet"),
  34388. weight: math.unit(4700, "lb"),
  34389. name: "Monster (Back)",
  34390. image: {
  34391. source: "./media/characters/teshy/monster-back.svg",
  34392. extra: 1921/1914,
  34393. bottom: 171/2092
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(6, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34407. {
  34408. front: {
  34409. height: math.unit(6, "feet"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/ramey/front.svg",
  34413. extra: 790/787,
  34414. bottom: 27/817
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(6, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(5 + 5/12, "feet"),
  34431. weight: math.unit(120, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/phirae/front.svg",
  34435. extra: 2491/2436,
  34436. bottom: 38/2529
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(5 + 5/12, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34450. {
  34451. front: {
  34452. height: math.unit(5 + 3/12, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/stagglas/front.svg",
  34456. extra: 962/882,
  34457. bottom: 53/1015
  34458. }
  34459. },
  34460. feral: {
  34461. height: math.unit(335, "cm"),
  34462. name: "Feral",
  34463. image: {
  34464. source: "./media/characters/stagglas/feral.svg",
  34465. extra: 1732/1090,
  34466. bottom: 48/1780
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Normal",
  34473. height: math.unit(5 + 3/12, "feet"),
  34474. default: true
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34480. {
  34481. front: {
  34482. height: math.unit(5 + 4/12, "feet"),
  34483. weight: math.unit(145, "lb"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/starra/front.svg",
  34487. extra: 1790/1691,
  34488. bottom: 91/1881
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Normal",
  34495. height: math.unit(5 + 4/12, "feet"),
  34496. default: true
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(2.2, "meters"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34508. extra: 1194/1005,
  34509. bottom: 25/1219
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(2.2, "meters"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34523. {
  34524. side: {
  34525. height: math.unit(8 + 2/12, "feet"),
  34526. weight: math.unit(1240, "lb"),
  34527. name: "Side",
  34528. image: {
  34529. source: "./media/characters/mika-valentine/side.svg",
  34530. extra: 2670/2501,
  34531. bottom: 250/2920
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(8 + 2/12, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(7 + 2/12, "feet"),
  34548. name: "Front",
  34549. image: {
  34550. source: "./media/characters/xoltol/front.svg",
  34551. extra: 2212/2124,
  34552. bottom: 84/2296
  34553. }
  34554. },
  34555. side: {
  34556. height: math.unit(7 + 2/12, "feet"),
  34557. name: "Side",
  34558. image: {
  34559. source: "./media/characters/xoltol/side.svg",
  34560. extra: 2273/2197,
  34561. bottom: 26/2299
  34562. }
  34563. },
  34564. hand: {
  34565. height: math.unit(2.5, "feet"),
  34566. name: "Hand",
  34567. image: {
  34568. source: "./media/characters/xoltol/hand.svg"
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Small-ish",
  34575. height: math.unit(5 + 11/12, "feet")
  34576. },
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(7 + 2/12, "feet")
  34580. },
  34581. {
  34582. name: "\"Macro\"",
  34583. height: math.unit(14 + 9/12, "feet"),
  34584. default: true
  34585. },
  34586. {
  34587. name: "Alternate Height",
  34588. height: math.unit(20, "feet")
  34589. },
  34590. {
  34591. name: "Actually Macro",
  34592. height: math.unit(100, "feet")
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(5 + 2/12, "feet"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/kotetsu-redwood/front.svg",
  34604. extra: 1053/942,
  34605. bottom: 60/1113
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(5 + 2/12, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(2.4, "meters"),
  34622. weight: math.unit(125, "kg"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/lilith/front.svg",
  34626. extra: 1590/1513,
  34627. bottom: 203/1793
  34628. }
  34629. },
  34630. },
  34631. [
  34632. {
  34633. name: "Humanoid",
  34634. height: math.unit(2.4, "meters")
  34635. },
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(6, "meters"),
  34639. default: true
  34640. },
  34641. {
  34642. name: "Largest",
  34643. height: math.unit(55, "meters")
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(8 + 4/12, "feet"),
  34652. weight: math.unit(535, "lb"),
  34653. name: "Front",
  34654. image: {
  34655. source: "./media/characters/beh'kah-bolger/front.svg",
  34656. extra: 1660/1603,
  34657. bottom: 37/1697
  34658. }
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(8 + 4/12, "feet"),
  34665. default: true
  34666. },
  34667. {
  34668. name: "Kaiju",
  34669. height: math.unit(250, "feet")
  34670. },
  34671. {
  34672. name: "Still Growing",
  34673. height: math.unit(10, "miles")
  34674. },
  34675. {
  34676. name: "Continental",
  34677. height: math.unit(5000, "miles")
  34678. },
  34679. {
  34680. name: "Final Form",
  34681. height: math.unit(2500000, "miles")
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(7 + 2/12, "feet"),
  34690. weight: math.unit(230, "kg"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/tatyana-milewska/front.svg",
  34694. extra: 1199/1150,
  34695. bottom: 86/1285
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Normal",
  34702. height: math.unit(7 + 2/12, "feet"),
  34703. default: true
  34704. },
  34705. {
  34706. name: "Big",
  34707. height: math.unit(12, "feet")
  34708. },
  34709. {
  34710. name: "Minimacro",
  34711. height: math.unit(20, "feet")
  34712. },
  34713. {
  34714. name: "Macro",
  34715. height: math.unit(120, "feet")
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(7 + 8/12, "feet"),
  34724. weight: math.unit(152, "kg"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/helen-arri/front.svg",
  34728. extra: 440/423,
  34729. bottom: 14/454
  34730. }
  34731. },
  34732. back: {
  34733. height: math.unit(7 + 8/12, "feet"),
  34734. weight: math.unit(152, "kg"),
  34735. name: "Back",
  34736. image: {
  34737. source: "./media/characters/helen-arri/back.svg",
  34738. extra: 443/426,
  34739. bottom: 8/451
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(7 + 8/12, "feet"),
  34747. default: true
  34748. },
  34749. {
  34750. name: "Big",
  34751. height: math.unit(14, "feet")
  34752. },
  34753. {
  34754. name: "Minimacro",
  34755. height: math.unit(24, "feet")
  34756. },
  34757. {
  34758. name: "Macro",
  34759. height: math.unit(140, "feet")
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(6, "meters"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/ehanu-rehu/front.svg",
  34771. extra: 1800/1800,
  34772. bottom: 59/1859
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(6, "meters"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(7 + 3/12, "feet"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/renholder/front.svg",
  34792. extra: 3096/2960,
  34793. bottom: 250/3346
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal Bat",
  34800. height: math.unit(7 + 3/12, "feet"),
  34801. default: true
  34802. },
  34803. {
  34804. name: "Slightly Tall Bat",
  34805. height: math.unit(100, "feet")
  34806. },
  34807. {
  34808. name: "Big Bat",
  34809. height: math.unit(1000, "feet")
  34810. },
  34811. {
  34812. name: "City-Sized Bat",
  34813. height: math.unit(200000, "feet")
  34814. },
  34815. {
  34816. name: "Bigger Bat",
  34817. height: math.unit(10000, "miles")
  34818. },
  34819. {
  34820. name: "Solar Sized Bat",
  34821. height: math.unit(100, "AU")
  34822. },
  34823. {
  34824. name: "Galactic Bat",
  34825. height: math.unit(200000, "lightyears")
  34826. },
  34827. {
  34828. name: "Universally Known Bat",
  34829. height: math.unit(1, "universe")
  34830. },
  34831. ]
  34832. ))
  34833. characterMakers.push(() => makeCharacter(
  34834. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34835. {
  34836. front: {
  34837. height: math.unit(6 + 11/12, "feet"),
  34838. weight: math.unit(250, "lb"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/cookiecat/front.svg",
  34842. extra: 893/827,
  34843. bottom: 14/907
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Micro",
  34850. height: math.unit(3, "inches")
  34851. },
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(6 + 11/12, "feet"),
  34855. default: true
  34856. },
  34857. {
  34858. name: "Macro",
  34859. height: math.unit(100, "feet")
  34860. },
  34861. {
  34862. name: "Macro+",
  34863. height: math.unit(404, "feet")
  34864. },
  34865. {
  34866. name: "Megamacro",
  34867. height: math.unit(165, "miles")
  34868. },
  34869. {
  34870. name: "Planetary",
  34871. height: math.unit(4600, "miles")
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(10 + 3/12, "feet"),
  34880. weight: math.unit(1500, "lb"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/tux-kusanagi/front.svg",
  34884. extra: 944/840,
  34885. bottom: 39/983
  34886. }
  34887. },
  34888. back: {
  34889. height: math.unit(10 + 3/12, "feet"),
  34890. weight: math.unit(1500, "lb"),
  34891. name: "Back",
  34892. image: {
  34893. source: "./media/characters/tux-kusanagi/back.svg",
  34894. extra: 941/842,
  34895. bottom: 28/969
  34896. }
  34897. },
  34898. rump: {
  34899. height: math.unit(5.25, "feet"),
  34900. name: "Rump",
  34901. image: {
  34902. source: "./media/characters/tux-kusanagi/rump.svg"
  34903. }
  34904. },
  34905. beak: {
  34906. height: math.unit(1.54, "feet"),
  34907. name: "Beak",
  34908. image: {
  34909. source: "./media/characters/tux-kusanagi/beak.svg"
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(10 + 3/12, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(58, "feet"),
  34926. weight: math.unit(200, "tons"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/uzarmazari/front.svg",
  34930. extra: 1575/1455,
  34931. bottom: 152/1727
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(58, "feet"),
  34936. weight: math.unit(200, "tons"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/uzarmazari/back.svg",
  34940. extra: 1585/1510,
  34941. bottom: 157/1742
  34942. }
  34943. },
  34944. head: {
  34945. height: math.unit(26, "feet"),
  34946. name: "Head",
  34947. image: {
  34948. source: "./media/characters/uzarmazari/head.svg"
  34949. }
  34950. },
  34951. },
  34952. [
  34953. {
  34954. name: "Normal",
  34955. height: math.unit(58, "feet"),
  34956. default: true
  34957. },
  34958. ]
  34959. ))
  34960. characterMakers.push(() => makeCharacter(
  34961. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34962. {
  34963. side: {
  34964. height: math.unit(15, "feet"),
  34965. name: "Side",
  34966. image: {
  34967. source: "./media/characters/akitu/side.svg",
  34968. extra: 1421/1321,
  34969. bottom: 157/1578
  34970. }
  34971. },
  34972. front: {
  34973. height: math.unit(15, "feet"),
  34974. name: "Front",
  34975. image: {
  34976. source: "./media/characters/akitu/front.svg",
  34977. extra: 1435/1326,
  34978. bottom: 232/1667
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(15, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34992. {
  34993. front: {
  34994. height: math.unit(10 + 8/12, "feet"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/azalie-croixland/front.svg",
  34998. extra: 1972/1856,
  34999. bottom: 31/2003
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Original Height",
  35006. height: math.unit(5 + 4/12, "feet")
  35007. },
  35008. {
  35009. name: "Normal Height",
  35010. height: math.unit(10 + 8/12, "feet"),
  35011. default: true
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35017. {
  35018. side: {
  35019. height: math.unit(7 + 1/12, "feet"),
  35020. weight: math.unit(245, "lb"),
  35021. name: "Side",
  35022. image: {
  35023. source: "./media/characters/kavus-kazian/side.svg",
  35024. extra: 349/342,
  35025. bottom: 15/364
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(7 + 1/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35039. {
  35040. normalFront: {
  35041. height: math.unit(5 + 11/12, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/moonlight-rose/normal-front.svg",
  35045. extra: 1980/1825,
  35046. bottom: 18/1998
  35047. },
  35048. form: "normal",
  35049. default: true
  35050. },
  35051. normalBack: {
  35052. height: math.unit(5 + 11/12, "feet"),
  35053. name: "Back",
  35054. image: {
  35055. source: "./media/characters/moonlight-rose/normal-back.svg",
  35056. extra: 2010/1839,
  35057. bottom: 10/2020
  35058. },
  35059. form: "normal"
  35060. },
  35061. demonFront: {
  35062. height: math.unit(1.5, "earths"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/moonlight-rose/demon.svg",
  35066. extra: 1400/1294,
  35067. bottom: 45/1445
  35068. },
  35069. form: "demon",
  35070. default: true
  35071. },
  35072. terraFront: {
  35073. height: math.unit(1.5, "earths"),
  35074. name: "Front",
  35075. image: {
  35076. source: "./media/characters/moonlight-rose/terra.svg"
  35077. },
  35078. form: "terra",
  35079. default: true
  35080. },
  35081. jupiterFront: {
  35082. height: math.unit(69911*2, "km"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35086. extra: 1367/1286,
  35087. bottom: 55/1422
  35088. },
  35089. form: "jupiter",
  35090. default: true
  35091. },
  35092. neptuneFront: {
  35093. height: math.unit(24622*2, "feet"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35097. extra: 1851/1712,
  35098. bottom: 0/1851
  35099. },
  35100. form: "neptune",
  35101. default: true
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "\"Natural\" Height",
  35107. height: math.unit(5 + 11/12, "feet"),
  35108. form: "normal"
  35109. },
  35110. {
  35111. name: "Smallest comfortable size",
  35112. height: math.unit(40, "meters"),
  35113. form: "normal"
  35114. },
  35115. {
  35116. name: "Common size",
  35117. height: math.unit(50, "km"),
  35118. form: "normal",
  35119. default: true
  35120. },
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(1.5, "earths"),
  35124. form: "demon",
  35125. default: true
  35126. },
  35127. {
  35128. name: "Universal",
  35129. height: math.unit(15, "universes"),
  35130. form: "demon"
  35131. },
  35132. {
  35133. name: "Earth",
  35134. height: math.unit(1.5, "earths"),
  35135. form: "terra",
  35136. default: true
  35137. },
  35138. {
  35139. name: "Super Earth",
  35140. height: math.unit(67.5, "earths"),
  35141. form: "terra"
  35142. },
  35143. {
  35144. name: "Doesn't fit in a solar system...",
  35145. height: math.unit(1, "galaxy"),
  35146. form: "terra"
  35147. },
  35148. {
  35149. name: "Saturn",
  35150. height: math.unit(58232*2, "km"),
  35151. form: "jupiter"
  35152. },
  35153. {
  35154. name: "Jupiter",
  35155. height: math.unit(69911*2, "km"),
  35156. form: "jupiter",
  35157. default: true
  35158. },
  35159. {
  35160. name: "HD 100546 b",
  35161. height: math.unit(482938, "km"),
  35162. form: "jupiter"
  35163. },
  35164. {
  35165. name: "Enceladus",
  35166. height: math.unit(513*2, "km"),
  35167. form: "neptune"
  35168. },
  35169. {
  35170. name: "Europe",
  35171. height: math.unit(1560*2, "km"),
  35172. form: "neptune"
  35173. },
  35174. {
  35175. name: "Neptune",
  35176. height: math.unit(24622*2, "km"),
  35177. form: "neptune",
  35178. default: true
  35179. },
  35180. {
  35181. name: "CoRoT-9b",
  35182. height: math.unit(75067*2, "km"),
  35183. form: "neptune"
  35184. },
  35185. ],
  35186. {
  35187. "normal": {
  35188. name: "Normal",
  35189. default: true
  35190. },
  35191. "demon": {
  35192. name: "Demon"
  35193. },
  35194. "terra": {
  35195. name: "Terra"
  35196. },
  35197. "jupiter": {
  35198. name: "Jupiter"
  35199. },
  35200. "neptune": {
  35201. name: "Neptune"
  35202. }
  35203. }
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(16, "feet"),
  35210. weight: math.unit(610, "kg"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/huckle/front.svg",
  35214. extra: 1731/1625,
  35215. bottom: 33/1764
  35216. }
  35217. },
  35218. back: {
  35219. height: math.unit(16, "feet"),
  35220. weight: math.unit(610, "kg"),
  35221. name: "Back",
  35222. image: {
  35223. source: "./media/characters/huckle/back.svg",
  35224. extra: 1738/1651,
  35225. bottom: 37/1775
  35226. }
  35227. },
  35228. laughing: {
  35229. height: math.unit(3.75, "feet"),
  35230. name: "Laughing",
  35231. image: {
  35232. source: "./media/characters/huckle/laughing.svg"
  35233. }
  35234. },
  35235. angry: {
  35236. height: math.unit(4.15, "feet"),
  35237. name: "Angry",
  35238. image: {
  35239. source: "./media/characters/huckle/angry.svg"
  35240. }
  35241. },
  35242. },
  35243. [
  35244. {
  35245. name: "Normal",
  35246. height: math.unit(16, "feet"),
  35247. default: true
  35248. },
  35249. {
  35250. name: "Mini Macro",
  35251. height: math.unit(463, "feet")
  35252. },
  35253. {
  35254. name: "Macro",
  35255. height: math.unit(1680, "meters")
  35256. },
  35257. {
  35258. name: "Mega Macro",
  35259. height: math.unit(175, "km")
  35260. },
  35261. {
  35262. name: "Terra Macro",
  35263. height: math.unit(32, "gigameters")
  35264. },
  35265. {
  35266. name: "Multiverse+",
  35267. height: math.unit(2.56e23, "yottameters")
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35273. {
  35274. front: {
  35275. height: math.unit(6 + 9/12, "feet"),
  35276. weight: math.unit(280, "lb"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/candy/front.svg",
  35280. extra: 234/217,
  35281. bottom: 11/245
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Really Small",
  35288. height: math.unit(0.1, "nm")
  35289. },
  35290. {
  35291. name: "Micro",
  35292. height: math.unit(2, "inches")
  35293. },
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(6 + 9/12, "feet"),
  35297. default: true
  35298. },
  35299. {
  35300. name: "Small Macro",
  35301. height: math.unit(69, "feet")
  35302. },
  35303. {
  35304. name: "Macro",
  35305. height: math.unit(160, "feet")
  35306. },
  35307. {
  35308. name: "Megamacro",
  35309. height: math.unit(22000, "miles")
  35310. },
  35311. {
  35312. name: "Gigamacro",
  35313. height: math.unit(50000, "miles")
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(4, "feet"),
  35322. weight: math.unit(90, "lb"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/joey-mcdonald/front.svg",
  35326. extra: 1059/852,
  35327. bottom: 33/1092
  35328. }
  35329. },
  35330. back: {
  35331. height: math.unit(4, "feet"),
  35332. weight: math.unit(90, "lb"),
  35333. name: "Back",
  35334. image: {
  35335. source: "./media/characters/joey-mcdonald/back.svg",
  35336. extra: 1077/879,
  35337. bottom: 5/1082
  35338. }
  35339. },
  35340. frontKobold: {
  35341. height: math.unit(4, "feet"),
  35342. weight: math.unit(100, "lb"),
  35343. name: "Front-kobold",
  35344. image: {
  35345. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35346. extra: 1480/1367,
  35347. bottom: 0/1480
  35348. }
  35349. },
  35350. backKobold: {
  35351. height: math.unit(4, "feet"),
  35352. weight: math.unit(100, "lb"),
  35353. name: "Back-kobold",
  35354. image: {
  35355. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35356. extra: 1449/1361,
  35357. bottom: 0/1449
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(4, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(12 + 6/12, "feet"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/kass-lockheed/front.svg",
  35377. extra: 354/343,
  35378. bottom: 9/363
  35379. }
  35380. },
  35381. back: {
  35382. height: math.unit(12 + 6/12, "feet"),
  35383. name: "Back",
  35384. image: {
  35385. source: "./media/characters/kass-lockheed/back.svg",
  35386. extra: 364/352,
  35387. bottom: 3/367
  35388. }
  35389. },
  35390. dick: {
  35391. height: math.unit(3.12, "feet"),
  35392. name: "Dick",
  35393. image: {
  35394. source: "./media/characters/kass-lockheed/dick.svg"
  35395. }
  35396. },
  35397. head: {
  35398. height: math.unit(2.6, "feet"),
  35399. name: "Head",
  35400. image: {
  35401. source: "./media/characters/kass-lockheed/head.svg"
  35402. }
  35403. },
  35404. bleh: {
  35405. height: math.unit(2.85, "feet"),
  35406. name: "Bleh",
  35407. image: {
  35408. source: "./media/characters/kass-lockheed/bleh.svg"
  35409. }
  35410. },
  35411. smug: {
  35412. height: math.unit(2.85, "feet"),
  35413. name: "Smug",
  35414. image: {
  35415. source: "./media/characters/kass-lockheed/smug.svg"
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(12 + 6/12, "feet"),
  35423. default: true
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35429. {
  35430. front: {
  35431. height: math.unit(6 + 2/12, "feet"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/taylor/front.svg",
  35435. extra: 639/495,
  35436. bottom: 12/651
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(6 + 2/12, "feet"),
  35444. default: true
  35445. },
  35446. {
  35447. name: "Big",
  35448. height: math.unit(15, "feet")
  35449. },
  35450. {
  35451. name: "Lorg",
  35452. height: math.unit(80, "feet")
  35453. },
  35454. {
  35455. name: "Too Lorg",
  35456. height: math.unit(120, "feet")
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(15, "feet"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/kaizer/front.svg",
  35468. extra: 1612/1436,
  35469. bottom: 43/1655
  35470. }
  35471. },
  35472. },
  35473. [
  35474. {
  35475. name: "Normal",
  35476. height: math.unit(15, "feet"),
  35477. default: true
  35478. },
  35479. ]
  35480. ))
  35481. characterMakers.push(() => makeCharacter(
  35482. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35483. {
  35484. front: {
  35485. height: math.unit(2, "feet"),
  35486. weight: math.unit(30, "lb"),
  35487. name: "Front",
  35488. image: {
  35489. source: "./media/characters/sandy/front.svg",
  35490. extra: 1439/1307,
  35491. bottom: 194/1633
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(2, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(3, "feet"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/mellvi/front.svg",
  35511. extra: 1831/1630,
  35512. bottom: 58/1889
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(3, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(5 + 11/12, "feet"),
  35529. weight: math.unit(200, "lb"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/shirou/front.svg",
  35533. extra: 2491/2383,
  35534. bottom: 189/2680
  35535. }
  35536. },
  35537. back: {
  35538. height: math.unit(5 + 11/12, "feet"),
  35539. weight: math.unit(200, "lb"),
  35540. name: "Back",
  35541. image: {
  35542. source: "./media/characters/shirou/back.svg",
  35543. extra: 2554/2450,
  35544. bottom: 76/2630
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(5 + 11/12, "feet"),
  35552. default: true
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35558. {
  35559. front: {
  35560. height: math.unit(6 + 3/12, "feet"),
  35561. weight: math.unit(177, "lb"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/noryu/front.svg",
  35565. extra: 973/885,
  35566. bottom: 10/983
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(6 + 3/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(5 + 6/12, "feet"),
  35583. weight: math.unit(170, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/mevolas-rubenido/front.svg",
  35587. extra: 2109/1901,
  35588. bottom: 96/2205
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(5 + 6/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(100, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/dee/front.svg",
  35608. extra: 2153/2036,
  35609. bottom: 59/2212
  35610. }
  35611. },
  35612. back: {
  35613. height: math.unit(100, "feet"),
  35614. name: "Back",
  35615. image: {
  35616. source: "./media/characters/dee/back.svg",
  35617. extra: 2183/2058,
  35618. bottom: 75/2258
  35619. }
  35620. },
  35621. foot: {
  35622. height: math.unit(19.43, "feet"),
  35623. name: "Foot",
  35624. image: {
  35625. source: "./media/characters/dee/foot.svg"
  35626. }
  35627. },
  35628. hoof: {
  35629. height: math.unit(20.6, "feet"),
  35630. name: "Hoof",
  35631. image: {
  35632. source: "./media/characters/dee/hoof.svg"
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Macro",
  35639. height: math.unit(100, "feet"),
  35640. default: true
  35641. },
  35642. ]
  35643. ))
  35644. characterMakers.push(() => makeCharacter(
  35645. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35646. {
  35647. front: {
  35648. height: math.unit(5 + 6/12, "feet"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/teh/front.svg",
  35652. extra: 1002/847,
  35653. bottom: 62/1064
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(5 + 6/12, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35667. {
  35668. side: {
  35669. height: math.unit(6 + 1/12, "feet"),
  35670. weight: math.unit(204, "lb"),
  35671. name: "Side",
  35672. image: {
  35673. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35674. extra: 974/775,
  35675. bottom: 169/1143
  35676. }
  35677. },
  35678. sitting: {
  35679. height: math.unit(6 + 2/12, "feet"),
  35680. weight: math.unit(204, "lb"),
  35681. name: "Sitting",
  35682. image: {
  35683. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35684. extra: 1175/964,
  35685. bottom: 378/1553
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(6 + 1/12, "feet"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35699. {
  35700. front: {
  35701. height: math.unit(6, "inches"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/tululi/front.svg",
  35705. extra: 1997/1876,
  35706. bottom: 20/2017
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(6, "inches"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(4 + 1/12, "feet"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/star/front.svg",
  35726. extra: 1493/1189,
  35727. bottom: 48/1541
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(4 + 1/12, "feet"),
  35735. default: true
  35736. },
  35737. ]
  35738. ))
  35739. characterMakers.push(() => makeCharacter(
  35740. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35741. {
  35742. front: {
  35743. height: math.unit(6 + 3/12, "feet"),
  35744. name: "Front",
  35745. image: {
  35746. source: "./media/characters/comet/front.svg",
  35747. extra: 1681/1462,
  35748. bottom: 26/1707
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(6 + 3/12, "feet"),
  35756. default: true
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(950, "feet"),
  35765. name: "Front",
  35766. image: {
  35767. source: "./media/characters/vortex/front.svg",
  35768. extra: 1497/1434,
  35769. bottom: 56/1553
  35770. }
  35771. },
  35772. maw: {
  35773. height: math.unit(285, "feet"),
  35774. name: "Maw",
  35775. image: {
  35776. source: "./media/characters/vortex/maw.svg"
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Macro",
  35783. height: math.unit(950, "feet"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(600, "feet"),
  35793. weight: math.unit(0.02, "grams"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/doodle/front.svg",
  35797. extra: 1578/1413,
  35798. bottom: 37/1615
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Macro",
  35805. height: math.unit(600, "feet"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(6 + 6/12, "feet"),
  35815. name: "Front",
  35816. image: {
  35817. source: "./media/characters/jai/front.svg",
  35818. extra: 1645/1534,
  35819. bottom: 115/1760
  35820. }
  35821. },
  35822. },
  35823. [
  35824. {
  35825. name: "Normal",
  35826. height: math.unit(6 + 6/12, "feet"),
  35827. default: true
  35828. },
  35829. ]
  35830. ))
  35831. characterMakers.push(() => makeCharacter(
  35832. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35833. {
  35834. front: {
  35835. height: math.unit(6 + 8/12, "feet"),
  35836. name: "Front",
  35837. image: {
  35838. source: "./media/characters/pixel/front.svg",
  35839. extra: 1900/1735,
  35840. bottom: 63/1963
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(6 + 8/12, "feet"),
  35848. default: true
  35849. },
  35850. ]
  35851. ))
  35852. characterMakers.push(() => makeCharacter(
  35853. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35854. {
  35855. back: {
  35856. height: math.unit(4 + 1/12, "feet"),
  35857. weight: math.unit(75, "lb"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/rhett/back.svg",
  35861. extra: 930/878,
  35862. bottom: 25/955
  35863. }
  35864. },
  35865. front: {
  35866. height: math.unit(4 + 1/12, "feet"),
  35867. weight: math.unit(75, "lb"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/rhett/front.svg",
  35871. extra: 1682/1586,
  35872. bottom: 92/1774
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Micro",
  35879. height: math.unit(8, "inches")
  35880. },
  35881. {
  35882. name: "Tiny",
  35883. height: math.unit(2, "feet")
  35884. },
  35885. {
  35886. name: "Normal",
  35887. height: math.unit(4 + 1/12, "feet"),
  35888. default: true
  35889. },
  35890. ]
  35891. ))
  35892. characterMakers.push(() => makeCharacter(
  35893. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35894. {
  35895. front: {
  35896. height: math.unit(3 + 3/12, "feet"),
  35897. name: "Front",
  35898. image: {
  35899. source: "./media/characters/penny/front.svg",
  35900. extra: 1406/1311,
  35901. bottom: 26/1432
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(3 + 3/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(4 + 11/12, "feet"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/monty/front.svg",
  35921. extra: 1479/1209,
  35922. bottom: 0/1479
  35923. }
  35924. },
  35925. },
  35926. [
  35927. {
  35928. name: "Normal",
  35929. height: math.unit(4 + 11/12, "feet"),
  35930. default: true
  35931. },
  35932. ]
  35933. ))
  35934. characterMakers.push(() => makeCharacter(
  35935. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35936. {
  35937. front: {
  35938. height: math.unit(8 + 4/12, "feet"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/sterling/front.svg",
  35942. extra: 1420/1236,
  35943. bottom: 27/1447
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Normal",
  35950. height: math.unit(8 + 4/12, "feet"),
  35951. default: true
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35957. {
  35958. front: {
  35959. height: math.unit(15, "feet"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/marble/front.svg",
  35963. extra: 973/937,
  35964. bottom: 32/1005
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(15, "feet"),
  35972. default: true
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35978. {
  35979. front: {
  35980. height: math.unit(3, "inches"),
  35981. name: "Front",
  35982. image: {
  35983. source: "./media/characters/powder/front.svg",
  35984. extra: 1504/1334,
  35985. bottom: 518/2022
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(3, "inches"),
  35993. default: true
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35999. {
  36000. front: {
  36001. height: math.unit(4 + 5/12, "feet"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/joey-raccoon/front.svg",
  36005. extra: 1273/1197,
  36006. bottom: 0/1273
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Normal",
  36013. height: math.unit(4 + 5/12, "feet"),
  36014. default: true
  36015. },
  36016. ]
  36017. ))
  36018. characterMakers.push(() => makeCharacter(
  36019. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36020. {
  36021. front: {
  36022. height: math.unit(8 + 4/12, "feet"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/vick/front.svg",
  36026. extra: 2187/2118,
  36027. bottom: 47/2234
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Normal",
  36034. height: math.unit(8 + 4/12, "feet"),
  36035. default: true
  36036. },
  36037. ]
  36038. ))
  36039. characterMakers.push(() => makeCharacter(
  36040. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36041. {
  36042. front: {
  36043. height: math.unit(5 + 5/12, "feet"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/mitsy/front.svg",
  36047. extra: 1842/1695,
  36048. bottom: 0/1842
  36049. }
  36050. },
  36051. },
  36052. [
  36053. {
  36054. name: "Normal",
  36055. height: math.unit(5 + 5/12, "feet"),
  36056. default: true
  36057. },
  36058. ]
  36059. ))
  36060. characterMakers.push(() => makeCharacter(
  36061. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36062. {
  36063. front: {
  36064. height: math.unit(6 + 3/12, "feet"),
  36065. name: "Front",
  36066. image: {
  36067. source: "./media/characters/silvy/front.svg",
  36068. extra: 1995/1836,
  36069. bottom: 225/2220
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(6 + 3/12, "feet"),
  36077. default: true
  36078. },
  36079. ]
  36080. ))
  36081. characterMakers.push(() => makeCharacter(
  36082. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36083. {
  36084. front: {
  36085. height: math.unit(3 + 8/12, "feet"),
  36086. name: "Front",
  36087. image: {
  36088. source: "./media/characters/rodney/front.svg",
  36089. extra: 1956/1747,
  36090. bottom: 31/1987
  36091. }
  36092. },
  36093. frontDressed: {
  36094. height: math.unit(2.9, "feet"),
  36095. name: "Front (Dressed)",
  36096. image: {
  36097. source: "./media/characters/rodney/front-dressed.svg",
  36098. extra: 1382/1241,
  36099. bottom: 385/1767
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Normal",
  36106. height: math.unit(3 + 8/12, "feet"),
  36107. default: true
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(5 + 9/12, "feet"),
  36116. weight: math.unit(194, "lbs"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/zakail-sudekai/front.svg",
  36120. extra: 2696/2533,
  36121. bottom: 248/2944
  36122. }
  36123. },
  36124. maw: {
  36125. height: math.unit(1.35, "feet"),
  36126. name: "Maw",
  36127. image: {
  36128. source: "./media/characters/zakail-sudekai/maw.svg"
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(5 + 9/12, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(8 + 4/12, "feet"),
  36145. weight: math.unit(1200, "lb"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/eleanor/front.svg",
  36149. extra: 1226/1192,
  36150. bottom: 52/1278
  36151. }
  36152. },
  36153. back: {
  36154. height: math.unit(8 + 4/12, "feet"),
  36155. weight: math.unit(1200, "lb"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/eleanor/back.svg",
  36159. extra: 1242/1184,
  36160. bottom: 60/1302
  36161. }
  36162. },
  36163. head: {
  36164. height: math.unit(2.62, "feet"),
  36165. name: "Head",
  36166. image: {
  36167. source: "./media/characters/eleanor/head.svg"
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(8 + 4/12, "feet"),
  36175. default: true
  36176. },
  36177. ]
  36178. ))
  36179. characterMakers.push(() => makeCharacter(
  36180. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36181. {
  36182. front: {
  36183. height: math.unit(8 + 4/12, "feet"),
  36184. weight: math.unit(750, "lb"),
  36185. name: "Front",
  36186. image: {
  36187. source: "./media/characters/tanya/front.svg",
  36188. extra: 1749/1615,
  36189. bottom: 33/1782
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(8 + 4/12, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(5, "feet"),
  36206. weight: math.unit(225, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/cindy/front.svg",
  36210. extra: 1320/1250,
  36211. bottom: 42/1362
  36212. }
  36213. },
  36214. frontDressed: {
  36215. height: math.unit(5, "feet"),
  36216. weight: math.unit(225, "lb"),
  36217. name: "Front (Dressed)",
  36218. image: {
  36219. source: "./media/characters/cindy/front-dressed.svg",
  36220. extra: 1320/1250,
  36221. bottom: 42/1362
  36222. }
  36223. },
  36224. back: {
  36225. height: math.unit(5, "feet"),
  36226. weight: math.unit(225, "lb"),
  36227. name: "Back",
  36228. image: {
  36229. source: "./media/characters/cindy/back.svg",
  36230. extra: 1384/1346,
  36231. bottom: 14/1398
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(5, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(6 + 9/12, "feet"),
  36248. weight: math.unit(440, "lb"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/wilbur-owen/front.svg",
  36252. extra: 1575/1448,
  36253. bottom: 72/1647
  36254. }
  36255. },
  36256. back: {
  36257. height: math.unit(6 + 9/12, "feet"),
  36258. weight: math.unit(440, "lb"),
  36259. name: "Back",
  36260. image: {
  36261. source: "./media/characters/wilbur-owen/back.svg",
  36262. extra: 1578/1445,
  36263. bottom: 36/1614
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(6 + 9/12, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(6 + 5/12, "feet"),
  36280. weight: math.unit(650, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/keegan/front.svg",
  36284. extra: 2387/2198,
  36285. bottom: 33/2420
  36286. }
  36287. },
  36288. side: {
  36289. height: math.unit(6 + 5/12, "feet"),
  36290. weight: math.unit(650, "lb"),
  36291. name: "Side",
  36292. image: {
  36293. source: "./media/characters/keegan/side.svg",
  36294. extra: 2390/2202,
  36295. bottom: 47/2437
  36296. }
  36297. },
  36298. back: {
  36299. height: math.unit(6 + 5/12, "feet"),
  36300. weight: math.unit(650, "lb"),
  36301. name: "Back",
  36302. image: {
  36303. source: "./media/characters/keegan/back.svg",
  36304. extra: 2418/2268,
  36305. bottom: 15/2433
  36306. }
  36307. },
  36308. frontSfw: {
  36309. height: math.unit(6 + 5/12, "feet"),
  36310. weight: math.unit(650, "lb"),
  36311. name: "Front (SFW)",
  36312. image: {
  36313. source: "./media/characters/keegan/front-sfw.svg",
  36314. extra: 2387/2198,
  36315. bottom: 33/2420
  36316. }
  36317. },
  36318. beans: {
  36319. height: math.unit(1.85, "feet"),
  36320. name: "Beans",
  36321. image: {
  36322. source: "./media/characters/keegan/beans.svg"
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(6 + 5/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(9, "feet"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/colton/front.svg",
  36342. extra: 1589/1326,
  36343. bottom: 139/1728
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(9, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(2 + 9/12, "feet"),
  36360. name: "Front",
  36361. image: {
  36362. source: "./media/characters/bora/front.svg",
  36363. extra: 1265/1250,
  36364. bottom: 24/1289
  36365. }
  36366. },
  36367. },
  36368. [
  36369. {
  36370. name: "Normal",
  36371. height: math.unit(2 + 9/12, "feet"),
  36372. default: true
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(8, "feet"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/myu-myu/front.svg",
  36384. extra: 1949/1857,
  36385. bottom: 90/2039
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(8, "feet"),
  36393. default: true
  36394. },
  36395. {
  36396. name: "Big",
  36397. height: math.unit(15, "feet")
  36398. },
  36399. {
  36400. name: "BIG",
  36401. height: math.unit(25, "feet")
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36407. {
  36408. side: {
  36409. height: math.unit(7 + 5/12, "feet"),
  36410. weight: math.unit(2800, "lb"),
  36411. name: "Side",
  36412. image: {
  36413. source: "./media/characters/haloren/side.svg",
  36414. extra: 1793/409,
  36415. bottom: 59/1852
  36416. }
  36417. },
  36418. frontPaw: {
  36419. height: math.unit(2.36, "feet"),
  36420. name: "Front paw",
  36421. image: {
  36422. source: "./media/characters/haloren/front-paw.svg"
  36423. }
  36424. },
  36425. hindPaw: {
  36426. height: math.unit(3.18, "feet"),
  36427. name: "Hind paw",
  36428. image: {
  36429. source: "./media/characters/haloren/hind-paw.svg"
  36430. }
  36431. },
  36432. maw: {
  36433. height: math.unit(5.05, "feet"),
  36434. name: "Maw",
  36435. image: {
  36436. source: "./media/characters/haloren/maw.svg"
  36437. }
  36438. },
  36439. dick: {
  36440. height: math.unit(2.90, "feet"),
  36441. name: "Dick",
  36442. image: {
  36443. source: "./media/characters/haloren/dick.svg"
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(7 + 5/12, "feet"),
  36451. default: true
  36452. },
  36453. {
  36454. name: "Enhanced",
  36455. height: math.unit(14 + 3/12, "feet")
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36461. {
  36462. front: {
  36463. height: math.unit(171, "cm"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/kimmy/front.svg",
  36467. extra: 1491/1435,
  36468. bottom: 53/1544
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Small",
  36475. height: math.unit(9, "cm")
  36476. },
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(171, "cm"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(8, "feet"),
  36489. weight: math.unit(300, "lb"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/galeboomer/front.svg",
  36493. extra: 4651/4415,
  36494. bottom: 162/4813
  36495. }
  36496. },
  36497. back: {
  36498. height: math.unit(8, "feet"),
  36499. weight: math.unit(300, "lb"),
  36500. name: "Back",
  36501. image: {
  36502. source: "./media/characters/galeboomer/back.svg",
  36503. extra: 4544/4314,
  36504. bottom: 16/4560
  36505. }
  36506. },
  36507. frontAlt: {
  36508. height: math.unit(8, "feet"),
  36509. weight: math.unit(300, "lb"),
  36510. name: "Front (Alt)",
  36511. image: {
  36512. source: "./media/characters/galeboomer/front-alt.svg",
  36513. extra: 4458/4228,
  36514. bottom: 68/4526
  36515. }
  36516. },
  36517. maw: {
  36518. height: math.unit(1.2, "feet"),
  36519. name: "Maw",
  36520. image: {
  36521. source: "./media/characters/galeboomer/maw.svg"
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(8, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(5 + 9/12, "feet"),
  36538. weight: math.unit(120, "lb"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/chyr/front.svg",
  36542. extra: 1323/1254,
  36543. bottom: 63/1386
  36544. }
  36545. },
  36546. back: {
  36547. height: math.unit(5 + 9/12, "feet"),
  36548. weight: math.unit(120, "lb"),
  36549. name: "Back",
  36550. image: {
  36551. source: "./media/characters/chyr/back.svg",
  36552. extra: 1323/1252,
  36553. bottom: 48/1371
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(5 + 9/12, "feet"),
  36561. default: true
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(7, "feet"),
  36570. weight: math.unit(310, "lb"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/solarus/front.svg",
  36574. extra: 2415/2021,
  36575. bottom: 103/2518
  36576. }
  36577. },
  36578. back: {
  36579. height: math.unit(7, "feet"),
  36580. weight: math.unit(310, "lb"),
  36581. name: "Back",
  36582. image: {
  36583. source: "./media/characters/solarus/back.svg",
  36584. extra: 2463/2089,
  36585. bottom: 79/2542
  36586. }
  36587. },
  36588. },
  36589. [
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(7, "feet"),
  36593. default: true
  36594. },
  36595. ]
  36596. ))
  36597. characterMakers.push(() => makeCharacter(
  36598. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36599. {
  36600. front: {
  36601. height: math.unit(16, "feet"),
  36602. name: "Front",
  36603. image: {
  36604. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36605. extra: 1844/1780,
  36606. bottom: 58/1902
  36607. }
  36608. },
  36609. winterCoat: {
  36610. height: math.unit(16, "feet"),
  36611. name: "Winter Coat",
  36612. image: {
  36613. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36614. extra: 1807/1775,
  36615. bottom: 69/1876
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(16, "feet"),
  36623. default: true
  36624. },
  36625. {
  36626. name: "Chicago Size",
  36627. height: math.unit(560, "feet")
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(11 + 6/12, "feet"),
  36636. weight: math.unit(1366, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/lexor/front.svg",
  36640. extra: 1560/1481,
  36641. bottom: 211/1771
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(11 + 6/12, "feet"),
  36646. weight: math.unit(1366, "lb"),
  36647. name: "Back",
  36648. image: {
  36649. source: "./media/characters/lexor/back.svg",
  36650. extra: 1614/1533,
  36651. bottom: 76/1690
  36652. }
  36653. },
  36654. maw: {
  36655. height: math.unit(3, "feet"),
  36656. name: "Maw",
  36657. image: {
  36658. source: "./media/characters/lexor/maw.svg"
  36659. }
  36660. },
  36661. dick: {
  36662. height: math.unit(2.59, "feet"),
  36663. name: "Dick",
  36664. image: {
  36665. source: "./media/characters/lexor/dick.svg"
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(11 + 6/12, "feet"),
  36673. default: true
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(5 + 8/12, "feet"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/magnum/front.svg",
  36685. extra: 942/855,
  36686. bottom: 26/968
  36687. }
  36688. },
  36689. },
  36690. [
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(5 + 8/12, "feet"),
  36694. default: true
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(18 + 4/12, "feet"),
  36703. weight: math.unit(1500, "kg"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/solas-sharpsman/front.svg",
  36707. extra: 1698/1589,
  36708. bottom: 0/1698
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(18 + 4/12, "feet"),
  36716. default: true
  36717. },
  36718. ]
  36719. ))
  36720. characterMakers.push(() => makeCharacter(
  36721. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36722. {
  36723. front: {
  36724. height: math.unit(5 + 5/12, "feet"),
  36725. weight: math.unit(180, "lb"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/october/front.svg",
  36729. extra: 1800/1650,
  36730. bottom: 0/1800
  36731. }
  36732. },
  36733. frontNsfw: {
  36734. height: math.unit(5 + 5/12, "feet"),
  36735. weight: math.unit(180, "lb"),
  36736. name: "Front (NSFW)",
  36737. image: {
  36738. source: "./media/characters/october/front-nsfw.svg",
  36739. extra: 1392/1307,
  36740. bottom: 42/1434
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(5 + 5/12, "feet"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(8 + 6/12, "feet"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/essynkardi/front.svg",
  36760. extra: 1914/1846,
  36761. bottom: 22/1936
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(8 + 6/12, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(6 + 6/12, "feet"),
  36778. weight: math.unit(7, "lb"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/icky/front.svg",
  36782. extra: 813/782,
  36783. bottom: 66/879
  36784. }
  36785. },
  36786. back: {
  36787. height: math.unit(6 + 6/12, "feet"),
  36788. weight: math.unit(7, "lb"),
  36789. name: "Back",
  36790. image: {
  36791. source: "./media/characters/icky/back.svg",
  36792. extra: 754/735,
  36793. bottom: 56/810
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Normal",
  36800. height: math.unit(6 + 6/12, "feet"),
  36801. default: true
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(15, "feet"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/rojas/front.svg",
  36813. extra: 1462/1408,
  36814. bottom: 95/1557
  36815. }
  36816. },
  36817. back: {
  36818. height: math.unit(15, "feet"),
  36819. name: "Back",
  36820. image: {
  36821. source: "./media/characters/rojas/back.svg",
  36822. extra: 1023/954,
  36823. bottom: 28/1051
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(15, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36837. {
  36838. frontHuman: {
  36839. height: math.unit(5 + 7/12, "feet"),
  36840. name: "Front (Human)",
  36841. image: {
  36842. source: "./media/characters/alek-dryagan/front-human.svg",
  36843. extra: 1687/1667,
  36844. bottom: 69/1756
  36845. }
  36846. },
  36847. backHuman: {
  36848. height: math.unit(5 + 7/12, "feet"),
  36849. name: "Back (Human)",
  36850. image: {
  36851. source: "./media/characters/alek-dryagan/back-human.svg",
  36852. extra: 1670/1649,
  36853. bottom: 65/1735
  36854. }
  36855. },
  36856. frontDemi: {
  36857. height: math.unit(65, "feet"),
  36858. name: "Front (Demi)",
  36859. image: {
  36860. source: "./media/characters/alek-dryagan/front-demi.svg",
  36861. extra: 1669/1642,
  36862. bottom: 49/1718
  36863. }
  36864. },
  36865. backDemi: {
  36866. height: math.unit(65, "feet"),
  36867. name: "Back (Demi)",
  36868. image: {
  36869. source: "./media/characters/alek-dryagan/back-demi.svg",
  36870. extra: 1658/1637,
  36871. bottom: 40/1698
  36872. }
  36873. },
  36874. mawHuman: {
  36875. height: math.unit(0.3, "feet"),
  36876. name: "Maw (Human)",
  36877. image: {
  36878. source: "./media/characters/alek-dryagan/maw-human.svg"
  36879. }
  36880. },
  36881. mawDemi: {
  36882. height: math.unit(3.8, "feet"),
  36883. name: "Maw (Demi)",
  36884. image: {
  36885. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(5 + 7/12, "feet"),
  36893. default: true
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36899. {
  36900. frontHuman: {
  36901. height: math.unit(5 + 2/12, "feet"),
  36902. name: "Front (Human)",
  36903. image: {
  36904. source: "./media/characters/gen/front-human.svg",
  36905. extra: 1627/1538,
  36906. bottom: 71/1698
  36907. }
  36908. },
  36909. backHuman: {
  36910. height: math.unit(5 + 2/12, "feet"),
  36911. name: "Back (Human)",
  36912. image: {
  36913. source: "./media/characters/gen/back-human.svg",
  36914. extra: 1638/1548,
  36915. bottom: 69/1707
  36916. }
  36917. },
  36918. frontDemi: {
  36919. height: math.unit(5 + 2/12, "feet"),
  36920. name: "Front (Demi)",
  36921. image: {
  36922. source: "./media/characters/gen/front-demi.svg",
  36923. extra: 1627/1538,
  36924. bottom: 71/1698
  36925. }
  36926. },
  36927. backDemi: {
  36928. height: math.unit(5 + 2/12, "feet"),
  36929. name: "Back (Demi)",
  36930. image: {
  36931. source: "./media/characters/gen/back-demi.svg",
  36932. extra: 1638/1548,
  36933. bottom: 69/1707
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(5 + 2/12, "feet"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36947. {
  36948. frontImp: {
  36949. height: math.unit(1 + 11/12, "feet"),
  36950. name: "Front (Imp)",
  36951. image: {
  36952. source: "./media/characters/max-kobold/front-imp.svg",
  36953. extra: 1238/1134,
  36954. bottom: 81/1319
  36955. }
  36956. },
  36957. backImp: {
  36958. height: math.unit(1 + 11/12, "feet"),
  36959. name: "Back (Imp)",
  36960. image: {
  36961. source: "./media/characters/max-kobold/back-imp.svg",
  36962. extra: 1334/1175,
  36963. bottom: 34/1368
  36964. }
  36965. },
  36966. frontDemi: {
  36967. height: math.unit(5 + 9/12, "feet"),
  36968. name: "Front (Demi)",
  36969. image: {
  36970. source: "./media/characters/max-kobold/front-demi.svg",
  36971. extra: 1715/1685,
  36972. bottom: 54/1769
  36973. }
  36974. },
  36975. backDemi: {
  36976. height: math.unit(5 + 9/12, "feet"),
  36977. name: "Back (Demi)",
  36978. image: {
  36979. source: "./media/characters/max-kobold/back-demi.svg",
  36980. extra: 1752/1729,
  36981. bottom: 41/1793
  36982. }
  36983. },
  36984. handImp: {
  36985. height: math.unit(0.45, "feet"),
  36986. name: "Hand (Imp)",
  36987. image: {
  36988. source: "./media/characters/max-kobold/hand.svg"
  36989. }
  36990. },
  36991. pawImp: {
  36992. height: math.unit(0.46, "feet"),
  36993. name: "Paw (Imp)",
  36994. image: {
  36995. source: "./media/characters/max-kobold/paw.svg"
  36996. }
  36997. },
  36998. handDemi: {
  36999. height: math.unit(0.80, "feet"),
  37000. name: "Hand (Demi)",
  37001. image: {
  37002. source: "./media/characters/max-kobold/hand.svg"
  37003. }
  37004. },
  37005. pawDemi: {
  37006. height: math.unit(1.1, "feet"),
  37007. name: "Paw (Demi)",
  37008. image: {
  37009. source: "./media/characters/max-kobold/paw.svg"
  37010. }
  37011. },
  37012. headImp: {
  37013. height: math.unit(1.33, "feet"),
  37014. name: "Head (Imp)",
  37015. image: {
  37016. source: "./media/characters/max-kobold/head-imp.svg"
  37017. }
  37018. },
  37019. mawImp: {
  37020. height: math.unit(0.75, "feet"),
  37021. name: "Maw (Imp)",
  37022. image: {
  37023. source: "./media/characters/max-kobold/maw-imp.svg"
  37024. }
  37025. },
  37026. mawDemi: {
  37027. height: math.unit(0.42, "feet"),
  37028. name: "Maw (Demi)",
  37029. image: {
  37030. source: "./media/characters/max-kobold/maw-demi.svg"
  37031. }
  37032. },
  37033. },
  37034. [
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(1 + 11/12, "feet"),
  37038. default: true
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(7 + 5/12, "feet"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/carbon/front.svg",
  37050. extra: 1754/1689,
  37051. bottom: 65/1819
  37052. }
  37053. },
  37054. back: {
  37055. height: math.unit(7 + 5/12, "feet"),
  37056. name: "Back",
  37057. image: {
  37058. source: "./media/characters/carbon/back.svg",
  37059. extra: 1762/1695,
  37060. bottom: 24/1786
  37061. }
  37062. },
  37063. frontGigantamax: {
  37064. height: math.unit(150, "feet"),
  37065. name: "Front (Gigantamax)",
  37066. image: {
  37067. source: "./media/characters/carbon/front-gigantamax.svg",
  37068. extra: 1826/1669,
  37069. bottom: 59/1885
  37070. }
  37071. },
  37072. backGigantamax: {
  37073. height: math.unit(150, "feet"),
  37074. name: "Back (Gigantamax)",
  37075. image: {
  37076. source: "./media/characters/carbon/back-gigantamax.svg",
  37077. extra: 1796/1653,
  37078. bottom: 53/1849
  37079. }
  37080. },
  37081. maw: {
  37082. height: math.unit(0.48, "feet"),
  37083. name: "Maw",
  37084. image: {
  37085. source: "./media/characters/carbon/maw.svg"
  37086. }
  37087. },
  37088. mawGigantamax: {
  37089. height: math.unit(7.5, "feet"),
  37090. name: "Maw (Gigantamax)",
  37091. image: {
  37092. source: "./media/characters/carbon/maw-gigantamax.svg"
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(7 + 5/12, "feet"),
  37100. default: true
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(6, "feet"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/maverick/front.svg",
  37112. extra: 1672/1661,
  37113. bottom: 85/1757
  37114. }
  37115. },
  37116. back: {
  37117. height: math.unit(6, "feet"),
  37118. name: "Back",
  37119. image: {
  37120. source: "./media/characters/maverick/back.svg",
  37121. extra: 1642/1631,
  37122. bottom: 38/1680
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(6, "feet"),
  37130. default: true
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(15, "feet"),
  37139. weight: math.unit(615, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/grockle/front.svg",
  37143. extra: 1535/1427,
  37144. bottom: 56/1591
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(15, "feet"),
  37152. default: true
  37153. },
  37154. {
  37155. name: "Large",
  37156. height: math.unit(150, "feet")
  37157. },
  37158. {
  37159. name: "Macro",
  37160. height: math.unit(1876, "feet")
  37161. },
  37162. {
  37163. name: "Mega Macro",
  37164. height: math.unit(121940, "feet")
  37165. },
  37166. {
  37167. name: "Giga Macro",
  37168. height: math.unit(750, "km")
  37169. },
  37170. {
  37171. name: "Tera Macro",
  37172. height: math.unit(750000, "km")
  37173. },
  37174. {
  37175. name: "Galactic",
  37176. height: math.unit(1.4e5, "km")
  37177. },
  37178. {
  37179. name: "Godlike",
  37180. height: math.unit(9.8e280, "galaxies")
  37181. },
  37182. ]
  37183. ))
  37184. characterMakers.push(() => makeCharacter(
  37185. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37186. {
  37187. front: {
  37188. height: math.unit(11, "meters"),
  37189. weight: math.unit(20, "tonnes"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/alistair/front.svg",
  37193. extra: 1265/1009,
  37194. bottom: 93/1358
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(11, "meters"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(5 + 8/12, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/haruka/front.svg",
  37214. extra: 2012/1952,
  37215. bottom: 0/2012
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(5 + 8/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37229. {
  37230. back: {
  37231. height: math.unit(9, "feet"),
  37232. name: "Back",
  37233. image: {
  37234. source: "./media/characters/vivian-sylveon/back.svg",
  37235. extra: 1853/1714,
  37236. bottom: 0/1853
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(9, "feet"),
  37244. default: true
  37245. },
  37246. {
  37247. name: "Macro",
  37248. height: math.unit(500, "feet")
  37249. },
  37250. {
  37251. name: "Megamacro",
  37252. height: math.unit(600, "miles")
  37253. },
  37254. {
  37255. name: "Gigamacro",
  37256. height: math.unit(30000, "miles")
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37262. {
  37263. anthro: {
  37264. height: math.unit(5 + 10/12, "feet"),
  37265. weight: math.unit(100, "lb"),
  37266. name: "Anthro",
  37267. image: {
  37268. source: "./media/characters/daiki/anthro.svg",
  37269. extra: 1115/1027,
  37270. bottom: 69/1184
  37271. }
  37272. },
  37273. feral: {
  37274. height: math.unit(200, "feet"),
  37275. name: "Feral",
  37276. image: {
  37277. source: "./media/characters/daiki/feral.svg",
  37278. extra: 1256/313,
  37279. bottom: 39/1295
  37280. }
  37281. },
  37282. feralHead: {
  37283. height: math.unit(171, "feet"),
  37284. name: "Feral Head",
  37285. image: {
  37286. source: "./media/characters/daiki/feral-head.svg"
  37287. }
  37288. },
  37289. manaDragon: {
  37290. height: math.unit(170, "meters"),
  37291. name: "Mana-dragon",
  37292. image: {
  37293. source: "./media/characters/daiki/mana-dragon.svg",
  37294. extra: 763/420,
  37295. bottom: 97/860
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(5 + 10/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37309. {
  37310. fullyEquippedFront: {
  37311. height: math.unit(3 + 1/12, "feet"),
  37312. weight: math.unit(24, "lb"),
  37313. name: "Fully Equipped (Front)",
  37314. image: {
  37315. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37316. extra: 687/605,
  37317. bottom: 18/705
  37318. }
  37319. },
  37320. fullyEquippedBack: {
  37321. height: math.unit(3 + 1/12, "feet"),
  37322. weight: math.unit(24, "lb"),
  37323. name: "Fully Equipped (Back)",
  37324. image: {
  37325. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37326. extra: 689/590,
  37327. bottom: 18/707
  37328. }
  37329. },
  37330. dailyWear: {
  37331. height: math.unit(3 + 1/12, "feet"),
  37332. weight: math.unit(24, "lb"),
  37333. name: "Daily Wear",
  37334. image: {
  37335. source: "./media/characters/tea-spot/daily-wear.svg",
  37336. extra: 701/620,
  37337. bottom: 21/722
  37338. }
  37339. },
  37340. maidWork: {
  37341. height: math.unit(3 + 1/12, "feet"),
  37342. weight: math.unit(24, "lb"),
  37343. name: "Maid Work",
  37344. image: {
  37345. source: "./media/characters/tea-spot/maid-work.svg",
  37346. extra: 693/609,
  37347. bottom: 15/708
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(3 + 1/12, "feet"),
  37355. default: true
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(175, "cm"),
  37364. weight: math.unit(75, "kg"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/chee/front.svg",
  37368. extra: 1796/1740,
  37369. bottom: 40/1836
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Micro-Micro",
  37376. height: math.unit(1, "nm")
  37377. },
  37378. {
  37379. name: "Micro-erst",
  37380. height: math.unit(1, "micrometer")
  37381. },
  37382. {
  37383. name: "Micro-er",
  37384. height: math.unit(1, "cm")
  37385. },
  37386. {
  37387. name: "Normal",
  37388. height: math.unit(175, "cm"),
  37389. default: true
  37390. },
  37391. {
  37392. name: "Macro",
  37393. height: math.unit(100, "m")
  37394. },
  37395. {
  37396. name: "Macro-er",
  37397. height: math.unit(1, "km")
  37398. },
  37399. {
  37400. name: "Macro-erst",
  37401. height: math.unit(10, "km")
  37402. },
  37403. {
  37404. name: "Macro-Macro",
  37405. height: math.unit(100, "km")
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(11 + 9/12, "feet"),
  37414. weight: math.unit(935, "lb"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/kingsley/front.svg",
  37418. extra: 1803/1674,
  37419. bottom: 127/1930
  37420. }
  37421. },
  37422. frontNude: {
  37423. height: math.unit(11 + 9/12, "feet"),
  37424. weight: math.unit(935, "lb"),
  37425. name: "Front (Nude)",
  37426. image: {
  37427. source: "./media/characters/kingsley/front-nude.svg",
  37428. extra: 1803/1674,
  37429. bottom: 127/1930
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(11 + 9/12, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37443. {
  37444. side: {
  37445. height: math.unit(9, "feet"),
  37446. name: "Side",
  37447. image: {
  37448. source: "./media/characters/rymel/side.svg",
  37449. extra: 792/469,
  37450. bottom: 121/913
  37451. }
  37452. },
  37453. maw: {
  37454. height: math.unit(2.4, "meters"),
  37455. name: "Maw",
  37456. image: {
  37457. source: "./media/characters/rymel/maw.svg"
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "House Drake",
  37464. height: math.unit(2, "feet")
  37465. },
  37466. {
  37467. name: "Reduced",
  37468. height: math.unit(4.5, "feet")
  37469. },
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(9, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(1.74, "meters"),
  37482. weight: math.unit(55, "kg"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/rubus/front.svg",
  37486. extra: 1894/1742,
  37487. bottom: 44/1938
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(1.74, "meters"),
  37495. default: true
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37501. {
  37502. front: {
  37503. height: math.unit(5 + 2/12, "feet"),
  37504. weight: math.unit(112, "lb"),
  37505. name: "Front",
  37506. image: {
  37507. source: "./media/characters/cassie-kingston/front.svg",
  37508. extra: 1438/1390,
  37509. bottom: 47/1485
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(5 + 2/12, "feet"),
  37517. default: true
  37518. },
  37519. {
  37520. name: "Macro",
  37521. height: math.unit(128, "feet")
  37522. },
  37523. {
  37524. name: "Megamacro",
  37525. height: math.unit(2.56, "miles")
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37531. {
  37532. front: {
  37533. height: math.unit(7, "feet"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/fox/front.svg",
  37537. extra: 1798/1703,
  37538. bottom: 55/1853
  37539. }
  37540. },
  37541. back: {
  37542. height: math.unit(7, "feet"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/fox/back.svg",
  37546. extra: 1748/1649,
  37547. bottom: 32/1780
  37548. }
  37549. },
  37550. head: {
  37551. height: math.unit(1.95, "feet"),
  37552. name: "Head",
  37553. image: {
  37554. source: "./media/characters/fox/head.svg"
  37555. }
  37556. },
  37557. dick: {
  37558. height: math.unit(1.33, "feet"),
  37559. name: "Dick",
  37560. image: {
  37561. source: "./media/characters/fox/dick.svg"
  37562. }
  37563. },
  37564. foot: {
  37565. height: math.unit(1, "feet"),
  37566. name: "Foot",
  37567. image: {
  37568. source: "./media/characters/fox/foot.svg"
  37569. }
  37570. },
  37571. paw: {
  37572. height: math.unit(0.92, "feet"),
  37573. name: "Paw",
  37574. image: {
  37575. source: "./media/characters/fox/paw.svg"
  37576. }
  37577. },
  37578. },
  37579. [
  37580. {
  37581. name: "Small",
  37582. height: math.unit(3, "inches")
  37583. },
  37584. {
  37585. name: "\"Realistic\"",
  37586. height: math.unit(7, "feet")
  37587. },
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(150, "feet"),
  37591. default: true
  37592. },
  37593. {
  37594. name: "BIG",
  37595. height: math.unit(1200, "feet")
  37596. },
  37597. {
  37598. name: "👀",
  37599. height: math.unit(5, "miles")
  37600. },
  37601. {
  37602. name: "👀👀👀",
  37603. height: math.unit(64, "miles")
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37609. {
  37610. front: {
  37611. height: math.unit(625, "feet"),
  37612. name: "Front",
  37613. image: {
  37614. source: "./media/characters/asonja-rossa/front.svg",
  37615. extra: 1833/1686,
  37616. bottom: 24/1857
  37617. }
  37618. },
  37619. back: {
  37620. height: math.unit(625, "feet"),
  37621. name: "Back",
  37622. image: {
  37623. source: "./media/characters/asonja-rossa/back.svg",
  37624. extra: 1852/1753,
  37625. bottom: 26/1878
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Macro",
  37632. height: math.unit(625, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37639. {
  37640. side: {
  37641. height: math.unit(8, "feet"),
  37642. name: "Side",
  37643. image: {
  37644. source: "./media/characters/rezukii/side.svg",
  37645. extra: 979/542,
  37646. bottom: 87/1066
  37647. }
  37648. },
  37649. sitting: {
  37650. height: math.unit(14.6, "feet"),
  37651. name: "Sitting",
  37652. image: {
  37653. source: "./media/characters/rezukii/sitting.svg",
  37654. extra: 1023/813,
  37655. bottom: 45/1068
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Tiny",
  37662. height: math.unit(2, "feet")
  37663. },
  37664. {
  37665. name: "Smol",
  37666. height: math.unit(4, "feet")
  37667. },
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(8, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Big",
  37675. height: math.unit(12, "feet")
  37676. },
  37677. {
  37678. name: "Macro",
  37679. height: math.unit(30, "feet")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(14, "feet"),
  37688. weight: math.unit(9.5, "tonnes"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/dawnheart/front.svg",
  37692. extra: 2792/2675,
  37693. bottom: 64/2856
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(14, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37707. {
  37708. front: {
  37709. height: math.unit(1.7, "m"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/gladi/front.svg",
  37713. extra: 1460/1362,
  37714. bottom: 19/1479
  37715. }
  37716. },
  37717. back: {
  37718. height: math.unit(1.7, "m"),
  37719. name: "Back",
  37720. image: {
  37721. source: "./media/characters/gladi/back.svg",
  37722. extra: 1459/1357,
  37723. bottom: 12/1471
  37724. }
  37725. },
  37726. feral: {
  37727. height: math.unit(2.05, "m"),
  37728. name: "Feral",
  37729. image: {
  37730. source: "./media/characters/gladi/feral.svg",
  37731. extra: 821/557,
  37732. bottom: 91/912
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Shortest",
  37739. height: math.unit(70, "cm")
  37740. },
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(1.7, "m")
  37744. },
  37745. {
  37746. name: "Macro",
  37747. height: math.unit(10, "m"),
  37748. default: true
  37749. },
  37750. {
  37751. name: "Tallest",
  37752. height: math.unit(200, "m")
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(5 + 7/12, "feet"),
  37761. weight: math.unit(2, "tons"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/erdno/front.svg",
  37765. extra: 1234/1129,
  37766. bottom: 35/1269
  37767. }
  37768. },
  37769. angled: {
  37770. height: math.unit(5 + 7/12, "feet"),
  37771. weight: math.unit(2, "tons"),
  37772. name: "Angled",
  37773. image: {
  37774. source: "./media/characters/erdno/angled.svg",
  37775. extra: 1185/1139,
  37776. bottom: 36/1221
  37777. }
  37778. },
  37779. side: {
  37780. height: math.unit(5 + 7/12, "feet"),
  37781. weight: math.unit(2, "tons"),
  37782. name: "Side",
  37783. image: {
  37784. source: "./media/characters/erdno/side.svg",
  37785. extra: 1191/1144,
  37786. bottom: 40/1231
  37787. }
  37788. },
  37789. back: {
  37790. height: math.unit(5 + 7/12, "feet"),
  37791. weight: math.unit(2, "tons"),
  37792. name: "Back",
  37793. image: {
  37794. source: "./media/characters/erdno/back.svg",
  37795. extra: 1202/1146,
  37796. bottom: 17/1219
  37797. }
  37798. },
  37799. frontNsfw: {
  37800. height: math.unit(5 + 7/12, "feet"),
  37801. weight: math.unit(2, "tons"),
  37802. name: "Front (NSFW)",
  37803. image: {
  37804. source: "./media/characters/erdno/front-nsfw.svg",
  37805. extra: 1234/1129,
  37806. bottom: 35/1269
  37807. }
  37808. },
  37809. angledNsfw: {
  37810. height: math.unit(5 + 7/12, "feet"),
  37811. weight: math.unit(2, "tons"),
  37812. name: "Angled (NSFW)",
  37813. image: {
  37814. source: "./media/characters/erdno/angled-nsfw.svg",
  37815. extra: 1185/1139,
  37816. bottom: 36/1221
  37817. }
  37818. },
  37819. sideNsfw: {
  37820. height: math.unit(5 + 7/12, "feet"),
  37821. weight: math.unit(2, "tons"),
  37822. name: "Side (NSFW)",
  37823. image: {
  37824. source: "./media/characters/erdno/side-nsfw.svg",
  37825. extra: 1191/1144,
  37826. bottom: 40/1231
  37827. }
  37828. },
  37829. backNsfw: {
  37830. height: math.unit(5 + 7/12, "feet"),
  37831. weight: math.unit(2, "tons"),
  37832. name: "Back (NSFW)",
  37833. image: {
  37834. source: "./media/characters/erdno/back-nsfw.svg",
  37835. extra: 1202/1146,
  37836. bottom: 17/1219
  37837. }
  37838. },
  37839. frontHyper: {
  37840. height: math.unit(5 + 7/12, "feet"),
  37841. weight: math.unit(2, "tons"),
  37842. name: "Front (Hyper)",
  37843. image: {
  37844. source: "./media/characters/erdno/front-hyper.svg",
  37845. extra: 1298/1136,
  37846. bottom: 35/1333
  37847. }
  37848. },
  37849. },
  37850. [
  37851. {
  37852. name: "Normal",
  37853. height: math.unit(5 + 7/12, "feet"),
  37854. default: true
  37855. },
  37856. {
  37857. name: "Big",
  37858. height: math.unit(5.7, "meters")
  37859. },
  37860. {
  37861. name: "Macro",
  37862. height: math.unit(5.7, "kilometers")
  37863. },
  37864. {
  37865. name: "Megamacro",
  37866. height: math.unit(5.7, "earths")
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(5 + 10/12, "feet"),
  37875. weight: math.unit(150, "lb"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/jamie/front.svg",
  37879. extra: 1908/1768,
  37880. bottom: 19/1927
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Minimum",
  37887. height: math.unit(2, "cm")
  37888. },
  37889. {
  37890. name: "Micro",
  37891. height: math.unit(3, "inches")
  37892. },
  37893. {
  37894. name: "Normal",
  37895. height: math.unit(5 + 10/12, "feet"),
  37896. default: true
  37897. },
  37898. {
  37899. name: "Macro",
  37900. height: math.unit(150, "feet")
  37901. },
  37902. {
  37903. name: "Megamacro",
  37904. height: math.unit(10000, "m")
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(2, "meters"),
  37913. weight: math.unit(100, "kg"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/shiron/front.svg",
  37917. extra: 2103/1985,
  37918. bottom: 98/2201
  37919. }
  37920. },
  37921. back: {
  37922. height: math.unit(2, "meters"),
  37923. weight: math.unit(100, "kg"),
  37924. name: "Back",
  37925. image: {
  37926. source: "./media/characters/shiron/back.svg",
  37927. extra: 2110/2015,
  37928. bottom: 89/2199
  37929. }
  37930. },
  37931. hand: {
  37932. height: math.unit(0.96, "feet"),
  37933. name: "Hand",
  37934. image: {
  37935. source: "./media/characters/shiron/hand.svg"
  37936. }
  37937. },
  37938. foot: {
  37939. height: math.unit(1.464, "feet"),
  37940. name: "Foot",
  37941. image: {
  37942. source: "./media/characters/shiron/foot.svg"
  37943. }
  37944. },
  37945. },
  37946. [
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(2, "meters")
  37950. },
  37951. {
  37952. name: "Macro",
  37953. height: math.unit(500, "meters"),
  37954. default: true
  37955. },
  37956. {
  37957. name: "Megamacro",
  37958. height: math.unit(20, "km")
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(6, "feet"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/sam/front.svg",
  37970. extra: 849/826,
  37971. bottom: 19/868
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(6, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(8 + 4/12, "feet"),
  37988. weight: math.unit(122, "kg"),
  37989. name: "Front",
  37990. image: {
  37991. source: "./media/characters/namori-kurogawa/front.svg",
  37992. extra: 1894/1576,
  37993. bottom: 34/1928
  37994. }
  37995. },
  37996. },
  37997. [
  37998. {
  37999. name: "Normal",
  38000. height: math.unit(8 + 4/12, "feet"),
  38001. default: true
  38002. },
  38003. ]
  38004. ))
  38005. characterMakers.push(() => makeCharacter(
  38006. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38007. {
  38008. front: {
  38009. height: math.unit(9, "feet"),
  38010. weight: math.unit(621, "lb"),
  38011. name: "Front",
  38012. image: {
  38013. source: "./media/characters/unmru/front.svg",
  38014. extra: 1853/1747,
  38015. bottom: 73/1926
  38016. }
  38017. },
  38018. side: {
  38019. height: math.unit(9, "feet"),
  38020. weight: math.unit(621, "lb"),
  38021. name: "Side",
  38022. image: {
  38023. source: "./media/characters/unmru/side.svg",
  38024. extra: 1781/1671,
  38025. bottom: 127/1908
  38026. }
  38027. },
  38028. back: {
  38029. height: math.unit(9, "feet"),
  38030. weight: math.unit(621, "lb"),
  38031. name: "Back",
  38032. image: {
  38033. source: "./media/characters/unmru/back.svg",
  38034. extra: 1894/1765,
  38035. bottom: 75/1969
  38036. }
  38037. },
  38038. dick: {
  38039. height: math.unit(3, "feet"),
  38040. weight: math.unit(35, "lb"),
  38041. name: "Dick",
  38042. image: {
  38043. source: "./media/characters/unmru/dick.svg"
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(9, "feet")
  38051. },
  38052. {
  38053. name: "Natural",
  38054. height: math.unit(27, "feet"),
  38055. default: true
  38056. },
  38057. {
  38058. name: "Giant",
  38059. height: math.unit(90, "feet")
  38060. },
  38061. {
  38062. name: "Kaiju",
  38063. height: math.unit(270, "feet")
  38064. },
  38065. {
  38066. name: "Macro",
  38067. height: math.unit(900, "feet")
  38068. },
  38069. {
  38070. name: "Macro+",
  38071. height: math.unit(2700, "feet")
  38072. },
  38073. {
  38074. name: "Megamacro",
  38075. height: math.unit(9000, "feet")
  38076. },
  38077. {
  38078. name: "City-Crushing",
  38079. height: math.unit(27000, "feet")
  38080. },
  38081. {
  38082. name: "Mountain-Mashing",
  38083. height: math.unit(90000, "feet")
  38084. },
  38085. {
  38086. name: "Earth-Eclipsing",
  38087. height: math.unit(2.7e8, "feet")
  38088. },
  38089. {
  38090. name: "Sol-Swallowing",
  38091. height: math.unit(9e10, "feet")
  38092. },
  38093. {
  38094. name: "Majoris-Munching",
  38095. height: math.unit(2.7e13, "feet")
  38096. },
  38097. ]
  38098. ))
  38099. characterMakers.push(() => makeCharacter(
  38100. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38101. {
  38102. front: {
  38103. height: math.unit(1, "inch"),
  38104. name: "Front",
  38105. image: {
  38106. source: "./media/characters/squeaks-mouse/front.svg",
  38107. extra: 352/308,
  38108. bottom: 25/377
  38109. }
  38110. },
  38111. },
  38112. [
  38113. {
  38114. name: "Micro",
  38115. height: math.unit(1, "inch"),
  38116. default: true
  38117. },
  38118. ]
  38119. ))
  38120. characterMakers.push(() => makeCharacter(
  38121. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38122. {
  38123. side: {
  38124. height: math.unit(35, "feet"),
  38125. name: "Side",
  38126. image: {
  38127. source: "./media/characters/sayko/side.svg",
  38128. extra: 1697/1021,
  38129. bottom: 82/1779
  38130. }
  38131. },
  38132. head: {
  38133. height: math.unit(16, "feet"),
  38134. name: "Head",
  38135. image: {
  38136. source: "./media/characters/sayko/head.svg"
  38137. }
  38138. },
  38139. forepaw: {
  38140. height: math.unit(7.85, "feet"),
  38141. name: "Forepaw",
  38142. image: {
  38143. source: "./media/characters/sayko/forepaw.svg"
  38144. }
  38145. },
  38146. hindpaw: {
  38147. height: math.unit(8.8, "feet"),
  38148. name: "Hindpaw",
  38149. image: {
  38150. source: "./media/characters/sayko/hindpaw.svg"
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(35, "feet"),
  38158. default: true
  38159. },
  38160. {
  38161. name: "Colossus",
  38162. height: math.unit(100, "meters")
  38163. },
  38164. {
  38165. name: "\"Small\" Deity",
  38166. height: math.unit(1, "km")
  38167. },
  38168. {
  38169. name: "\"Large\" Deity",
  38170. height: math.unit(15, "km")
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(6, "feet"),
  38179. weight: math.unit(250, "lb"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/mukiro/front.svg",
  38183. extra: 1368/1310,
  38184. bottom: 34/1402
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(6, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(12 + 4/12, "feet"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38204. extra: 1346/1311,
  38205. bottom: 65/1411
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Base",
  38212. height: math.unit(12 + 4/12, "feet"),
  38213. default: true
  38214. },
  38215. {
  38216. name: "Macro",
  38217. height: math.unit(150, "feet")
  38218. },
  38219. {
  38220. name: "Mega",
  38221. height: math.unit(2, "miles")
  38222. },
  38223. {
  38224. name: "Demi God",
  38225. height: math.unit(4, "AU")
  38226. },
  38227. {
  38228. name: "God Size",
  38229. height: math.unit(1, "universe")
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38235. {
  38236. front: {
  38237. height: math.unit(3 + 3/12, "feet"),
  38238. weight: math.unit(88, "lb"),
  38239. name: "Front",
  38240. image: {
  38241. source: "./media/characters/trey/front.svg",
  38242. extra: 1815/1509,
  38243. bottom: 60/1875
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(3 + 3/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38257. {
  38258. front: {
  38259. height: math.unit(4, "meters"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/adelonda/front.svg",
  38263. extra: 1077/982,
  38264. bottom: 39/1116
  38265. }
  38266. },
  38267. back: {
  38268. height: math.unit(4, "meters"),
  38269. name: "Back",
  38270. image: {
  38271. source: "./media/characters/adelonda/back.svg",
  38272. extra: 1105/1003,
  38273. bottom: 25/1130
  38274. }
  38275. },
  38276. feral: {
  38277. height: math.unit(40/1.5, "meters"),
  38278. name: "Feral",
  38279. image: {
  38280. source: "./media/characters/adelonda/feral.svg",
  38281. extra: 597/271,
  38282. bottom: 387/984
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(4, "meters"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(8 + 4/12, "feet"),
  38299. weight: math.unit(670, "lb"),
  38300. name: "Front",
  38301. image: {
  38302. source: "./media/characters/acadiel/front.svg",
  38303. extra: 1901/1595,
  38304. bottom: 142/2043
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(8 + 4/12, "feet"),
  38312. default: true
  38313. },
  38314. {
  38315. name: "Macro",
  38316. height: math.unit(200, "feet")
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(6 + 2/12, "feet"),
  38325. weight: math.unit(185, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/kayne-ein/front.svg",
  38329. extra: 1780/1560,
  38330. bottom: 81/1861
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Normal",
  38337. height: math.unit(6 + 2/12, "feet"),
  38338. default: true
  38339. },
  38340. {
  38341. name: "Transformation Stage",
  38342. height: math.unit(15, "feet")
  38343. },
  38344. {
  38345. name: "Macro",
  38346. height: math.unit(150, "feet")
  38347. },
  38348. {
  38349. name: "Earth's Shadow",
  38350. height: math.unit(6200, "miles")
  38351. },
  38352. {
  38353. name: "Universal Demon",
  38354. height: math.unit(28e9, "parsecs")
  38355. },
  38356. {
  38357. name: "Multiverse God",
  38358. height: math.unit(3, "multiverses")
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(5 + 5/12, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/fawn/front.svg",
  38370. extra: 1873/1731,
  38371. bottom: 95/1968
  38372. }
  38373. },
  38374. back: {
  38375. height: math.unit(5 + 5/12, "feet"),
  38376. name: "Back",
  38377. image: {
  38378. source: "./media/characters/fawn/back.svg",
  38379. extra: 1813/1700,
  38380. bottom: 14/1827
  38381. }
  38382. },
  38383. hoof: {
  38384. height: math.unit(1.45, "feet"),
  38385. name: "Hoof",
  38386. image: {
  38387. source: "./media/characters/fawn/hoof.svg"
  38388. }
  38389. },
  38390. },
  38391. [
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(5 + 5/12, "feet"),
  38395. default: true
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38401. {
  38402. front: {
  38403. height: math.unit(2 + 5/12, "feet"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/orion/front.svg",
  38407. extra: 1366/1304,
  38408. bottom: 43/1409
  38409. }
  38410. },
  38411. paw: {
  38412. height: math.unit(0.52, "feet"),
  38413. name: "Paw",
  38414. image: {
  38415. source: "./media/characters/orion/paw.svg"
  38416. }
  38417. },
  38418. },
  38419. [
  38420. {
  38421. name: "Normal",
  38422. height: math.unit(2 + 5/12, "feet"),
  38423. default: true
  38424. },
  38425. ]
  38426. ))
  38427. characterMakers.push(() => makeCharacter(
  38428. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38429. {
  38430. front: {
  38431. height: math.unit(5 + 10/12, "feet"),
  38432. name: "Front",
  38433. image: {
  38434. source: "./media/characters/vera/front.svg",
  38435. extra: 1680/1575,
  38436. bottom: 49/1729
  38437. }
  38438. },
  38439. back: {
  38440. height: math.unit(5 + 10/12, "feet"),
  38441. name: "Back",
  38442. image: {
  38443. source: "./media/characters/vera/back.svg",
  38444. extra: 1700/1588,
  38445. bottom: 18/1718
  38446. }
  38447. },
  38448. arcanine: {
  38449. height: math.unit(6 + 8/12, "feet"),
  38450. name: "Arcanine",
  38451. image: {
  38452. source: "./media/characters/vera/arcanine.svg",
  38453. extra: 1590/1511,
  38454. bottom: 71/1661
  38455. }
  38456. },
  38457. maw: {
  38458. height: math.unit(0.82, "feet"),
  38459. name: "Maw",
  38460. image: {
  38461. source: "./media/characters/vera/maw.svg"
  38462. }
  38463. },
  38464. mawArcanine: {
  38465. height: math.unit(0.97, "feet"),
  38466. name: "Maw (Arcanine)",
  38467. image: {
  38468. source: "./media/characters/vera/maw-arcanine.svg"
  38469. }
  38470. },
  38471. paw: {
  38472. height: math.unit(0.75, "feet"),
  38473. name: "Paw",
  38474. image: {
  38475. source: "./media/characters/vera/paw.svg"
  38476. }
  38477. },
  38478. pawprint: {
  38479. height: math.unit(0.52, "feet"),
  38480. name: "Pawprint",
  38481. image: {
  38482. source: "./media/characters/vera/pawprint.svg"
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(5 + 10/12, "feet"),
  38490. default: true
  38491. },
  38492. {
  38493. name: "Macro",
  38494. height: math.unit(75, "feet")
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(4, "feet"),
  38503. weight: math.unit(40, "lb"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/orvan-rabbit/front.svg",
  38507. extra: 1896/1642,
  38508. bottom: 29/1925
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(4, "feet"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38522. {
  38523. front: {
  38524. height: math.unit(6, "feet"),
  38525. weight: math.unit(168, "lb"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/lisa/front.svg",
  38529. extra: 2065/1867,
  38530. bottom: 46/2111
  38531. }
  38532. },
  38533. back: {
  38534. height: math.unit(6, "feet"),
  38535. weight: math.unit(168, "lb"),
  38536. name: "Back",
  38537. image: {
  38538. source: "./media/characters/lisa/back.svg",
  38539. extra: 1982/1838,
  38540. bottom: 29/2011
  38541. }
  38542. },
  38543. maw: {
  38544. height: math.unit(0.81, "feet"),
  38545. name: "Maw",
  38546. image: {
  38547. source: "./media/characters/lisa/maw.svg"
  38548. }
  38549. },
  38550. paw: {
  38551. height: math.unit(0.9, "feet"),
  38552. name: "Paw",
  38553. image: {
  38554. source: "./media/characters/lisa/paw.svg"
  38555. }
  38556. },
  38557. caribousune: {
  38558. height: math.unit(7 + 2/12, "feet"),
  38559. weight: math.unit(268, "lb"),
  38560. name: "Caribousune",
  38561. image: {
  38562. source: "./media/characters/lisa/caribousune.svg",
  38563. extra: 1843/1633,
  38564. bottom: 29/1872
  38565. }
  38566. },
  38567. frontCaribousune: {
  38568. height: math.unit(7 + 2/12, "feet"),
  38569. weight: math.unit(268, "lb"),
  38570. name: "Front (Caribousune)",
  38571. image: {
  38572. source: "./media/characters/lisa/front-caribousune.svg",
  38573. extra: 1818/1638,
  38574. bottom: 52/1870
  38575. }
  38576. },
  38577. sideCaribousune: {
  38578. height: math.unit(7 + 2/12, "feet"),
  38579. weight: math.unit(268, "lb"),
  38580. name: "Side (Caribousune)",
  38581. image: {
  38582. source: "./media/characters/lisa/side-caribousune.svg",
  38583. extra: 1851/1635,
  38584. bottom: 16/1867
  38585. }
  38586. },
  38587. backCaribousune: {
  38588. height: math.unit(7 + 2/12, "feet"),
  38589. weight: math.unit(268, "lb"),
  38590. name: "Back (Caribousune)",
  38591. image: {
  38592. source: "./media/characters/lisa/back-caribousune.svg",
  38593. extra: 1801/1604,
  38594. bottom: 44/1845
  38595. }
  38596. },
  38597. caribou: {
  38598. height: math.unit(7 + 2/12, "feet"),
  38599. weight: math.unit(268, "lb"),
  38600. name: "Caribou",
  38601. image: {
  38602. source: "./media/characters/lisa/caribou.svg",
  38603. extra: 1843/1633,
  38604. bottom: 29/1872
  38605. }
  38606. },
  38607. frontCaribou: {
  38608. height: math.unit(7 + 2/12, "feet"),
  38609. weight: math.unit(268, "lb"),
  38610. name: "Front (Caribou)",
  38611. image: {
  38612. source: "./media/characters/lisa/front-caribou.svg",
  38613. extra: 1818/1638,
  38614. bottom: 52/1870
  38615. }
  38616. },
  38617. sideCaribou: {
  38618. height: math.unit(7 + 2/12, "feet"),
  38619. weight: math.unit(268, "lb"),
  38620. name: "Side (Caribou)",
  38621. image: {
  38622. source: "./media/characters/lisa/side-caribou.svg",
  38623. extra: 1851/1635,
  38624. bottom: 16/1867
  38625. }
  38626. },
  38627. backCaribou: {
  38628. height: math.unit(7 + 2/12, "feet"),
  38629. weight: math.unit(268, "lb"),
  38630. name: "Back (Caribou)",
  38631. image: {
  38632. source: "./media/characters/lisa/back-caribou.svg",
  38633. extra: 1801/1604,
  38634. bottom: 44/1845
  38635. }
  38636. },
  38637. mawCaribou: {
  38638. height: math.unit(1.45, "feet"),
  38639. name: "Maw (Caribou)",
  38640. image: {
  38641. source: "./media/characters/lisa/maw-caribou.svg"
  38642. }
  38643. },
  38644. mawCaribousune: {
  38645. height: math.unit(1.45, "feet"),
  38646. name: "Maw (Caribousune)",
  38647. image: {
  38648. source: "./media/characters/lisa/maw-caribousune.svg"
  38649. }
  38650. },
  38651. pawCaribousune: {
  38652. height: math.unit(1.61, "feet"),
  38653. name: "Paw (Caribou)",
  38654. image: {
  38655. source: "./media/characters/lisa/paw-caribousune.svg"
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(6, "feet")
  38663. },
  38664. {
  38665. name: "God Size",
  38666. height: math.unit(72, "feet"),
  38667. default: true
  38668. },
  38669. {
  38670. name: "Towering",
  38671. height: math.unit(288, "feet")
  38672. },
  38673. {
  38674. name: "City Size",
  38675. height: math.unit(48384, "feet")
  38676. },
  38677. {
  38678. name: "Continental",
  38679. height: math.unit(4200, "miles")
  38680. },
  38681. {
  38682. name: "Planet Eater",
  38683. height: math.unit(42, "earths")
  38684. },
  38685. {
  38686. name: "Star Swallower",
  38687. height: math.unit(42, "solarradii")
  38688. },
  38689. {
  38690. name: "System Swallower",
  38691. height: math.unit(84000, "AU")
  38692. },
  38693. {
  38694. name: "Galaxy Gobbler",
  38695. height: math.unit(42, "galaxies")
  38696. },
  38697. {
  38698. name: "Universe Devourer",
  38699. height: math.unit(42, "universes")
  38700. },
  38701. {
  38702. name: "Multiverse Muncher",
  38703. height: math.unit(42, "multiverses")
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(36, "feet"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/shadow-rat/front.svg",
  38715. extra: 1845/1758,
  38716. bottom: 83/1928
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Macro",
  38723. height: math.unit(36, "feet"),
  38724. default: true
  38725. },
  38726. ]
  38727. ))
  38728. characterMakers.push(() => makeCharacter(
  38729. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38730. {
  38731. side: {
  38732. height: math.unit(8, "feet"),
  38733. weight: math.unit(2630, "lb"),
  38734. name: "Side",
  38735. image: {
  38736. source: "./media/characters/torallia/side.svg",
  38737. extra: 2164/2021,
  38738. bottom: 371/2535
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Mortal Interaction",
  38745. height: math.unit(8, "feet")
  38746. },
  38747. {
  38748. name: "Natural",
  38749. height: math.unit(24, "feet"),
  38750. default: true
  38751. },
  38752. {
  38753. name: "Giant",
  38754. height: math.unit(80, "feet")
  38755. },
  38756. {
  38757. name: "Kaiju",
  38758. height: math.unit(240, "feet")
  38759. },
  38760. {
  38761. name: "Macro",
  38762. height: math.unit(800, "feet")
  38763. },
  38764. {
  38765. name: "Macro+",
  38766. height: math.unit(2400, "feet")
  38767. },
  38768. {
  38769. name: "Macro++",
  38770. height: math.unit(8000, "feet")
  38771. },
  38772. {
  38773. name: "City-Crushing",
  38774. height: math.unit(24000, "feet")
  38775. },
  38776. {
  38777. name: "Mountain-Mashing",
  38778. height: math.unit(80000, "feet")
  38779. },
  38780. {
  38781. name: "District Demolisher",
  38782. height: math.unit(240000, "feet")
  38783. },
  38784. {
  38785. name: "Tri-County Terror",
  38786. height: math.unit(800000, "feet")
  38787. },
  38788. {
  38789. name: "State Smasher",
  38790. height: math.unit(2.4e6, "feet")
  38791. },
  38792. {
  38793. name: "Nation Nemesis",
  38794. height: math.unit(8e6, "feet")
  38795. },
  38796. {
  38797. name: "Continent Cracker",
  38798. height: math.unit(2.4e7, "feet")
  38799. },
  38800. {
  38801. name: "Planet-Pillaging",
  38802. height: math.unit(8e7, "feet")
  38803. },
  38804. {
  38805. name: "Earth-Eclipsing",
  38806. height: math.unit(2.4e8, "feet")
  38807. },
  38808. {
  38809. name: "Jovian-Jostling",
  38810. height: math.unit(8e8, "feet")
  38811. },
  38812. {
  38813. name: "Gas Giant Gulper",
  38814. height: math.unit(2.4e9, "feet")
  38815. },
  38816. {
  38817. name: "Astral Annihilator",
  38818. height: math.unit(8e9, "feet")
  38819. },
  38820. {
  38821. name: "Celestial Conqueror",
  38822. height: math.unit(2.4e10, "feet")
  38823. },
  38824. {
  38825. name: "Sol-Swallowing",
  38826. height: math.unit(8e10, "feet")
  38827. },
  38828. {
  38829. name: "Hunter of the Heavens",
  38830. height: math.unit(2.4e13, "feet")
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(6 + 8/12, "feet"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/rebecca-pawlson/front.svg",
  38842. extra: 1737/1596,
  38843. bottom: 107/1844
  38844. }
  38845. },
  38846. back: {
  38847. height: math.unit(6 + 8/12, "feet"),
  38848. name: "Back",
  38849. image: {
  38850. source: "./media/characters/rebecca-pawlson/back.svg",
  38851. extra: 1702/1523,
  38852. bottom: 86/1788
  38853. }
  38854. },
  38855. },
  38856. [
  38857. {
  38858. name: "Normal",
  38859. height: math.unit(6 + 8/12, "feet")
  38860. },
  38861. {
  38862. name: "Mini Macro",
  38863. height: math.unit(10, "feet"),
  38864. default: true
  38865. },
  38866. {
  38867. name: "Macro",
  38868. height: math.unit(100, "feet")
  38869. },
  38870. {
  38871. name: "Mega Macro",
  38872. height: math.unit(2500, "feet")
  38873. },
  38874. {
  38875. name: "Giga Macro",
  38876. height: math.unit(50, "miles")
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(7 + 6/12, "feet"),
  38885. weight: math.unit(600, "lb"),
  38886. name: "Front",
  38887. image: {
  38888. source: "./media/characters/moxie-nova/front.svg",
  38889. extra: 1734/1652,
  38890. bottom: 41/1775
  38891. }
  38892. },
  38893. },
  38894. [
  38895. {
  38896. name: "Normal",
  38897. height: math.unit(7 + 6/12, "feet"),
  38898. default: true
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38904. {
  38905. goat: {
  38906. height: math.unit(4, "feet"),
  38907. weight: math.unit(180, "lb"),
  38908. name: "Goat",
  38909. image: {
  38910. source: "./media/characters/tiffany/goat.svg",
  38911. extra: 1845/1595,
  38912. bottom: 106/1951
  38913. }
  38914. },
  38915. front: {
  38916. height: math.unit(5, "feet"),
  38917. weight: math.unit(150, "lb"),
  38918. name: "Foxcoon",
  38919. image: {
  38920. source: "./media/characters/tiffany/foxcoon.svg",
  38921. extra: 1941/1845,
  38922. bottom: 58/1999
  38923. }
  38924. },
  38925. },
  38926. [
  38927. {
  38928. name: "Normal",
  38929. height: math.unit(5, "feet"),
  38930. default: true
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(8, "feet"),
  38939. weight: math.unit(300, "lb"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/raxinath/front.svg",
  38943. extra: 1407/1309,
  38944. bottom: 39/1446
  38945. }
  38946. },
  38947. back: {
  38948. height: math.unit(8, "feet"),
  38949. weight: math.unit(300, "lb"),
  38950. name: "Back",
  38951. image: {
  38952. source: "./media/characters/raxinath/back.svg",
  38953. extra: 1405/1315,
  38954. bottom: 9/1414
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Speck",
  38961. height: math.unit(0.5, "nm")
  38962. },
  38963. {
  38964. name: "Micro",
  38965. height: math.unit(3, "inches")
  38966. },
  38967. {
  38968. name: "Kobold",
  38969. height: math.unit(3, "feet")
  38970. },
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(8, "feet"),
  38974. default: true
  38975. },
  38976. {
  38977. name: "Giant",
  38978. height: math.unit(50, "feet")
  38979. },
  38980. {
  38981. name: "Macro",
  38982. height: math.unit(1000, "feet")
  38983. },
  38984. {
  38985. name: "Megamacro",
  38986. height: math.unit(1, "mile")
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(10, "feet"),
  38995. weight: math.unit(1442, "lb"),
  38996. name: "Front",
  38997. image: {
  38998. source: "./media/characters/mal-dragon/front.svg",
  38999. extra: 1515/1444,
  39000. bottom: 113/1628
  39001. }
  39002. },
  39003. back: {
  39004. height: math.unit(10, "feet"),
  39005. weight: math.unit(1442, "lb"),
  39006. name: "Back",
  39007. image: {
  39008. source: "./media/characters/mal-dragon/back.svg",
  39009. extra: 1527/1434,
  39010. bottom: 25/1552
  39011. }
  39012. },
  39013. },
  39014. [
  39015. {
  39016. name: "Mortal Interaction",
  39017. height: math.unit(10, "feet"),
  39018. default: true
  39019. },
  39020. {
  39021. name: "Large",
  39022. height: math.unit(30, "feet")
  39023. },
  39024. {
  39025. name: "Kaiju",
  39026. height: math.unit(300, "feet")
  39027. },
  39028. {
  39029. name: "Megamacro",
  39030. height: math.unit(10000, "feet")
  39031. },
  39032. {
  39033. name: "Continent Cracker",
  39034. height: math.unit(30000000, "feet")
  39035. },
  39036. {
  39037. name: "Sol-Swallowing",
  39038. height: math.unit(1e11, "feet")
  39039. },
  39040. {
  39041. name: "Light Universal",
  39042. height: math.unit(5, "universes")
  39043. },
  39044. {
  39045. name: "Universe Atoms",
  39046. height: math.unit(1.829e9, "universes")
  39047. },
  39048. {
  39049. name: "Light Multiversal",
  39050. height: math.unit(5, "multiverses")
  39051. },
  39052. {
  39053. name: "Multiverse Atoms",
  39054. height: math.unit(1.829e9, "multiverses")
  39055. },
  39056. {
  39057. name: "Fabric of Time",
  39058. height: math.unit(1e262, "multiverses")
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39064. {
  39065. front: {
  39066. height: math.unit(9, "feet"),
  39067. weight: math.unit(1050, "lb"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/tabitha/front.svg",
  39071. extra: 2083/1994,
  39072. bottom: 68/2151
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Baseline",
  39079. height: math.unit(9, "feet"),
  39080. default: true
  39081. },
  39082. {
  39083. name: "Giant",
  39084. height: math.unit(90, "feet")
  39085. },
  39086. {
  39087. name: "Macro",
  39088. height: math.unit(900, "feet")
  39089. },
  39090. {
  39091. name: "Megamacro",
  39092. height: math.unit(9000, "feet")
  39093. },
  39094. {
  39095. name: "City-Crushing",
  39096. height: math.unit(27000, "feet")
  39097. },
  39098. {
  39099. name: "Mountain-Mashing",
  39100. height: math.unit(90000, "feet")
  39101. },
  39102. {
  39103. name: "Nation Nemesis",
  39104. height: math.unit(9e6, "feet")
  39105. },
  39106. {
  39107. name: "Continent Cracker",
  39108. height: math.unit(27e6, "feet")
  39109. },
  39110. {
  39111. name: "Earth-Eclipsing",
  39112. height: math.unit(2.7e8, "feet")
  39113. },
  39114. {
  39115. name: "Gas Giant Gulper",
  39116. height: math.unit(2.7e9, "feet")
  39117. },
  39118. {
  39119. name: "Sol-Swallowing",
  39120. height: math.unit(9e10, "feet")
  39121. },
  39122. {
  39123. name: "Galaxy Gulper",
  39124. height: math.unit(9, "galaxies")
  39125. },
  39126. {
  39127. name: "Cosmos Churner",
  39128. height: math.unit(9, "universes")
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(160, "cm"),
  39137. weight: math.unit(55, "kg"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/tow/front.svg",
  39141. extra: 1751/1722,
  39142. bottom: 74/1825
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Norm",
  39149. height: math.unit(160, "cm")
  39150. },
  39151. {
  39152. name: "Casual",
  39153. height: math.unit(3200, "m"),
  39154. default: true
  39155. },
  39156. {
  39157. name: "Show-Off",
  39158. height: math.unit(160, "km")
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39164. {
  39165. front: {
  39166. height: math.unit(7 + 11/12, "feet"),
  39167. weight: math.unit(342.8, "lb"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/vivian-orca-dragon/front.svg",
  39171. extra: 1890/1865,
  39172. bottom: 28/1918
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Micro",
  39179. height: math.unit(5, "inches")
  39180. },
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(7 + 11/12, "feet"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Macro",
  39188. height: math.unit(395 + 7/12, "feet")
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39194. {
  39195. side: {
  39196. height: math.unit(10, "feet"),
  39197. weight: math.unit(1442, "lb"),
  39198. name: "Side",
  39199. image: {
  39200. source: "./media/characters/lotherakon/side.svg",
  39201. extra: 1604/1497,
  39202. bottom: 89/1693
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Mortal Interaction",
  39209. height: math.unit(10, "feet")
  39210. },
  39211. {
  39212. name: "Large",
  39213. height: math.unit(30, "feet"),
  39214. default: true
  39215. },
  39216. {
  39217. name: "Giant",
  39218. height: math.unit(100, "feet")
  39219. },
  39220. {
  39221. name: "Kaiju",
  39222. height: math.unit(300, "feet")
  39223. },
  39224. {
  39225. name: "Macro",
  39226. height: math.unit(1000, "feet")
  39227. },
  39228. {
  39229. name: "Macro+",
  39230. height: math.unit(3000, "feet")
  39231. },
  39232. {
  39233. name: "Megamacro",
  39234. height: math.unit(10000, "feet")
  39235. },
  39236. {
  39237. name: "City-Crushing",
  39238. height: math.unit(30000, "feet")
  39239. },
  39240. {
  39241. name: "Continent Cracker",
  39242. height: math.unit(30e6, "feet")
  39243. },
  39244. {
  39245. name: "Earth Eclipsing",
  39246. height: math.unit(3e8, "feet")
  39247. },
  39248. {
  39249. name: "Gas Giant Gulper",
  39250. height: math.unit(3e9, "feet")
  39251. },
  39252. {
  39253. name: "Sol-Swallowing",
  39254. height: math.unit(1e11, "feet")
  39255. },
  39256. {
  39257. name: "System Swallower",
  39258. height: math.unit(3e14, "feet")
  39259. },
  39260. {
  39261. name: "Galaxy Gulper",
  39262. height: math.unit(10, "galaxies")
  39263. },
  39264. {
  39265. name: "Light Universal",
  39266. height: math.unit(5, "universes")
  39267. },
  39268. {
  39269. name: "Universe Palm",
  39270. height: math.unit(20, "universes")
  39271. },
  39272. {
  39273. name: "Light Multiversal",
  39274. height: math.unit(5, "multiverses")
  39275. },
  39276. {
  39277. name: "Multiverse Palm",
  39278. height: math.unit(20, "multiverses")
  39279. },
  39280. {
  39281. name: "Inferno Incarnate",
  39282. height: math.unit(1e7, "multiverses")
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(8, "feet"),
  39291. weight: math.unit(1200, "lb"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/malithee/front.svg",
  39295. extra: 1675/1640,
  39296. bottom: 162/1837
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Mortal Interaction",
  39303. height: math.unit(8, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Large",
  39308. height: math.unit(24, "feet")
  39309. },
  39310. {
  39311. name: "Kaiju",
  39312. height: math.unit(240, "feet")
  39313. },
  39314. {
  39315. name: "Megamacro",
  39316. height: math.unit(8000, "feet")
  39317. },
  39318. {
  39319. name: "Continent Cracker",
  39320. height: math.unit(24e6, "feet")
  39321. },
  39322. {
  39323. name: "Earth-Eclipsing",
  39324. height: math.unit(2.4e8, "feet")
  39325. },
  39326. {
  39327. name: "Sol-Swallowing",
  39328. height: math.unit(8e10, "feet")
  39329. },
  39330. {
  39331. name: "Galaxy Gulper",
  39332. height: math.unit(8, "galaxies")
  39333. },
  39334. {
  39335. name: "Light Universal",
  39336. height: math.unit(4, "universes")
  39337. },
  39338. {
  39339. name: "Universe Atoms",
  39340. height: math.unit(1.829e9, "universes")
  39341. },
  39342. {
  39343. name: "Light Multiversal",
  39344. height: math.unit(4, "multiverses")
  39345. },
  39346. {
  39347. name: "Multiverse Atoms",
  39348. height: math.unit(1.829e9, "multiverses")
  39349. },
  39350. {
  39351. name: "Nigh-Omnipresence",
  39352. height: math.unit(8e261, "multiverses")
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39358. {
  39359. front: {
  39360. height: math.unit(10, "feet"),
  39361. weight: math.unit(1500, "lb"),
  39362. name: "Front",
  39363. image: {
  39364. source: "./media/characters/miles-thestia/front.svg",
  39365. extra: 1812/1727,
  39366. bottom: 86/1898
  39367. }
  39368. },
  39369. back: {
  39370. height: math.unit(10, "feet"),
  39371. weight: math.unit(1500, "lb"),
  39372. name: "Back",
  39373. image: {
  39374. source: "./media/characters/miles-thestia/back.svg",
  39375. extra: 1799/1690,
  39376. bottom: 47/1846
  39377. }
  39378. },
  39379. frontNsfw: {
  39380. height: math.unit(10, "feet"),
  39381. weight: math.unit(1500, "lb"),
  39382. name: "Front (NSFW)",
  39383. image: {
  39384. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39385. extra: 1812/1727,
  39386. bottom: 86/1898
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Mini-Macro",
  39393. height: math.unit(10, "feet"),
  39394. default: true
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39400. {
  39401. front: {
  39402. height: math.unit(25, "feet"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/titan-s-wulf/front.svg",
  39406. extra: 1560/1484,
  39407. bottom: 76/1636
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "Smallest",
  39414. height: math.unit(25, "feet"),
  39415. default: true
  39416. },
  39417. {
  39418. name: "Normal",
  39419. height: math.unit(200, "feet")
  39420. },
  39421. {
  39422. name: "Macro",
  39423. height: math.unit(200000, "feet")
  39424. },
  39425. {
  39426. name: "Multiversal Original",
  39427. height: math.unit(10000, "multiverses")
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(8, "feet"),
  39436. weight: math.unit(553, "lb"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/tawendeh/front.svg",
  39440. extra: 2365/2268,
  39441. bottom: 83/2448
  39442. }
  39443. },
  39444. frontClothed: {
  39445. height: math.unit(8, "feet"),
  39446. weight: math.unit(553, "lb"),
  39447. name: "Front (Clothed)",
  39448. image: {
  39449. source: "./media/characters/tawendeh/front-clothed.svg",
  39450. extra: 2365/2268,
  39451. bottom: 83/2448
  39452. }
  39453. },
  39454. back: {
  39455. height: math.unit(8, "feet"),
  39456. weight: math.unit(553, "lb"),
  39457. name: "Back",
  39458. image: {
  39459. source: "./media/characters/tawendeh/back.svg",
  39460. extra: 2397/2294,
  39461. bottom: 42/2439
  39462. }
  39463. },
  39464. },
  39465. [
  39466. {
  39467. name: "Mortal Interaction",
  39468. height: math.unit(8, "feet"),
  39469. default: true
  39470. },
  39471. {
  39472. name: "Giant",
  39473. height: math.unit(80, "feet")
  39474. },
  39475. {
  39476. name: "Macro",
  39477. height: math.unit(800, "feet")
  39478. },
  39479. {
  39480. name: "Megamacro",
  39481. height: math.unit(8000, "feet")
  39482. },
  39483. {
  39484. name: "City-Crushing",
  39485. height: math.unit(24000, "feet")
  39486. },
  39487. {
  39488. name: "Mountain-Mashing",
  39489. height: math.unit(80000, "feet")
  39490. },
  39491. {
  39492. name: "Nation Nemesis",
  39493. height: math.unit(8e6, "feet")
  39494. },
  39495. {
  39496. name: "Continent Cracker",
  39497. height: math.unit(24e6, "feet")
  39498. },
  39499. {
  39500. name: "Earth-Eclipsing",
  39501. height: math.unit(2.4e8, "feet")
  39502. },
  39503. {
  39504. name: "Gas Giant Gulper",
  39505. height: math.unit(2.4e9, "feet")
  39506. },
  39507. {
  39508. name: "Sol-Swallowing",
  39509. height: math.unit(8e10, "feet")
  39510. },
  39511. {
  39512. name: "Galaxy Gulper",
  39513. height: math.unit(8, "galaxies")
  39514. },
  39515. {
  39516. name: "Cosmos Churner",
  39517. height: math.unit(8, "universes")
  39518. },
  39519. {
  39520. name: "Omnipotent Otter",
  39521. height: math.unit(80, "universes")
  39522. },
  39523. ]
  39524. ))
  39525. characterMakers.push(() => makeCharacter(
  39526. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39527. {
  39528. front: {
  39529. height: math.unit(2.6, "meters"),
  39530. weight: math.unit(900, "kg"),
  39531. name: "Front",
  39532. image: {
  39533. source: "./media/characters/neesha/front.svg",
  39534. extra: 1803/1653,
  39535. bottom: 128/1931
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(2.6, "meters"),
  39543. default: true
  39544. },
  39545. {
  39546. name: "Macro",
  39547. height: math.unit(50, "meters")
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(5, "feet"),
  39556. weight: math.unit(185, "lb"),
  39557. name: "Front",
  39558. image: {
  39559. source: "./media/characters/kyera/front.svg",
  39560. extra: 1875/1790,
  39561. bottom: 96/1971
  39562. }
  39563. },
  39564. },
  39565. [
  39566. {
  39567. name: "Normal",
  39568. height: math.unit(5, "feet"),
  39569. default: true
  39570. },
  39571. ]
  39572. ))
  39573. characterMakers.push(() => makeCharacter(
  39574. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39575. {
  39576. front: {
  39577. height: math.unit(7 + 6/12, "feet"),
  39578. weight: math.unit(540, "lb"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/yuko/front.svg",
  39582. extra: 1282/1222,
  39583. bottom: 101/1383
  39584. }
  39585. },
  39586. frontClothed: {
  39587. height: math.unit(7 + 6/12, "feet"),
  39588. weight: math.unit(540, "lb"),
  39589. name: "Front (Clothed)",
  39590. image: {
  39591. source: "./media/characters/yuko/front-clothed.svg",
  39592. extra: 1282/1222,
  39593. bottom: 101/1383
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(7 + 6/12, "feet"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(26 + 9/12, "feet")
  39606. },
  39607. {
  39608. name: "Megamacro",
  39609. height: math.unit(300, "feet")
  39610. },
  39611. {
  39612. name: "Gigamacro",
  39613. height: math.unit(5000, "feet")
  39614. },
  39615. {
  39616. name: "Planetary",
  39617. height: math.unit(10000, "miles")
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(8 + 2/12, "feet"),
  39626. weight: math.unit(600, "lb"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/deam-nitrel/front.svg",
  39630. extra: 1308/1234,
  39631. bottom: 125/1433
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(8 + 2/12, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39645. {
  39646. front: {
  39647. height: math.unit(6.1, "feet"),
  39648. weight: math.unit(180, "lb"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/skyress/front.svg",
  39652. extra: 1045/915,
  39653. bottom: 28/1073
  39654. }
  39655. },
  39656. maw: {
  39657. height: math.unit(1, "feet"),
  39658. name: "Maw",
  39659. image: {
  39660. source: "./media/characters/skyress/maw.svg"
  39661. }
  39662. },
  39663. },
  39664. [
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(6.1, "feet"),
  39668. default: true
  39669. },
  39670. {
  39671. name: "Macro",
  39672. height: math.unit(200, "feet")
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39678. {
  39679. front: {
  39680. height: math.unit(4 + 2/12, "feet"),
  39681. weight: math.unit(40, "kg"),
  39682. name: "Front",
  39683. image: {
  39684. source: "./media/characters/amethyst-jones/front.svg",
  39685. extra: 1220/1150,
  39686. bottom: 101/1321
  39687. }
  39688. },
  39689. },
  39690. [
  39691. {
  39692. name: "Normal",
  39693. height: math.unit(4 + 2/12, "feet"),
  39694. default: true
  39695. },
  39696. ]
  39697. ))
  39698. characterMakers.push(() => makeCharacter(
  39699. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39700. {
  39701. front: {
  39702. height: math.unit(1.7, "m"),
  39703. weight: math.unit(135, "lb"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/jade/front.svg",
  39707. extra: 1818/1767,
  39708. bottom: 32/1850
  39709. }
  39710. },
  39711. back: {
  39712. height: math.unit(1.7, "m"),
  39713. weight: math.unit(135, "lb"),
  39714. name: "Back",
  39715. image: {
  39716. source: "./media/characters/jade/back.svg",
  39717. extra: 1869/1809,
  39718. bottom: 35/1904
  39719. }
  39720. },
  39721. hand: {
  39722. height: math.unit(0.24, "m"),
  39723. name: "Hand",
  39724. image: {
  39725. source: "./media/characters/jade/hand.svg"
  39726. }
  39727. },
  39728. foot: {
  39729. height: math.unit(0.263, "m"),
  39730. name: "Foot",
  39731. image: {
  39732. source: "./media/characters/jade/foot.svg"
  39733. }
  39734. },
  39735. dick: {
  39736. height: math.unit(0.47, "m"),
  39737. name: "Dick",
  39738. image: {
  39739. source: "./media/characters/jade/dick.svg"
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Micro",
  39746. height: math.unit(22, "cm")
  39747. },
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(1.7, "m"),
  39751. default: true
  39752. },
  39753. {
  39754. name: "Macro",
  39755. height: math.unit(152, "m")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(100, "miles"),
  39764. weight: math.unit(20000, "tons"),
  39765. name: "Front",
  39766. image: {
  39767. source: "./media/characters/cookie/front.svg",
  39768. extra: 1125/1070,
  39769. bottom: 30/1155
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Big",
  39776. height: math.unit(50, "feet")
  39777. },
  39778. {
  39779. name: "Macro",
  39780. height: math.unit(100, "miles"),
  39781. default: true
  39782. },
  39783. {
  39784. name: "Megamacro",
  39785. height: math.unit(90000, "miles")
  39786. },
  39787. ]
  39788. ))
  39789. characterMakers.push(() => makeCharacter(
  39790. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39791. {
  39792. front: {
  39793. height: math.unit(6, "feet"),
  39794. weight: math.unit(145, "lb"),
  39795. name: "Front",
  39796. image: {
  39797. source: "./media/characters/farzian/front.svg",
  39798. extra: 1902/1693,
  39799. bottom: 108/2010
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Macro",
  39806. height: math.unit(500, "feet"),
  39807. default: true
  39808. },
  39809. ]
  39810. ))
  39811. characterMakers.push(() => makeCharacter(
  39812. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39813. {
  39814. front: {
  39815. height: math.unit(3 + 6/12, "feet"),
  39816. weight: math.unit(50, "lb"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/kimberly-tilson/front.svg",
  39820. extra: 1400/1322,
  39821. bottom: 36/1436
  39822. }
  39823. },
  39824. back: {
  39825. height: math.unit(3 + 6/12, "feet"),
  39826. weight: math.unit(50, "lb"),
  39827. name: "Back",
  39828. image: {
  39829. source: "./media/characters/kimberly-tilson/back.svg",
  39830. extra: 1370/1307,
  39831. bottom: 20/1390
  39832. }
  39833. },
  39834. },
  39835. [
  39836. {
  39837. name: "Normal",
  39838. height: math.unit(3 + 6/12, "feet"),
  39839. default: true
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(1148, "feet"),
  39848. weight: math.unit(34057, "lb"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/harthos/front.svg",
  39852. extra: 1391/1339,
  39853. bottom: 13/1404
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Macro",
  39860. height: math.unit(1148, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(15, "feet"),
  39870. name: "Front",
  39871. image: {
  39872. source: "./media/characters/hypatia/front.svg",
  39873. extra: 1653/1591,
  39874. bottom: 79/1732
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(15, "feet")
  39882. },
  39883. {
  39884. name: "Small",
  39885. height: math.unit(300, "feet")
  39886. },
  39887. {
  39888. name: "Macro",
  39889. height: math.unit(2500, "feet"),
  39890. default: true
  39891. },
  39892. {
  39893. name: "Mega Macro",
  39894. height: math.unit(1500, "miles")
  39895. },
  39896. {
  39897. name: "Giga Macro",
  39898. height: math.unit(1.5e6, "miles")
  39899. },
  39900. ]
  39901. ))
  39902. characterMakers.push(() => makeCharacter(
  39903. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39904. {
  39905. front: {
  39906. height: math.unit(6, "feet"),
  39907. weight: math.unit(200, "lb"),
  39908. name: "Front",
  39909. image: {
  39910. source: "./media/characters/wulver/front.svg",
  39911. extra: 1724/1632,
  39912. bottom: 130/1854
  39913. }
  39914. },
  39915. frontNsfw: {
  39916. height: math.unit(6, "feet"),
  39917. weight: math.unit(200, "lb"),
  39918. name: "Front (NSFW)",
  39919. image: {
  39920. source: "./media/characters/wulver/front-nsfw.svg",
  39921. extra: 1724/1632,
  39922. bottom: 130/1854
  39923. }
  39924. },
  39925. },
  39926. [
  39927. {
  39928. name: "Human-Sized",
  39929. height: math.unit(6, "feet")
  39930. },
  39931. {
  39932. name: "Normal",
  39933. height: math.unit(4, "meters"),
  39934. default: true
  39935. },
  39936. {
  39937. name: "Large",
  39938. height: math.unit(6, "m")
  39939. },
  39940. ]
  39941. ))
  39942. characterMakers.push(() => makeCharacter(
  39943. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39944. {
  39945. front: {
  39946. height: math.unit(7, "feet"),
  39947. name: "Front",
  39948. image: {
  39949. source: "./media/characters/maru/front.svg",
  39950. extra: 1595/1570,
  39951. bottom: 0/1595
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(7, "feet"),
  39959. default: true
  39960. },
  39961. {
  39962. name: "Macro",
  39963. height: math.unit(700, "feet")
  39964. },
  39965. {
  39966. name: "Mega Macro",
  39967. height: math.unit(25, "miles")
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39973. {
  39974. front: {
  39975. height: math.unit(6, "feet"),
  39976. weight: math.unit(170, "lb"),
  39977. name: "Front",
  39978. image: {
  39979. source: "./media/characters/xenon/front.svg",
  39980. extra: 1376/1305,
  39981. bottom: 56/1432
  39982. }
  39983. },
  39984. back: {
  39985. height: math.unit(6, "feet"),
  39986. weight: math.unit(170, "lb"),
  39987. name: "Back",
  39988. image: {
  39989. source: "./media/characters/xenon/back.svg",
  39990. extra: 1328/1259,
  39991. bottom: 95/1423
  39992. }
  39993. },
  39994. maw: {
  39995. height: math.unit(0.52, "feet"),
  39996. name: "Maw",
  39997. image: {
  39998. source: "./media/characters/xenon/maw.svg"
  39999. }
  40000. },
  40001. hand: {
  40002. height: math.unit(0.82, "feet"),
  40003. name: "Hand",
  40004. image: {
  40005. source: "./media/characters/xenon/hand.svg"
  40006. }
  40007. },
  40008. foot: {
  40009. height: math.unit(1.13, "feet"),
  40010. name: "Foot",
  40011. image: {
  40012. source: "./media/characters/xenon/foot.svg"
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Micro",
  40019. height: math.unit(0.8, "inches")
  40020. },
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(6, "feet")
  40024. },
  40025. {
  40026. name: "Macro",
  40027. height: math.unit(50, "feet"),
  40028. default: true
  40029. },
  40030. {
  40031. name: "Macro+",
  40032. height: math.unit(250, "feet")
  40033. },
  40034. {
  40035. name: "Megamacro",
  40036. height: math.unit(1500, "feet")
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40042. {
  40043. front: {
  40044. height: math.unit(7 + 5/12, "feet"),
  40045. name: "Front",
  40046. image: {
  40047. source: "./media/characters/zane/front.svg",
  40048. extra: 1260/1203,
  40049. bottom: 94/1354
  40050. }
  40051. },
  40052. back: {
  40053. height: math.unit(5.05, "feet"),
  40054. name: "Back",
  40055. image: {
  40056. source: "./media/characters/zane/back.svg",
  40057. extra: 893/829,
  40058. bottom: 30/923
  40059. }
  40060. },
  40061. werewolf: {
  40062. height: math.unit(11, "feet"),
  40063. name: "Werewolf",
  40064. image: {
  40065. source: "./media/characters/zane/werewolf.svg",
  40066. extra: 1383/1323,
  40067. bottom: 89/1472
  40068. }
  40069. },
  40070. foot: {
  40071. height: math.unit(1.46, "feet"),
  40072. name: "Foot",
  40073. image: {
  40074. source: "./media/characters/zane/foot.svg"
  40075. }
  40076. },
  40077. footFront: {
  40078. height: math.unit(0.784, "feet"),
  40079. name: "Foot (Front)",
  40080. image: {
  40081. source: "./media/characters/zane/foot-front.svg"
  40082. }
  40083. },
  40084. dick: {
  40085. height: math.unit(1.95, "feet"),
  40086. name: "Dick",
  40087. image: {
  40088. source: "./media/characters/zane/dick.svg"
  40089. }
  40090. },
  40091. dickWerewolf: {
  40092. height: math.unit(3.77, "feet"),
  40093. name: "Dick (Werewolf)",
  40094. image: {
  40095. source: "./media/characters/zane/dick.svg"
  40096. }
  40097. },
  40098. },
  40099. [
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(7 + 5/12, "feet"),
  40103. default: true
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(6 + 2/12, "feet"),
  40112. weight: math.unit(284, "lb"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/benni-desparque/front.svg",
  40116. extra: 1353/1126,
  40117. bottom: 69/1422
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Civilian",
  40124. height: math.unit(6 + 2/12, "feet")
  40125. },
  40126. {
  40127. name: "Normal",
  40128. height: math.unit(98, "feet"),
  40129. default: true
  40130. },
  40131. {
  40132. name: "Kaiju Fighter",
  40133. height: math.unit(268, "feet")
  40134. },
  40135. ]
  40136. ))
  40137. characterMakers.push(() => makeCharacter(
  40138. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40139. {
  40140. front: {
  40141. height: math.unit(5, "feet"),
  40142. weight: math.unit(105, "lb"),
  40143. name: "Front",
  40144. image: {
  40145. source: "./media/characters/maxine/front.svg",
  40146. extra: 1386/1250,
  40147. bottom: 71/1457
  40148. }
  40149. },
  40150. },
  40151. [
  40152. {
  40153. name: "Normal",
  40154. height: math.unit(5, "feet"),
  40155. default: true
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40161. {
  40162. front: {
  40163. height: math.unit(11 + 7/12, "feet"),
  40164. weight: math.unit(9576, "lb"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/scaly/front.svg",
  40168. extra: 888/867,
  40169. bottom: 36/924
  40170. }
  40171. },
  40172. },
  40173. [
  40174. {
  40175. name: "Normal",
  40176. height: math.unit(11 + 7/12, "feet"),
  40177. default: true
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40183. {
  40184. front: {
  40185. height: math.unit(6 + 3/12, "feet"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/saelria/front.svg",
  40189. extra: 1243/1138,
  40190. bottom: 46/1289
  40191. }
  40192. },
  40193. },
  40194. [
  40195. {
  40196. name: "Micro",
  40197. height: math.unit(6, "inches"),
  40198. },
  40199. {
  40200. name: "Normal",
  40201. height: math.unit(6 + 3/12, "feet"),
  40202. default: true
  40203. },
  40204. {
  40205. name: "Macro",
  40206. height: math.unit(25, "feet")
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(80, "meters"),
  40215. weight: math.unit(7000, "tonnes"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/tef/front.svg",
  40219. extra: 2036/1991,
  40220. bottom: 54/2090
  40221. }
  40222. },
  40223. back: {
  40224. height: math.unit(80, "meters"),
  40225. weight: math.unit(7000, "tonnes"),
  40226. name: "Back",
  40227. image: {
  40228. source: "./media/characters/tef/back.svg",
  40229. extra: 2036/1991,
  40230. bottom: 54/2090
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Macro",
  40237. height: math.unit(80, "meters"),
  40238. default: true
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40244. {
  40245. front: {
  40246. height: math.unit(13, "feet"),
  40247. weight: math.unit(6, "tons"),
  40248. name: "Front",
  40249. image: {
  40250. source: "./media/characters/rover/front.svg",
  40251. extra: 1233/1156,
  40252. bottom: 50/1283
  40253. }
  40254. },
  40255. back: {
  40256. height: math.unit(13, "feet"),
  40257. weight: math.unit(6, "tons"),
  40258. name: "Back",
  40259. image: {
  40260. source: "./media/characters/rover/back.svg",
  40261. extra: 1327/1258,
  40262. bottom: 39/1366
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Normal",
  40269. height: math.unit(13, "feet"),
  40270. default: true
  40271. },
  40272. {
  40273. name: "Macro",
  40274. height: math.unit(1300, "feet")
  40275. },
  40276. {
  40277. name: "Megamacro",
  40278. height: math.unit(1300, "miles")
  40279. },
  40280. {
  40281. name: "Gigamacro",
  40282. height: math.unit(1300000, "miles")
  40283. },
  40284. ]
  40285. ))
  40286. characterMakers.push(() => makeCharacter(
  40287. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40288. {
  40289. front: {
  40290. height: math.unit(6, "feet"),
  40291. weight: math.unit(150, "lb"),
  40292. name: "Front",
  40293. image: {
  40294. source: "./media/characters/ariz/front.svg",
  40295. extra: 1401/1346,
  40296. bottom: 5/1406
  40297. }
  40298. },
  40299. },
  40300. [
  40301. {
  40302. name: "Normal",
  40303. height: math.unit(10, "feet"),
  40304. default: true
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(6, "feet"),
  40313. weight: math.unit(140, "lb"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/sigrun/front.svg",
  40317. extra: 1418/1359,
  40318. bottom: 27/1445
  40319. }
  40320. },
  40321. },
  40322. [
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(35, "feet"),
  40326. default: true
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(6, "feet"),
  40335. weight: math.unit(150, "lb"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/numin/front.svg",
  40339. extra: 1433/1388,
  40340. bottom: 12/1445
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(21.5, "km"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(6, "feet"),
  40357. weight: math.unit(463, "lb"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/melwa/front.svg",
  40361. extra: 1307/1248,
  40362. bottom: 93/1400
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(50, "meters"),
  40370. default: true
  40371. },
  40372. ]
  40373. ))
  40374. characterMakers.push(() => makeCharacter(
  40375. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40376. {
  40377. front: {
  40378. height: math.unit(325, "feet"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/zorkaiju/front.svg",
  40382. extra: 1955/1814,
  40383. bottom: 40/1995
  40384. }
  40385. },
  40386. frontExtended: {
  40387. height: math.unit(325, "feet"),
  40388. name: "Front (Extended)",
  40389. image: {
  40390. source: "./media/characters/zorkaiju/front-extended.svg",
  40391. extra: 1955/1814,
  40392. bottom: 40/1995
  40393. }
  40394. },
  40395. side: {
  40396. height: math.unit(325, "feet"),
  40397. name: "Side",
  40398. image: {
  40399. source: "./media/characters/zorkaiju/side.svg",
  40400. extra: 1495/1396,
  40401. bottom: 17/1512
  40402. }
  40403. },
  40404. sideExtended: {
  40405. height: math.unit(325, "feet"),
  40406. name: "Side (Extended)",
  40407. image: {
  40408. source: "./media/characters/zorkaiju/side-extended.svg",
  40409. extra: 1495/1396,
  40410. bottom: 17/1512
  40411. }
  40412. },
  40413. back: {
  40414. height: math.unit(325, "feet"),
  40415. name: "Back",
  40416. image: {
  40417. source: "./media/characters/zorkaiju/back.svg",
  40418. extra: 1959/1821,
  40419. bottom: 31/1990
  40420. }
  40421. },
  40422. backExtended: {
  40423. height: math.unit(325, "feet"),
  40424. name: "Back (Extended)",
  40425. image: {
  40426. source: "./media/characters/zorkaiju/back-extended.svg",
  40427. extra: 1959/1821,
  40428. bottom: 31/1990
  40429. }
  40430. },
  40431. hand: {
  40432. height: math.unit(58.4, "feet"),
  40433. name: "Hand",
  40434. image: {
  40435. source: "./media/characters/zorkaiju/hand.svg"
  40436. }
  40437. },
  40438. handExtended: {
  40439. height: math.unit(61.4, "feet"),
  40440. name: "Hand (Extended)",
  40441. image: {
  40442. source: "./media/characters/zorkaiju/hand-extended.svg"
  40443. }
  40444. },
  40445. foot: {
  40446. height: math.unit(95, "feet"),
  40447. name: "Foot",
  40448. image: {
  40449. source: "./media/characters/zorkaiju/foot.svg"
  40450. }
  40451. },
  40452. leftArm: {
  40453. height: math.unit(59, "feet"),
  40454. name: "Left Arm",
  40455. image: {
  40456. source: "./media/characters/zorkaiju/left-arm.svg"
  40457. }
  40458. },
  40459. rightArm: {
  40460. height: math.unit(59, "feet"),
  40461. name: "Right Arm",
  40462. image: {
  40463. source: "./media/characters/zorkaiju/right-arm.svg"
  40464. }
  40465. },
  40466. tail: {
  40467. height: math.unit(104, "feet"),
  40468. name: "Tail",
  40469. image: {
  40470. source: "./media/characters/zorkaiju/tail.svg"
  40471. }
  40472. },
  40473. tailExtended: {
  40474. height: math.unit(104, "feet"),
  40475. name: "Tail (Extended)",
  40476. image: {
  40477. source: "./media/characters/zorkaiju/tail-extended.svg"
  40478. }
  40479. },
  40480. tailBottom: {
  40481. height: math.unit(104, "feet"),
  40482. name: "Tail Bottom",
  40483. image: {
  40484. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40485. }
  40486. },
  40487. crystal: {
  40488. height: math.unit(27.54, "feet"),
  40489. name: "Crystal",
  40490. image: {
  40491. source: "./media/characters/zorkaiju/crystal.svg"
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Kaiju",
  40498. height: math.unit(325, "feet"),
  40499. default: true
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(6 + 1/12, "feet"),
  40508. weight: math.unit(115, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/bailey-belfry/front.svg",
  40512. extra: 1240/1121,
  40513. bottom: 101/1341
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "Normal",
  40520. height: math.unit(6 + 1/12, "feet"),
  40521. default: true
  40522. },
  40523. ]
  40524. ))
  40525. characterMakers.push(() => makeCharacter(
  40526. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40527. {
  40528. side: {
  40529. height: math.unit(4, "meters"),
  40530. weight: math.unit(250, "kg"),
  40531. name: "Side",
  40532. image: {
  40533. source: "./media/characters/blacky/side.svg",
  40534. extra: 1027/919,
  40535. bottom: 43/1070
  40536. }
  40537. },
  40538. maw: {
  40539. height: math.unit(1, "meters"),
  40540. name: "Maw",
  40541. image: {
  40542. source: "./media/characters/blacky/maw.svg"
  40543. }
  40544. },
  40545. paw: {
  40546. height: math.unit(1, "meters"),
  40547. name: "Paw",
  40548. image: {
  40549. source: "./media/characters/blacky/paw.svg"
  40550. }
  40551. },
  40552. },
  40553. [
  40554. {
  40555. name: "Normal",
  40556. height: math.unit(4, "meters"),
  40557. default: true
  40558. },
  40559. ]
  40560. ))
  40561. characterMakers.push(() => makeCharacter(
  40562. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40563. {
  40564. front: {
  40565. height: math.unit(170, "cm"),
  40566. weight: math.unit(66, "kg"),
  40567. name: "Front",
  40568. image: {
  40569. source: "./media/characters/thux-ei/front.svg",
  40570. extra: 1109/1011,
  40571. bottom: 8/1117
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(170, "cm"),
  40579. default: true
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(5, "feet"),
  40588. weight: math.unit(120, "lb"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/roxanne-voltaire/front.svg",
  40592. extra: 1901/1779,
  40593. bottom: 53/1954
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Normal",
  40600. height: math.unit(5, "feet"),
  40601. default: true
  40602. },
  40603. {
  40604. name: "Giant",
  40605. height: math.unit(50, "feet")
  40606. },
  40607. {
  40608. name: "Titan",
  40609. height: math.unit(500, "feet")
  40610. },
  40611. {
  40612. name: "Macro",
  40613. height: math.unit(5000, "feet")
  40614. },
  40615. {
  40616. name: "Megamacro",
  40617. height: math.unit(50000, "feet")
  40618. },
  40619. {
  40620. name: "Gigamacro",
  40621. height: math.unit(500000, "feet")
  40622. },
  40623. {
  40624. name: "Teramacro",
  40625. height: math.unit(5e6, "feet")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(6 + 2/12, "feet"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/squeaks/front.svg",
  40637. extra: 1823/1768,
  40638. bottom: 138/1961
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Micro",
  40645. height: math.unit(0.5, "inches")
  40646. },
  40647. {
  40648. name: "Normal",
  40649. height: math.unit(6 + 2/12, "feet"),
  40650. default: true
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(600, "feet")
  40655. },
  40656. ]
  40657. ))
  40658. characterMakers.push(() => makeCharacter(
  40659. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40660. {
  40661. front: {
  40662. height: math.unit(1.72, "meters"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/archinger/front.svg",
  40666. extra: 1861/1675,
  40667. bottom: 125/1986
  40668. }
  40669. },
  40670. back: {
  40671. height: math.unit(1.72, "meters"),
  40672. name: "Back",
  40673. image: {
  40674. source: "./media/characters/archinger/back.svg",
  40675. extra: 1844/1701,
  40676. bottom: 104/1948
  40677. }
  40678. },
  40679. cock: {
  40680. height: math.unit(0.59, "feet"),
  40681. name: "Cock",
  40682. image: {
  40683. source: "./media/characters/archinger/cock.svg"
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(1.72, "meters"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(84, "meters")
  40696. },
  40697. {
  40698. name: "Macro+",
  40699. height: math.unit(112, "meters")
  40700. },
  40701. {
  40702. name: "Macro++",
  40703. height: math.unit(960, "meters")
  40704. },
  40705. {
  40706. name: "Macro+++",
  40707. height: math.unit(4, "km")
  40708. },
  40709. {
  40710. name: "Macro++++",
  40711. height: math.unit(48, "km")
  40712. },
  40713. {
  40714. name: "Macro+++++",
  40715. height: math.unit(4500, "km")
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(5 + 5/12, "feet"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/alsnapz/front.svg",
  40727. extra: 1157/1065,
  40728. bottom: 42/1199
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Normal",
  40735. height: math.unit(5 + 5/12, "feet"),
  40736. default: true
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40742. {
  40743. side: {
  40744. height: math.unit(3.2, "earths"),
  40745. name: "Side",
  40746. image: {
  40747. source: "./media/characters/mag/side.svg",
  40748. extra: 1331/1008,
  40749. bottom: 52/1383
  40750. }
  40751. },
  40752. wing: {
  40753. height: math.unit(1.94, "earths"),
  40754. name: "Wing",
  40755. image: {
  40756. source: "./media/characters/mag/wing.svg"
  40757. }
  40758. },
  40759. dick: {
  40760. height: math.unit(1.8, "earths"),
  40761. name: "Dick",
  40762. image: {
  40763. source: "./media/characters/mag/dick.svg"
  40764. }
  40765. },
  40766. ass: {
  40767. height: math.unit(1.33, "earths"),
  40768. name: "Ass",
  40769. image: {
  40770. source: "./media/characters/mag/ass.svg"
  40771. }
  40772. },
  40773. head: {
  40774. height: math.unit(1.1, "earths"),
  40775. name: "Head",
  40776. image: {
  40777. source: "./media/characters/mag/head.svg"
  40778. }
  40779. },
  40780. maw: {
  40781. height: math.unit(1.62, "earths"),
  40782. name: "Maw",
  40783. image: {
  40784. source: "./media/characters/mag/maw.svg"
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Small",
  40791. height: math.unit(162, "feet")
  40792. },
  40793. {
  40794. name: "Normal",
  40795. height: math.unit(3.2, "earths"),
  40796. default: true
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(512, "feet"),
  40805. weight: math.unit(63509, "tonnes"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/vorrel-harroc/front.svg",
  40809. extra: 1075/1063,
  40810. bottom: 62/1137
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(10, "feet")
  40818. },
  40819. {
  40820. name: "Macro",
  40821. height: math.unit(512, "feet"),
  40822. default: true
  40823. },
  40824. {
  40825. name: "Megamacro",
  40826. height: math.unit(256, "miles")
  40827. },
  40828. {
  40829. name: "Gigamacro",
  40830. height: math.unit(4096, "miles")
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40836. {
  40837. side: {
  40838. height: math.unit(50, "feet"),
  40839. name: "Side",
  40840. image: {
  40841. source: "./media/characters/froimar/side.svg",
  40842. extra: 855/638,
  40843. bottom: 99/954
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Macro",
  40850. height: math.unit(50, "feet"),
  40851. default: true
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(210, "miles"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/timothy/front.svg",
  40863. extra: 1007/943,
  40864. bottom: 62/1069
  40865. }
  40866. },
  40867. frontSkirt: {
  40868. height: math.unit(210, "miles"),
  40869. name: "Front (Skirt)",
  40870. image: {
  40871. source: "./media/characters/timothy/front-skirt.svg",
  40872. extra: 1007/943,
  40873. bottom: 62/1069
  40874. }
  40875. },
  40876. frontCoat: {
  40877. height: math.unit(210, "miles"),
  40878. name: "Front (Coat)",
  40879. image: {
  40880. source: "./media/characters/timothy/front-coat.svg",
  40881. extra: 1007/943,
  40882. bottom: 62/1069
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(210, "miles"),
  40890. default: true
  40891. },
  40892. {
  40893. name: "Megamacro",
  40894. height: math.unit(210000, "miles")
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(188, "feet"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/pyotr/front.svg",
  40906. extra: 1912/1826,
  40907. bottom: 18/1930
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(188, "feet"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "Megamacro",
  40919. height: math.unit(8, "miles")
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40925. {
  40926. side: {
  40927. height: math.unit(10, "feet"),
  40928. weight: math.unit(4500, "lb"),
  40929. name: "Side",
  40930. image: {
  40931. source: "./media/characters/ackart/side.svg",
  40932. extra: 1776/1668,
  40933. bottom: 116/1892
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(10, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40947. {
  40948. side: {
  40949. height: math.unit(21, "feet"),
  40950. name: "Side",
  40951. image: {
  40952. source: "./media/characters/nolow/side.svg",
  40953. extra: 1484/1434,
  40954. bottom: 85/1569
  40955. }
  40956. },
  40957. sideErect: {
  40958. height: math.unit(21, "feet"),
  40959. name: "Side-erect",
  40960. image: {
  40961. source: "./media/characters/nolow/side-erect.svg",
  40962. extra: 1484/1434,
  40963. bottom: 85/1569
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Regular",
  40970. height: math.unit(12, "feet")
  40971. },
  40972. {
  40973. name: "Big Chee",
  40974. height: math.unit(21, "feet"),
  40975. default: true
  40976. },
  40977. ]
  40978. ))
  40979. characterMakers.push(() => makeCharacter(
  40980. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40981. {
  40982. front: {
  40983. height: math.unit(7, "feet"),
  40984. weight: math.unit(250, "lb"),
  40985. name: "Front",
  40986. image: {
  40987. source: "./media/characters/nines/front.svg",
  40988. extra: 1741/1607,
  40989. bottom: 41/1782
  40990. }
  40991. },
  40992. side: {
  40993. height: math.unit(7, "feet"),
  40994. weight: math.unit(250, "lb"),
  40995. name: "Side",
  40996. image: {
  40997. source: "./media/characters/nines/side.svg",
  40998. extra: 1854/1735,
  40999. bottom: 93/1947
  41000. }
  41001. },
  41002. back: {
  41003. height: math.unit(7, "feet"),
  41004. weight: math.unit(250, "lb"),
  41005. name: "Back",
  41006. image: {
  41007. source: "./media/characters/nines/back.svg",
  41008. extra: 1748/1615,
  41009. bottom: 20/1768
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Megamacro",
  41016. height: math.unit(99, "km"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(5 + 10/12, "feet"),
  41026. weight: math.unit(210, "lb"),
  41027. name: "Front",
  41028. image: {
  41029. source: "./media/characters/zenith/front.svg",
  41030. extra: 1531/1452,
  41031. bottom: 198/1729
  41032. }
  41033. },
  41034. back: {
  41035. height: math.unit(5 + 10/12, "feet"),
  41036. weight: math.unit(210, "lb"),
  41037. name: "Back",
  41038. image: {
  41039. source: "./media/characters/zenith/back.svg",
  41040. extra: 1571/1487,
  41041. bottom: 75/1646
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(5 + 10/12, "feet"),
  41049. default: true
  41050. }
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41055. {
  41056. front: {
  41057. height: math.unit(4, "feet"),
  41058. weight: math.unit(60, "lb"),
  41059. name: "Front",
  41060. image: {
  41061. source: "./media/characters/jasper/front.svg",
  41062. extra: 1450/1379,
  41063. bottom: 19/1469
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(4, "feet"),
  41071. default: true
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(6 + 5/12, "feet"),
  41080. weight: math.unit(290, "lb"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/tiberius-thyben/front.svg",
  41084. extra: 757/739,
  41085. bottom: 39/796
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Micro",
  41092. height: math.unit(1.5, "inches")
  41093. },
  41094. {
  41095. name: "Normal",
  41096. height: math.unit(6 + 5/12, "feet"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Macro",
  41101. height: math.unit(300, "feet")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(5 + 6/12, "feet"),
  41110. weight: math.unit(60, "kg"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/sabre/front.svg",
  41114. extra: 738/671,
  41115. bottom: 27/765
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Teeny",
  41122. height: math.unit(2, "inches")
  41123. },
  41124. {
  41125. name: "Smol",
  41126. height: math.unit(8, "inches")
  41127. },
  41128. {
  41129. name: "Normal",
  41130. height: math.unit(5 + 6/12, "feet"),
  41131. default: true
  41132. },
  41133. {
  41134. name: "Mini-Macro",
  41135. height: math.unit(15, "feet")
  41136. },
  41137. {
  41138. name: "Macro",
  41139. height: math.unit(50, "feet")
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(6 + 4/12, "feet"),
  41148. weight: math.unit(170, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/charlie/front.svg",
  41152. extra: 1348/1228,
  41153. bottom: 15/1363
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Macro",
  41160. height: math.unit(1700, "meters"),
  41161. default: true
  41162. },
  41163. {
  41164. name: "MegaMacro",
  41165. height: math.unit(20400, "meters")
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41171. {
  41172. front: {
  41173. height: math.unit(6 + 3/12, "feet"),
  41174. weight: math.unit(185, "lb"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/susan-grant/front.svg",
  41178. extra: 1351/1327,
  41179. bottom: 26/1377
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Normal",
  41186. height: math.unit(6 + 3/12, "feet"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(225, "feet")
  41192. },
  41193. {
  41194. name: "Macro+",
  41195. height: math.unit(900, "feet")
  41196. },
  41197. {
  41198. name: "MegaMacro",
  41199. height: math.unit(14400, "feet")
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(5 + 4/12, "feet"),
  41208. weight: math.unit(110, "lb"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/axel-isanov/front.svg",
  41212. extra: 1096/1065,
  41213. bottom: 13/1109
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(5 + 4/12, "feet"),
  41221. default: true
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(9, "feet"),
  41230. weight: math.unit(467, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/necahual/front.svg",
  41234. extra: 920/873,
  41235. bottom: 26/946
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(9, "feet"),
  41240. weight: math.unit(467, "lb"),
  41241. name: "Back",
  41242. image: {
  41243. source: "./media/characters/necahual/back.svg",
  41244. extra: 930/884,
  41245. bottom: 16/946
  41246. }
  41247. },
  41248. frontUnderwear: {
  41249. height: math.unit(9, "feet"),
  41250. weight: math.unit(467, "lb"),
  41251. name: "Front (Underwear)",
  41252. image: {
  41253. source: "./media/characters/necahual/front-underwear.svg",
  41254. extra: 920/873,
  41255. bottom: 26/946
  41256. }
  41257. },
  41258. frontDressed: {
  41259. height: math.unit(9, "feet"),
  41260. weight: math.unit(467, "lb"),
  41261. name: "Front (Dressed)",
  41262. image: {
  41263. source: "./media/characters/necahual/front-dressed.svg",
  41264. extra: 920/873,
  41265. bottom: 26/946
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Comprsesed",
  41272. height: math.unit(9, "feet")
  41273. },
  41274. {
  41275. name: "Natural",
  41276. height: math.unit(15, "feet"),
  41277. default: true
  41278. },
  41279. {
  41280. name: "Boosted",
  41281. height: math.unit(50, "feet")
  41282. },
  41283. {
  41284. name: "Boosted+",
  41285. height: math.unit(150, "feet")
  41286. },
  41287. {
  41288. name: "Max",
  41289. height: math.unit(500, "feet")
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41295. {
  41296. front: {
  41297. height: math.unit(22 + 1/12, "feet"),
  41298. weight: math.unit(3200, "lb"),
  41299. name: "Front",
  41300. image: {
  41301. source: "./media/characters/theo-acacia/front.svg",
  41302. extra: 1796/1741,
  41303. bottom: 83/1879
  41304. }
  41305. },
  41306. frontUnderwear: {
  41307. height: math.unit(22 + 1/12, "feet"),
  41308. weight: math.unit(3200, "lb"),
  41309. name: "Front (Underwear)",
  41310. image: {
  41311. source: "./media/characters/theo-acacia/front-underwear.svg",
  41312. extra: 1796/1741,
  41313. bottom: 83/1879
  41314. }
  41315. },
  41316. frontNude: {
  41317. height: math.unit(22 + 1/12, "feet"),
  41318. weight: math.unit(3200, "lb"),
  41319. name: "Front (Nude)",
  41320. image: {
  41321. source: "./media/characters/theo-acacia/front-nude.svg",
  41322. extra: 1796/1741,
  41323. bottom: 83/1879
  41324. }
  41325. },
  41326. },
  41327. [
  41328. {
  41329. name: "Normal",
  41330. height: math.unit(22 + 1/12, "feet"),
  41331. default: true
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(20, "feet"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/astra/front.svg",
  41343. extra: 1850/1714,
  41344. bottom: 106/1956
  41345. }
  41346. },
  41347. frontUndressed: {
  41348. height: math.unit(20, "feet"),
  41349. name: "Front (Undressed)",
  41350. image: {
  41351. source: "./media/characters/astra/front-undressed.svg",
  41352. extra: 1926/1749,
  41353. bottom: 0/1926
  41354. }
  41355. },
  41356. hand: {
  41357. height: math.unit(1.53, "feet"),
  41358. name: "Hand",
  41359. image: {
  41360. source: "./media/characters/astra/hand.svg"
  41361. }
  41362. },
  41363. paw: {
  41364. height: math.unit(1.53, "feet"),
  41365. name: "Paw",
  41366. image: {
  41367. source: "./media/characters/astra/paw.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Smallest",
  41374. height: math.unit(20, "feet")
  41375. },
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(1e9, "miles"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Larger",
  41383. height: math.unit(5, "multiverses")
  41384. },
  41385. {
  41386. name: "Largest",
  41387. height: math.unit(1e9, "multiverses")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(8, "feet"),
  41396. name: "Front",
  41397. image: {
  41398. source: "./media/characters/breanna/front.svg",
  41399. extra: 1912/1632,
  41400. bottom: 33/1945
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Smallest",
  41407. height: math.unit(8, "feet")
  41408. },
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(1, "mile"),
  41412. default: true
  41413. },
  41414. {
  41415. name: "Maximum",
  41416. height: math.unit(1500000000000, "lightyears")
  41417. },
  41418. ]
  41419. ))
  41420. characterMakers.push(() => makeCharacter(
  41421. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41422. {
  41423. front: {
  41424. height: math.unit(5 + 11/12, "feet"),
  41425. weight: math.unit(155, "lb"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/cai/front.svg",
  41429. extra: 1823/1702,
  41430. bottom: 32/1855
  41431. }
  41432. },
  41433. back: {
  41434. height: math.unit(5 + 11/12, "feet"),
  41435. weight: math.unit(155, "lb"),
  41436. name: "Back",
  41437. image: {
  41438. source: "./media/characters/cai/back.svg",
  41439. extra: 1809/1708,
  41440. bottom: 31/1840
  41441. }
  41442. },
  41443. },
  41444. [
  41445. {
  41446. name: "Normal",
  41447. height: math.unit(5 + 11/12, "feet"),
  41448. default: true
  41449. },
  41450. {
  41451. name: "Big",
  41452. height: math.unit(15, "feet")
  41453. },
  41454. {
  41455. name: "Macro",
  41456. height: math.unit(200, "feet")
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41462. {
  41463. front: {
  41464. height: math.unit(5 + 6/12, "feet"),
  41465. weight: math.unit(160, "lb"),
  41466. name: "Front",
  41467. image: {
  41468. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41469. extra: 1227/1174,
  41470. bottom: 37/1264
  41471. }
  41472. },
  41473. },
  41474. [
  41475. {
  41476. name: "Macro",
  41477. height: math.unit(444, "meters"),
  41478. default: true
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(18 + 7/12, "feet"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/rex/front.svg",
  41490. extra: 1941/1807,
  41491. bottom: 66/2007
  41492. }
  41493. },
  41494. back: {
  41495. height: math.unit(18 + 7/12, "feet"),
  41496. name: "Back",
  41497. image: {
  41498. source: "./media/characters/rex/back.svg",
  41499. extra: 1937/1822,
  41500. bottom: 42/1979
  41501. }
  41502. },
  41503. boot: {
  41504. height: math.unit(3.45, "feet"),
  41505. name: "Boot",
  41506. image: {
  41507. source: "./media/characters/rex/boot.svg"
  41508. }
  41509. },
  41510. paw: {
  41511. height: math.unit(4.17, "feet"),
  41512. name: "Paw",
  41513. image: {
  41514. source: "./media/characters/rex/paw.svg"
  41515. }
  41516. },
  41517. head: {
  41518. height: math.unit(6.728, "feet"),
  41519. name: "Head",
  41520. image: {
  41521. source: "./media/characters/rex/head.svg"
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Nano",
  41528. height: math.unit(18 + 7/12, "feet")
  41529. },
  41530. {
  41531. name: "Micro",
  41532. height: math.unit(1.5, "megameters")
  41533. },
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(440, "megameters"),
  41537. default: true
  41538. },
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(2.5, "gigameters")
  41542. },
  41543. {
  41544. name: "Gigamacro",
  41545. height: math.unit(2, "galaxies")
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41551. {
  41552. side: {
  41553. height: math.unit(32, "feet"),
  41554. weight: math.unit(250000, "lb"),
  41555. name: "Side",
  41556. image: {
  41557. source: "./media/characters/silverwing/side.svg",
  41558. extra: 1100/1019,
  41559. bottom: 204/1304
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(32, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(6 + 6/12, "feet"),
  41576. weight: math.unit(350, "lb"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/tristan-hawthorne/front.svg",
  41580. extra: 1159/1124,
  41581. bottom: 37/1196
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(6 + 6/12, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(5 + 11/12, "feet"),
  41598. weight: math.unit(190, "lb"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/mizu/front.svg",
  41602. extra: 1988/1788,
  41603. bottom: 14/2002
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(5 + 11/12, "feet"),
  41611. default: true
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(1.7, "feet"),
  41620. weight: math.unit(50, "lb"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/dechroma/front.svg",
  41624. extra: 1095/859,
  41625. bottom: 64/1159
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(1.7, "feet"),
  41633. default: true
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41639. {
  41640. side: {
  41641. height: math.unit(30, "feet"),
  41642. name: "Side",
  41643. image: {
  41644. source: "./media/characters/veluren-thanazel/side.svg",
  41645. extra: 1611/633,
  41646. bottom: 118/1729
  41647. }
  41648. },
  41649. front: {
  41650. height: math.unit(30, "feet"),
  41651. name: "Front",
  41652. image: {
  41653. source: "./media/characters/veluren-thanazel/front.svg",
  41654. extra: 1486/636,
  41655. bottom: 238/1724
  41656. }
  41657. },
  41658. head: {
  41659. height: math.unit(21.4, "feet"),
  41660. name: "Head",
  41661. image: {
  41662. source: "./media/characters/veluren-thanazel/head.svg"
  41663. }
  41664. },
  41665. genitals: {
  41666. height: math.unit(19.4, "feet"),
  41667. name: "Genitals",
  41668. image: {
  41669. source: "./media/characters/veluren-thanazel/genitals.svg"
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Social",
  41676. height: math.unit(6, "feet")
  41677. },
  41678. {
  41679. name: "Play",
  41680. height: math.unit(12, "feet")
  41681. },
  41682. {
  41683. name: "True",
  41684. height: math.unit(30, "feet"),
  41685. default: true
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(7 + 6/12, "feet"),
  41694. weight: math.unit(500, "kg"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/arcturas/front.svg",
  41698. extra: 1700/1500,
  41699. bottom: 145/1845
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Normal",
  41706. height: math.unit(7 + 6/12, "feet"),
  41707. default: true
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41713. {
  41714. side: {
  41715. height: math.unit(6, "feet"),
  41716. weight: math.unit(2, "tons"),
  41717. name: "Side",
  41718. image: {
  41719. source: "./media/characters/vitaen/side.svg",
  41720. extra: 1157/617,
  41721. bottom: 122/1279
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Normal",
  41728. height: math.unit(6, "feet"),
  41729. default: true
  41730. },
  41731. ]
  41732. ))
  41733. characterMakers.push(() => makeCharacter(
  41734. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41735. {
  41736. front: {
  41737. height: math.unit(19, "feet"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/fia-dreamweaver/front.svg",
  41741. extra: 1630/1504,
  41742. bottom: 25/1655
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(19, "feet"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(5 + 4/12, "feet"),
  41759. name: "Front",
  41760. image: {
  41761. source: "./media/characters/artan/front.svg",
  41762. extra: 1618/1535,
  41763. bottom: 46/1664
  41764. }
  41765. },
  41766. back: {
  41767. height: math.unit(5 + 4/12, "feet"),
  41768. name: "Back",
  41769. image: {
  41770. source: "./media/characters/artan/back.svg",
  41771. extra: 1618/1543,
  41772. bottom: 31/1649
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Normal",
  41779. height: math.unit(5 + 4/12, "feet"),
  41780. default: true
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41786. {
  41787. side: {
  41788. height: math.unit(182, "cm"),
  41789. weight: math.unit(1000, "lb"),
  41790. name: "Side",
  41791. image: {
  41792. source: "./media/characters/silver-dragon/side.svg",
  41793. extra: 710/287,
  41794. bottom: 88/798
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Normal",
  41801. height: math.unit(182, "cm"),
  41802. default: true
  41803. },
  41804. ]
  41805. ))
  41806. characterMakers.push(() => makeCharacter(
  41807. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41808. {
  41809. side: {
  41810. height: math.unit(6 + 6/12, "feet"),
  41811. weight: math.unit(1.5, "tons"),
  41812. name: "Side",
  41813. image: {
  41814. source: "./media/characters/zephyr/side.svg",
  41815. extra: 1433/586,
  41816. bottom: 109/1542
  41817. }
  41818. },
  41819. },
  41820. [
  41821. {
  41822. name: "Normal",
  41823. height: math.unit(6 + 6/12, "feet"),
  41824. default: true
  41825. },
  41826. ]
  41827. ))
  41828. characterMakers.push(() => makeCharacter(
  41829. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41830. {
  41831. side: {
  41832. height: math.unit(1, "feet"),
  41833. name: "Side",
  41834. image: {
  41835. source: "./media/characters/vixye/side.svg",
  41836. extra: 632/541,
  41837. bottom: 0/632
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Normal",
  41844. height: math.unit(1, "feet"),
  41845. default: true
  41846. },
  41847. {
  41848. name: "True",
  41849. height: math.unit(1e15, "multiverses")
  41850. },
  41851. ]
  41852. ))
  41853. characterMakers.push(() => makeCharacter(
  41854. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41855. {
  41856. front: {
  41857. height: math.unit(8 + 2/12, "feet"),
  41858. weight: math.unit(650, "lb"),
  41859. name: "Front",
  41860. image: {
  41861. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41862. extra: 1174/1137,
  41863. bottom: 82/1256
  41864. }
  41865. },
  41866. back: {
  41867. height: math.unit(8 + 2/12, "feet"),
  41868. weight: math.unit(650, "lb"),
  41869. name: "Back",
  41870. image: {
  41871. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41872. extra: 1204/1157,
  41873. bottom: 46/1250
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Wildform",
  41880. height: math.unit(8 + 2/12, "feet"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41887. {
  41888. front: {
  41889. height: math.unit(18, "feet"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/cyphin/front.svg",
  41893. extra: 970/886,
  41894. bottom: 42/1012
  41895. }
  41896. },
  41897. back: {
  41898. height: math.unit(18, "feet"),
  41899. name: "Back",
  41900. image: {
  41901. source: "./media/characters/cyphin/back.svg",
  41902. extra: 1009/894,
  41903. bottom: 24/1033
  41904. }
  41905. },
  41906. head: {
  41907. height: math.unit(5.05, "feet"),
  41908. name: "Head",
  41909. image: {
  41910. source: "./media/characters/cyphin/head.svg"
  41911. }
  41912. },
  41913. tailbud: {
  41914. height: math.unit(5, "feet"),
  41915. name: "Tailbud",
  41916. image: {
  41917. source: "./media/characters/cyphin/tailbud.svg"
  41918. }
  41919. },
  41920. },
  41921. [
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41926. {
  41927. side: {
  41928. height: math.unit(10, "feet"),
  41929. weight: math.unit(6, "tons"),
  41930. name: "Side",
  41931. image: {
  41932. source: "./media/characters/raijin/side.svg",
  41933. extra: 1529/613,
  41934. bottom: 337/1866
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(10, "feet"),
  41942. default: true
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41948. {
  41949. side: {
  41950. height: math.unit(9, "feet"),
  41951. name: "Side",
  41952. image: {
  41953. source: "./media/characters/nilghais/side.svg",
  41954. extra: 1047/744,
  41955. bottom: 91/1138
  41956. }
  41957. },
  41958. head: {
  41959. height: math.unit(3.14, "feet"),
  41960. name: "Head",
  41961. image: {
  41962. source: "./media/characters/nilghais/head.svg"
  41963. }
  41964. },
  41965. mouth: {
  41966. height: math.unit(4.6, "feet"),
  41967. name: "Mouth",
  41968. image: {
  41969. source: "./media/characters/nilghais/mouth.svg"
  41970. }
  41971. },
  41972. wings: {
  41973. height: math.unit(24, "feet"),
  41974. name: "Wings",
  41975. image: {
  41976. source: "./media/characters/nilghais/wings.svg"
  41977. }
  41978. },
  41979. ass: {
  41980. height: math.unit(6.12, "feet"),
  41981. name: "Ass",
  41982. image: {
  41983. source: "./media/characters/nilghais/ass.svg"
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(9, "feet"),
  41991. default: true
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41997. {
  41998. regular: {
  41999. height: math.unit(16 + 2/12, "feet"),
  42000. weight: math.unit(2300, "lb"),
  42001. name: "Regular",
  42002. image: {
  42003. source: "./media/characters/zolgar/regular.svg",
  42004. extra: 1246/1004,
  42005. bottom: 124/1370
  42006. }
  42007. },
  42008. boxers: {
  42009. height: math.unit(16 + 2/12, "feet"),
  42010. weight: math.unit(2300, "lb"),
  42011. name: "Boxers",
  42012. image: {
  42013. source: "./media/characters/zolgar/boxers.svg",
  42014. extra: 1246/1004,
  42015. bottom: 124/1370
  42016. }
  42017. },
  42018. armored: {
  42019. height: math.unit(16 + 2/12, "feet"),
  42020. weight: math.unit(2300, "lb"),
  42021. name: "Armored",
  42022. image: {
  42023. source: "./media/characters/zolgar/armored.svg",
  42024. extra: 1246/1004,
  42025. bottom: 124/1370
  42026. }
  42027. },
  42028. goth: {
  42029. height: math.unit(16 + 2/12, "feet"),
  42030. weight: math.unit(2300, "lb"),
  42031. name: "Goth",
  42032. image: {
  42033. source: "./media/characters/zolgar/goth.svg",
  42034. extra: 1246/1004,
  42035. bottom: 124/1370
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Shrunken Down",
  42042. height: math.unit(9 + 2/12, "feet")
  42043. },
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(16 + 2/12, "feet"),
  42047. default: true
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(6, "feet"),
  42056. weight: math.unit(168, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/luca/front.svg",
  42060. extra: 841/667,
  42061. bottom: 102/943
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(6, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42075. {
  42076. side: {
  42077. height: math.unit(7 + 3/12, "feet"),
  42078. weight: math.unit(312, "lb"),
  42079. name: "Side",
  42080. image: {
  42081. source: "./media/characters/zezo/side.svg",
  42082. extra: 1192/1067,
  42083. bottom: 63/1255
  42084. }
  42085. },
  42086. },
  42087. [
  42088. {
  42089. name: "Normal",
  42090. height: math.unit(7 + 3/12, "feet"),
  42091. default: true
  42092. },
  42093. ]
  42094. ))
  42095. characterMakers.push(() => makeCharacter(
  42096. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42097. {
  42098. front: {
  42099. height: math.unit(5 + 5/12, "feet"),
  42100. weight: math.unit(170, "lb"),
  42101. name: "Front",
  42102. image: {
  42103. source: "./media/characters/mayso/front.svg",
  42104. extra: 1215/1108,
  42105. bottom: 16/1231
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Normal",
  42112. height: math.unit(5 + 5/12, "feet"),
  42113. default: true
  42114. },
  42115. ]
  42116. ))
  42117. characterMakers.push(() => makeCharacter(
  42118. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42119. {
  42120. front: {
  42121. height: math.unit(4 + 3/12, "feet"),
  42122. weight: math.unit(80, "lb"),
  42123. name: "Front",
  42124. image: {
  42125. source: "./media/characters/hess/front.svg",
  42126. extra: 1200/1123,
  42127. bottom: 16/1216
  42128. }
  42129. },
  42130. },
  42131. [
  42132. {
  42133. name: "Normal",
  42134. height: math.unit(4 + 3/12, "feet"),
  42135. default: true
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42141. {
  42142. front: {
  42143. height: math.unit(1.9, "meters"),
  42144. name: "Front",
  42145. image: {
  42146. source: "./media/characters/ashgar/front.svg",
  42147. extra: 1177/1146,
  42148. bottom: 99/1276
  42149. }
  42150. },
  42151. back: {
  42152. height: math.unit(1.9, "meters"),
  42153. name: "Back",
  42154. image: {
  42155. source: "./media/characters/ashgar/back.svg",
  42156. extra: 1201/1183,
  42157. bottom: 53/1254
  42158. }
  42159. },
  42160. feral: {
  42161. height: math.unit(1.4, "meters"),
  42162. name: "Feral",
  42163. image: {
  42164. source: "./media/characters/ashgar/feral.svg",
  42165. extra: 370/345,
  42166. bottom: 45/415
  42167. }
  42168. },
  42169. },
  42170. [
  42171. {
  42172. name: "Normal",
  42173. height: math.unit(1.9, "meters"),
  42174. default: true
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42180. {
  42181. regular: {
  42182. height: math.unit(6, "feet"),
  42183. weight: math.unit(220, "lb"),
  42184. name: "Regular",
  42185. image: {
  42186. source: "./media/characters/phillip/regular.svg",
  42187. extra: 1373/1277,
  42188. bottom: 75/1448
  42189. }
  42190. },
  42191. dressed: {
  42192. height: math.unit(6, "feet"),
  42193. weight: math.unit(220, "lb"),
  42194. name: "Dressed",
  42195. image: {
  42196. source: "./media/characters/phillip/dressed.svg",
  42197. extra: 1373/1277,
  42198. bottom: 75/1448
  42199. }
  42200. },
  42201. paw: {
  42202. height: math.unit(1.44, "feet"),
  42203. name: "Paw",
  42204. image: {
  42205. source: "./media/characters/phillip/paw.svg"
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Normal",
  42212. height: math.unit(6, "feet"),
  42213. default: true
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42219. {
  42220. side: {
  42221. height: math.unit(42, "feet"),
  42222. name: "Side",
  42223. image: {
  42224. source: "./media/characters/uvula/side.svg",
  42225. extra: 683/586,
  42226. bottom: 60/743
  42227. }
  42228. },
  42229. front: {
  42230. height: math.unit(42, "feet"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/uvula/front.svg",
  42234. extra: 705/613,
  42235. bottom: 54/759
  42236. }
  42237. },
  42238. maw: {
  42239. height: math.unit(23.5, "feet"),
  42240. name: "Maw",
  42241. image: {
  42242. source: "./media/characters/uvula/maw.svg"
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Original Size",
  42249. height: math.unit(14, "inches")
  42250. },
  42251. {
  42252. name: "Human Size",
  42253. height: math.unit(6, "feet")
  42254. },
  42255. {
  42256. name: "Big",
  42257. height: math.unit(42, "feet"),
  42258. default: true
  42259. },
  42260. {
  42261. name: "Bigger",
  42262. height: math.unit(100, "feet")
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42268. {
  42269. front: {
  42270. height: math.unit(5 + 11/12, "feet"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/lannah/front.svg",
  42274. extra: 1208/1113,
  42275. bottom: 97/1305
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(5 + 11/12, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6 + 3/12, "feet"),
  42292. weight: math.unit(3.5, "tons"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/emberflame/front.svg",
  42296. extra: 1198/672,
  42297. bottom: 82/1280
  42298. }
  42299. },
  42300. side: {
  42301. height: math.unit(6 + 3/12, "feet"),
  42302. weight: math.unit(3.5, "tons"),
  42303. name: "Side",
  42304. image: {
  42305. source: "./media/characters/emberflame/side.svg",
  42306. extra: 938/527,
  42307. bottom: 56/994
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Normal",
  42314. height: math.unit(6 + 3/12, "feet"),
  42315. default: true
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42321. {
  42322. side: {
  42323. height: math.unit(17.5, "feet"),
  42324. weight: math.unit(35, "tons"),
  42325. name: "Side",
  42326. image: {
  42327. source: "./media/characters/sophie-ambrose/side.svg",
  42328. extra: 1573/1242,
  42329. bottom: 71/1644
  42330. }
  42331. },
  42332. maw: {
  42333. height: math.unit(7.4, "feet"),
  42334. name: "Maw",
  42335. image: {
  42336. source: "./media/characters/sophie-ambrose/maw.svg"
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(17.5, "feet"),
  42344. default: true
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(280, "feet"),
  42353. weight: math.unit(550, "tons"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/king-mugi/front.svg",
  42357. extra: 1102/947,
  42358. bottom: 104/1206
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "King Mugi",
  42365. height: math.unit(280, "feet"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(64, "meters"),
  42375. name: "Front",
  42376. image: {
  42377. source: "./media/characters/nova-fox/front.svg",
  42378. extra: 1310/1246,
  42379. bottom: 65/1375
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Macro",
  42386. height: math.unit(64, "meters"),
  42387. default: true
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(6 + 3/12, "feet"),
  42396. weight: math.unit(170, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/sam-bat/front.svg",
  42400. extra: 1601/1411,
  42401. bottom: 125/1726
  42402. }
  42403. },
  42404. back: {
  42405. height: math.unit(6 + 3/12, "feet"),
  42406. weight: math.unit(170, "lb"),
  42407. name: "Back",
  42408. image: {
  42409. source: "./media/characters/sam-bat/back.svg",
  42410. extra: 1577/1405,
  42411. bottom: 58/1635
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Normal",
  42418. height: math.unit(6 + 3/12, "feet"),
  42419. default: true
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42425. {
  42426. front: {
  42427. height: math.unit(59, "feet"),
  42428. weight: math.unit(40000, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/inari/front.svg",
  42432. extra: 1884/1350,
  42433. bottom: 95/1979
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Gigantamax",
  42440. height: math.unit(59, "feet"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(5 + 8/12, "feet"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/elizabeth/front.svg",
  42453. extra: 1395/1298,
  42454. bottom: 54/1449
  42455. }
  42456. },
  42457. mouth: {
  42458. height: math.unit(1.97, "feet"),
  42459. name: "Mouth",
  42460. image: {
  42461. source: "./media/characters/elizabeth/mouth.svg"
  42462. }
  42463. },
  42464. foot: {
  42465. height: math.unit(1.17, "feet"),
  42466. name: "Foot",
  42467. image: {
  42468. source: "./media/characters/elizabeth/foot.svg"
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Normal",
  42475. height: math.unit(5 + 8/12, "feet"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Minimacro",
  42480. height: math.unit(18, "feet")
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(180, "feet")
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42490. {
  42491. front: {
  42492. height: math.unit(5 + 2/12, "feet"),
  42493. name: "Front",
  42494. image: {
  42495. source: "./media/characters/october-gossamer/front.svg",
  42496. extra: 505/454,
  42497. bottom: 7/512
  42498. }
  42499. },
  42500. back: {
  42501. height: math.unit(5 + 2/12, "feet"),
  42502. name: "Back",
  42503. image: {
  42504. source: "./media/characters/october-gossamer/back.svg",
  42505. extra: 501/454,
  42506. bottom: 11/512
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Normal",
  42513. height: math.unit(5 + 2/12, "feet"),
  42514. default: true
  42515. },
  42516. ]
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42520. {
  42521. front: {
  42522. height: math.unit(5, "feet"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/epiglottis/front.svg",
  42526. extra: 923/849,
  42527. bottom: 17/940
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Original Size",
  42534. height: math.unit(10, "inches")
  42535. },
  42536. {
  42537. name: "Human Size",
  42538. height: math.unit(5, "feet"),
  42539. default: true
  42540. },
  42541. {
  42542. name: "Big",
  42543. height: math.unit(25, "feet")
  42544. },
  42545. {
  42546. name: "Bigger",
  42547. height: math.unit(50, "feet")
  42548. },
  42549. {
  42550. name: "oh lawd",
  42551. height: math.unit(75, "feet")
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(2 + 4/12, "feet"),
  42560. weight: math.unit(60, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/lerm/front.svg",
  42564. extra: 796/790,
  42565. bottom: 79/875
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(2 + 4/12, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(5.5, "feet"),
  42582. weight: math.unit(130, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/xena-nebadon/front.svg",
  42586. extra: 1828/1730,
  42587. bottom: 79/1907
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Tiny Puppy",
  42594. height: math.unit(3, "inches")
  42595. },
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(5.5, "feet"),
  42599. default: true
  42600. },
  42601. {
  42602. name: "Lotta Lady",
  42603. height: math.unit(12, "feet")
  42604. },
  42605. {
  42606. name: "Pretty Big",
  42607. height: math.unit(100, "feet")
  42608. },
  42609. {
  42610. name: "Big",
  42611. height: math.unit(500, "feet")
  42612. },
  42613. {
  42614. name: "Skyscraper Toys",
  42615. height: math.unit(2500, "feet")
  42616. },
  42617. {
  42618. name: "Plane Catcher",
  42619. height: math.unit(8, "miles")
  42620. },
  42621. {
  42622. name: "Planet Toys",
  42623. height: math.unit(15, "earths")
  42624. },
  42625. {
  42626. name: "Stardust",
  42627. height: math.unit(0.25, "galaxies")
  42628. },
  42629. {
  42630. name: "Snacks",
  42631. height: math.unit(70, "universes")
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(1.6, "meters"),
  42640. weight: math.unit(60, "kg"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/bounty/front.svg",
  42644. extra: 1426/1308,
  42645. bottom: 15/1441
  42646. }
  42647. },
  42648. back: {
  42649. height: math.unit(1.6, "meters"),
  42650. weight: math.unit(60, "kg"),
  42651. name: "Back",
  42652. image: {
  42653. source: "./media/characters/bounty/back.svg",
  42654. extra: 1417/1307,
  42655. bottom: 8/1425
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(1.6, "meters"),
  42663. default: true
  42664. },
  42665. {
  42666. name: "Macro",
  42667. height: math.unit(300, "meters")
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42673. {
  42674. front: {
  42675. height: math.unit(2 + 8/12, "feet"),
  42676. weight: math.unit(15, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/mochi/front.svg",
  42680. extra: 1022/852,
  42681. bottom: 435/1457
  42682. }
  42683. },
  42684. back: {
  42685. height: math.unit(2 + 8/12, "feet"),
  42686. weight: math.unit(15, "lb"),
  42687. name: "Back",
  42688. image: {
  42689. source: "./media/characters/mochi/back.svg",
  42690. extra: 1335/1119,
  42691. bottom: 39/1374
  42692. }
  42693. },
  42694. bird: {
  42695. height: math.unit(2 + 8/12, "feet"),
  42696. weight: math.unit(15, "lb"),
  42697. name: "Bird",
  42698. image: {
  42699. source: "./media/characters/mochi/bird.svg",
  42700. extra: 1251/1113,
  42701. bottom: 178/1429
  42702. }
  42703. },
  42704. kaiju: {
  42705. height: math.unit(154, "feet"),
  42706. weight: math.unit(1e7, "lb"),
  42707. name: "Kaiju",
  42708. image: {
  42709. source: "./media/characters/mochi/kaiju.svg",
  42710. extra: 460/324,
  42711. bottom: 40/500
  42712. }
  42713. },
  42714. head: {
  42715. height: math.unit(1.21, "feet"),
  42716. name: "Head",
  42717. image: {
  42718. source: "./media/characters/mochi/head.svg"
  42719. }
  42720. },
  42721. alternateTail: {
  42722. height: math.unit(2 + 8/12, "feet"),
  42723. weight: math.unit(45, "lb"),
  42724. name: "Alternate Tail",
  42725. image: {
  42726. source: "./media/characters/mochi/alternate-tail.svg",
  42727. extra: 139/76,
  42728. bottom: 45/184
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Micro",
  42735. height: math.unit(2, "inches")
  42736. },
  42737. {
  42738. name: "Normal",
  42739. height: math.unit(2 + 8/12, "feet"),
  42740. default: true
  42741. },
  42742. {
  42743. name: "Macro",
  42744. height: math.unit(106, "feet")
  42745. },
  42746. ]
  42747. ))
  42748. characterMakers.push(() => makeCharacter(
  42749. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42750. {
  42751. front: {
  42752. height: math.unit(5.67, "feet"),
  42753. weight: math.unit(135, "lb"),
  42754. name: "Front",
  42755. image: {
  42756. source: "./media/characters/sarel/front.svg",
  42757. extra: 865/788,
  42758. bottom: 97/962
  42759. }
  42760. },
  42761. back: {
  42762. height: math.unit(5.67, "feet"),
  42763. weight: math.unit(135, "lb"),
  42764. name: "Back",
  42765. image: {
  42766. source: "./media/characters/sarel/back.svg",
  42767. extra: 857/777,
  42768. bottom: 32/889
  42769. }
  42770. },
  42771. chozoan: {
  42772. height: math.unit(5.67, "feet"),
  42773. weight: math.unit(135, "lb"),
  42774. name: "Chozoan",
  42775. image: {
  42776. source: "./media/characters/sarel/chozoan.svg",
  42777. extra: 865/788,
  42778. bottom: 97/962
  42779. }
  42780. },
  42781. current: {
  42782. height: math.unit(5.67, "feet"),
  42783. weight: math.unit(135, "lb"),
  42784. name: "Current",
  42785. image: {
  42786. source: "./media/characters/sarel/current.svg",
  42787. extra: 865/788,
  42788. bottom: 97/962
  42789. }
  42790. },
  42791. head: {
  42792. height: math.unit(1.77, "feet"),
  42793. name: "Head",
  42794. image: {
  42795. source: "./media/characters/sarel/head.svg"
  42796. }
  42797. },
  42798. claws: {
  42799. height: math.unit(1.8, "feet"),
  42800. name: "Claws",
  42801. image: {
  42802. source: "./media/characters/sarel/claws.svg"
  42803. }
  42804. },
  42805. clawsAlt: {
  42806. height: math.unit(1.8, "feet"),
  42807. name: "Claws-alt",
  42808. image: {
  42809. source: "./media/characters/sarel/claws-alt.svg"
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(5.67, "feet"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42823. {
  42824. front: {
  42825. height: math.unit(5500, "feet"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/alyonia/front.svg",
  42829. extra: 1200/1135,
  42830. bottom: 29/1229
  42831. }
  42832. },
  42833. back: {
  42834. height: math.unit(5500, "feet"),
  42835. name: "Back",
  42836. image: {
  42837. source: "./media/characters/alyonia/back.svg",
  42838. extra: 1205/1138,
  42839. bottom: 10/1215
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Small",
  42846. height: math.unit(10, "feet")
  42847. },
  42848. {
  42849. name: "Macro",
  42850. height: math.unit(500, "feet")
  42851. },
  42852. {
  42853. name: "Mega Macro",
  42854. height: math.unit(5500, "feet"),
  42855. default: true
  42856. },
  42857. {
  42858. name: "Mega Macro+",
  42859. height: math.unit(500000, "feet")
  42860. },
  42861. {
  42862. name: "Giga Macro",
  42863. height: math.unit(3000, "miles")
  42864. },
  42865. {
  42866. name: "Tera Macro",
  42867. height: math.unit(2.8e6, "miles")
  42868. },
  42869. {
  42870. name: "Galactic",
  42871. height: math.unit(120000, "lightyears")
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42877. {
  42878. werewolf: {
  42879. height: math.unit(8, "feet"),
  42880. weight: math.unit(425, "lb"),
  42881. name: "Werewolf",
  42882. image: {
  42883. source: "./media/characters/autumn/werewolf.svg",
  42884. extra: 2154/2031,
  42885. bottom: 160/2314
  42886. }
  42887. },
  42888. human: {
  42889. height: math.unit(5 + 8/12, "feet"),
  42890. weight: math.unit(150, "lb"),
  42891. name: "Human",
  42892. image: {
  42893. source: "./media/characters/autumn/human.svg",
  42894. extra: 1200/1149,
  42895. bottom: 30/1230
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Normal",
  42902. height: math.unit(8, "feet"),
  42903. default: true
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42909. {
  42910. front: {
  42911. height: math.unit(8 + 5/12, "feet"),
  42912. weight: math.unit(825, "lb"),
  42913. name: "Front",
  42914. image: {
  42915. source: "./media/characters/cobalt-charizard/front.svg",
  42916. extra: 1268/1155,
  42917. bottom: 122/1390
  42918. }
  42919. },
  42920. side: {
  42921. height: math.unit(8 + 5/12, "feet"),
  42922. weight: math.unit(825, "lb"),
  42923. name: "Side",
  42924. image: {
  42925. source: "./media/characters/cobalt-charizard/side.svg",
  42926. extra: 1348/1257,
  42927. bottom: 58/1406
  42928. }
  42929. },
  42930. gMax: {
  42931. height: math.unit(134 + 11/12, "feet"),
  42932. name: "G-Max",
  42933. image: {
  42934. source: "./media/characters/cobalt-charizard/g-max.svg",
  42935. extra: 1835/1541,
  42936. bottom: 151/1986
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(8 + 5/12, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(6 + 3/12, "feet"),
  42953. weight: math.unit(210, "lb"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/stella/front.svg",
  42957. extra: 3549/3335,
  42958. bottom: 51/3600
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(6 + 3/12, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(5, "feet"),
  42975. weight: math.unit(90, "lb"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/riley-bishop/front.svg",
  42979. extra: 1450/1428,
  42980. bottom: 152/1602
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(5, "feet"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42994. {
  42995. side: {
  42996. height: math.unit(8 + 2/12, "feet"),
  42997. weight: math.unit(500, "kg"),
  42998. name: "Side",
  42999. image: {
  43000. source: "./media/characters/theo-arcanine/side.svg",
  43001. extra: 1342/1074,
  43002. bottom: 111/1453
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(8 + 2/12, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(4, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/kali/front.svg",
  43022. extra: 1921/1357,
  43023. bottom: 70/1991
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(4, "feet"),
  43031. default: true
  43032. },
  43033. {
  43034. name: "Macro",
  43035. height: math.unit(32, "meters")
  43036. },
  43037. {
  43038. name: "Macro+",
  43039. height: math.unit(150, "meters")
  43040. },
  43041. {
  43042. name: "Megamacro",
  43043. height: math.unit(7500, "meters")
  43044. },
  43045. {
  43046. name: "Megamacro+",
  43047. height: math.unit(80, "kilometers")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43053. {
  43054. side: {
  43055. height: math.unit(5 + 11/12, "feet"),
  43056. weight: math.unit(236, "lb"),
  43057. name: "Side",
  43058. image: {
  43059. source: "./media/characters/gapp/side.svg",
  43060. extra: 775/340,
  43061. bottom: 58/833
  43062. }
  43063. },
  43064. mouth: {
  43065. height: math.unit(2.98, "feet"),
  43066. name: "Mouth",
  43067. image: {
  43068. source: "./media/characters/gapp/mouth.svg"
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(5 + 1/12, "feet"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(6, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/persephone/front.svg",
  43088. extra: 1895/1717,
  43089. bottom: 96/1991
  43090. }
  43091. },
  43092. back: {
  43093. height: math.unit(6, "feet"),
  43094. name: "Back",
  43095. image: {
  43096. source: "./media/characters/persephone/back.svg",
  43097. extra: 1868/1679,
  43098. bottom: 26/1894
  43099. }
  43100. },
  43101. casual: {
  43102. height: math.unit(6, "feet"),
  43103. name: "Casual",
  43104. image: {
  43105. source: "./media/characters/persephone/casual.svg",
  43106. extra: 1713/1541,
  43107. bottom: 76/1789
  43108. }
  43109. },
  43110. },
  43111. [
  43112. {
  43113. name: "Human Size",
  43114. height: math.unit(6, "feet")
  43115. },
  43116. {
  43117. name: "Big Steppy",
  43118. height: math.unit(600, "meters"),
  43119. default: true
  43120. },
  43121. {
  43122. name: "Galaxy Brain",
  43123. height: math.unit(1, "zettameter")
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(1.85, "meters"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/riley-foxthing/front.svg",
  43135. extra: 1495/1354,
  43136. bottom: 122/1617
  43137. }
  43138. },
  43139. frontAlt: {
  43140. height: math.unit(1.85, "meters"),
  43141. name: "Front (Alt)",
  43142. image: {
  43143. source: "./media/characters/riley-foxthing/front-alt.svg",
  43144. extra: 1572/1389,
  43145. bottom: 116/1688
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Normal Sized",
  43152. height: math.unit(1.85, "meters"),
  43153. default: true
  43154. },
  43155. {
  43156. name: "Quite Sizable",
  43157. height: math.unit(5, "meters")
  43158. },
  43159. {
  43160. name: "Rather Large",
  43161. height: math.unit(20, "meters")
  43162. },
  43163. {
  43164. name: "Macro",
  43165. height: math.unit(450, "meters")
  43166. },
  43167. {
  43168. name: "Giga",
  43169. height: math.unit(5, "km")
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(6, "feet"),
  43178. weight: math.unit(200, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/blizzard/front.svg",
  43182. extra: 1136/990,
  43183. bottom: 136/1272
  43184. }
  43185. },
  43186. back: {
  43187. height: math.unit(6, "feet"),
  43188. weight: math.unit(200, "lb"),
  43189. name: "Back",
  43190. image: {
  43191. source: "./media/characters/blizzard/back.svg",
  43192. extra: 1175/1034,
  43193. bottom: 97/1272
  43194. }
  43195. },
  43196. sitting: {
  43197. height: math.unit(3.725, "feet"),
  43198. weight: math.unit(200, "lb"),
  43199. name: "Sitting",
  43200. image: {
  43201. source: "./media/characters/blizzard/sitting.svg",
  43202. extra: 581/485,
  43203. bottom: 90/671
  43204. }
  43205. },
  43206. frontWizard: {
  43207. height: math.unit(7.9, "feet"),
  43208. weight: math.unit(200, "lb"),
  43209. name: "Front (Wizard)",
  43210. image: {
  43211. source: "./media/characters/blizzard/front-wizard.svg"
  43212. }
  43213. },
  43214. backWizard: {
  43215. height: math.unit(7.9, "feet"),
  43216. weight: math.unit(200, "lb"),
  43217. name: "Back (Wizard)",
  43218. image: {
  43219. source: "./media/characters/blizzard/back-wizard.svg"
  43220. }
  43221. },
  43222. frontNsfw: {
  43223. height: math.unit(6, "feet"),
  43224. weight: math.unit(200, "lb"),
  43225. name: "Front (NSFW)",
  43226. image: {
  43227. source: "./media/characters/blizzard/front-nsfw.svg",
  43228. extra: 1136/990,
  43229. bottom: 136/1272
  43230. }
  43231. },
  43232. backNsfw: {
  43233. height: math.unit(6, "feet"),
  43234. weight: math.unit(200, "lb"),
  43235. name: "Back (NSFW)",
  43236. image: {
  43237. source: "./media/characters/blizzard/back-nsfw.svg",
  43238. extra: 1175/1034,
  43239. bottom: 97/1272
  43240. }
  43241. },
  43242. sittingNsfw: {
  43243. height: math.unit(3.725, "feet"),
  43244. weight: math.unit(200, "lb"),
  43245. name: "Sitting (NSFW)",
  43246. image: {
  43247. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43248. extra: 581/485,
  43249. bottom: 90/671
  43250. }
  43251. },
  43252. wizardFrontNsfw: {
  43253. height: math.unit(7.9, "feet"),
  43254. weight: math.unit(200, "lb"),
  43255. name: "Wizard (Front, NSFW)",
  43256. image: {
  43257. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(6, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(5 + 2/12, "feet"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/lumi/front.svg",
  43277. extra: 1328/1268,
  43278. bottom: 103/1431
  43279. }
  43280. },
  43281. back: {
  43282. height: math.unit(5 + 2/12, "feet"),
  43283. name: "Back",
  43284. image: {
  43285. source: "./media/characters/lumi/back.svg",
  43286. extra: 1381/1327,
  43287. bottom: 43/1424
  43288. }
  43289. },
  43290. },
  43291. [
  43292. {
  43293. name: "Normal",
  43294. height: math.unit(5 + 2/12, "feet"),
  43295. default: true
  43296. },
  43297. ]
  43298. ))
  43299. characterMakers.push(() => makeCharacter(
  43300. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43301. {
  43302. front: {
  43303. height: math.unit(5 + 9/12, "feet"),
  43304. name: "Front",
  43305. image: {
  43306. source: "./media/characters/aliya-cotton/front.svg",
  43307. extra: 577/564,
  43308. bottom: 29/606
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(5 + 9/12, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43322. {
  43323. front: {
  43324. height: math.unit(2.7, "meters"),
  43325. weight: math.unit(25000, "lb"),
  43326. name: "Front",
  43327. image: {
  43328. source: "./media/characters/noah-luxray/front.svg",
  43329. extra: 1644/825,
  43330. bottom: 339/1983
  43331. }
  43332. },
  43333. side: {
  43334. height: math.unit(2.97, "meters"),
  43335. weight: math.unit(25000, "lb"),
  43336. name: "Side",
  43337. image: {
  43338. source: "./media/characters/noah-luxray/side.svg",
  43339. extra: 1319/650,
  43340. bottom: 163/1482
  43341. }
  43342. },
  43343. dick: {
  43344. height: math.unit(7.4, "feet"),
  43345. weight: math.unit(2500, "lb"),
  43346. name: "Dick",
  43347. image: {
  43348. source: "./media/characters/noah-luxray/dick.svg"
  43349. }
  43350. },
  43351. dickAlt: {
  43352. height: math.unit(10.83, "feet"),
  43353. weight: math.unit(2500, "lb"),
  43354. name: "Dick-alt",
  43355. image: {
  43356. source: "./media/characters/noah-luxray/dick-alt.svg"
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "BIG",
  43363. height: math.unit(2.7, "meters"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43370. {
  43371. standing: {
  43372. height: math.unit(183, "cm"),
  43373. weight: math.unit(68, "kg"),
  43374. name: "Standing",
  43375. image: {
  43376. source: "./media/characters/arion/standing.svg",
  43377. extra: 1869/1807,
  43378. bottom: 93/1962
  43379. }
  43380. },
  43381. reclining: {
  43382. height: math.unit(70.5, "cm"),
  43383. weight: math.unit(68, "lb"),
  43384. name: "Reclining",
  43385. image: {
  43386. source: "./media/characters/arion/reclining.svg",
  43387. extra: 937/870,
  43388. bottom: 63/1000
  43389. }
  43390. },
  43391. },
  43392. [
  43393. {
  43394. name: "Colossus Size, Low",
  43395. height: math.unit(33, "meters"),
  43396. default: true
  43397. },
  43398. {
  43399. name: "Colossus Size, Mid",
  43400. height: math.unit(52, "meters")
  43401. },
  43402. {
  43403. name: "Colossus Size, High",
  43404. height: math.unit(60, "meters")
  43405. },
  43406. {
  43407. name: "Titan Size, Low",
  43408. height: math.unit(91, "meters"),
  43409. },
  43410. {
  43411. name: "Titan Size, Mid",
  43412. height: math.unit(122, "meters")
  43413. },
  43414. {
  43415. name: "Titan Size, High",
  43416. height: math.unit(162, "meters")
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(53, "meters"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/stellar-marbey/front.svg",
  43428. extra: 1913/1805,
  43429. bottom: 92/2005
  43430. }
  43431. },
  43432. back: {
  43433. height: math.unit(53, "meters"),
  43434. name: "Back",
  43435. image: {
  43436. source: "./media/characters/stellar-marbey/back.svg",
  43437. extra: 1960/1851,
  43438. bottom: 28/1988
  43439. }
  43440. },
  43441. mouth: {
  43442. height: math.unit(3.5, "meters"),
  43443. name: "Mouth",
  43444. image: {
  43445. source: "./media/characters/stellar-marbey/mouth.svg"
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Macro",
  43452. height: math.unit(53, "meters"),
  43453. default: true
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43459. {
  43460. front: {
  43461. height: math.unit(8 + 1/12, "feet"),
  43462. weight: math.unit(233, "lb"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/matsu/front.svg",
  43466. extra: 832/772,
  43467. bottom: 40/872
  43468. }
  43469. },
  43470. back: {
  43471. height: math.unit(8 + 1/12, "feet"),
  43472. weight: math.unit(233, "lb"),
  43473. name: "Back",
  43474. image: {
  43475. source: "./media/characters/matsu/back.svg",
  43476. extra: 839/780,
  43477. bottom: 47/886
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Normal",
  43484. height: math.unit(8 + 1/12, "feet"),
  43485. default: true
  43486. },
  43487. ]
  43488. ))
  43489. characterMakers.push(() => makeCharacter(
  43490. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43491. {
  43492. front: {
  43493. height: math.unit(4, "feet"),
  43494. weight: math.unit(148, "lb"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/thiz/front.svg",
  43498. extra: 1913/1748,
  43499. bottom: 62/1975
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Normal",
  43506. height: math.unit(4, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(7 + 6/12, "feet"),
  43516. weight: math.unit(267, "lb"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/marcel/front.svg",
  43520. extra: 1221/1096,
  43521. bottom: 76/1297
  43522. }
  43523. },
  43524. },
  43525. [
  43526. {
  43527. name: "Normal",
  43528. height: math.unit(7 + 6/12, "feet"),
  43529. default: true
  43530. },
  43531. ]
  43532. ))
  43533. characterMakers.push(() => makeCharacter(
  43534. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43535. {
  43536. side: {
  43537. height: math.unit(42, "meters"),
  43538. name: "Side",
  43539. image: {
  43540. source: "./media/characters/flake/side.svg",
  43541. extra: 1525/1306,
  43542. bottom: 209/1734
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Normal",
  43549. height: math.unit(42, "meters"),
  43550. default: true
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43556. {
  43557. dressed: {
  43558. height: math.unit(6 + 4/12, "feet"),
  43559. weight: math.unit(520, "lb"),
  43560. name: "Dressed",
  43561. image: {
  43562. source: "./media/characters/someonne/dressed.svg",
  43563. extra: 1020/1010,
  43564. bottom: 178/1198
  43565. }
  43566. },
  43567. undressed: {
  43568. height: math.unit(6 + 4/12, "feet"),
  43569. weight: math.unit(520, "lb"),
  43570. name: "Undressed",
  43571. image: {
  43572. source: "./media/characters/someonne/undressed.svg",
  43573. extra: 1019/1014,
  43574. bottom: 169/1188
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(6 + 4/12, "feet"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(3, "feet"),
  43591. weight: math.unit(30, "lb"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/till/front.svg",
  43595. extra: 892/823,
  43596. bottom: 55/947
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Normal",
  43603. height: math.unit(3, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(9 + 8/12, "feet"),
  43613. weight: math.unit(800, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/sydney-heki/front.svg",
  43617. extra: 1360/1300,
  43618. bottom: 22/1382
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(9 + 8/12, "feet"),
  43623. weight: math.unit(800, "lb"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/sydney-heki/back.svg",
  43627. extra: 1356/1293,
  43628. bottom: 12/1368
  43629. }
  43630. },
  43631. frontDressed: {
  43632. height: math.unit(9 + 8/12, "feet"),
  43633. weight: math.unit(800, "lb"),
  43634. name: "Front-dressed",
  43635. image: {
  43636. source: "./media/characters/sydney-heki/front-dressed.svg",
  43637. extra: 1360/1300,
  43638. bottom: 22/1382
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Normal",
  43645. height: math.unit(9 + 8/12, "feet"),
  43646. default: true
  43647. },
  43648. {
  43649. name: "Macro",
  43650. height: math.unit(500, "feet")
  43651. },
  43652. {
  43653. name: "Megamacro",
  43654. height: math.unit(3.6, "miles")
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(200, "cm"),
  43663. weight: math.unit(250, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/fowler-karlsson/front.svg",
  43667. extra: 897/845,
  43668. bottom: 123/1020
  43669. }
  43670. },
  43671. back: {
  43672. height: math.unit(200, "cm"),
  43673. weight: math.unit(250, "lb"),
  43674. name: "Back",
  43675. image: {
  43676. source: "./media/characters/fowler-karlsson/back.svg",
  43677. extra: 999/944,
  43678. bottom: 26/1025
  43679. }
  43680. },
  43681. dick: {
  43682. height: math.unit(1.92, "feet"),
  43683. weight: math.unit(150, "lb"),
  43684. name: "Dick",
  43685. image: {
  43686. source: "./media/characters/fowler-karlsson/dick.svg"
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Normal",
  43693. height: math.unit(200, "cm"),
  43694. default: true
  43695. },
  43696. {
  43697. name: "Smaller Macro",
  43698. height: math.unit(90, "m")
  43699. },
  43700. {
  43701. name: "Macro",
  43702. height: math.unit(150, "m")
  43703. },
  43704. {
  43705. name: "Bigger Macro",
  43706. height: math.unit(300, "m")
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43712. {
  43713. side: {
  43714. height: math.unit(8 + 2/12, "feet"),
  43715. weight: math.unit(1, "tonne"),
  43716. name: "Side",
  43717. image: {
  43718. source: "./media/characters/rylide/side.svg",
  43719. extra: 1318/1034,
  43720. bottom: 106/1424
  43721. }
  43722. },
  43723. sitting: {
  43724. height: math.unit(303, "cm"),
  43725. weight: math.unit(1, "tonne"),
  43726. name: "Sitting",
  43727. image: {
  43728. source: "./media/characters/rylide/sitting.svg",
  43729. extra: 1303/1103,
  43730. bottom: 36/1339
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(8 + 2/12, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(5 + 10/12, "feet"),
  43747. weight: math.unit(160, "lb"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/pudask/front.svg",
  43751. extra: 1616/1590,
  43752. bottom: 161/1777
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Ferret Height",
  43759. height: math.unit(2 + 5/12, "feet")
  43760. },
  43761. {
  43762. name: "Canon Height",
  43763. height: math.unit(5 + 10/12, "feet"),
  43764. default: true
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43770. {
  43771. front: {
  43772. height: math.unit(3 + 6/12, "feet"),
  43773. weight: math.unit(60, "lb"),
  43774. name: "Front",
  43775. image: {
  43776. source: "./media/characters/ramita/front.svg",
  43777. extra: 1402/1232,
  43778. bottom: 62/1464
  43779. }
  43780. },
  43781. dressed: {
  43782. height: math.unit(3 + 6/12, "feet"),
  43783. weight: math.unit(60, "lb"),
  43784. name: "Dressed",
  43785. image: {
  43786. source: "./media/characters/ramita/dressed.svg",
  43787. extra: 1534/1249,
  43788. bottom: 50/1584
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(3 + 6/12, "feet"),
  43796. default: true
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43802. {
  43803. front: {
  43804. height: math.unit(8, "feet"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/ark/front.svg",
  43808. extra: 772/693,
  43809. bottom: 45/817
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(8, "feet"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(6, "feet"),
  43826. weight: math.unit(250, "lb"),
  43827. volume: math.unit(5/8, "gallons"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/ludwig-horn/front.svg",
  43831. extra: 1782/1635,
  43832. bottom: 96/1878
  43833. }
  43834. },
  43835. back: {
  43836. height: math.unit(6, "feet"),
  43837. weight: math.unit(250, "lb"),
  43838. volume: math.unit(5/8, "gallons"),
  43839. name: "Back",
  43840. image: {
  43841. source: "./media/characters/ludwig-horn/back.svg",
  43842. extra: 1874/1729,
  43843. bottom: 27/1901
  43844. }
  43845. },
  43846. dick: {
  43847. height: math.unit(1.05, "feet"),
  43848. weight: math.unit(15, "lb"),
  43849. volume: math.unit(5/8, "gallons"),
  43850. name: "Dick",
  43851. image: {
  43852. source: "./media/characters/ludwig-horn/dick.svg"
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Small",
  43859. height: math.unit(6, "feet")
  43860. },
  43861. {
  43862. name: "Typical",
  43863. height: math.unit(12, "feet"),
  43864. default: true
  43865. },
  43866. {
  43867. name: "Building",
  43868. height: math.unit(80, "feet")
  43869. },
  43870. {
  43871. name: "Town",
  43872. height: math.unit(800, "feet")
  43873. },
  43874. {
  43875. name: "Kingdom",
  43876. height: math.unit(80000, "feet")
  43877. },
  43878. {
  43879. name: "Planet",
  43880. height: math.unit(8000000, "feet")
  43881. },
  43882. {
  43883. name: "Universe",
  43884. height: math.unit(8000000000, "feet")
  43885. },
  43886. {
  43887. name: "Transcended",
  43888. height: math.unit(8e27, "feet")
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(5, "feet"),
  43897. weight: math.unit(50, "kg"),
  43898. name: "Front",
  43899. image: {
  43900. source: "./media/characters/biot-avery/front.svg",
  43901. extra: 1295/1232,
  43902. bottom: 86/1381
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Normal",
  43909. height: math.unit(5, "feet"),
  43910. default: true
  43911. },
  43912. ]
  43913. ))
  43914. characterMakers.push(() => makeCharacter(
  43915. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43916. {
  43917. front: {
  43918. height: math.unit(6, "feet"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/kitsune-kiro/front.svg",
  43922. extra: 1270/1158,
  43923. bottom: 42/1312
  43924. }
  43925. },
  43926. frontAlt: {
  43927. height: math.unit(6, "feet"),
  43928. name: "Front-alt",
  43929. image: {
  43930. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43931. extra: 1130/1081,
  43932. bottom: 36/1166
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Smol",
  43939. height: math.unit(3, "feet")
  43940. },
  43941. {
  43942. name: "Normal",
  43943. height: math.unit(6, "feet"),
  43944. default: true
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43950. {
  43951. front: {
  43952. height: math.unit(6, "feet"),
  43953. weight: math.unit(125, "lb"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/jack-thatcher/front.svg",
  43957. extra: 1474/1370,
  43958. bottom: 26/1500
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(6, "feet"),
  43963. weight: math.unit(125, "lb"),
  43964. name: "Back",
  43965. image: {
  43966. source: "./media/characters/jack-thatcher/back.svg",
  43967. extra: 1489/1384,
  43968. bottom: 18/1507
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(6, "feet"),
  43976. default: true
  43977. },
  43978. {
  43979. name: "Macro",
  43980. height: math.unit(75, "feet")
  43981. },
  43982. {
  43983. name: "Macro-er",
  43984. height: math.unit(250, "feet")
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43990. {
  43991. front: {
  43992. height: math.unit(7, "feet"),
  43993. weight: math.unit(110, "kg"),
  43994. name: "Front",
  43995. image: {
  43996. source: "./media/characters/max-hyper/front.svg",
  43997. extra: 1969/1881,
  43998. bottom: 49/2018
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(7, "feet"),
  44006. default: true
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44012. {
  44013. front: {
  44014. height: math.unit(5 + 5/12, "feet"),
  44015. weight: math.unit(160, "lb"),
  44016. name: "Front",
  44017. image: {
  44018. source: "./media/characters/spook/front.svg",
  44019. extra: 794/791,
  44020. bottom: 54/848
  44021. }
  44022. },
  44023. back: {
  44024. height: math.unit(5 + 5/12, "feet"),
  44025. weight: math.unit(160, "lb"),
  44026. name: "Back",
  44027. image: {
  44028. source: "./media/characters/spook/back.svg",
  44029. extra: 812/798,
  44030. bottom: 32/844
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Normal",
  44037. height: math.unit(5 + 5/12, "feet"),
  44038. default: true
  44039. },
  44040. ]
  44041. ))
  44042. characterMakers.push(() => makeCharacter(
  44043. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44044. {
  44045. front: {
  44046. height: math.unit(18, "feet"),
  44047. name: "Front",
  44048. image: {
  44049. source: "./media/characters/xeaduulix/front.svg",
  44050. extra: 1380/1166,
  44051. bottom: 110/1490
  44052. }
  44053. },
  44054. back: {
  44055. height: math.unit(18, "feet"),
  44056. name: "Back",
  44057. image: {
  44058. source: "./media/characters/xeaduulix/back.svg",
  44059. extra: 1592/1170,
  44060. bottom: 128/1720
  44061. }
  44062. },
  44063. frontNsfw: {
  44064. height: math.unit(18, "feet"),
  44065. name: "Front (NSFW)",
  44066. image: {
  44067. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44068. extra: 1380/1166,
  44069. bottom: 110/1490
  44070. }
  44071. },
  44072. backNsfw: {
  44073. height: math.unit(18, "feet"),
  44074. name: "Back (NSFW)",
  44075. image: {
  44076. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44077. extra: 1592/1170,
  44078. bottom: 128/1720
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal",
  44085. height: math.unit(18, "feet"),
  44086. default: true
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44092. {
  44093. spreadWings: {
  44094. height: math.unit(20, "feet"),
  44095. name: "Spread Wings",
  44096. image: {
  44097. source: "./media/characters/fledge/spread-wings.svg",
  44098. extra: 693/635,
  44099. bottom: 26/719
  44100. }
  44101. },
  44102. front: {
  44103. height: math.unit(20, "feet"),
  44104. name: "Front",
  44105. image: {
  44106. source: "./media/characters/fledge/front.svg",
  44107. extra: 684/637,
  44108. bottom: 18/702
  44109. }
  44110. },
  44111. frontAlt: {
  44112. height: math.unit(20, "feet"),
  44113. name: "Front (Alt)",
  44114. image: {
  44115. source: "./media/characters/fledge/front-alt.svg",
  44116. extra: 708/664,
  44117. bottom: 13/721
  44118. }
  44119. },
  44120. back: {
  44121. height: math.unit(20, "feet"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/fledge/back.svg",
  44125. extra: 718/634,
  44126. bottom: 22/740
  44127. }
  44128. },
  44129. head: {
  44130. height: math.unit(5.55, "feet"),
  44131. name: "Head",
  44132. image: {
  44133. source: "./media/characters/fledge/head.svg"
  44134. }
  44135. },
  44136. headAlt: {
  44137. height: math.unit(5.1, "feet"),
  44138. name: "Head (Alt)",
  44139. image: {
  44140. source: "./media/characters/fledge/head-alt.svg"
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Small",
  44147. height: math.unit(6 + 2/12, "feet")
  44148. },
  44149. {
  44150. name: "Big",
  44151. height: math.unit(20, "feet"),
  44152. default: true
  44153. },
  44154. {
  44155. name: "Giant",
  44156. height: math.unit(100, "feet")
  44157. },
  44158. {
  44159. name: "Macro",
  44160. height: math.unit(200, "feet")
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(1, "meter"),
  44169. name: "Front",
  44170. image: {
  44171. source: "./media/characters/atlas-morenai/front.svg",
  44172. extra: 1275/1043,
  44173. bottom: 19/1294
  44174. }
  44175. },
  44176. back: {
  44177. height: math.unit(1, "meter"),
  44178. name: "Back",
  44179. image: {
  44180. source: "./media/characters/atlas-morenai/back.svg",
  44181. extra: 1141/1001,
  44182. bottom: 25/1166
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(1, "meter"),
  44190. default: true
  44191. },
  44192. {
  44193. name: "Magic-Infused",
  44194. height: math.unit(5, "meters")
  44195. },
  44196. ]
  44197. ))
  44198. characterMakers.push(() => makeCharacter(
  44199. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44200. {
  44201. front: {
  44202. height: math.unit(5, "meters"),
  44203. name: "Front",
  44204. image: {
  44205. source: "./media/characters/cintia/front.svg",
  44206. extra: 1312/1228,
  44207. bottom: 38/1350
  44208. }
  44209. },
  44210. back: {
  44211. height: math.unit(5, "meters"),
  44212. name: "Back",
  44213. image: {
  44214. source: "./media/characters/cintia/back.svg",
  44215. extra: 1260/1166,
  44216. bottom: 98/1358
  44217. }
  44218. },
  44219. frontDick: {
  44220. height: math.unit(5, "meters"),
  44221. name: "Front (Dick)",
  44222. image: {
  44223. source: "./media/characters/cintia/front-dick.svg",
  44224. extra: 1312/1228,
  44225. bottom: 38/1350
  44226. }
  44227. },
  44228. backDick: {
  44229. height: math.unit(5, "meters"),
  44230. name: "Back (Dick)",
  44231. image: {
  44232. source: "./media/characters/cintia/back-dick.svg",
  44233. extra: 1260/1166,
  44234. bottom: 98/1358
  44235. }
  44236. },
  44237. bust: {
  44238. height: math.unit(1.97, "meters"),
  44239. name: "Bust",
  44240. image: {
  44241. source: "./media/characters/cintia/bust.svg",
  44242. extra: 617/565,
  44243. bottom: 0/617
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Normal",
  44250. height: math.unit(5, "meters"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44257. {
  44258. side: {
  44259. height: math.unit(100, "feet"),
  44260. name: "Side",
  44261. image: {
  44262. source: "./media/characters/denora/side.svg",
  44263. extra: 875/803,
  44264. bottom: 9/884
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Standard",
  44271. height: math.unit(100, "feet"),
  44272. default: true
  44273. },
  44274. {
  44275. name: "Grand",
  44276. height: math.unit(1000, "feet")
  44277. },
  44278. {
  44279. name: "Conquering",
  44280. height: math.unit(10000, "feet")
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44286. {
  44287. dressed: {
  44288. height: math.unit(8 + 5/12, "feet"),
  44289. weight: math.unit(700, "lb"),
  44290. name: "Dressed",
  44291. image: {
  44292. source: "./media/characters/kiva/dressed.svg",
  44293. extra: 1102/1055,
  44294. bottom: 60/1162
  44295. }
  44296. },
  44297. nude: {
  44298. height: math.unit(8 + 5/12, "feet"),
  44299. weight: math.unit(700, "lb"),
  44300. name: "Nude",
  44301. image: {
  44302. source: "./media/characters/kiva/nude.svg",
  44303. extra: 1102/1055,
  44304. bottom: 60/1162
  44305. }
  44306. },
  44307. },
  44308. [
  44309. {
  44310. name: "Base Height",
  44311. height: math.unit(8 + 5/12, "feet"),
  44312. default: true
  44313. },
  44314. {
  44315. name: "Macro",
  44316. height: math.unit(100, "feet")
  44317. },
  44318. {
  44319. name: "Max",
  44320. height: math.unit(3280, "feet")
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(6 + 8/12, "feet"),
  44329. weight: math.unit(250, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/ztragon/front.svg",
  44333. extra: 1825/1684,
  44334. bottom: 98/1923
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Normal",
  44341. height: math.unit(6 + 8/12, "feet"),
  44342. default: true
  44343. },
  44344. {
  44345. name: "Macro",
  44346. height: math.unit(80, "feet")
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44352. {
  44353. front: {
  44354. height: math.unit(10.4, "feet"),
  44355. weight: math.unit(2, "tons"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/yesenia/front.svg",
  44359. extra: 1479/1474,
  44360. bottom: 233/1712
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(10.4, "feet"),
  44368. default: true
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44374. {
  44375. normal: {
  44376. height: math.unit(6 + 1/12, "feet"),
  44377. weight: math.unit(180, "lb"),
  44378. name: "Normal",
  44379. image: {
  44380. source: "./media/characters/leanne-lycheborne/normal.svg",
  44381. extra: 1748/1660,
  44382. bottom: 98/1846
  44383. }
  44384. },
  44385. were: {
  44386. height: math.unit(12, "feet"),
  44387. weight: math.unit(1600, "lb"),
  44388. name: "Were",
  44389. image: {
  44390. source: "./media/characters/leanne-lycheborne/were.svg",
  44391. extra: 1485/1432,
  44392. bottom: 66/1551
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(6 + 1/12, "feet"),
  44400. default: true
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44406. {
  44407. side: {
  44408. height: math.unit(13, "feet"),
  44409. name: "Side",
  44410. image: {
  44411. source: "./media/characters/kira-tyler/side.svg",
  44412. extra: 693/393,
  44413. bottom: 58/751
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(13, "feet"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(10.3, "feet"),
  44430. weight: math.unit(150, "lb"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/blaze/front.svg",
  44434. extra: 1378/1286,
  44435. bottom: 172/1550
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Normal",
  44442. height: math.unit(10.3, "feet"),
  44443. default: true
  44444. },
  44445. ]
  44446. ))
  44447. characterMakers.push(() => makeCharacter(
  44448. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44449. {
  44450. side: {
  44451. height: math.unit(2, "meters"),
  44452. weight: math.unit(400, "kg"),
  44453. name: "Side",
  44454. image: {
  44455. source: "./media/characters/anu/side.svg",
  44456. extra: 506/394,
  44457. bottom: 18/524
  44458. }
  44459. },
  44460. },
  44461. [
  44462. {
  44463. name: "Humanoid",
  44464. height: math.unit(2, "meters")
  44465. },
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(5, "meters"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44475. {
  44476. front: {
  44477. height: math.unit(5 + 5/12, "feet"),
  44478. weight: math.unit(170, "lb"),
  44479. name: "Front",
  44480. image: {
  44481. source: "./media/characters/synx-the-lynx/front.svg",
  44482. extra: 1893/1745,
  44483. bottom: 17/1910
  44484. }
  44485. },
  44486. side: {
  44487. height: math.unit(5 + 5/12, "feet"),
  44488. weight: math.unit(170, "lb"),
  44489. name: "Side",
  44490. image: {
  44491. source: "./media/characters/synx-the-lynx/side.svg",
  44492. extra: 1884/1740,
  44493. bottom: 39/1923
  44494. }
  44495. },
  44496. back: {
  44497. height: math.unit(5 + 5/12, "feet"),
  44498. weight: math.unit(170, "lb"),
  44499. name: "Back",
  44500. image: {
  44501. source: "./media/characters/synx-the-lynx/back.svg",
  44502. extra: 1903/1755,
  44503. bottom: 14/1917
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(5 + 5/12, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44517. {
  44518. back: {
  44519. height: math.unit(15, "feet"),
  44520. name: "Back",
  44521. image: {
  44522. source: "./media/characters/nadezda-fex/back.svg",
  44523. extra: 1695/1481,
  44524. bottom: 25/1720
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(15, "feet"),
  44532. default: true
  44533. },
  44534. {
  44535. name: "Macro",
  44536. height: math.unit(2.5, "miles")
  44537. },
  44538. {
  44539. name: "Goddess",
  44540. height: math.unit(2, "multiverses")
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(216, "cm"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/lev/front.svg",
  44552. extra: 1728/1670,
  44553. bottom: 82/1810
  44554. }
  44555. },
  44556. back: {
  44557. height: math.unit(216, "cm"),
  44558. name: "Back",
  44559. image: {
  44560. source: "./media/characters/lev/back.svg",
  44561. extra: 1738/1675,
  44562. bottom: 24/1762
  44563. }
  44564. },
  44565. dressed: {
  44566. height: math.unit(216, "cm"),
  44567. name: "Dressed",
  44568. image: {
  44569. source: "./media/characters/lev/dressed.svg",
  44570. extra: 1397/1351,
  44571. bottom: 73/1470
  44572. }
  44573. },
  44574. head: {
  44575. height: math.unit(0.51, "meter"),
  44576. name: "Head",
  44577. image: {
  44578. source: "./media/characters/lev/head.svg"
  44579. }
  44580. },
  44581. },
  44582. [
  44583. {
  44584. name: "Normal",
  44585. height: math.unit(216, "cm"),
  44586. default: true
  44587. },
  44588. {
  44589. name: "Relatively Macro",
  44590. height: math.unit(80, "meters")
  44591. },
  44592. {
  44593. name: "Megamacro",
  44594. height: math.unit(21600, "meters")
  44595. },
  44596. {
  44597. name: "Megamacro+",
  44598. height: math.unit(64800, "meters")
  44599. },
  44600. ]
  44601. ))
  44602. characterMakers.push(() => makeCharacter(
  44603. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44604. {
  44605. front: {
  44606. height: math.unit(2, "meters"),
  44607. weight: math.unit(80, "kg"),
  44608. name: "Front",
  44609. image: {
  44610. source: "./media/characters/moka/front.svg",
  44611. extra: 1337/1255,
  44612. bottom: 58/1395
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Micro",
  44619. height: math.unit(15, "cm")
  44620. },
  44621. {
  44622. name: "Normal",
  44623. height: math.unit(2, "meters"),
  44624. default: true
  44625. },
  44626. {
  44627. name: "Macro",
  44628. height: math.unit(20, "meters"),
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44634. {
  44635. front: {
  44636. height: math.unit(9, "feet"),
  44637. weight: math.unit(240, "lb"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/kuzco/front.svg",
  44641. extra: 1593/1487,
  44642. bottom: 32/1625
  44643. }
  44644. },
  44645. side: {
  44646. height: math.unit(9, "feet"),
  44647. weight: math.unit(240, "lb"),
  44648. name: "Side",
  44649. image: {
  44650. source: "./media/characters/kuzco/side.svg",
  44651. extra: 1575/1485,
  44652. bottom: 30/1605
  44653. }
  44654. },
  44655. back: {
  44656. height: math.unit(9, "feet"),
  44657. weight: math.unit(240, "lb"),
  44658. name: "Back",
  44659. image: {
  44660. source: "./media/characters/kuzco/back.svg",
  44661. extra: 1603/1514,
  44662. bottom: 14/1617
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(9, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44676. {
  44677. side: {
  44678. height: math.unit(2, "meters"),
  44679. weight: math.unit(300, "kg"),
  44680. name: "Side",
  44681. image: {
  44682. source: "./media/characters/ceruleus/side.svg",
  44683. extra: 1068/974,
  44684. bottom: 126/1194
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(16, "meters"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(9, "feet"),
  44701. weight: math.unit(500, "kg"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/acouya/front.svg",
  44705. extra: 1660/1473,
  44706. bottom: 28/1688
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(9, "feet"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(5 + 6/12, "feet"),
  44723. weight: math.unit(195, "lb"),
  44724. name: "Front",
  44725. image: {
  44726. source: "./media/characters/vant/front.svg",
  44727. extra: 1396/1320,
  44728. bottom: 20/1416
  44729. }
  44730. },
  44731. back: {
  44732. height: math.unit(5 + 6/12, "feet"),
  44733. weight: math.unit(195, "lb"),
  44734. name: "Back",
  44735. image: {
  44736. source: "./media/characters/vant/back.svg",
  44737. extra: 1396/1320,
  44738. bottom: 20/1416
  44739. }
  44740. },
  44741. maw: {
  44742. height: math.unit(0.75, "feet"),
  44743. name: "Maw",
  44744. image: {
  44745. source: "./media/characters/vant/maw.svg"
  44746. }
  44747. },
  44748. paw: {
  44749. height: math.unit(1.07, "feet"),
  44750. name: "Paw",
  44751. image: {
  44752. source: "./media/characters/vant/paw.svg"
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Micro",
  44759. height: math.unit(0.25, "inches")
  44760. },
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(5 + 6/12, "feet"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Macro",
  44768. height: math.unit(75, "feet")
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(30, "meters"),
  44777. weight: math.unit(363, "tons"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/ahra/front.svg",
  44781. extra: 1914/1814,
  44782. bottom: 46/1960
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Macro",
  44789. height: math.unit(30, "meters"),
  44790. default: true
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44796. {
  44797. undressed: {
  44798. height: math.unit(2, "m"),
  44799. weight: math.unit(250, "kg"),
  44800. name: "Undressed",
  44801. image: {
  44802. source: "./media/characters/coriander/undressed.svg",
  44803. extra: 1757/1606,
  44804. bottom: 107/1864
  44805. }
  44806. },
  44807. dressed: {
  44808. height: math.unit(2, "m"),
  44809. weight: math.unit(250, "kg"),
  44810. name: "Dressed",
  44811. image: {
  44812. source: "./media/characters/coriander/dressed.svg",
  44813. extra: 1757/1606,
  44814. bottom: 107/1864
  44815. }
  44816. },
  44817. },
  44818. [
  44819. {
  44820. name: "Normal",
  44821. height: math.unit(4, "meters"),
  44822. default: true
  44823. },
  44824. {
  44825. name: "XL",
  44826. height: math.unit(6, "meters")
  44827. },
  44828. {
  44829. name: "XXL",
  44830. height: math.unit(8, "meters")
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(6, "feet"),
  44839. name: "Front",
  44840. image: {
  44841. source: "./media/characters/syrinx/front.svg",
  44842. extra: 1557/1259,
  44843. bottom: 171/1728
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Normal",
  44850. height: math.unit(6 + 3/12, "feet"),
  44851. default: true
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44857. {
  44858. front: {
  44859. height: math.unit(11 + 6/12, "feet"),
  44860. weight: math.unit(1.5, "tons"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/bor/front.svg",
  44864. extra: 1189/1109,
  44865. bottom: 170/1359
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Normal",
  44872. height: math.unit(11 + 6/12, "feet"),
  44873. default: true
  44874. },
  44875. {
  44876. name: "Macro",
  44877. height: math.unit(32 + 9/12, "feet")
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44883. {
  44884. anthro: {
  44885. height: math.unit(9, "feet"),
  44886. weight: math.unit(2076, "lb"),
  44887. name: "Anthro",
  44888. image: {
  44889. source: "./media/characters/abacus/anthro.svg",
  44890. extra: 1540/1494,
  44891. bottom: 233/1773
  44892. }
  44893. },
  44894. pigeon: {
  44895. height: math.unit(1, "feet"),
  44896. name: "Pigeon",
  44897. image: {
  44898. source: "./media/characters/abacus/pigeon.svg",
  44899. extra: 528/525,
  44900. bottom: 46/574
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Normal",
  44907. height: math.unit(9, "feet"),
  44908. default: true
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44914. {
  44915. side: {
  44916. height: math.unit(6, "feet"),
  44917. name: "Side",
  44918. image: {
  44919. source: "./media/characters/delkhan/side.svg",
  44920. extra: 1884/1786,
  44921. bottom: 308/2192
  44922. }
  44923. },
  44924. head: {
  44925. height: math.unit(3.38, "feet"),
  44926. name: "Head",
  44927. image: {
  44928. source: "./media/characters/delkhan/head.svg"
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Normal",
  44935. height: math.unit(72, "feet"),
  44936. default: true
  44937. },
  44938. {
  44939. name: "Giant",
  44940. height: math.unit(172, "feet")
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44946. {
  44947. standing: {
  44948. height: math.unit(6, "feet"),
  44949. name: "Standing",
  44950. image: {
  44951. source: "./media/characters/euchidat/standing.svg",
  44952. extra: 1612/1553,
  44953. bottom: 116/1728
  44954. }
  44955. },
  44956. leaning: {
  44957. height: math.unit(6, "feet"),
  44958. name: "Leaning",
  44959. image: {
  44960. source: "./media/characters/euchidat/leaning.svg",
  44961. extra: 1719/1674,
  44962. bottom: 27/1746
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal",
  44969. height: math.unit(175, "feet"),
  44970. default: true
  44971. },
  44972. {
  44973. name: "Megamacro",
  44974. height: math.unit(190, "miles")
  44975. },
  44976. {
  44977. name: "Gigamacro",
  44978. height: math.unit(190000, "miles")
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(6, "feet"),
  44987. weight: math.unit(150, "lb"),
  44988. name: "Front",
  44989. image: {
  44990. source: "./media/characters/rebecca-stack/front.svg",
  44991. extra: 1256/1201,
  44992. bottom: 18/1274
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(5 + 8/12, "feet"),
  45000. default: true
  45001. },
  45002. {
  45003. name: "Demolitionist",
  45004. height: math.unit(200, "feet")
  45005. },
  45006. {
  45007. name: "Out of Control",
  45008. height: math.unit(2, "miles")
  45009. },
  45010. {
  45011. name: "Giga",
  45012. height: math.unit(7200, "miles")
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(6, "feet"),
  45021. weight: math.unit(150, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/jenny-cartwright/front.svg",
  45025. extra: 1384/1376,
  45026. bottom: 58/1442
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(6 + 7/12, "feet"),
  45034. default: true
  45035. },
  45036. {
  45037. name: "Librarian",
  45038. height: math.unit(55, "feet")
  45039. },
  45040. {
  45041. name: "Sightseer",
  45042. height: math.unit(50, "miles")
  45043. },
  45044. {
  45045. name: "Giga",
  45046. height: math.unit(30000, "miles")
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45052. {
  45053. nude: {
  45054. height: math.unit(8, "feet"),
  45055. weight: math.unit(225, "lb"),
  45056. name: "Nude",
  45057. image: {
  45058. source: "./media/characters/marvy/nude.svg",
  45059. extra: 1900/1683,
  45060. bottom: 89/1989
  45061. }
  45062. },
  45063. dressed: {
  45064. height: math.unit(8, "feet"),
  45065. weight: math.unit(225, "lb"),
  45066. name: "Dressed",
  45067. image: {
  45068. source: "./media/characters/marvy/dressed.svg",
  45069. extra: 1900/1683,
  45070. bottom: 89/1989
  45071. }
  45072. },
  45073. head: {
  45074. height: math.unit(2.85, "feet"),
  45075. name: "Head",
  45076. image: {
  45077. source: "./media/characters/marvy/head.svg"
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(8, "feet"),
  45085. default: true
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(8, "feet"),
  45094. weight: math.unit(250, "lb"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/leah/front.svg",
  45098. extra: 1257/1149,
  45099. bottom: 109/1366
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal",
  45106. height: math.unit(8, "feet"),
  45107. default: true
  45108. },
  45109. {
  45110. name: "Minimacro",
  45111. height: math.unit(40, "feet")
  45112. },
  45113. {
  45114. name: "Macro",
  45115. height: math.unit(124, "feet")
  45116. },
  45117. {
  45118. name: "Megamacro",
  45119. height: math.unit(850, "feet")
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45125. {
  45126. side: {
  45127. height: math.unit(13 + 6/12, "feet"),
  45128. weight: math.unit(3200, "lb"),
  45129. name: "Side",
  45130. image: {
  45131. source: "./media/characters/alvir/side.svg",
  45132. extra: 896/589,
  45133. bottom: 26/922
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(13 + 6/12, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(5 + 4/12, "feet"),
  45150. weight: math.unit(236, "lb"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/zaina-khalil/front.svg",
  45154. extra: 1533/1485,
  45155. bottom: 94/1627
  45156. }
  45157. },
  45158. side: {
  45159. height: math.unit(5 + 4/12, "feet"),
  45160. weight: math.unit(236, "lb"),
  45161. name: "Side",
  45162. image: {
  45163. source: "./media/characters/zaina-khalil/side.svg",
  45164. extra: 1537/1498,
  45165. bottom: 66/1603
  45166. }
  45167. },
  45168. back: {
  45169. height: math.unit(5 + 4/12, "feet"),
  45170. weight: math.unit(236, "lb"),
  45171. name: "Back",
  45172. image: {
  45173. source: "./media/characters/zaina-khalil/back.svg",
  45174. extra: 1546/1494,
  45175. bottom: 89/1635
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "Normal",
  45182. height: math.unit(5 + 4/12, "feet"),
  45183. default: true
  45184. },
  45185. ]
  45186. ))
  45187. characterMakers.push(() => makeCharacter(
  45188. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45189. {
  45190. side: {
  45191. height: math.unit(12, "feet"),
  45192. weight: math.unit(4000, "lb"),
  45193. name: "Side",
  45194. image: {
  45195. source: "./media/characters/terry/side.svg",
  45196. extra: 1518/1439,
  45197. bottom: 149/1667
  45198. }
  45199. },
  45200. },
  45201. [
  45202. {
  45203. name: "Normal",
  45204. height: math.unit(12, "feet"),
  45205. default: true
  45206. },
  45207. ]
  45208. ))
  45209. characterMakers.push(() => makeCharacter(
  45210. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45211. {
  45212. front: {
  45213. height: math.unit(12, "feet"),
  45214. weight: math.unit(1500, "lb"),
  45215. name: "Front",
  45216. image: {
  45217. source: "./media/characters/kahea/front.svg",
  45218. extra: 1722/1617,
  45219. bottom: 179/1901
  45220. }
  45221. },
  45222. },
  45223. [
  45224. {
  45225. name: "Normal",
  45226. height: math.unit(12, "feet"),
  45227. default: true
  45228. },
  45229. ]
  45230. ))
  45231. characterMakers.push(() => makeCharacter(
  45232. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45233. {
  45234. demonFront: {
  45235. height: math.unit(36, "feet"),
  45236. name: "Front",
  45237. image: {
  45238. source: "./media/characters/alex-xuria/demon-front.svg",
  45239. extra: 1705/1673,
  45240. bottom: 198/1903
  45241. },
  45242. form: "demon",
  45243. default: true
  45244. },
  45245. demonBack: {
  45246. height: math.unit(36, "feet"),
  45247. name: "Back",
  45248. image: {
  45249. source: "./media/characters/alex-xuria/demon-back.svg",
  45250. extra: 1725/1693,
  45251. bottom: 70/1795
  45252. },
  45253. form: "demon"
  45254. },
  45255. demonHead: {
  45256. height: math.unit(2.14, "meters"),
  45257. name: "Head",
  45258. image: {
  45259. source: "./media/characters/alex-xuria/demon-head.svg"
  45260. },
  45261. form: "demon"
  45262. },
  45263. demonHand: {
  45264. height: math.unit(1.61, "meters"),
  45265. name: "Hand",
  45266. image: {
  45267. source: "./media/characters/alex-xuria/demon-hand.svg"
  45268. },
  45269. form: "demon"
  45270. },
  45271. demonPaw: {
  45272. height: math.unit(1.35, "meters"),
  45273. name: "Paw",
  45274. image: {
  45275. source: "./media/characters/alex-xuria/demon-paw.svg"
  45276. },
  45277. form: "demon"
  45278. },
  45279. demonFoot: {
  45280. height: math.unit(2.2, "meters"),
  45281. name: "Foot",
  45282. image: {
  45283. source: "./media/characters/alex-xuria/demon-foot.svg"
  45284. },
  45285. form: "demon"
  45286. },
  45287. demonCock: {
  45288. height: math.unit(1.74, "meters"),
  45289. name: "Cock",
  45290. image: {
  45291. source: "./media/characters/alex-xuria/demon-cock.svg"
  45292. },
  45293. form: "demon"
  45294. },
  45295. demonTailClosed: {
  45296. height: math.unit(1.47, "meters"),
  45297. name: "Tail (Closed)",
  45298. image: {
  45299. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45300. },
  45301. form: "demon"
  45302. },
  45303. demonTailOpen: {
  45304. height: math.unit(2.85, "meters"),
  45305. name: "Tail (Open)",
  45306. image: {
  45307. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45308. },
  45309. form: "demon"
  45310. },
  45311. incubusFront: {
  45312. height: math.unit(12, "feet"),
  45313. name: "Front",
  45314. image: {
  45315. source: "./media/characters/alex-xuria/incubus-front.svg",
  45316. extra: 1754/1677,
  45317. bottom: 125/1879
  45318. },
  45319. form: "incubus",
  45320. default: true
  45321. },
  45322. incubusBack: {
  45323. height: math.unit(12, "feet"),
  45324. name: "Back",
  45325. image: {
  45326. source: "./media/characters/alex-xuria/incubus-back.svg",
  45327. extra: 1702/1647,
  45328. bottom: 30/1732
  45329. },
  45330. form: "incubus"
  45331. },
  45332. incubusHead: {
  45333. height: math.unit(3.45, "feet"),
  45334. name: "Head",
  45335. image: {
  45336. source: "./media/characters/alex-xuria/incubus-head.svg"
  45337. },
  45338. form: "incubus"
  45339. },
  45340. rabbitFront: {
  45341. height: math.unit(6, "feet"),
  45342. name: "Front",
  45343. image: {
  45344. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45345. extra: 1369/1349,
  45346. bottom: 45/1414
  45347. },
  45348. form: "rabbit",
  45349. default: true
  45350. },
  45351. rabbitSide: {
  45352. height: math.unit(6, "feet"),
  45353. name: "Side",
  45354. image: {
  45355. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45356. extra: 1370/1356,
  45357. bottom: 37/1407
  45358. },
  45359. form: "rabbit"
  45360. },
  45361. rabbitBack: {
  45362. height: math.unit(6, "feet"),
  45363. name: "Back",
  45364. image: {
  45365. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45366. extra: 1375/1358,
  45367. bottom: 43/1418
  45368. },
  45369. form: "rabbit"
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "Normal",
  45375. height: math.unit(6, "feet"),
  45376. default: true,
  45377. form: "rabbit"
  45378. },
  45379. {
  45380. name: "Incubus",
  45381. height: math.unit(12, "feet"),
  45382. default: true,
  45383. form: "incubus"
  45384. },
  45385. {
  45386. name: "Demon",
  45387. height: math.unit(36, "feet"),
  45388. default: true,
  45389. form: "demon"
  45390. }
  45391. ],
  45392. {
  45393. "demon": {
  45394. name: "Demon",
  45395. default: true
  45396. },
  45397. "incubus": {
  45398. name: "Incubus",
  45399. },
  45400. "rabbit": {
  45401. name: "Rabbit"
  45402. }
  45403. }
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45407. {
  45408. front: {
  45409. height: math.unit(7 + 5/12, "feet"),
  45410. weight: math.unit(510, "lb"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/syrup/front.svg",
  45414. extra: 932/916,
  45415. bottom: 26/958
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(7 + 5/12, "feet"),
  45423. default: true
  45424. },
  45425. {
  45426. name: "Big",
  45427. height: math.unit(50, "feet")
  45428. },
  45429. {
  45430. name: "Macro",
  45431. height: math.unit(300, "feet")
  45432. },
  45433. {
  45434. name: "Megamacro",
  45435. height: math.unit(1, "mile")
  45436. },
  45437. ]
  45438. ))
  45439. characterMakers.push(() => makeCharacter(
  45440. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45441. {
  45442. front: {
  45443. height: math.unit(6 + 9/12, "feet"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/zeimne/front.svg",
  45447. extra: 1969/1806,
  45448. bottom: 53/2022
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(6 + 9/12, "feet"),
  45456. default: true
  45457. },
  45458. {
  45459. name: "Giant",
  45460. height: math.unit(550, "feet")
  45461. },
  45462. {
  45463. name: "Mega",
  45464. height: math.unit(3, "miles")
  45465. },
  45466. {
  45467. name: "Giga",
  45468. height: math.unit(250, "miles")
  45469. },
  45470. {
  45471. name: "Tera",
  45472. height: math.unit(1, "AU")
  45473. },
  45474. ]
  45475. ))
  45476. characterMakers.push(() => makeCharacter(
  45477. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45478. {
  45479. front: {
  45480. height: math.unit(5 + 2/12, "feet"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/grar/front.svg",
  45484. extra: 1331/1119,
  45485. bottom: 60/1391
  45486. }
  45487. },
  45488. back: {
  45489. height: math.unit(5 + 2/12, "feet"),
  45490. name: "Back",
  45491. image: {
  45492. source: "./media/characters/grar/back.svg",
  45493. extra: 1385/1169,
  45494. bottom: 23/1408
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Normal",
  45501. height: math.unit(5 + 2/12, "feet"),
  45502. default: true
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(13 + 7/12, "feet"),
  45511. weight: math.unit(2200, "lb"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/endraya/front.svg",
  45515. extra: 1289/1215,
  45516. bottom: 50/1339
  45517. }
  45518. },
  45519. nude: {
  45520. height: math.unit(13 + 7/12, "feet"),
  45521. weight: math.unit(2200, "lb"),
  45522. name: "Nude",
  45523. image: {
  45524. source: "./media/characters/endraya/nude.svg",
  45525. extra: 1247/1171,
  45526. bottom: 40/1287
  45527. }
  45528. },
  45529. head: {
  45530. height: math.unit(2.6, "feet"),
  45531. name: "Head",
  45532. image: {
  45533. source: "./media/characters/endraya/head.svg"
  45534. }
  45535. },
  45536. slit: {
  45537. height: math.unit(3.4, "feet"),
  45538. name: "Slit",
  45539. image: {
  45540. source: "./media/characters/endraya/slit.svg"
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(13 + 7/12, "feet"),
  45548. default: true
  45549. },
  45550. {
  45551. name: "Macro",
  45552. height: math.unit(200, "feet")
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45558. {
  45559. front: {
  45560. height: math.unit(412, "meters"),
  45561. name: "Front",
  45562. image: {
  45563. source: "./media/characters/rodryana/front.svg",
  45564. extra: 2002/1921,
  45565. bottom: 53/2055
  45566. }
  45567. },
  45568. back: {
  45569. height: math.unit(412, "meters"),
  45570. name: "Back",
  45571. image: {
  45572. source: "./media/characters/rodryana/back.svg",
  45573. extra: 1993/1926,
  45574. bottom: 48/2041
  45575. }
  45576. },
  45577. maw: {
  45578. height: math.unit(45, "meters"),
  45579. name: "Maw",
  45580. image: {
  45581. source: "./media/characters/rodryana/maw.svg"
  45582. }
  45583. },
  45584. slit: {
  45585. height: math.unit(72, "meters"),
  45586. name: "Slit",
  45587. image: {
  45588. source: "./media/characters/rodryana/slit.svg"
  45589. }
  45590. },
  45591. },
  45592. [
  45593. {
  45594. name: "Macro",
  45595. height: math.unit(412, "meters"),
  45596. default: true
  45597. },
  45598. ]
  45599. ))
  45600. characterMakers.push(() => makeCharacter(
  45601. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45602. {
  45603. front: {
  45604. height: math.unit(6, "feet"),
  45605. weight: math.unit(1000, "lb"),
  45606. name: "Front",
  45607. image: {
  45608. source: "./media/characters/asaya/front.svg",
  45609. extra: 1460/1200,
  45610. bottom: 71/1531
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Normal",
  45617. height: math.unit(8, "km"),
  45618. default: true
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45624. {
  45625. front: {
  45626. height: math.unit(3.5, "meters"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/sarzu-and-israz/front.svg",
  45630. extra: 1570/1558,
  45631. bottom: 150/1720
  45632. },
  45633. },
  45634. back: {
  45635. height: math.unit(3.5, "meters"),
  45636. name: "Back",
  45637. image: {
  45638. source: "./media/characters/sarzu-and-israz/back.svg",
  45639. extra: 1523/1509,
  45640. bottom: 132/1655
  45641. },
  45642. },
  45643. frontFemale: {
  45644. height: math.unit(3.5, "meters"),
  45645. name: "Front (Female)",
  45646. image: {
  45647. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45648. extra: 1570/1558,
  45649. bottom: 150/1720
  45650. },
  45651. },
  45652. frontHerm: {
  45653. height: math.unit(3.5, "meters"),
  45654. name: "Front (Herm)",
  45655. image: {
  45656. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45657. extra: 1570/1558,
  45658. bottom: 150/1720
  45659. },
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(3.5, "meters"),
  45666. default: true,
  45667. },
  45668. {
  45669. name: "Macro",
  45670. height: math.unit(65.5, "meters"),
  45671. },
  45672. ],
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(6, "feet"),
  45679. weight: math.unit(250, "lb"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/zenimma/front.svg",
  45683. extra: 1346/1320,
  45684. bottom: 58/1404
  45685. }
  45686. },
  45687. back: {
  45688. height: math.unit(6, "feet"),
  45689. weight: math.unit(250, "lb"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/zenimma/back.svg",
  45693. extra: 1324/1308,
  45694. bottom: 44/1368
  45695. }
  45696. },
  45697. dick: {
  45698. height: math.unit(1.44, "feet"),
  45699. name: "Dick",
  45700. image: {
  45701. source: "./media/characters/zenimma/dick.svg"
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Canon Height",
  45708. height: math.unit(66, "miles"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45715. {
  45716. nude: {
  45717. height: math.unit(6, "feet"),
  45718. weight: math.unit(150, "lb"),
  45719. name: "Nude",
  45720. image: {
  45721. source: "./media/characters/shavon/nude.svg",
  45722. extra: 1242/1096,
  45723. bottom: 98/1340
  45724. }
  45725. },
  45726. dressed: {
  45727. height: math.unit(6, "feet"),
  45728. weight: math.unit(150, "lb"),
  45729. name: "Dressed",
  45730. image: {
  45731. source: "./media/characters/shavon/dressed.svg",
  45732. extra: 1242/1096,
  45733. bottom: 98/1340
  45734. }
  45735. },
  45736. },
  45737. [
  45738. {
  45739. name: "Macro",
  45740. height: math.unit(255, "feet"),
  45741. default: true
  45742. },
  45743. ]
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(6, "feet"),
  45750. name: "Front",
  45751. image: {
  45752. source: "./media/characters/steph/front.svg",
  45753. extra: 1430/1330,
  45754. bottom: 54/1484
  45755. }
  45756. },
  45757. },
  45758. [
  45759. {
  45760. name: "Normal",
  45761. height: math.unit(6, "feet"),
  45762. default: true
  45763. },
  45764. ]
  45765. ))
  45766. characterMakers.push(() => makeCharacter(
  45767. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45768. {
  45769. front: {
  45770. height: math.unit(9, "feet"),
  45771. weight: math.unit(400, "lb"),
  45772. name: "Front",
  45773. image: {
  45774. source: "./media/characters/kil'aman/front.svg",
  45775. extra: 1210/1159,
  45776. bottom: 109/1319
  45777. }
  45778. },
  45779. head: {
  45780. height: math.unit(2.14, "feet"),
  45781. name: "Head",
  45782. image: {
  45783. source: "./media/characters/kil'aman/head.svg"
  45784. }
  45785. },
  45786. maw: {
  45787. height: math.unit(1.21, "feet"),
  45788. name: "Maw",
  45789. image: {
  45790. source: "./media/characters/kil'aman/maw.svg"
  45791. }
  45792. },
  45793. foot: {
  45794. height: math.unit(1.7, "feet"),
  45795. name: "Foot",
  45796. image: {
  45797. source: "./media/characters/kil'aman/foot.svg"
  45798. }
  45799. },
  45800. dick: {
  45801. height: math.unit(2.1, "feet"),
  45802. name: "Dick",
  45803. image: {
  45804. source: "./media/characters/kil'aman/dick.svg"
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Normal",
  45811. height: math.unit(9, "feet")
  45812. },
  45813. {
  45814. name: "Canon Height",
  45815. height: math.unit(10, "miles"),
  45816. default: true
  45817. },
  45818. {
  45819. name: "Maximum",
  45820. height: math.unit(6e9, "miles")
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45826. {
  45827. front: {
  45828. height: math.unit(90, "feet"),
  45829. weight: math.unit(675000, "lb"),
  45830. name: "Front",
  45831. image: {
  45832. source: "./media/characters/qadan/front.svg",
  45833. extra: 1012/1004,
  45834. bottom: 78/1090
  45835. }
  45836. },
  45837. back: {
  45838. height: math.unit(90, "feet"),
  45839. weight: math.unit(675000, "lb"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/qadan/back.svg",
  45843. extra: 1042/1031,
  45844. bottom: 55/1097
  45845. }
  45846. },
  45847. armored: {
  45848. height: math.unit(90, "feet"),
  45849. weight: math.unit(675000, "lb"),
  45850. name: "Armored",
  45851. image: {
  45852. source: "./media/characters/qadan/armored.svg",
  45853. extra: 1047/1037,
  45854. bottom: 48/1095
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(90, "feet"),
  45862. default: true
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45868. {
  45869. front: {
  45870. height: math.unit(6, "feet"),
  45871. weight: math.unit(225, "lb"),
  45872. name: "Front",
  45873. image: {
  45874. source: "./media/characters/brooke/front.svg",
  45875. extra: 1050/1010,
  45876. bottom: 66/1116
  45877. }
  45878. },
  45879. back: {
  45880. height: math.unit(6, "feet"),
  45881. weight: math.unit(225, "lb"),
  45882. name: "Back",
  45883. image: {
  45884. source: "./media/characters/brooke/back.svg",
  45885. extra: 1053/1013,
  45886. bottom: 41/1094
  45887. }
  45888. },
  45889. dressed: {
  45890. height: math.unit(6, "feet"),
  45891. weight: math.unit(225, "lb"),
  45892. name: "Dressed",
  45893. image: {
  45894. source: "./media/characters/brooke/dressed.svg",
  45895. extra: 1050/1010,
  45896. bottom: 66/1116
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Canon Height",
  45903. height: math.unit(500, "miles"),
  45904. default: true
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45910. {
  45911. front: {
  45912. height: math.unit(6 + 2/12, "feet"),
  45913. weight: math.unit(210, "lb"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/wubs/front.svg",
  45917. extra: 1345/1325,
  45918. bottom: 70/1415
  45919. }
  45920. },
  45921. back: {
  45922. height: math.unit(6 + 2/12, "feet"),
  45923. weight: math.unit(210, "lb"),
  45924. name: "Back",
  45925. image: {
  45926. source: "./media/characters/wubs/back.svg",
  45927. extra: 1296/1275,
  45928. bottom: 58/1354
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(6 + 2/12, "feet"),
  45936. default: true
  45937. },
  45938. {
  45939. name: "Macro",
  45940. height: math.unit(1000, "feet")
  45941. },
  45942. {
  45943. name: "Megamacro",
  45944. height: math.unit(1, "mile")
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(4, "feet"),
  45953. weight: math.unit(120, "lb"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/blue/front.svg",
  45957. extra: 1636/1525,
  45958. bottom: 43/1679
  45959. }
  45960. },
  45961. back: {
  45962. height: math.unit(4, "feet"),
  45963. weight: math.unit(120, "lb"),
  45964. name: "Back",
  45965. image: {
  45966. source: "./media/characters/blue/back.svg",
  45967. extra: 1660/1560,
  45968. bottom: 57/1717
  45969. }
  45970. },
  45971. paws: {
  45972. height: math.unit(0.826, "feet"),
  45973. name: "Paws",
  45974. image: {
  45975. source: "./media/characters/blue/paws.svg"
  45976. }
  45977. },
  45978. },
  45979. [
  45980. {
  45981. name: "Micro",
  45982. height: math.unit(3, "inches")
  45983. },
  45984. {
  45985. name: "Normal",
  45986. height: math.unit(4, "feet"),
  45987. default: true
  45988. },
  45989. {
  45990. name: "Femenine Form",
  45991. height: math.unit(14, "feet")
  45992. },
  45993. {
  45994. name: "Werebat Form",
  45995. height: math.unit(18, "feet")
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46001. {
  46002. female: {
  46003. height: math.unit(7 + 4/12, "feet"),
  46004. weight: math.unit(243, "lb"),
  46005. name: "Female",
  46006. image: {
  46007. source: "./media/characters/kaya/female.svg",
  46008. extra: 975/898,
  46009. bottom: 34/1009
  46010. }
  46011. },
  46012. herm: {
  46013. height: math.unit(7 + 4/12, "feet"),
  46014. weight: math.unit(243, "lb"),
  46015. name: "Herm",
  46016. image: {
  46017. source: "./media/characters/kaya/herm.svg",
  46018. extra: 975/898,
  46019. bottom: 34/1009
  46020. }
  46021. },
  46022. },
  46023. [
  46024. {
  46025. name: "Normal",
  46026. height: math.unit(7 + 4/12, "feet"),
  46027. default: true
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46033. {
  46034. female: {
  46035. height: math.unit(9 + 4/12, "feet"),
  46036. weight: math.unit(398, "lb"),
  46037. name: "Female",
  46038. image: {
  46039. source: "./media/characters/kassandra/female.svg",
  46040. extra: 908/839,
  46041. bottom: 61/969
  46042. }
  46043. },
  46044. intersex: {
  46045. height: math.unit(9 + 4/12, "feet"),
  46046. weight: math.unit(398, "lb"),
  46047. name: "Intersex",
  46048. image: {
  46049. source: "./media/characters/kassandra/intersex.svg",
  46050. extra: 908/839,
  46051. bottom: 61/969
  46052. }
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(9 + 4/12, "feet"),
  46059. default: true
  46060. },
  46061. ]
  46062. ))
  46063. characterMakers.push(() => makeCharacter(
  46064. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46065. {
  46066. front: {
  46067. height: math.unit(3, "meters"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/amy/front.svg",
  46071. extra: 1380/1343,
  46072. bottom: 70/1450
  46073. }
  46074. },
  46075. back: {
  46076. height: math.unit(3, "meters"),
  46077. name: "Back",
  46078. image: {
  46079. source: "./media/characters/amy/back.svg",
  46080. extra: 1380/1347,
  46081. bottom: 66/1446
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(3, "meters"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46095. {
  46096. side: {
  46097. height: math.unit(47, "cm"),
  46098. weight: math.unit(10.8, "kg"),
  46099. name: "Side",
  46100. image: {
  46101. source: "./media/characters/alphaschakal/side.svg",
  46102. extra: 1058/568,
  46103. bottom: 62/1120
  46104. }
  46105. },
  46106. back: {
  46107. height: math.unit(78, "cm"),
  46108. weight: math.unit(10.8, "kg"),
  46109. name: "Back",
  46110. image: {
  46111. source: "./media/characters/alphaschakal/back.svg",
  46112. extra: 1102/942,
  46113. bottom: 185/1287
  46114. }
  46115. },
  46116. head: {
  46117. height: math.unit(28, "cm"),
  46118. name: "Head",
  46119. image: {
  46120. source: "./media/characters/alphaschakal/head.svg",
  46121. extra: 696/508,
  46122. bottom: 0/696
  46123. }
  46124. },
  46125. paw: {
  46126. height: math.unit(16, "cm"),
  46127. name: "Paw",
  46128. image: {
  46129. source: "./media/characters/alphaschakal/paw.svg"
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(47, "cm"),
  46137. default: true
  46138. },
  46139. {
  46140. name: "Macro",
  46141. height: math.unit(340, "cm")
  46142. },
  46143. ]
  46144. ))
  46145. characterMakers.push(() => makeCharacter(
  46146. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46147. {
  46148. front: {
  46149. height: math.unit(36, "earths"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/ecobyss/front.svg",
  46153. extra: 1282/1215,
  46154. bottom: 11/1293
  46155. }
  46156. },
  46157. back: {
  46158. height: math.unit(36, "earths"),
  46159. name: "Back",
  46160. image: {
  46161. source: "./media/characters/ecobyss/back.svg",
  46162. extra: 1291/1222,
  46163. bottom: 8/1299
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(36, "earths"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46177. {
  46178. front: {
  46179. height: math.unit(12, "feet"),
  46180. name: "Front",
  46181. image: {
  46182. source: "./media/characters/vasuk/front.svg",
  46183. extra: 1326/1207,
  46184. bottom: 64/1390
  46185. }
  46186. },
  46187. },
  46188. [
  46189. {
  46190. name: "Normal",
  46191. height: math.unit(12, "feet"),
  46192. default: true
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46198. {
  46199. side: {
  46200. height: math.unit(100, "feet"),
  46201. name: "Side",
  46202. image: {
  46203. source: "./media/characters/linneaus/side.svg",
  46204. extra: 987/807,
  46205. bottom: 47/1034
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Macro",
  46212. height: math.unit(100, "feet"),
  46213. default: true
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46219. {
  46220. front: {
  46221. height: math.unit(8, "feet"),
  46222. weight: math.unit(1200, "lb"),
  46223. name: "Front",
  46224. image: {
  46225. source: "./media/characters/nyterious-daligdig/front.svg",
  46226. extra: 1284/1094,
  46227. bottom: 84/1368
  46228. }
  46229. },
  46230. back: {
  46231. height: math.unit(8, "feet"),
  46232. weight: math.unit(1200, "lb"),
  46233. name: "Back",
  46234. image: {
  46235. source: "./media/characters/nyterious-daligdig/back.svg",
  46236. extra: 1301/1121,
  46237. bottom: 129/1430
  46238. }
  46239. },
  46240. mouth: {
  46241. height: math.unit(1.464, "feet"),
  46242. name: "Mouth",
  46243. image: {
  46244. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Small",
  46251. height: math.unit(8, "feet"),
  46252. default: true
  46253. },
  46254. {
  46255. name: "Normal",
  46256. height: math.unit(15, "feet")
  46257. },
  46258. {
  46259. name: "Macro",
  46260. height: math.unit(90, "feet")
  46261. },
  46262. ]
  46263. ))
  46264. //characters
  46265. function makeCharacters() {
  46266. const results = [];
  46267. characterMakers.forEach(character => {
  46268. results.push(character());
  46269. });
  46270. return results;
  46271. }